Explain how redisplay updates window-start.
[bpt/emacs.git] / src / window.c
CommitLineData
7ab12479
JB
1/* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
f8c25f1b 3 Copyright (C) 1985, 86, 87, 93, 94, 95 Free Software Foundation, Inc.
7ab12479
JB
4
5This file is part of GNU Emacs.
6
7GNU Emacs is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
1113d9db 9the Free Software Foundation; either version 2, or (at your option)
7ab12479
JB
10any later version.
11
12GNU Emacs is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with GNU Emacs; see the file COPYING. If not, write to
19the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
18160b98 21#include <config.h>
7ab12479
JB
22#include "lisp.h"
23#include "buffer.h"
44fa5b1e 24#include "frame.h"
7ab12479
JB
25#include "window.h"
26#include "commands.h"
27#include "indent.h"
28#include "termchar.h"
29#include "disptab.h"
f8026fd8 30#include "keyboard.h"
7ab12479 31
806b4d9b 32Lisp_Object Qwindowp, Qwindow_live_p;
7ab12479
JB
33
34Lisp_Object Fnext_window (), Fdelete_window (), Fselect_window ();
35Lisp_Object Fset_window_buffer (), Fsplit_window (), Frecenter ();
36
fd482be5 37void delete_all_subwindows ();
7ab12479
JB
38static struct window *decode_window();
39
40/* This is the window in which the terminal's cursor should
41 be left when nothing is being done with it. This must
42 always be a leaf window, and its buffer is selected by
43 the top level editing loop at the end of each command.
44
45 This value is always the same as
44fa5b1e 46 FRAME_SELECTED_WINDOW (selected_frame). */
7ab12479
JB
47
48Lisp_Object selected_window;
49
44fa5b1e 50/* The minibuffer window of the selected frame.
7ab12479
JB
51 Note that you cannot test for minibufferness of an arbitrary window
52 by comparing against this; but you can test for minibufferness of
53 the selected window. */
54Lisp_Object minibuf_window;
55
56/* Non-nil means it is the window for C-M-v to scroll
57 when the minibuffer is selected. */
58Lisp_Object Vminibuf_scroll_window;
59
60/* Non-nil means this is the buffer whose window C-M-v should scroll. */
61Lisp_Object Vother_window_scroll_buffer;
62
7ab12479
JB
63/* Non-nil means it's function to call to display temp buffers. */
64Lisp_Object Vtemp_buffer_show_function;
65
66/* If a window gets smaller than either of these, it is removed. */
67int window_min_height;
68int window_min_width;
69
70/* Nonzero implies Fdisplay_buffer should create windows. */
71int pop_up_windows;
72
44fa5b1e
JB
73/* Nonzero implies make new frames for Fdisplay_buffer. */
74int pop_up_frames;
7ab12479
JB
75
76/* Non-nil means use this function instead of default */
44fa5b1e 77Lisp_Object Vpop_up_frame_function;
7ab12479
JB
78
79/* Function to call to handle Fdisplay_buffer. */
80Lisp_Object Vdisplay_buffer_function;
81
a90712c2
RS
82/* List of buffer *names* for buffers that should have their own frames. */
83Lisp_Object Vspecial_display_buffer_names;
84
85/* List of regexps for buffer names that should have their own frames. */
86Lisp_Object Vspecial_display_regexps;
87
88/* Function to pop up a special frame. */
89Lisp_Object Vspecial_display_function;
90
855d8627
RS
91/* List of buffer *names* for buffers to appear in selected window. */
92Lisp_Object Vsame_window_buffer_names;
93
94/* List of regexps for buffer names to appear in selected window. */
95Lisp_Object Vsame_window_regexps;
96
a58ec57d
RS
97/* Hook run at end of temp_output_buffer_show. */
98Lisp_Object Qtemp_buffer_show_hook;
99
7ab12479
JB
100/* Fdisplay_buffer always splits the largest window
101 if that window is more than this high. */
102int split_height_threshold;
103
104/* Number of lines of continuity in scrolling by screenfuls. */
105int next_screen_context_lines;
106
107/* Incremented for each window created. */
108static int sequence_number;
109
110#define min(a, b) ((a) < (b) ? (a) : (b))
111\f
112DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
113 "Returns t if OBJ is a window.")
114 (obj)
115 Lisp_Object obj;
116{
017b2bad 117 return WINDOWP (obj) ? Qt : Qnil;
7ab12479
JB
118}
119
806b4d9b 120DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
605be8af
JB
121 "Returns t if OBJ is a window which is currently visible.")
122 (obj)
123 Lisp_Object obj;
124{
017b2bad 125 return (WINDOWP (obj) && ! NILP (XWINDOW (obj)->buffer) ? Qt : Qnil);
605be8af
JB
126}
127
7ab12479
JB
128Lisp_Object
129make_window ()
130{
cffec418 131 Lisp_Object val;
7ab12479 132 register struct window *p;
cffec418
KH
133 register struct Lisp_Vector *vec;
134 int i;
135
136 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct window));
137 for (i = 0; i < VECSIZE (struct window); i++)
138 vec->contents[i] = Qnil;
139 vec->size = VECSIZE (struct window);
140 p = (struct window *)vec;
d834a2e9
KH
141 XSETFASTINT (p->sequence_number, ++sequence_number);
142 XSETFASTINT (p->left, 0);
143 XSETFASTINT (p->top, 0);
144 XSETFASTINT (p->height, 0);
145 XSETFASTINT (p->width, 0);
146 XSETFASTINT (p->hscroll, 0);
147 XSETFASTINT (p->last_point_x, 0);
148 XSETFASTINT (p->last_point_y, 0);
7ab12479
JB
149 p->start = Fmake_marker ();
150 p->pointm = Fmake_marker ();
d834a2e9 151 XSETFASTINT (p->use_time, 0);
44fa5b1e 152 p->frame = Qnil;
7ab12479
JB
153 p->display_table = Qnil;
154 p->dedicated = Qnil;
cffec418 155 XSETWINDOW (val, p);
7ab12479
JB
156 return val;
157}
158
159DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
160 "Return the window that the cursor now appears in and commands apply to.")
161 ()
162{
163 return selected_window;
164}
165
83762ba4
JB
166DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
167 "Return the window used now for minibuffers.\n\
168If the optional argument FRAME is specified, return the minibuffer window\n\
169used by that frame.")
170 (frame)
171 Lisp_Object frame;
7ab12479 172{
44fa5b1e 173#ifdef MULTI_FRAME
83762ba4 174 if (NILP (frame))
74112613 175 XSETFRAME (frame, selected_frame);
83762ba4
JB
176 else
177 CHECK_LIVE_FRAME (frame, 0);
178#endif
179
180 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
7ab12479
JB
181}
182
605be8af 183DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
7ab12479
JB
184 "Returns non-nil if WINDOW is a minibuffer window.")
185 (window)
186 Lisp_Object window;
187{
188 struct window *w = decode_window (window);
189 return (MINI_WINDOW_P (w) ? Qt : Qnil);
190}
191
192DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
193 Spos_visible_in_window_p, 0, 2, 0,
44fa5b1e 194 "Return t if position POS is currently on the frame in WINDOW.\n\
7ab12479
JB
195Returns nil if that position is scrolled vertically out of view.\n\
196POS defaults to point; WINDOW, to the selected window.")
197 (pos, window)
198 Lisp_Object pos, window;
199{
200 register struct window *w;
201 register int top;
202 register int height;
203 register int posint;
204 register struct buffer *buf;
205 struct position posval;
afdb2485 206 int hscroll;
7ab12479 207
265a9e55 208 if (NILP (pos))
5ce7b543 209 posint = PT;
7ab12479
JB
210 else
211 {
212 CHECK_NUMBER_COERCE_MARKER (pos, 0);
213 posint = XINT (pos);
214 }
215
605be8af 216 w = decode_window (window);
7ab12479 217 top = marker_position (w->start);
afdb2485 218 hscroll = XINT (w->hscroll);
7ab12479
JB
219
220 if (posint < top)
221 return Qnil;
222
223 height = XFASTINT (w->height) - ! MINI_WINDOW_P (w);
224
225 buf = XBUFFER (w->buffer);
226 if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf))
227 {
44fa5b1e 228 /* If frame is up to date,
7ab12479
JB
229 use the info recorded about how much text fit on it. */
230 if (posint < BUF_Z (buf) - XFASTINT (w->window_end_pos)
231 || (XFASTINT (w->window_end_vpos) < height))
232 return Qt;
233 return Qnil;
234 }
235 else
236 {
33eb4ede 237 if (posint > BUF_ZV (buf))
7ab12479
JB
238 return Qnil;
239
61b5322b
RS
240 /* w->start can be out of range. If it is, do something reasonable. */
241 if (top < BUF_BEGV (buf) || top > BUF_ZV (buf))
242 return Qnil;
243
7ab12479 244 /* If that info is not correct, calculate afresh */
4efffd80 245 posval = *compute_motion (top, 0, (hscroll ? 1 - hscroll : 0), 0,
afdb2485 246 posint, height, 0,
535e0b8e 247 window_internal_width (w) - 1,
e37f06d7 248 hscroll, 0, w);
7ab12479
JB
249
250 return posval.vpos < height ? Qt : Qnil;
251 }
252}
253\f
254static struct window *
255decode_window (window)
256 register Lisp_Object window;
257{
265a9e55 258 if (NILP (window))
7ab12479
JB
259 return XWINDOW (selected_window);
260
605be8af 261 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
262 return XWINDOW (window);
263}
264
265DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
266 "Return the buffer that WINDOW is displaying.")
267 (window)
268 Lisp_Object window;
269{
270 return decode_window (window)->buffer;
271}
272
273DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
274 "Return the number of lines in WINDOW (including its mode line).")
275 (window)
276 Lisp_Object window;
277{
278 return decode_window (window)->height;
279}
280
281DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
3b5908ef
RS
282 "Return the number of display columns in WINDOW.\n\
283This is the width that is usable columns available for text in WINDOW.\n\
284If you want to find out how many columns WINDOW takes up,\n\
285use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
7ab12479
JB
286 (window)
287 Lisp_Object window;
288{
ee61d94e 289 return make_number (window_internal_width (decode_window (window)));
7ab12479
JB
290}
291
292DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
293 "Return the number of columns by which WINDOW is scrolled from left margin.")
294 (window)
295 Lisp_Object window;
296{
297 return decode_window (window)->hscroll;
298}
299
300DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
301 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
302NCOL should be zero or positive.")
303 (window, ncol)
304 register Lisp_Object window, ncol;
305{
306 register struct window *w;
307
308 CHECK_NUMBER (ncol, 1);
d834a2e9 309 if (XINT (ncol) < 0) XSETFASTINT (ncol, 0);
7ab12479
JB
310 if (XFASTINT (ncol) >= (1 << (SHORTBITS - 1)))
311 args_out_of_range (ncol, Qnil);
312 w = decode_window (window);
7f4161e0 313 if (XINT (w->hscroll) != XINT (ncol))
1479ef51 314 XBUFFER (w->buffer)->clip_changed = 1; /* Prevent redisplay shortcuts */
7ab12479
JB
315 w->hscroll = ncol;
316 return ncol;
317}
318
319DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
320 "Return a list of the edge coordinates of WINDOW.\n\
44fa5b1e 321\(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
7ab12479
JB
322RIGHT is one more than the rightmost column used by WINDOW,\n\
323and BOTTOM is one more than the bottommost row used by WINDOW\n\
324 and its mode-line.")
325 (window)
326 Lisp_Object window;
327{
328 register struct window *w = decode_window (window);
329
330 return Fcons (w->left, Fcons (w->top,
331 Fcons (make_number (XFASTINT (w->left) + XFASTINT (w->width)),
332 Fcons (make_number (XFASTINT (w->top)
333 + XFASTINT (w->height)),
334 Qnil))));
335}
336
d5783c40
JB
337/* Test if the character at column *x, row *y is within window *w.
338 If it is not, return 0;
339 if it is in the window's text area,
340 set *x and *y to its location relative to the upper left corner
341 of the window, and
342 return 1;
343 if it is on the window's modeline, return 2;
344 if it is on the border between the window and its right sibling,
345 return 3. */
346static int
347coordinates_in_window (w, x, y)
348 register struct window *w;
349 register int *x, *y;
350{
351 register int left = XINT (w->left);
352 register int width = XINT (w->width);
353 register int window_height = XINT (w->height);
354 register int top = XFASTINT (w->top);
355
356 if ( *x < left || *x >= left + width
357 || *y < top || *y >= top + window_height)
358 return 0;
359
360 /* Is the character is the mode line? */
361 if (*y == top + window_height - 1
05c2896a 362 && ! MINI_WINDOW_P (w))
d5783c40
JB
363 return 2;
364
365 /* Is the character in the right border? */
366 if (*x == left + width - 1
44fa5b1e 367 && left + width != FRAME_WIDTH (XFRAME (w->frame)))
d5783c40
JB
368 return 3;
369
370 *x -= left;
371 *y -= top;
372 return 1;
373}
374
375DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
376 Scoordinates_in_window_p, 2, 2, 0,
377 "Return non-nil if COORDINATES are in WINDOW.\n\
1113d9db 378COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
44fa5b1e 379measured in characters from the upper-left corner of the frame.\n\
1113d9db 380(0 . 0) denotes the character in the upper left corner of the\n\
44fa5b1e 381frame.\n\
d5783c40
JB
382If COORDINATES are in the text portion of WINDOW,\n\
383 the coordinates relative to the window are returned.\n\
e5d77022 384If they are in the mode line of WINDOW, `mode-line' is returned.\n\
d5783c40 385If they are on the border between WINDOW and its right sibling,\n\
e5d77022 386 `vertical-line' is returned.")
d5783c40
JB
387 (coordinates, window)
388 register Lisp_Object coordinates, window;
389{
390 int x, y;
391
605be8af 392 CHECK_LIVE_WINDOW (window, 0);
d5783c40
JB
393 CHECK_CONS (coordinates, 1);
394 x = XINT (Fcar (coordinates));
395 y = XINT (Fcdr (coordinates));
396
397 switch (coordinates_in_window (XWINDOW (window), &x, &y))
398 {
399 case 0: /* NOT in window at all. */
400 return Qnil;
401
402 case 1: /* In text part of window. */
403 return Fcons (x, y);
404
405 case 2: /* In mode line of window. */
406 return Qmode_line;
407
408 case 3: /* On right border of window. */
e5d77022 409 return Qvertical_line;
d5783c40
JB
410
411 default:
412 abort ();
413 }
414}
415
7ab12479 416/* Find the window containing column x, row y, and return it as a
d5783c40
JB
417 Lisp_Object. If x, y is on the window's modeline, set *part
418 to 1; if it is on the separating line between the window and its
419 right sibling, set it to 2; otherwise set it to 0. If there is no
420 window under x, y return nil and leave *part unmodified. */
7ab12479 421Lisp_Object
44fa5b1e
JB
422window_from_coordinates (frame, x, y, part)
423 FRAME_PTR frame;
7ab12479 424 int x, y;
d5783c40 425 int *part;
7ab12479
JB
426{
427 register Lisp_Object tem, first;
428
44fa5b1e 429 tem = first = FRAME_SELECTED_WINDOW (frame);
7ab12479 430
d5783c40 431 do
7ab12479
JB
432 {
433 int found = coordinates_in_window (XWINDOW (tem), &x, &y);
434
435 if (found)
436 {
d5783c40 437 *part = found - 1;
7ab12479
JB
438 return tem;
439 }
440
d5783c40 441 tem = Fnext_window (tem, Qt, Qlambda);
7ab12479 442 }
d5783c40
JB
443 while (! EQ (tem, first));
444
445 return Qnil;
7ab12479
JB
446}
447
ab17c3f2 448DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
b0c33a94 449 "Return window containing coordinates X and Y on FRAME.\n\
44fa5b1e
JB
450If omitted, FRAME defaults to the currently selected frame.\n\
451The top left corner of the frame is considered to be row 0,\n\
95605e15 452column 0.")
b0c33a94
RS
453 (x, y, frame)
454 Lisp_Object x, y, frame;
7ab12479
JB
455{
456 int part;
457
4b206065 458#ifdef MULTI_FRAME
44fa5b1e 459 if (NILP (frame))
74112613 460 XSETFRAME (frame, selected_frame);
d5783c40 461 else
44fa5b1e 462 CHECK_LIVE_FRAME (frame, 2);
4b206065 463#endif
b0c33a94
RS
464 CHECK_NUMBER (x, 0);
465 CHECK_NUMBER (y, 1);
7ab12479 466
44fa5b1e 467 return window_from_coordinates (XFRAME (frame),
b0c33a94 468 XINT (x), XINT (y),
7ab12479
JB
469 &part);
470}
471
472DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
473 "Return current value of point in WINDOW.\n\
474For a nonselected window, this is the value point would have\n\
475if that window were selected.\n\
476\n\
477Note that, when WINDOW is the selected window and its buffer\n\
478is also currently selected, the value returned is the same as (point).\n\
479It would be more strictly correct to return the `top-level' value\n\
480of point, outside of any save-excursion forms.\n\
481But that is hard to define.")
482 (window)
483 Lisp_Object window;
484{
485 register struct window *w = decode_window (window);
486
487 if (w == XWINDOW (selected_window)
488 && current_buffer == XBUFFER (w->buffer))
489 return Fpoint ();
490 return Fmarker_position (w->pointm);
491}
492
493DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
494 "Return position at which display currently starts in WINDOW.")
495 (window)
496 Lisp_Object window;
497{
498 return Fmarker_position (decode_window (window)->start);
499}
500
8646118f
RS
501/* This is text temporarily removed from the doc string below.
502
7250968e
RS
503This function returns nil if the position is not currently known.\n\
504That happens when redisplay is preempted and doesn't finish.\n\
505If in that case you want to compute where the end of the window would\n\
506have been if redisplay had finished, do this:\n\
507 (save-excursion\n\
508 (goto-char (window-start window))\n\
509 (vertical-motion (1- (window-height window)) window)\n\
8646118f
RS
510 (point))") */
511
512DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 1, 0,
513 "Return position at which display currently ends in WINDOW.\n\
514This is updated by redisplay, when it runs to completion.\n\
515Simply changing the buffer text or setting `window-start'\n\
516does not update this value.")
7ab12479
JB
517 (window)
518 Lisp_Object window;
519{
520 Lisp_Object value;
521 struct window *w = decode_window (window);
5a41ab94
RS
522 Lisp_Object buf;
523
524 buf = w->buffer;
525 CHECK_BUFFER (buf, 0);
526
8646118f 527#if 0 /* This change broke some things. We should make it later. */
7250968e
RS
528 /* If we don't know the end position, return nil.
529 The user can compute it with vertical-motion if he wants to.
530 It would be nicer to do it automatically,
531 but that's so slow that it would probably bother people. */
532 if (NILP (w->window_end_valid))
533 return Qnil;
8646118f 534#endif
7250968e 535
74112613
KH
536 XSETINT (value,
537 BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
7ab12479
JB
538
539 return value;
540}
541
542DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
543 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
544 (window, pos)
545 Lisp_Object window, pos;
546{
547 register struct window *w = decode_window (window);
548
549 CHECK_NUMBER_COERCE_MARKER (pos, 1);
550 if (w == XWINDOW (selected_window))
551 Fgoto_char (pos);
552 else
553 set_marker_restricted (w->pointm, pos, w->buffer);
554
555 return pos;
556}
557
558DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
559 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
560Optional third arg NOFORCE non-nil inhibits next redisplay\n\
561from overriding motion of point in order to display at this exact start.")
562 (window, pos, noforce)
563 Lisp_Object window, pos, noforce;
564{
565 register struct window *w = decode_window (window);
566
567 CHECK_NUMBER_COERCE_MARKER (pos, 1);
568 set_marker_restricted (w->start, pos, w->buffer);
569 /* this is not right, but much easier than doing what is right. */
570 w->start_at_line_beg = Qnil;
265a9e55 571 if (NILP (noforce))
7ab12479
JB
572 w->force_start = Qt;
573 w->update_mode_line = Qt;
d834a2e9 574 XSETFASTINT (w->last_modified, 0);
62c07cc7
JB
575 if (!EQ (window, selected_window))
576 windows_or_buffers_changed++;
7ab12479
JB
577 return pos;
578}
579
580DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
581 1, 1, 0,
582 "Return WINDOW's dedicated object, usually t or nil.\n\
1f18c48f 583See also `set-window-dedicated-p'.")
7ab12479
JB
584 (window)
585 Lisp_Object window;
586{
587 return decode_window (window)->dedicated;
588}
589
d207b766
RS
590DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
591 Sset_window_dedicated_p, 2, 2, 0,
592 "Control whether WINDOW is dedicated to the buffer it displays.\n\
593If it is dedicated, Emacs will not automatically change\n\
594which buffer appears in it.\n\
595The second argument is the new value for the dedication flag;\n\
596non-nil means yes.")
7ab12479
JB
597 (window, arg)
598 Lisp_Object window, arg;
599{
600 register struct window *w = decode_window (window);
601
265a9e55 602 if (NILP (arg))
7ab12479
JB
603 w->dedicated = Qnil;
604 else
d207b766 605 w->dedicated = Qt;
7ab12479
JB
606
607 return w->dedicated;
608}
609
610DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
611 0, 1, 0,
612 "Return the display-table that WINDOW is using.")
613 (window)
614 Lisp_Object window;
615{
616 return decode_window (window)->display_table;
617}
618
619/* Get the display table for use currently on window W.
620 This is either W's display table or W's buffer's display table.
621 Ignore the specified tables if they are not valid;
622 if no valid table is specified, return 0. */
623
624struct Lisp_Vector *
625window_display_table (w)
626 struct window *w;
627{
628 Lisp_Object tem;
629 tem = w->display_table;
017b2bad 630 if (VECTORP (tem) && XVECTOR (tem)->size == DISP_TABLE_SIZE)
7ab12479
JB
631 return XVECTOR (tem);
632 tem = XBUFFER (w->buffer)->display_table;
017b2bad 633 if (VECTORP (tem) && XVECTOR (tem)->size == DISP_TABLE_SIZE)
7ab12479
JB
634 return XVECTOR (tem);
635 tem = Vstandard_display_table;
017b2bad 636 if (VECTORP (tem) && XVECTOR (tem)->size == DISP_TABLE_SIZE)
7ab12479
JB
637 return XVECTOR (tem);
638 return 0;
639}
640
3a2712f9 641DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
7ab12479
JB
642 "Set WINDOW's display-table to TABLE.")
643 (window, table)
644 register Lisp_Object window, table;
645{
646 register struct window *w;
647 register Lisp_Object z; /* Return value. */
648
649 w = decode_window (window);
650 w->display_table = table;
651 return table;
652}
653\f
654/* Record info on buffer window w is displaying
655 when it is about to cease to display that buffer. */
656static
657unshow_buffer (w)
658 register struct window *w;
659{
12cae7c0 660 Lisp_Object buf;
7ab12479 661
12cae7c0 662 buf = w->buffer;
7ab12479
JB
663 if (XBUFFER (buf) != XMARKER (w->pointm)->buffer)
664 abort ();
665
573f41ab 666#if 0
7ab12479
JB
667 if (w == XWINDOW (selected_window)
668 || ! EQ (buf, XWINDOW (selected_window)->buffer))
669 /* Do this except when the selected window's buffer
670 is being removed from some other window. */
573f41ab
RS
671#endif
672 /* last_window_start records the start position that this buffer
673 had in the last window to be disconnected from it.
674 Now that this statement is unconditional,
675 it is possible for the buffer to be displayed in the
676 selected window, while last_window_start reflects another
677 window which was recently showing the same buffer.
678 Some people might say that might be a good thing. Let's see. */
7ab12479
JB
679 XBUFFER (buf)->last_window_start = marker_position (w->start);
680
681 /* Point in the selected window's buffer
682 is actually stored in that buffer, and the window's pointm isn't used.
683 So don't clobber point in that buffer. */
684 if (! EQ (buf, XWINDOW (selected_window)->buffer))
685 BUF_PT (XBUFFER (buf))
686 = clip_to_bounds (BUF_BEGV (XBUFFER (buf)),
687 marker_position (w->pointm),
688 BUF_ZV (XBUFFER (buf)));
689}
690
691/* Put replacement into the window structure in place of old. */
692static
693replace_window (old, replacement)
694 Lisp_Object old, replacement;
695{
696 register Lisp_Object tem;
697 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
698
44fa5b1e
JB
699 /* If OLD is its frame's root_window, then replacement is the new
700 root_window for that frame. */
7ab12479 701
7f4161e0 702 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
44fa5b1e 703 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
7ab12479
JB
704
705 p->left = o->left;
706 p->top = o->top;
707 p->width = o->width;
708 p->height = o->height;
709
710 p->next = tem = o->next;
265a9e55 711 if (!NILP (tem))
7ab12479
JB
712 XWINDOW (tem)->prev = replacement;
713
714 p->prev = tem = o->prev;
265a9e55 715 if (!NILP (tem))
7ab12479
JB
716 XWINDOW (tem)->next = replacement;
717
718 p->parent = tem = o->parent;
265a9e55 719 if (!NILP (tem))
7ab12479
JB
720 {
721 if (EQ (XWINDOW (tem)->vchild, old))
722 XWINDOW (tem)->vchild = replacement;
723 if (EQ (XWINDOW (tem)->hchild, old))
724 XWINDOW (tem)->hchild = replacement;
725 }
726
727/*** Here, if replacement is a vertical combination
728and so is its new parent, we should make replacement's
729children be children of that parent instead. ***/
730}
731
732DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
733 "Remove WINDOW from the display. Default is selected window.")
734 (window)
735 register Lisp_Object window;
736{
737 register Lisp_Object tem, parent, sib;
738 register struct window *p;
739 register struct window *par;
740
605be8af
JB
741 /* Because this function is called by other C code on non-leaf
742 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
743 so we can't decode_window here. */
265a9e55 744 if (NILP (window))
7ab12479
JB
745 window = selected_window;
746 else
747 CHECK_WINDOW (window, 0);
7ab12479 748 p = XWINDOW (window);
605be8af
JB
749
750 /* It's okay to delete an already-deleted window. */
751 if (NILP (p->buffer)
752 && NILP (p->hchild)
753 && NILP (p->vchild))
754 return Qnil;
755
7ab12479 756 parent = p->parent;
265a9e55 757 if (NILP (parent))
7ab12479
JB
758 error ("Attempt to delete minibuffer or sole ordinary window");
759 par = XWINDOW (parent);
760
761 windows_or_buffers_changed++;
29aeee73 762 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (p))) = 1;
7ab12479 763
605be8af
JB
764 /* Are we trying to delete any frame's selected window? */
765 {
0def0403 766 Lisp_Object frame, pwindow;
605be8af 767
0def0403
RS
768 /* See if the frame's selected window is either WINDOW
769 or any subwindow of it, by finding all that window's parents
770 and comparing each one with WINDOW. */
771 frame = WINDOW_FRAME (XWINDOW (window));
772 pwindow = FRAME_SELECTED_WINDOW (XFRAME (frame));
773
774 while (!NILP (pwindow))
775 {
776 if (EQ (window, pwindow))
777 break;
778 pwindow = XWINDOW (pwindow)->parent;
779 }
780
781 if (EQ (window, pwindow))
605be8af 782 {
89bca612
RS
783 Lisp_Object alternative;
784 alternative = Fnext_window (window, Qlambda, Qnil);
605be8af
JB
785
786 /* If we're about to delete the selected window on the
787 selected frame, then we should use Fselect_window to select
788 the new window. On the other hand, if we're about to
789 delete the selected window on any other frame, we shouldn't do
790 anything but set the frame's selected_window slot. */
791 if (EQ (window, selected_window))
792 Fselect_window (alternative);
793 else
0def0403 794 FRAME_SELECTED_WINDOW (XFRAME (frame)) = alternative;
605be8af
JB
795 }
796 }
7ab12479
JB
797
798 tem = p->buffer;
799 /* tem is null for dummy parent windows
800 (which have inferiors but not any contents themselves) */
265a9e55 801 if (!NILP (tem))
7ab12479
JB
802 {
803 unshow_buffer (p);
804 unchain_marker (p->pointm);
805 unchain_marker (p->start);
7ab12479
JB
806 }
807
808 tem = p->next;
265a9e55 809 if (!NILP (tem))
7ab12479
JB
810 XWINDOW (tem)->prev = p->prev;
811
812 tem = p->prev;
265a9e55 813 if (!NILP (tem))
7ab12479
JB
814 XWINDOW (tem)->next = p->next;
815
816 if (EQ (window, par->hchild))
817 par->hchild = p->next;
818 if (EQ (window, par->vchild))
819 par->vchild = p->next;
820
821 /* Find one of our siblings to give our space to. */
822 sib = p->prev;
265a9e55 823 if (NILP (sib))
7ab12479
JB
824 {
825 /* If p gives its space to its next sibling, that sibling needs
826 to have its top/left side pulled back to where p's is.
827 set_window_{height,width} will re-position the sibling's
828 children. */
829 sib = p->next;
7f4161e0
JB
830 XWINDOW (sib)->top = p->top;
831 XWINDOW (sib)->left = p->left;
7ab12479
JB
832 }
833
834 /* Stretch that sibling. */
265a9e55 835 if (!NILP (par->vchild))
7ab12479
JB
836 set_window_height (sib,
837 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
838 1);
265a9e55 839 if (!NILP (par->hchild))
7ab12479
JB
840 set_window_width (sib,
841 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
842 1);
843
844 /* If parent now has only one child,
845 put the child into the parent's place. */
7ab12479 846 tem = par->hchild;
265a9e55 847 if (NILP (tem))
7ab12479 848 tem = par->vchild;
265a9e55 849 if (NILP (XWINDOW (tem)->next))
7ab12479 850 replace_window (parent, tem);
605be8af
JB
851
852 /* Since we may be deleting combination windows, we must make sure that
853 not only p but all its children have been marked as deleted. */
854 if (! NILP (p->hchild))
855 delete_all_subwindows (XWINDOW (p->hchild));
856 else if (! NILP (p->vchild))
857 delete_all_subwindows (XWINDOW (p->vchild));
858
859 /* Mark this window as deleted. */
860 p->buffer = p->hchild = p->vchild = Qnil;
861
7ab12479
JB
862 return Qnil;
863}
864\f
7ab12479 865
44fa5b1e 866extern Lisp_Object next_frame (), prev_frame ();
7ab12479 867
26f6279d
JB
868/* This comment supplies the doc string for `next-window',
869 for make-docfile to see. We cannot put this in the real DEFUN
870 due to limits in the Unix cpp.
871
872DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
7ab12479 873 "Return next window after WINDOW in canonical ordering of windows.\n\
d5783c40
JB
874If omitted, WINDOW defaults to the selected window.\n\
875\n\
876Optional second arg MINIBUF t means count the minibuffer window even\n\
877if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
878it is active. MINIBUF neither t nor nil means not to count the\n\
879minibuffer even if it is active.\n\
880\n\
44fa5b1e
JB
881Several frames may share a single minibuffer; if the minibuffer\n\
882counts, all windows on all frames that share that minibuffer count\n\
ed160f1f 883too. Therefore, `next-window' can be used to iterate through the\n\
44fa5b1e
JB
884set of windows even when the minibuffer is on another frame. If the\n\
885minibuffer does not count, only windows from WINDOW's frame count.\n\
d5783c40 886\n\
44fa5b1e
JB
887Optional third arg ALL-FRAMES t means include windows on all frames.\n\
888ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
89bca612 889above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
f812f9c6 890ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1f4c5d09 891If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
89bca612 892Anything else means restrict to WINDOW's frame.\n\
dbc4e1c1
JB
893\n\
894If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
895`next-window' to iterate through the entire cycle of acceptable\n\
896windows, eventually ending up back at the window you started with.\n\
897`previous-window' traverses the same cycle, in the reverse order.")
26f6279d
JB
898 (window, minibuf, all_frames) */
899
900DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
901 0)
44fa5b1e
JB
902 (window, minibuf, all_frames)
903 register Lisp_Object window, minibuf, all_frames;
7ab12479
JB
904{
905 register Lisp_Object tem;
d5783c40 906 Lisp_Object start_window;
7ab12479 907
265a9e55 908 if (NILP (window))
7ab12479
JB
909 window = selected_window;
910 else
605be8af 911 CHECK_LIVE_WINDOW (window, 0);
7ab12479 912
d5783c40
JB
913 start_window = window;
914
915 /* minibuf == nil may or may not include minibuffers.
916 Decide if it does. */
265a9e55 917 if (NILP (minibuf))
d5783c40
JB
918 minibuf = (minibuf_level ? Qt : Qlambda);
919
c6e73093 920#ifdef MULTI_FRAME
1bb80f72 921 /* all_frames == nil doesn't specify which frames to include. */
44fa5b1e
JB
922 if (NILP (all_frames))
923 all_frames = (EQ (minibuf, Qt)
1bb80f72
RS
924 ? (FRAME_MINIBUF_WINDOW
925 (XFRAME
926 (WINDOW_FRAME
927 (XWINDOW (window)))))
928 : Qnil);
89bca612
RS
929 else if (EQ (all_frames, Qvisible))
930 ;
f812f9c6
RS
931 else if (XFASTINT (all_frames) == 0)
932 ;
1f4c5d09
RS
933 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
934 /* If all_frames is a frame and window arg isn't on that frame, just
935 return the first window on the frame. */
936 return Fframe_first_window (all_frames);
44fa5b1e
JB
937 else if (! EQ (all_frames, Qt))
938 all_frames = Qnil;
644b477c
RS
939 /* Now all_frames is t meaning search all frames,
940 nil meaning search just current frame,
f812f9c6
RS
941 visible meaning search just visible frames,
942 0 meaning search visible and iconified frames,
644b477c 943 or a window, meaning search the frame that window belongs to. */
c6e73093 944#endif
7ab12479
JB
945
946 /* Do this loop at least once, to get the next window, and perhaps
947 again, if we hit the minibuffer and that is not acceptable. */
948 do
949 {
950 /* Find a window that actually has a next one. This loop
951 climbs up the tree. */
265a9e55
JB
952 while (tem = XWINDOW (window)->next, NILP (tem))
953 if (tem = XWINDOW (window)->parent, !NILP (tem))
7ab12479 954 window = tem;
d5783c40 955 else
7ab12479 956 {
44fa5b1e
JB
957 /* We've reached the end of this frame.
958 Which other frames are acceptable? */
959 tem = WINDOW_FRAME (XWINDOW (window));
960#ifdef MULTI_FRAME
961 if (! NILP (all_frames))
1bb80f72
RS
962 {
963 Lisp_Object tem1;
964
965 tem1 = tem;
966 tem = next_frame (tem, all_frames);
967 /* In the case where the minibuffer is active,
968 and we include its frame as well as the selected one,
969 next_frame may get stuck in that frame.
970 If that happens, go back to the selected frame
971 so we can complete the cycle. */
972 if (EQ (tem, tem1))
74112613 973 XSETFRAME (tem, selected_frame);
1bb80f72 974 }
7ab12479 975#endif
44fa5b1e 976 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
d5783c40 977
7ab12479
JB
978 break;
979 }
980
981 window = tem;
d5783c40 982
7ab12479
JB
983 /* If we're in a combination window, find its first child and
984 recurse on that. Otherwise, we've found the window we want. */
985 while (1)
986 {
265a9e55 987 if (!NILP (XWINDOW (window)->hchild))
7ab12479 988 window = XWINDOW (window)->hchild;
265a9e55 989 else if (!NILP (XWINDOW (window)->vchild))
7ab12479
JB
990 window = XWINDOW (window)->vchild;
991 else break;
992 }
993 }
d5783c40
JB
994 /* Which windows are acceptible?
995 Exit the loop and accept this window if
7ab12479 996 this isn't a minibuffer window, or
d5783c40
JB
997 we're accepting minibuffer windows, or
998 we've come all the way around and we're back at the original window. */
7ab12479 999 while (MINI_WINDOW_P (XWINDOW (window))
d5783c40 1000 && ! EQ (minibuf, Qt)
7f4161e0 1001 && ! EQ (window, start_window));
7ab12479
JB
1002
1003 return window;
1004}
1005
26f6279d
JB
1006/* This comment supplies the doc string for `previous-window',
1007 for make-docfile to see. We cannot put this in the real DEFUN
1008 due to limits in the Unix cpp.
1009
1010DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
d5783c40
JB
1011 "Return the window preceeding WINDOW in canonical ordering of windows.\n\
1012If omitted, WINDOW defaults to the selected window.\n\
1013\n\
1014Optional second arg MINIBUF t means count the minibuffer window even\n\
1015if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1016it is active. MINIBUF neither t nor nil means not to count the\n\
1017minibuffer even if it is active.\n\
1018\n\
44fa5b1e
JB
1019Several frames may share a single minibuffer; if the minibuffer\n\
1020counts, all windows on all frames that share that minibuffer count\n\
ed160f1f 1021too. Therefore, `previous-window' can be used to iterate through\n\
44fa5b1e 1022the set of windows even when the minibuffer is on another frame. If\n\
ed160f1f 1023the minibuffer does not count, only windows from WINDOW's frame count\n\
d5783c40 1024\n\
44fa5b1e
JB
1025Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1026ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
89bca612 1027above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
f812f9c6 1028ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1f4c5d09 1029If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
89bca612 1030Anything else means restrict to WINDOW's frame.\n\
dbc4e1c1
JB
1031\n\
1032If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1033`previous-window' to iterate through the entire cycle of acceptable\n\
1034windows, eventually ending up back at the window you started with.\n\
1035`next-window' traverses the same cycle, in the reverse order.")
26f6279d
JB
1036 (window, minibuf, all_frames) */
1037
1038
1039DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1040 0)
44fa5b1e
JB
1041 (window, minibuf, all_frames)
1042 register Lisp_Object window, minibuf, all_frames;
7ab12479
JB
1043{
1044 register Lisp_Object tem;
d5783c40 1045 Lisp_Object start_window;
7ab12479 1046
265a9e55 1047 if (NILP (window))
7ab12479
JB
1048 window = selected_window;
1049 else
605be8af 1050 CHECK_LIVE_WINDOW (window, 0);
7ab12479 1051
d5783c40
JB
1052 start_window = window;
1053
1054 /* minibuf == nil may or may not include minibuffers.
1055 Decide if it does. */
265a9e55 1056 if (NILP (minibuf))
d5783c40
JB
1057 minibuf = (minibuf_level ? Qt : Qlambda);
1058
c6e73093 1059#ifdef MULTI_FRAME
44fa5b1e
JB
1060 /* all_frames == nil doesn't specify which frames to include.
1061 Decide which frames it includes. */
1062 if (NILP (all_frames))
1063 all_frames = (EQ (minibuf, Qt)
1064 ? (FRAME_MINIBUF_WINDOW
1065 (XFRAME
1066 (WINDOW_FRAME
d5783c40
JB
1067 (XWINDOW (window)))))
1068 : Qnil);
89bca612
RS
1069 else if (EQ (all_frames, Qvisible))
1070 ;
f812f9c6
RS
1071 else if (XFASTINT (all_frames) == 0)
1072 ;
1f4c5d09
RS
1073 else if (FRAMEP (all_frames) && ! EQ (all_frames, Fwindow_frame (window)))
1074 /* If all_frames is a frame and window arg isn't on that frame, just
1075 return the first window on the frame. */
1076 return Fframe_first_window (all_frames);
44fa5b1e
JB
1077 else if (! EQ (all_frames, Qt))
1078 all_frames = Qnil;
644b477c
RS
1079 /* Now all_frames is t meaning search all frames,
1080 nil meaning search just current frame,
f812f9c6
RS
1081 visible meaning search just visible frames,
1082 0 meaning search visible and iconified frames,
644b477c 1083 or a window, meaning search the frame that window belongs to. */
c6e73093 1084#endif
7ab12479
JB
1085
1086 /* Do this loop at least once, to get the previous window, and perhaps
1087 again, if we hit the minibuffer and that is not acceptable. */
1088 do
1089 {
1090 /* Find a window that actually has a previous one. This loop
1091 climbs up the tree. */
265a9e55
JB
1092 while (tem = XWINDOW (window)->prev, NILP (tem))
1093 if (tem = XWINDOW (window)->parent, !NILP (tem))
7ab12479 1094 window = tem;
d5783c40 1095 else
7ab12479 1096 {
44fa5b1e
JB
1097 /* We have found the top window on the frame.
1098 Which frames are acceptable? */
1099 tem = WINDOW_FRAME (XWINDOW (window));
1100#ifdef MULTI_FRAME
1101 if (! NILP (all_frames))
dbc4e1c1
JB
1102 /* It's actually important that we use prev_frame here,
1103 rather than next_frame. All the windows acceptable
1104 according to the given parameters should form a ring;
1105 Fnext_window and Fprevious_window should go back and
1106 forth around the ring. If we use next_frame here,
1107 then Fnext_window and Fprevious_window take different
1108 paths through the set of acceptable windows.
1109 window_loop assumes that these `ring' requirement are
1110 met. */
1bb80f72
RS
1111 {
1112 Lisp_Object tem1;
1113
1114 tem1 = tem;
1115 tem = prev_frame (tem, all_frames);
1116 /* In the case where the minibuffer is active,
1117 and we include its frame as well as the selected one,
1118 next_frame may get stuck in that frame.
1119 If that happens, go back to the selected frame
1120 so we can complete the cycle. */
1121 if (EQ (tem, tem1))
74112613 1122 XSETFRAME (tem, selected_frame);
1bb80f72 1123 }
7ab12479 1124#endif
644b477c
RS
1125 /* If this frame has a minibuffer, find that window first,
1126 because it is conceptually the last window in that frame. */
5e12e32f
JB
1127 if (FRAME_HAS_MINIBUF_P (XFRAME (tem)))
1128 tem = FRAME_MINIBUF_WINDOW (XFRAME (tem));
1129 else
644b477c 1130 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
d5783c40 1131
7ab12479
JB
1132 break;
1133 }
1134
1135 window = tem;
1136 /* If we're in a combination window, find its last child and
1137 recurse on that. Otherwise, we've found the window we want. */
1138 while (1)
1139 {
265a9e55 1140 if (!NILP (XWINDOW (window)->hchild))
7ab12479 1141 window = XWINDOW (window)->hchild;
265a9e55 1142 else if (!NILP (XWINDOW (window)->vchild))
7ab12479
JB
1143 window = XWINDOW (window)->vchild;
1144 else break;
265a9e55 1145 while (tem = XWINDOW (window)->next, !NILP (tem))
7ab12479
JB
1146 window = tem;
1147 }
1148 }
d5783c40
JB
1149 /* Which windows are acceptable?
1150 Exit the loop and accept this window if
7ab12479 1151 this isn't a minibuffer window, or
d5783c40
JB
1152 we're accepting minibuffer windows, or
1153 we've come all the way around and we're back at the original window. */
7ab12479 1154 while (MINI_WINDOW_P (XWINDOW (window))
d5783c40 1155 && !EQ (minibuf, Qt)
7f4161e0 1156 && !EQ (window, start_window));
7ab12479
JB
1157
1158 return window;
1159}
1160
62c07cc7 1161DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
44fa5b1e
JB
1162 "Select the ARG'th different window on this frame.\n\
1163All windows on current frame are arranged in a cyclic order.\n\
7ab12479
JB
1164This command selects the window ARG steps away in that order.\n\
1165A negative ARG moves in the opposite order. If the optional second\n\
44fa5b1e
JB
1166argument ALL_FRAMES is non-nil, cycle through all frames.")
1167 (n, all_frames)
1168 register Lisp_Object n, all_frames;
7ab12479
JB
1169{
1170 register int i;
1171 register Lisp_Object w;
1172
1173 CHECK_NUMBER (n, 0);
1174 w = selected_window;
1175 i = XINT (n);
1176
1177 while (i > 0)
1178 {
44fa5b1e 1179 w = Fnext_window (w, Qnil, all_frames);
7ab12479
JB
1180 i--;
1181 }
1182 while (i < 0)
1183 {
44fa5b1e 1184 w = Fprevious_window (w, Qnil, all_frames);
7ab12479
JB
1185 i++;
1186 }
1187 Fselect_window (w);
1188 return Qnil;
1189}
1190\f
1191/* Look at all windows, performing an operation specified by TYPE
1192 with argument OBJ.
75d8f668 1193 If FRAMES is Qt, look at all frames;
75d8f668 1194 Qnil, look at just the selected frame;
89bca612 1195 Qvisible, look at visible frames;
75d8f668 1196 a frame, just look at windows on that frame.
7ab12479
JB
1197 If MINI is non-zero, perform the operation on minibuffer windows too.
1198*/
1199
1200enum window_loop
1201{
1202 WINDOW_LOOP_UNUSED,
1203 GET_BUFFER_WINDOW, /* Arg is buffer */
1204 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1205 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1206 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1207 GET_LARGEST_WINDOW,
a68c0d3b 1208 UNSHOW_BUFFER /* Arg is buffer */
7ab12479
JB
1209};
1210
1211static Lisp_Object
44fa5b1e 1212window_loop (type, obj, mini, frames)
7ab12479 1213 enum window_loop type;
44fa5b1e 1214 register Lisp_Object obj, frames;
7ab12479
JB
1215 int mini;
1216{
1217 register Lisp_Object w;
1218 register Lisp_Object best_window;
1219 register Lisp_Object next_window;
4b206065 1220 register Lisp_Object last_window;
44fa5b1e 1221 FRAME_PTR frame;
89bca612
RS
1222 Lisp_Object frame_arg;
1223 frame_arg = Qt;
44fa5b1e 1224
4b206065 1225#ifdef MULTI_FRAME
44fa5b1e
JB
1226 /* If we're only looping through windows on a particular frame,
1227 frame points to that frame. If we're looping through windows
1228 on all frames, frame is 0. */
1229 if (FRAMEP (frames))
1230 frame = XFRAME (frames);
1231 else if (NILP (frames))
1232 frame = selected_frame;
7ab12479 1233 else
44fa5b1e 1234 frame = 0;
89bca612
RS
1235 if (frame)
1236 frame_arg = Qlambda;
f812f9c6
RS
1237 else if (XFASTINT (frames) == 0)
1238 frame_arg = frames;
89bca612
RS
1239 else if (EQ (frames, Qvisible))
1240 frame_arg = frames;
4b206065
JB
1241#else
1242 frame = 0;
1243#endif
7ab12479 1244
89bca612
RS
1245 /* frame_arg is Qlambda to stick to one frame,
1246 Qvisible to consider all visible frames,
1247 or Qt otherwise. */
1248
7ab12479 1249 /* Pick a window to start with. */
017b2bad 1250 if (WINDOWP (obj))
4b206065 1251 w = obj;
44fa5b1e 1252 else if (frame)
4b206065 1253 w = FRAME_SELECTED_WINDOW (frame);
7ab12479 1254 else
4b206065
JB
1255 w = FRAME_SELECTED_WINDOW (selected_frame);
1256
1257 /* Figure out the last window we're going to mess with. Since
1258 Fnext_window, given the same options, is guaranteed to go in a
1259 ring, we can just use Fprevious_window to find the last one.
1260
1261 We can't just wait until we hit the first window again, because
1262 it might be deleted. */
1263
89bca612 1264 last_window = Fprevious_window (w, mini ? Qt : Qnil, frame_arg);
7ab12479 1265
7ab12479 1266 best_window = Qnil;
4b206065 1267 for (;;)
7ab12479 1268 {
75d8f668
JB
1269 FRAME_PTR w_frame = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1270
7ab12479
JB
1271 /* Pick the next window now, since some operations will delete
1272 the current window. */
89bca612 1273 next_window = Fnext_window (w, mini ? Qt : Qnil, frame_arg);
7ab12479 1274
d29a5631
RS
1275 /* Note that we do not pay attention here to whether
1276 the frame is visible, since Fnext_window skips non-visible frames
1277 if that is desired, under the control of frame_arg. */
75d8f668 1278 if (! MINI_WINDOW_P (XWINDOW (w))
7ab12479
JB
1279 || (mini && minibuf_level > 0))
1280 switch (type)
1281 {
1282 case GET_BUFFER_WINDOW:
7ab12479
JB
1283 if (XBUFFER (XWINDOW (w)->buffer) == XBUFFER (obj))
1284 return w;
1285 break;
1286
1287 case GET_LRU_WINDOW:
1288 /* t as arg means consider only full-width windows */
e5d77022 1289 if (!NILP (obj) && XFASTINT (XWINDOW (w)->width)
a2db42d6 1290 != FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
7ab12479 1291 break;
7ab12479
JB
1292 /* Ignore dedicated windows and minibuffers. */
1293 if (MINI_WINDOW_P (XWINDOW (w))
265a9e55 1294 || !NILP (XWINDOW (w)->dedicated))
7ab12479 1295 break;
265a9e55 1296 if (NILP (best_window)
7ab12479
JB
1297 || (XFASTINT (XWINDOW (best_window)->use_time)
1298 > XFASTINT (XWINDOW (w)->use_time)))
1299 best_window = w;
1300 break;
1301
1302 case DELETE_OTHER_WINDOWS:
1303 if (XWINDOW (w) != XWINDOW (obj))
1304 Fdelete_window (w);
1305 break;
1306
1307 case DELETE_BUFFER_WINDOWS:
1308 if (EQ (XWINDOW (w)->buffer, obj))
1309 {
3548e138
RS
1310#ifdef MULTI_FRAME
1311 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1312
1313 /* If this window is dedicated, and in a frame of its own,
1314 kill the frame. */
1315 if (EQ (w, FRAME_ROOT_WINDOW (f))
1316 && !NILP (XWINDOW (w)->dedicated)
1317 && other_visible_frames (f))
7ab12479 1318 {
3548e138
RS
1319 /* Skip the other windows on this frame.
1320 There might be one, the minibuffer! */
1321 if (! EQ (w, last_window))
1322 while (f == XFRAME (WINDOW_FRAME (XWINDOW (next_window))))
1323 {
1324 /* As we go, check for the end of the loop.
1325 We mustn't start going around a second time. */
1326 if (EQ (next_window, last_window))
1327 {
1328 last_window = w;
1329 break;
1330 }
1331 next_window = Fnext_window (next_window,
1332 mini ? Qt : Qnil,
1333 frame_arg);
1334 }
1335 /* Now we can safely delete the frame. */
1336 Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil);
7ab12479
JB
1337 }
1338 else
3548e138
RS
1339#endif
1340 /* If we're deleting the buffer displayed in the only window
1341 on the frame, find a new buffer to display there. */
1342 if (NILP (XWINDOW (w)->parent))
1343 {
1344 Lisp_Object new_buffer;
1345 new_buffer = Fother_buffer (obj, Qnil);
1346 if (NILP (new_buffer))
1347 new_buffer
1348 = Fget_buffer_create (build_string ("*scratch*"));
1349 Fset_window_buffer (w, new_buffer);
1350 if (EQ (w, selected_window))
1351 Fset_buffer (XWINDOW (w)->buffer);
1352 }
1353 else
1354 Fdelete_window (w);
7ab12479
JB
1355 }
1356 break;
1357
1358 case GET_LARGEST_WINDOW:
7ab12479
JB
1359 /* Ignore dedicated windows and minibuffers. */
1360 if (MINI_WINDOW_P (XWINDOW (w))
265a9e55 1361 || !NILP (XWINDOW (w)->dedicated))
7ab12479
JB
1362 break;
1363 {
1364 struct window *best_window_ptr = XWINDOW (best_window);
1365 struct window *w_ptr = XWINDOW (w);
6b54027b
RS
1366 if (NILP (best_window)
1367 || (XFASTINT (w_ptr->height) * XFASTINT (w_ptr->width)
1368 > (XFASTINT (best_window_ptr->height)
1369 * XFASTINT (best_window_ptr->width))))
7ab12479
JB
1370 best_window = w;
1371 }
1372 break;
1373
1374 case UNSHOW_BUFFER:
1375 if (EQ (XWINDOW (w)->buffer, obj))
1376 {
1377 /* Find another buffer to show in this window. */
12cae7c0 1378 Lisp_Object another_buffer;
38ab08d1 1379 FRAME_PTR f = XFRAME (WINDOW_FRAME (XWINDOW (w)));
12cae7c0 1380 another_buffer = Fother_buffer (obj, Qnil);
265a9e55 1381 if (NILP (another_buffer))
7ab12479
JB
1382 another_buffer
1383 = Fget_buffer_create (build_string ("*scratch*"));
38ab08d1
RS
1384#ifdef MULTI_FRAME
1385 /* If this window is dedicated, and in a frame of its own,
1386 kill the frame. */
1387 if (EQ (w, FRAME_ROOT_WINDOW (f))
596122a7 1388 && !NILP (XWINDOW (w)->dedicated)
38ab08d1 1389 && other_visible_frames (f))
45945a7b
RS
1390 {
1391 /* Skip the other windows on this frame.
1392 There might be one, the minibuffer! */
1393 if (! EQ (w, last_window))
1394 while (f == XFRAME (WINDOW_FRAME (XWINDOW (next_window))))
1395 {
1396 /* As we go, check for the end of the loop.
1397 We mustn't start going around a second time. */
1398 if (EQ (next_window, last_window))
1399 {
1400 last_window = w;
1401 break;
1402 }
1403 next_window = Fnext_window (next_window,
1404 mini ? Qt : Qnil,
1405 frame_arg);
1406 }
1407 /* Now we can safely delete the frame. */
1408 Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil);
1409 }
38ab08d1
RS
1410 else
1411#endif
1412 {
1413 /* Otherwise show a different buffer in the window. */
1414 XWINDOW (w)->dedicated = Qnil;
1415 Fset_window_buffer (w, another_buffer);
1416 if (EQ (w, selected_window))
1417 Fset_buffer (XWINDOW (w)->buffer);
1418 }
7ab12479
JB
1419 }
1420 break;
1421 }
4b206065
JB
1422
1423 if (EQ (w, last_window))
1424 break;
1425
7ab12479
JB
1426 w = next_window;
1427 }
7ab12479
JB
1428
1429 return best_window;
1430}
605be8af 1431
7ab12479
JB
1432DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1433 "Return the window least recently selected or used for display.\n\
89bca612 1434If optional argument FRAME is `visible', search all visible frames.\n\
cee67da9 1435If FRAME is 0, search all visible and iconified frames.\n\
89bca612
RS
1436If FRAME is t, search all frames.\n\
1437If FRAME is nil, search only the selected frame.\n\
1438If FRAME is a frame, search only that frame.")
1439 (frame)
1440 Lisp_Object frame;
7ab12479
JB
1441{
1442 register Lisp_Object w;
1443 /* First try for a window that is full-width */
89bca612 1444 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
265a9e55 1445 if (!NILP (w) && !EQ (w, selected_window))
7ab12479
JB
1446 return w;
1447 /* If none of them, try the rest */
89bca612 1448 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
7ab12479
JB
1449}
1450
1451DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1452 "Return the largest window in area.\n\
89bca612 1453If optional argument FRAME is `visible', search all visible frames.\n\
cee67da9 1454If FRAME is 0, search all visible and iconified frames.\n\
89bca612
RS
1455If FRAME is t, search all frames.\n\
1456If FRAME is nil, search only the selected frame.\n\
1457If FRAME is a frame, search only that frame.")
44fa5b1e
JB
1458 (frame)
1459 Lisp_Object frame;
7ab12479
JB
1460{
1461 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
44fa5b1e 1462 frame);
7ab12479
JB
1463}
1464
1465DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1466 "Return a window currently displaying BUFFER, or nil if none.\n\
89bca612 1467If optional argument FRAME is `visible', search all visible frames.\n\
f812f9c6 1468If optional argument FRAME is 0, search all visible and iconified frames.\n\
89bca612 1469If FRAME is t, search all frames.\n\
1bc981d2 1470If FRAME is nil, search only the selected frame.\n\
89bca612 1471If FRAME is a frame, search only that frame.")
44fa5b1e
JB
1472 (buffer, frame)
1473 Lisp_Object buffer, frame;
7ab12479
JB
1474{
1475 buffer = Fget_buffer (buffer);
017b2bad 1476 if (BUFFERP (buffer))
44fa5b1e 1477 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
7ab12479
JB
1478 else
1479 return Qnil;
1480}
1481
1482DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1483 0, 1, "",
44fa5b1e 1484 "Make WINDOW (or the selected window) fill its frame.\n\
f16a1ed3
RS
1485Only the frame WINDOW is on is affected.\n\
1486This function tries to reduce display jumps\n\
1487by keeping the text previously visible in WINDOW\n\
1488in the same place on the frame. Doing this depends on\n\
1489the value of (window-start WINDOW), so if calling this function\n\
1490in a program gives strange scrolling, make sure the window-start\n\
1491value is reasonable when this function is called.")
7ab12479
JB
1492 (window)
1493 Lisp_Object window;
1494{
1495 struct window *w;
00d3d838 1496 int startpos;
7ab12479
JB
1497 int top;
1498
265a9e55 1499 if (NILP (window))
7ab12479
JB
1500 window = selected_window;
1501 else
605be8af 1502 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1503
1504 w = XWINDOW (window);
a2b38b3c 1505
00d3d838
KH
1506 startpos = marker_position (w->start);
1507 top = XFASTINT (w->top) - FRAME_MENU_BAR_LINES (XFRAME (WINDOW_FRAME (w)));
7ab12479 1508
a2b38b3c
RS
1509 if (MINI_WINDOW_P (w) && top > 0)
1510 error ("Can't expand minibuffer to full frame");
1511
70728a80 1512 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
7ab12479 1513
00d3d838
KH
1514 /* Try to minimize scrolling, by setting the window start to the point
1515 will cause the text at the old window start to be at the same place
1516 on the frame. But don't try to do this if the window start is
1517 outside the visible portion (as might happen when the display is
1518 not current, due to typeahead). */
1519 if (startpos >= BUF_BEGV (XBUFFER (w->buffer))
1520 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
1521 {
1522 struct position pos;
1523 struct buffer *obuf = current_buffer;
1524
1525 Fset_buffer (w->buffer);
1526 /* This computation used to temporarily move point, but that can
1527 have unwanted side effects due to text properties. */
0383eb57 1528 pos = *vmotion (startpos, -top, w);
00d3d838
KH
1529 Fset_marker (w->start, make_number (pos.bufpos), w->buffer);
1530 w->start_at_line_beg = ((pos.bufpos == BEGV
1531 || FETCH_CHAR (pos.bufpos - 1) == '\n') ? Qt
1532 : Qnil);
1533
1534 set_buffer_internal (obuf);
1535 }
7ab12479
JB
1536 return Qnil;
1537}
1538
1539DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
3cbbb729 1540 1, 2, "bDelete windows on (buffer): ",
26f6279d
JB
1541 "Delete all windows showing BUFFER.\n\
1542Optional second argument FRAME controls which frames are affected.\n\
1543If nil or omitted, delete all windows showing BUFFER in any frame.\n\
1544If t, delete only windows showing BUFFER in the selected frame.\n\
89bca612 1545If `visible', delete all windows showing BUFFER in any visible frame.\n\
26f6279d
JB
1546If a frame, delete only windows showing BUFFER in that frame.")
1547 (buffer, frame)
1548 Lisp_Object buffer, frame;
7ab12479 1549{
26f6279d
JB
1550#ifdef MULTI_FRAME
1551 /* FRAME uses t and nil to mean the opposite of what window_loop
1552 expects. */
1553 if (! FRAMEP (frame))
1554 frame = NILP (frame) ? Qt : Qnil;
1555#else
1556 frame = Qt;
1557#endif
1558
265a9e55 1559 if (!NILP (buffer))
7ab12479
JB
1560 {
1561 buffer = Fget_buffer (buffer);
1562 CHECK_BUFFER (buffer, 0);
26f6279d 1563 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
7ab12479
JB
1564 }
1565 return Qnil;
1566}
1567
1568DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
1569 Sreplace_buffer_in_windows,
1570 1, 1, "bReplace buffer in windows: ",
1571 "Replace BUFFER with some other buffer in all windows showing it.")
1572 (buffer)
1573 Lisp_Object buffer;
1574{
265a9e55 1575 if (!NILP (buffer))
7ab12479
JB
1576 {
1577 buffer = Fget_buffer (buffer);
1578 CHECK_BUFFER (buffer, 0);
1579 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
1580 }
1581 return Qnil;
1582}
1583\f
1584/* Set the height of WINDOW and all its inferiors. */
a481b3ea
JB
1585
1586/* The smallest acceptable dimensions for a window. Anything smaller
1587 might crash Emacs. */
1588#define MIN_SAFE_WINDOW_WIDTH (2)
1589#define MIN_SAFE_WINDOW_HEIGHT (2)
1590
1591/* Make sure that window_min_height and window_min_width are
1592 not too small; if they are, set them to safe minima. */
1593
1594static void
1595check_min_window_sizes ()
1596{
1597 /* Smaller values might permit a crash. */
1598 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
1599 window_min_width = MIN_SAFE_WINDOW_WIDTH;
1600 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
1601 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
1602}
1603
1604/* If *ROWS or *COLS are too small a size for FRAME, set them to the
1605 minimum allowable size. */
605be8af 1606void
a481b3ea 1607check_frame_size (frame, rows, cols)
605be8af
JB
1608 FRAME_PTR frame;
1609 int *rows, *cols;
a481b3ea 1610{
628df3bf
JB
1611 /* For height, we have to see:
1612 whether the frame has a minibuffer,
1613 whether it wants a mode line, and
1614 whether it has a menu bar. */
a481b3ea 1615 int min_height =
79f92720
JB
1616 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
1617 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
a481b3ea 1618 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
628df3bf
JB
1619 if (FRAME_MENU_BAR_LINES (frame) > 0)
1620 min_height += FRAME_MENU_BAR_LINES (frame);
a481b3ea
JB
1621
1622 if (*rows < min_height)
1623 *rows = min_height;
1624 if (*cols < MIN_SAFE_WINDOW_WIDTH)
1625 *cols = MIN_SAFE_WINDOW_WIDTH;
1626}
1627
7ab12479
JB
1628/* Normally the window is deleted if it gets too small.
1629 nodelete nonzero means do not do this.
1630 (The caller should check later and do so if appropriate) */
1631
1632set_window_height (window, height, nodelete)
1633 Lisp_Object window;
1634 int height;
1635 int nodelete;
1636{
1637 register struct window *w = XWINDOW (window);
1638 register struct window *c;
1639 int oheight = XFASTINT (w->height);
1640 int top, pos, lastbot, opos, lastobot;
1641 Lisp_Object child;
1642
a481b3ea
JB
1643 check_min_window_sizes ();
1644
7ab12479 1645 if (!nodelete
265a9e55 1646 && ! NILP (w->parent)
7ab12479
JB
1647 && height < window_min_height)
1648 {
1649 Fdelete_window (window);
1650 return;
1651 }
1652
d834a2e9 1653 XSETFASTINT (w->last_modified, 0);
7ab12479 1654 windows_or_buffers_changed++;
29aeee73
RS
1655 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
1656
d834a2e9 1657 XSETFASTINT (w->height, height);
265a9e55 1658 if (!NILP (w->hchild))
7ab12479 1659 {
265a9e55 1660 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1661 {
1662 XWINDOW (child)->top = w->top;
1663 set_window_height (child, height, nodelete);
1664 }
1665 }
265a9e55 1666 else if (!NILP (w->vchild))
7ab12479
JB
1667 {
1668 lastbot = top = XFASTINT (w->top);
1669 lastobot = 0;
265a9e55 1670 for (child = w->vchild; !NILP (child); child = c->next)
7ab12479
JB
1671 {
1672 c = XWINDOW (child);
1673
1674 opos = lastobot + XFASTINT (c->height);
1675
d834a2e9 1676 XSETFASTINT (c->top, lastbot);
7ab12479
JB
1677
1678 pos = (((opos * height) << 1) + oheight) / (oheight << 1);
1679
1680 /* Avoid confusion: inhibit deletion of child if becomes too small */
1681 set_window_height (child, pos + top - lastbot, 1);
1682
1683 /* Now advance child to next window,
1684 and set lastbot if child was not just deleted. */
1685 lastbot = pos + top;
1686 lastobot = opos;
1687 }
1688 /* Now delete any children that became too small. */
1689 if (!nodelete)
265a9e55 1690 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1691 {
1692 set_window_height (child, XINT (XWINDOW (child)->height), 0);
1693 }
1694 }
1695}
1696
1697/* Recursively set width of WINDOW and its inferiors. */
1698
1699set_window_width (window, width, nodelete)
1700 Lisp_Object window;
1701 int width;
1702 int nodelete;
1703{
1704 register struct window *w = XWINDOW (window);
1705 register struct window *c;
1706 int owidth = XFASTINT (w->width);
1707 int left, pos, lastright, opos, lastoright;
1708 Lisp_Object child;
1709
abdced83 1710 if (!nodelete && width < window_min_width && !NILP (w->parent))
7ab12479
JB
1711 {
1712 Fdelete_window (window);
1713 return;
1714 }
1715
d834a2e9 1716 XSETFASTINT (w->last_modified, 0);
7ab12479 1717 windows_or_buffers_changed++;
29aeee73
RS
1718 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
1719
d834a2e9 1720 XSETFASTINT (w->width, width);
265a9e55 1721 if (!NILP (w->vchild))
7ab12479 1722 {
265a9e55 1723 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1724 {
1725 XWINDOW (child)->left = w->left;
1726 set_window_width (child, width, nodelete);
1727 }
1728 }
265a9e55 1729 else if (!NILP (w->hchild))
7ab12479
JB
1730 {
1731 lastright = left = XFASTINT (w->left);
1732 lastoright = 0;
265a9e55 1733 for (child = w->hchild; !NILP (child); child = c->next)
7ab12479
JB
1734 {
1735 c = XWINDOW (child);
1736
1737 opos = lastoright + XFASTINT (c->width);
1738
d834a2e9 1739 XSETFASTINT (c->left, lastright);
7ab12479
JB
1740
1741 pos = (((opos * width) << 1) + owidth) / (owidth << 1);
1742
1743 /* Inhibit deletion for becoming too small */
1744 set_window_width (child, pos + left - lastright, 1);
1745
1746 /* Now advance child to next window,
1747 and set lastright if child was not just deleted. */
1748 lastright = pos + left, lastoright = opos;
1749 }
1750 /* Delete children that became too small */
1751 if (!nodelete)
265a9e55 1752 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
7ab12479
JB
1753 {
1754 set_window_width (child, XINT (XWINDOW (child)->width), 0);
1755 }
1756 }
1757}
1758\f
1d8d96fa 1759int window_select_count;
7ab12479
JB
1760
1761DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
1762 "Make WINDOW display BUFFER as its contents.\n\
1763BUFFER can be a buffer or buffer name.")
1764 (window, buffer)
1765 register Lisp_Object window, buffer;
1766{
1767 register Lisp_Object tem;
1768 register struct window *w = decode_window (window);
1769
1770 buffer = Fget_buffer (buffer);
1771 CHECK_BUFFER (buffer, 1);
1772
265a9e55 1773 if (NILP (XBUFFER (buffer)->name))
7ab12479
JB
1774 error ("Attempt to display deleted buffer");
1775
1776 tem = w->buffer;
265a9e55 1777 if (NILP (tem))
7ab12479
JB
1778 error ("Window is deleted");
1779 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
1780 is first being set up. */
1781 {
265a9e55 1782 if (!NILP (w->dedicated) && !EQ (tem, buffer))
3cf85532
RS
1783 error ("Window is dedicated to `%s'",
1784 XSTRING (XBUFFER (tem)->name)->data);
7ab12479
JB
1785
1786 unshow_buffer (w);
1787 }
1788
1789 w->buffer = buffer;
d834a2e9 1790 XSETFASTINT (w->window_end_pos, 0);
5a41ab94 1791 w->window_end_valid = Qnil;
d834a2e9 1792 XSETFASTINT(w->hscroll, 0);
7ab12479
JB
1793 Fset_marker (w->pointm,
1794 make_number (BUF_PT (XBUFFER (buffer))),
1795 buffer);
1796 set_marker_restricted (w->start,
1797 make_number (XBUFFER (buffer)->last_window_start),
1798 buffer);
1799 w->start_at_line_beg = Qnil;
e36ab06b 1800 w->force_start = Qnil;
d834a2e9 1801 XSETFASTINT (w->last_modified, 0);
7ab12479
JB
1802 windows_or_buffers_changed++;
1803 if (EQ (window, selected_window))
1804 Fset_buffer (buffer);
1805
1806 return Qnil;
1807}
1808
1809DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
1810 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
1811The main editor command loop selects the buffer of the selected window\n\
1812before each command.")
1813 (window)
1814 register Lisp_Object window;
1815{
1816 register struct window *w;
1817 register struct window *ow = XWINDOW (selected_window);
1818
605be8af 1819 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
1820
1821 w = XWINDOW (window);
1822
265a9e55 1823 if (NILP (w->buffer))
7ab12479
JB
1824 error ("Trying to select deleted window or non-leaf window");
1825
d834a2e9 1826 XSETFASTINT (w->use_time, ++window_select_count);
7ab12479
JB
1827 if (EQ (window, selected_window))
1828 return window;
1829
1830 Fset_marker (ow->pointm, make_number (BUF_PT (XBUFFER (ow->buffer))),
1831 ow->buffer);
1832
1833 selected_window = window;
44fa5b1e
JB
1834#ifdef MULTI_FRAME
1835 if (XFRAME (WINDOW_FRAME (w)) != selected_frame)
7ab12479 1836 {
44fa5b1e 1837 XFRAME (WINDOW_FRAME (w))->selected_window = window;
147a6615
RS
1838 /* Use this rather than Fhandle_switch_frame
1839 so that FRAME_FOCUS_FRAME is moved appropriately as we
1840 move around in the state where a minibuffer in a separate
1841 frame is active. */
1842 Fselect_frame (WINDOW_FRAME (w), Qnil);
7ab12479
JB
1843 }
1844 else
44fa5b1e 1845 selected_frame->selected_window = window;
7ab12479
JB
1846#endif
1847
1848 record_buffer (w->buffer);
1849 Fset_buffer (w->buffer);
1850
1851 /* Go to the point recorded in the window.
1852 This is important when the buffer is in more
1853 than one window. It also matters when
1854 redisplay_window has altered point after scrolling,
1855 because it makes the change only in the window. */
1856 {
1857 register int new_point = marker_position (w->pointm);
1858 if (new_point < BEGV)
1859 SET_PT (BEGV);
a9c95e08 1860 else if (new_point > ZV)
7ab12479
JB
1861 SET_PT (ZV);
1862 else
1863 SET_PT (new_point);
1864 }
1865
1866 windows_or_buffers_changed++;
1867 return window;
1868}
1869
35aaf00c 1870DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2,
869e65bb 1871 "bDisplay buffer: \nP",
7ab12479
JB
1872 "Make BUFFER appear in some window but don't select it.\n\
1873BUFFER can be a buffer or a buffer name.\n\
1874If BUFFER is shown already in some window, just use that one,\n\
1875unless the window is the selected window and the optional second\n\
46d3268a 1876argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
5141b901 1877If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
7ab12479
JB
1878Returns the window displaying BUFFER.")
1879 (buffer, not_this_window)
1880 register Lisp_Object buffer, not_this_window;
1881{
a90712c2 1882 register Lisp_Object window, tem;
7ab12479
JB
1883
1884 buffer = Fget_buffer (buffer);
1885 CHECK_BUFFER (buffer, 0);
1886
265a9e55 1887 if (!NILP (Vdisplay_buffer_function))
7ab12479
JB
1888 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
1889
265a9e55 1890 if (NILP (not_this_window)
7ab12479
JB
1891 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
1892 return selected_window;
1893
855d8627
RS
1894 /* See if the user has specified this buffer should appear
1895 in the selected window. */
1896 if (NILP (not_this_window))
1897 {
1898 tem = Fmember (XBUFFER (buffer)->name, Vsame_window_buffer_names);
1899 if (!NILP (tem))
c63dc4a2
RS
1900 {
1901 Fswitch_to_buffer (buffer, Qnil);
1902 return selected_window;
1903 }
855d8627
RS
1904
1905 tem = Fassoc (XBUFFER (buffer)->name, Vsame_window_buffer_names);
1906 if (!NILP (tem))
c63dc4a2
RS
1907 {
1908 Fswitch_to_buffer (buffer, Qnil);
1909 return selected_window;
1910 }
855d8627
RS
1911
1912 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCONS (tem)->cdr)
1913 {
1914 Lisp_Object car = XCONS (tem)->car;
1915 if (STRINGP (car)
1916 && fast_string_match (car, XBUFFER (buffer)->name) >= 0)
c63dc4a2
RS
1917 {
1918 Fswitch_to_buffer (buffer, Qnil);
1919 return selected_window;
1920 }
855d8627
RS
1921 else if (CONSP (car)
1922 && STRINGP (XCONS (car)->car)
1923 && fast_string_match (XCONS (car)->car,
1924 XBUFFER (buffer)->name) >= 0)
c63dc4a2
RS
1925 {
1926 Fswitch_to_buffer (buffer, Qnil);
1927 return selected_window;
1928 }
855d8627
RS
1929 }
1930 }
1931
c6e73093 1932#ifdef MULTI_FRAME
e8edb3ae 1933 /* If pop_up_frames,
73dc5198
KH
1934 look for a window showing BUFFER on any visible or iconified frame.
1935 Otherwise search only the current frame. */
1936 if (pop_up_frames || last_nonminibuf_frame == 0)
1937 XSETFASTINT (tem, 0);
1938 else
c6e73093 1939#endif
73dc5198
KH
1940 XSETFRAME (tem, last_nonminibuf_frame);
1941 window = Fget_buffer_window (buffer, tem);
265a9e55
JB
1942 if (!NILP (window)
1943 && (NILP (not_this_window) || !EQ (window, selected_window)))
f812f9c6 1944 {
7cab5d2c 1945#ifdef MULTI_FRAME
f812f9c6
RS
1946 if (FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (window)))))
1947 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
7cab5d2c 1948#endif
f812f9c6
RS
1949 return window;
1950 }
7ab12479 1951
a90712c2
RS
1952 /* Certain buffer names get special handling. */
1953 if (! NILP (Vspecial_display_function))
1954 {
1955 tem = Fmember (XBUFFER (buffer)->name, Vspecial_display_buffer_names);
1956 if (!NILP (tem))
1957 return call1 (Vspecial_display_function, buffer);
1958
0a952b57
RS
1959 tem = Fassoc (XBUFFER (buffer)->name, Vspecial_display_buffer_names);
1960 if (!NILP (tem))
1961 return call2 (Vspecial_display_function, buffer, XCONS (tem)->cdr);
1962
a90712c2 1963 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCONS (tem)->cdr)
0a952b57
RS
1964 {
1965 Lisp_Object car = XCONS (tem)->car;
1966 if (STRINGP (car)
1967 && fast_string_match (car, XBUFFER (buffer)->name) >= 0)
1968 return call1 (Vspecial_display_function, buffer);
1969 else if (CONSP (car)
1970 && STRINGP (XCONS (car)->car)
1971 && fast_string_match (XCONS (car)->car,
1972 XBUFFER (buffer)->name) >= 0)
1973 return call2 (Vspecial_display_function,
1974 buffer,
1975 XCONS (car)->cdr);
1976 }
a90712c2
RS
1977 }
1978
44fa5b1e
JB
1979#ifdef MULTI_FRAME
1980 /* If there are no frames open that have more than a minibuffer,
1981 we need to create a new frame. */
1982 if (pop_up_frames || last_nonminibuf_frame == 0)
7ab12479 1983 {
a90712c2 1984 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
7ab12479 1985 Fset_window_buffer (window, buffer);
7ab12479
JB
1986 return window;
1987 }
44fa5b1e 1988#endif /* MULTI_FRAME */
7ab12479 1989
43bad991 1990 if (pop_up_windows
44fa5b1e
JB
1991#ifdef MULTI_FRAME
1992 || FRAME_MINIBUF_ONLY_P (selected_frame)
cee67da9
RS
1993 /* If the current frame is a special display frame,
1994 don't try to reuse its windows. */
1995 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->dedicated)
43bad991
JB
1996#endif
1997 )
7ab12479 1998 {
12cae7c0
KH
1999 Lisp_Object frames;
2000
2001 frames = Qnil;
44fa5b1e
JB
2002#ifdef MULTI_FRAME
2003 if (FRAME_MINIBUF_ONLY_P (selected_frame))
74112613 2004 XSETFRAME (frames, last_nonminibuf_frame);
7ab12479
JB
2005#endif
2006 /* Don't try to create a window if would get an error */
2007 if (split_height_threshold < window_min_height << 1)
2008 split_height_threshold = window_min_height << 1;
2009
cee67da9
RS
2010 /* Note that both Fget_largest_window and Fget_lru_window
2011 ignore minibuffers and dedicated windows.
2012 This means they can return nil. */
7ab12479 2013
9f7a8b5d 2014#ifdef MULTI_FRAME
cee67da9
RS
2015 /* If the frame we would try to split cannot be split,
2016 try other frames. */
2017 if (FRAME_NO_SPLIT_P (NILP (frames) ? selected_frame
2018 : last_nonminibuf_frame))
2019 {
2020 /* Try visible frames first. */
2021 window = Fget_largest_window (Qvisible);
2022 /* If that didn't work, try iconified frames. */
2023 if (NILP (window))
2024 window = Fget_largest_window (make_number (0));
2025 if (NILP (window))
2026 window = Fget_largest_window (Qt);
2027 }
2028 else
9f7a8b5d 2029#endif
cee67da9
RS
2030 window = Fget_largest_window (frames);
2031
92cca945
RS
2032 /* If we got a tall enough full-width window that can be split,
2033 split it. */
265a9e55 2034 if (!NILP (window)
92cca945 2035 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
7ab12479 2036 && window_height (window) >= split_height_threshold
535e0b8e
JB
2037 && (XFASTINT (XWINDOW (window)->width)
2038 == FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (window))))))
7ab12479
JB
2039 window = Fsplit_window (window, Qnil, Qnil);
2040 else
2041 {
1942f68f
RS
2042 Lisp_Object upper, lower, other;
2043
44fa5b1e 2044 window = Fget_lru_window (frames);
92cca945
RS
2045 /* If the LRU window is selected, and big enough,
2046 and can be split, split it. */
cee67da9 2047 if (!NILP (window)
92cca945 2048 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
cee67da9
RS
2049 && (EQ (window, selected_window)
2050 || EQ (XWINDOW (window)->parent, Qnil))
7ab12479
JB
2051 && window_height (window) >= window_min_height << 1)
2052 window = Fsplit_window (window, Qnil, Qnil);
cee67da9
RS
2053#ifdef MULTI_FRAME
2054 /* If Fget_lru_window returned nil, try other approaches. */
2055 /* Try visible frames first. */
2056 if (NILP (window))
2057 window = Fget_largest_window (Qvisible);
2058 /* If that didn't work, try iconified frames. */
2059 if (NILP (window))
2060 window = Fget_largest_window (make_number (0));
2061 /* Try invisible frames. */
2062 if (NILP (window))
2063 window = Fget_largest_window (Qt);
2064 /* As a last resort, make a new frame. */
2065 if (NILP (window))
2066 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
2067#else
2068 /* As a last resort, use a non minibuffer window. */
2069 if (NILP (window))
2070 window = Fframe_first_window (Fselected_frame ());
2071#endif
1942f68f
RS
2072 /* If window appears above or below another,
2073 even out their heights. */
cac66e4f 2074 other = upper = lower = Qnil;
1942f68f
RS
2075 if (!NILP (XWINDOW (window)->prev))
2076 other = upper = XWINDOW (window)->prev, lower = window;
2077 if (!NILP (XWINDOW (window)->next))
2078 other = lower = XWINDOW (window)->next, upper = window;
2079 if (!NILP (other)
2080 /* Check that OTHER and WINDOW are vertically arrayed. */
2081 && XWINDOW (other)->top != XWINDOW (window)->top
2082 && XWINDOW (other)->height > XWINDOW (window)->height)
2083 {
2084 int total = XWINDOW (other)->height + XWINDOW (window)->height;
8d77c0c8
KH
2085 Lisp_Object old_selected_window;
2086 old_selected_window = selected_window;
1942f68f 2087
8d77c0c8 2088 selected_window = upper;
1942f68f
RS
2089 change_window_height (total / 2 - XWINDOW (upper)->height, 0);
2090 selected_window = old_selected_window;
2091 }
7ab12479
JB
2092 }
2093 }
2094 else
2095 window = Fget_lru_window (Qnil);
2096
2097 Fset_window_buffer (window, buffer);
2098 return window;
2099}
2100
2101void
2102temp_output_buffer_show (buf)
2103 register Lisp_Object buf;
2104{
2105 register struct buffer *old = current_buffer;
2106 register Lisp_Object window;
2107 register struct window *w;
2108
2109 Fset_buffer (buf);
c6367666 2110 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
7ab12479
JB
2111 BEGV = BEG;
2112 ZV = Z;
2113 SET_PT (BEG);
1479ef51 2114 XBUFFER (buf)->clip_changed = 1;
7ab12479
JB
2115 set_buffer_internal (old);
2116
2117 if (!EQ (Vtemp_buffer_show_function, Qnil))
2118 call1 (Vtemp_buffer_show_function, buf);
2119 else
2120 {
2121 window = Fdisplay_buffer (buf, Qnil);
2122
44fa5b1e
JB
2123#ifdef MULTI_FRAME
2124 if (XFRAME (XWINDOW (window)->frame) != selected_frame)
2125 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
2126#endif /* MULTI_FRAME */
7ab12479
JB
2127 Vminibuf_scroll_window = window;
2128 w = XWINDOW (window);
d834a2e9 2129 XSETFASTINT (w->hscroll, 0);
7ab12479
JB
2130 set_marker_restricted (w->start, make_number (1), buf);
2131 set_marker_restricted (w->pointm, make_number (1), buf);
a58ec57d 2132
f52cca03
RS
2133 /* Run temp-buffer-show-hook, with the chosen window selected. */
2134 if (!NILP (Vrun_hooks))
2cccc823 2135 {
f52cca03
RS
2136 Lisp_Object tem;
2137 tem = Fboundp (Qtemp_buffer_show_hook);
2cccc823
RS
2138 if (!NILP (tem))
2139 {
f52cca03
RS
2140 tem = Fsymbol_value (Qtemp_buffer_show_hook);
2141 if (!NILP (tem))
2142 {
2143 int count = specpdl_ptr - specpdl;
2cccc823 2144
f52cca03
RS
2145 /* Select the window that was chosen, for running the hook. */
2146 record_unwind_protect (Fset_window_configuration,
2147 Fcurrent_window_configuration (Qnil));
2cccc823 2148
f52cca03
RS
2149 Fselect_window (window);
2150 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
2151 unbind_to (count, Qnil);
2152 }
2cccc823
RS
2153 }
2154 }
2155 }
7ab12479
JB
2156}
2157\f
2158static
2159make_dummy_parent (window)
2160 Lisp_Object window;
2161{
cffec418 2162 Lisp_Object new;
7ab12479 2163 register struct window *o, *p;
cffec418
KH
2164 register struct Lisp_Vector *vec;
2165 int i;
7ab12479 2166
cffec418
KH
2167 o = XWINDOW (window);
2168 vec = allocate_vectorlike ((EMACS_INT)VECSIZE (struct window));
2169 for (i = 0; i < VECSIZE (struct window); ++i)
2170 vec->contents[i] = ((struct Lisp_Vector *)o)->contents[i];
2171 vec->size = VECSIZE (struct window);
2172 p = (struct window *)vec;
2173 XSETWINDOW (new, p);
7ab12479 2174
d834a2e9 2175 XSETFASTINT (p->sequence_number, ++sequence_number);
7ab12479
JB
2176
2177 /* Put new into window structure in place of window */
2178 replace_window (window, new);
2179
2180 o->next = Qnil;
2181 o->prev = Qnil;
2182 o->vchild = Qnil;
2183 o->hchild = Qnil;
2184 o->parent = new;
2185
2186 p->start = Qnil;
2187 p->pointm = Qnil;
2188 p->buffer = Qnil;
2189}
2190
2191DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
2192 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
2193WINDOW defaults to selected one and SIZE to half its size.\n\
2194If optional third arg HOR-FLAG is non-nil, split side by side\n\
2195and put SIZE columns in the first of the pair.")
2196 (window, chsize, horflag)
2197 Lisp_Object window, chsize, horflag;
2198{
2199 register Lisp_Object new;
2200 register struct window *o, *p;
2201 register int size;
2202
265a9e55 2203 if (NILP (window))
7ab12479
JB
2204 window = selected_window;
2205 else
605be8af 2206 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
2207
2208 o = XWINDOW (window);
2209
265a9e55 2210 if (NILP (chsize))
7ab12479 2211 {
265a9e55 2212 if (!NILP (horflag))
7ab12479
JB
2213 /* Round odd size up, since this is for the left-hand window,
2214 and it will lose a column for the separators. */
2215 size = ((XFASTINT (o->width) + 1) & -2) >> 1;
2216 else
2217 size = XFASTINT (o->height) >> 1;
2218 }
2219 else
2220 {
2221 CHECK_NUMBER (chsize, 1);
2222 size = XINT (chsize);
2223 }
2224
2225 if (MINI_WINDOW_P (o))
2226 error ("Attempt to split minibuffer window");
44fa5b1e
JB
2227 else if (FRAME_NO_SPLIT_P (XFRAME (WINDOW_FRAME (o))))
2228 error ("Attempt to split unsplittable frame");
7ab12479 2229
a481b3ea 2230 check_min_window_sizes ();
7ab12479 2231
265a9e55 2232 if (NILP (horflag))
7ab12479 2233 {
3d22c388
RS
2234 if (size < window_min_height)
2235 error ("Window height %d too small (after splitting)", size);
2236 if (size + window_min_height > XFASTINT (o->height))
2237 error ("Window height %d too small (after splitting)",
2238 XFASTINT (o->height) - size);
265a9e55
JB
2239 if (NILP (o->parent)
2240 || NILP (XWINDOW (o->parent)->vchild))
7ab12479
JB
2241 {
2242 make_dummy_parent (window);
2243 new = o->parent;
2244 XWINDOW (new)->vchild = window;
2245 }
2246 }
2247 else
2248 {
3d22c388
RS
2249 if (size < window_min_width)
2250 error ("Window width %d too small (after splitting)", size);
2251 if (size + window_min_width > XFASTINT (o->width))
2252 error ("Window width %d too small (after splitting)",
2253 XFASTINT (o->width) - size);
265a9e55
JB
2254 if (NILP (o->parent)
2255 || NILP (XWINDOW (o->parent)->hchild))
7ab12479
JB
2256 {
2257 make_dummy_parent (window);
2258 new = o->parent;
2259 XWINDOW (new)->hchild = window;
2260 }
2261 }
2262
2263 /* Now we know that window's parent is a vertical combination
2264 if we are dividing vertically, or a horizontal combination
2265 if we are making side-by-side windows */
2266
2267 windows_or_buffers_changed++;
29aeee73 2268 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (o))) = 1;
7ab12479
JB
2269 new = make_window ();
2270 p = XWINDOW (new);
2271
44fa5b1e 2272 p->frame = o->frame;
7ab12479 2273 p->next = o->next;
265a9e55 2274 if (!NILP (p->next))
7ab12479
JB
2275 XWINDOW (p->next)->prev = new;
2276 p->prev = window;
2277 o->next = new;
2278 p->parent = o->parent;
2279 p->buffer = Qt;
2280
2281 Fset_window_buffer (new, o->buffer);
2282
44fa5b1e 2283 /* Apportion the available frame space among the two new windows */
7ab12479 2284
265a9e55 2285 if (!NILP (horflag))
7ab12479
JB
2286 {
2287 p->height = o->height;
2288 p->top = o->top;
d834a2e9
KH
2289 XSETFASTINT (p->width, XFASTINT (o->width) - size);
2290 XSETFASTINT (o->width, size);
2291 XSETFASTINT (p->left, XFASTINT (o->left) + size);
7ab12479
JB
2292 }
2293 else
2294 {
2295 p->left = o->left;
2296 p->width = o->width;
d834a2e9
KH
2297 XSETFASTINT (p->height, XFASTINT (o->height) - size);
2298 XSETFASTINT (o->height, size);
2299 XSETFASTINT (p->top, XFASTINT (o->top) + size);
7ab12479
JB
2300 }
2301
2302 return new;
2303}
2304\f
2305DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
2306 "Make current window ARG lines bigger.\n\
2307From program, optional second arg non-nil means grow sideways ARG columns.")
2308 (n, side)
2309 register Lisp_Object n, side;
2310{
2311 CHECK_NUMBER (n, 0);
265a9e55 2312 change_window_height (XINT (n), !NILP (side));
7ab12479
JB
2313 return Qnil;
2314}
2315
2316DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
2317 "Make current window ARG lines smaller.\n\
2318From program, optional second arg non-nil means shrink sideways ARG columns.")
2319 (n, side)
2320 register Lisp_Object n, side;
2321{
2322 CHECK_NUMBER (n, 0);
265a9e55 2323 change_window_height (-XINT (n), !NILP (side));
7ab12479
JB
2324 return Qnil;
2325}
2326
2327int
2328window_height (window)
2329 Lisp_Object window;
2330{
2331 register struct window *p = XWINDOW (window);
2332 return XFASTINT (p->height);
2333}
2334
2335int
2336window_width (window)
2337 Lisp_Object window;
2338{
2339 register struct window *p = XWINDOW (window);
2340 return XFASTINT (p->width);
2341}
2342
05c2896a
JB
2343#define MINSIZE(w) \
2344 (widthflag \
2345 ? window_min_width \
2346 : (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height))
7ab12479
JB
2347
2348#define CURBEG(w) \
05c2896a 2349 *(widthflag ? (int *) &(XWINDOW (w)->left) : (int *) &(XWINDOW (w)->top))
7ab12479
JB
2350
2351#define CURSIZE(w) \
05c2896a 2352 *(widthflag ? (int *) &(XWINDOW (w)->width) : (int *) &(XWINDOW (w)->height))
7ab12479
JB
2353
2354/* Unlike set_window_height, this function
2355 also changes the heights of the siblings so as to
2356 keep everything consistent. */
2357
2358change_window_height (delta, widthflag)
2359 register int delta;
2360 int widthflag;
2361{
2362 register Lisp_Object parent;
2363 Lisp_Object window;
2364 register struct window *p;
2365 int *sizep;
2366 int (*sizefun) () = widthflag ? window_width : window_height;
2367 register int (*setsizefun) () = (widthflag
2368 ? set_window_width
2369 : set_window_height);
2370
a481b3ea 2371 check_min_window_sizes ();
7ab12479
JB
2372
2373 window = selected_window;
2374 while (1)
2375 {
2376 p = XWINDOW (window);
2377 parent = p->parent;
265a9e55 2378 if (NILP (parent))
7ab12479
JB
2379 {
2380 if (widthflag)
2381 error ("No other window to side of this one");
2382 break;
2383 }
265a9e55
JB
2384 if (widthflag ? !NILP (XWINDOW (parent)->hchild)
2385 : !NILP (XWINDOW (parent)->vchild))
7ab12479
JB
2386 break;
2387 window = parent;
2388 }
2389
05c2896a 2390 sizep = &CURSIZE (window);
7ab12479 2391
7ab12479
JB
2392 {
2393 register int maxdelta;
7ab12479 2394
265a9e55
JB
2395 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - *sizep
2396 : !NILP (p->next) ? (*sizefun) (p->next) - MINSIZE (p->next)
2397 : !NILP (p->prev) ? (*sizefun) (p->prev) - MINSIZE (p->prev)
44fa5b1e
JB
2398 /* This is a frame with only one window, a minibuffer-only
2399 or a minibufferless frame. */
d5783c40 2400 : (delta = 0));
7ab12479
JB
2401
2402 if (delta > maxdelta)
2403 /* This case traps trying to make the minibuffer
44fa5b1e
JB
2404 the full frame, or make the only window aside from the
2405 minibuffer the full frame. */
7ab12479 2406 delta = maxdelta;
6b54027b 2407 }
d5783c40 2408
6b54027b
RS
2409 if (*sizep + delta < MINSIZE (window))
2410 {
2411 Fdelete_window (window);
d5783c40 2412 return;
6b54027b
RS
2413 }
2414
2415 if (delta == 0)
2416 return;
7ab12479 2417
6b54027b
RS
2418 if (!NILP (p->next)
2419 && (*sizefun) (p->next) - delta >= MINSIZE (p->next))
7ab12479
JB
2420 {
2421 (*setsizefun) (p->next, (*sizefun) (p->next) - delta, 0);
2422 (*setsizefun) (window, *sizep + delta, 0);
05c2896a 2423 CURBEG (p->next) += delta;
7ab12479
JB
2424 /* This does not change size of p->next,
2425 but it propagates the new top edge to its children */
2426 (*setsizefun) (p->next, (*sizefun) (p->next), 0);
2427 }
6b54027b
RS
2428 else if (!NILP (p->prev)
2429 && (*sizefun) (p->prev) - delta >= MINSIZE (p->prev))
7ab12479
JB
2430 {
2431 (*setsizefun) (p->prev, (*sizefun) (p->prev) - delta, 0);
05c2896a 2432 CURBEG (window) -= delta;
7ab12479
JB
2433 (*setsizefun) (window, *sizep + delta, 0);
2434 }
2435 else
2436 {
2437 register int delta1;
2438 register int opht = (*sizefun) (parent);
2439
2440 /* If trying to grow this window to or beyond size of the parent,
2441 make delta1 so big that, on shrinking back down,
2442 all the siblings end up with less than one line and are deleted. */
2443 if (opht <= *sizep + delta)
2444 delta1 = opht * opht * 2;
2445 /* Otherwise, make delta1 just right so that if we add delta1
2446 lines to this window and to the parent, and then shrink
2447 the parent back to its original size, the new proportional
2448 size of this window will increase by delta. */
2449 else
2450 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100);
2451
2452 /* Add delta1 lines or columns to this window, and to the parent,
2453 keeping things consistent while not affecting siblings. */
05c2896a 2454 CURSIZE (parent) = opht + delta1;
7ab12479
JB
2455 (*setsizefun) (window, *sizep + delta1, 0);
2456
2457 /* Squeeze out delta1 lines or columns from our parent,
2458 shriking this window and siblings proportionately.
2459 This brings parent back to correct size.
2460 Delta1 was calculated so this makes this window the desired size,
2461 taking it all out of the siblings. */
2462 (*setsizefun) (parent, opht, 0);
2463 }
2464
d834a2e9 2465 XSETFASTINT (p->last_modified, 0);
7ab12479
JB
2466}
2467#undef MINSIZE
2468#undef CURBEG
2469#undef CURSIZE
2470
2471\f
2472/* Return number of lines of text (not counting mode line) in W. */
2473
2474int
2475window_internal_height (w)
2476 struct window *w;
2477{
2478 int ht = XFASTINT (w->height);
2479
2480 if (MINI_WINDOW_P (w))
2481 return ht;
2482
265a9e55
JB
2483 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
2484 || !NILP (w->next) || !NILP (w->prev)
44fa5b1e 2485 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
7ab12479
JB
2486 return ht - 1;
2487
2488 return ht;
2489}
2490
535e0b8e
JB
2491
2492/* Return the number of columns in W.
a3c87d4e 2493 Don't count columns occupied by scroll bars or the vertical bar
535e0b8e
JB
2494 separating W from the sibling to its right. */
2495int
2496window_internal_width (w)
2497 struct window *w;
2498{
2499 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2500 int left = XINT (w->left);
2501 int width = XINT (w->width);
2502
2503 /* If this window is flush against the right edge of the frame, its
2504 internal width is its full width. */
2505 if (left + width >= FRAME_WIDTH (f))
2506 return width;
2507
2508 /* If we are not flush right, then our rightmost columns are
2509 occupied by some sort of separator. */
2510
a3c87d4e
JB
2511 /* Scroll bars occupy a few columns. */
2512 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
ca0d0bb9 2513 return width - FRAME_SCROLL_BAR_COLS (f);
535e0b8e
JB
2514
2515 /* The column of `|' characters separating side-by-side windows
2516 occupies one column only. */
2517 return width - 1;
2518}
2519
2520
7ab12479
JB
2521/* Scroll contents of window WINDOW up N lines. */
2522
2523void
f8026fd8 2524window_scroll (window, n, noerror)
7ab12479
JB
2525 Lisp_Object window;
2526 int n;
f8026fd8 2527 int noerror;
7ab12479
JB
2528{
2529 register struct window *w = XWINDOW (window);
5ce7b543 2530 register int opoint = PT;
7ab12479
JB
2531 register int pos;
2532 register int ht = window_internal_height (w);
2533 register Lisp_Object tem;
2534 int lose;
2535 Lisp_Object bolp, nmoved;
2536
d834a2e9 2537 XSETFASTINT (tem, PT);
7ab12479
JB
2538 tem = Fpos_visible_in_window_p (tem, window);
2539
265a9e55 2540 if (NILP (tem))
7ab12479 2541 {
cd2be1dd 2542 Fvertical_motion (make_number (- (ht / 2)), window);
d834a2e9 2543 XSETFASTINT (tem, PT);
7ab12479
JB
2544 Fset_marker (w->start, tem, w->buffer);
2545 w->force_start = Qt;
2546 }
2547
2548 SET_PT (marker_position (w->start));
5ce7b543 2549 lose = n < 0 && PT == BEGV;
540b6aa0 2550 Fvertical_motion (make_number (n), window);
5ce7b543 2551 pos = PT;
7ab12479
JB
2552 bolp = Fbolp ();
2553 SET_PT (opoint);
2554
2555 if (lose)
f8026fd8
JB
2556 {
2557 if (noerror)
2558 return;
2559 else
2560 Fsignal (Qbeginning_of_buffer, Qnil);
2561 }
7ab12479
JB
2562
2563 if (pos < ZV)
7ab12479
JB
2564 {
2565 set_marker_restricted (w->start, make_number (pos), w->buffer);
2566 w->start_at_line_beg = bolp;
2567 w->update_mode_line = Qt;
d834a2e9 2568 XSETFASTINT (w->last_modified, 0);
7ab12479
JB
2569 if (pos > opoint)
2570 SET_PT (pos);
2571 if (n < 0)
2572 {
2573 SET_PT (pos);
540b6aa0 2574 tem = Fvertical_motion (make_number (ht), window);
5ce7b543 2575 if (PT > opoint || XFASTINT (tem) < ht)
7ab12479
JB
2576 SET_PT (opoint);
2577 else
540b6aa0 2578 Fvertical_motion (make_number (-1), window);
7ab12479
JB
2579 }
2580 }
2581 else
f8026fd8
JB
2582 {
2583 if (noerror)
2584 return;
2585 else
2586 Fsignal (Qend_of_buffer, Qnil);
2587 }
7ab12479
JB
2588}
2589\f
2590/* This is the guts of Fscroll_up and Fscroll_down. */
2591
2592static void
2593scroll_command (n, direction)
2594 register Lisp_Object n;
2595 int direction;
2596{
2597 register int defalt;
2598 int count = specpdl_ptr - specpdl;
2599
95605e15
JB
2600 /* If selected window's buffer isn't current, make it current for the moment.
2601 But don't screw up if window_scroll gets an error. */
7ab12479 2602 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
95605e15
JB
2603 {
2604 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2605 Fset_buffer (XWINDOW (selected_window)->buffer);
2606 }
7ab12479
JB
2607
2608 defalt = (window_internal_height (XWINDOW (selected_window))
2609 - next_screen_context_lines);
2610 defalt = direction * (defalt < 1 ? 1 : defalt);
2611
265a9e55 2612 if (NILP (n))
f8026fd8 2613 window_scroll (selected_window, defalt, 0);
7ab12479 2614 else if (EQ (n, Qminus))
f8026fd8 2615 window_scroll (selected_window, - defalt, 0);
7ab12479
JB
2616 else
2617 {
2618 n = Fprefix_numeric_value (n);
f8026fd8 2619 window_scroll (selected_window, XINT (n) * direction, 0);
7ab12479 2620 }
95605e15
JB
2621
2622 unbind_to (count, Qnil);
7ab12479
JB
2623}
2624
2625DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
2626 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
2627A near full screen is `next-screen-context-lines' less than a full screen.\n\
279e0e0c 2628Negative ARG means scroll downward.\n\
7ab12479
JB
2629When calling from a program, supply a number as argument or nil.")
2630 (n)
2631 Lisp_Object n;
2632{
2633 scroll_command (n, 1);
2634 return Qnil;
2635}
2636
2637DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
2638 "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\
2639A near full screen is `next-screen-context-lines' less than a full screen.\n\
279e0e0c 2640Negative ARG means scroll upward.\n\
7ab12479
JB
2641When calling from a program, supply a number as argument or nil.")
2642 (n)
2643 Lisp_Object n;
2644{
2645 scroll_command (n, -1);
2646 return Qnil;
2647}
ccd0664b
RS
2648\f
2649DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
2650 "Return the other window for \"other window scroll\" commands.\n\
77b24de6 2651If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
ccd0664b
RS
2652specifies the window.\n\
2653If `other-window-scroll-buffer' is non-nil, a window\n\
2654showing that buffer is used.")
eb16ec06 2655 ()
7ab12479 2656{
ccd0664b 2657 Lisp_Object window;
7ab12479
JB
2658
2659 if (MINI_WINDOW_P (XWINDOW (selected_window))
265a9e55 2660 && !NILP (Vminibuf_scroll_window))
7ab12479
JB
2661 window = Vminibuf_scroll_window;
2662 /* If buffer is specified, scroll that buffer. */
265a9e55 2663 else if (!NILP (Vother_window_scroll_buffer))
7ab12479
JB
2664 {
2665 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
265a9e55 2666 if (NILP (window))
7ab12479
JB
2667 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt);
2668 }
2669 else
dbc4e1c1
JB
2670 {
2671 /* Nothing specified; look for a neighboring window on the same
2672 frame. */
2673 window = Fnext_window (selected_window, Qnil, Qnil);
2674
2675 if (EQ (window, selected_window))
2676 /* That didn't get us anywhere; look for a window on another
2677 visible frame. */
2678 do
2679 window = Fnext_window (window, Qnil, Qt);
2680 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
2681 && ! EQ (window, selected_window));
2682 }
2683
605be8af 2684 CHECK_LIVE_WINDOW (window, 0);
7ab12479
JB
2685
2686 if (EQ (window, selected_window))
2687 error ("There is no other window");
2688
ccd0664b
RS
2689 return window;
2690}
2691
2692DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
2693 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
2694The next window is the one below the current one; or the one at the top\n\
2695if the current one is at the bottom. Negative ARG means scroll downward.\n\
2696When calling from a program, supply a number as argument or nil.\n\
2697\n\
2698If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
2699specifies the window to scroll.\n\
2700If `other-window-scroll-buffer' is non-nil, scroll the window\n\
2701showing that buffer, popping the buffer up if necessary.")
2702 (n)
2703 register Lisp_Object n;
2704{
2705 register Lisp_Object window;
2f787aa3 2706 register int defalt;
ccd0664b
RS
2707 register struct window *w;
2708 register int count = specpdl_ptr - specpdl;
2709
2710 window = Fother_window_for_scrolling ();
2711
7ab12479 2712 w = XWINDOW (window);
2f787aa3
KH
2713 defalt = window_internal_height (w) - next_screen_context_lines;
2714 if (defalt < 1) defalt = 1;
7ab12479
JB
2715
2716 /* Don't screw up if window_scroll gets an error. */
2717 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2718
2719 Fset_buffer (w->buffer);
2720 SET_PT (marker_position (w->pointm));
2721
265a9e55 2722 if (NILP (n))
2f787aa3 2723 window_scroll (window, defalt, 1);
7ab12479 2724 else if (EQ (n, Qminus))
2f787aa3 2725 window_scroll (window, -defalt, 1);
7ab12479
JB
2726 else
2727 {
017b2bad 2728 if (CONSP (n))
7ab12479
JB
2729 n = Fcar (n);
2730 CHECK_NUMBER (n, 0);
f8026fd8 2731 window_scroll (window, XINT (n), 1);
7ab12479
JB
2732 }
2733
5ce7b543 2734 Fset_marker (w->pointm, make_number (PT), Qnil);
f4e7b2c2 2735 unbind_to (count, Qnil);
7ab12479
JB
2736
2737 return Qnil;
2738}
2739\f
644b477c 2740DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
7ab12479
JB
2741 "Scroll selected window display ARG columns left.\n\
2742Default for ARG is window width minus 2.")
2743 (arg)
2744 register Lisp_Object arg;
2745{
2746
265a9e55 2747 if (NILP (arg))
d834a2e9 2748 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
7ab12479
JB
2749 else
2750 arg = Fprefix_numeric_value (arg);
2751
2752 return
2753 Fset_window_hscroll (selected_window,
2754 make_number (XINT (XWINDOW (selected_window)->hscroll)
2755 + XINT (arg)));
2756}
2757
644b477c 2758DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
7ab12479
JB
2759 "Scroll selected window display ARG columns right.\n\
2760Default for ARG is window width minus 2.")
2761 (arg)
2762 register Lisp_Object arg;
2763{
265a9e55 2764 if (NILP (arg))
d834a2e9 2765 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
7ab12479
JB
2766 else
2767 arg = Fprefix_numeric_value (arg);
2768
2769 return
2770 Fset_window_hscroll (selected_window,
2771 make_number (XINT (XWINDOW (selected_window)->hscroll)
2772 - XINT (arg)));
2773}
2774
2775DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
44fa5b1e 2776 "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\
7ab12479 2777The desired position of point is always relative to the current window.\n\
44fa5b1e
JB
2778Just C-u as prefix means put point in the center of the window.\n\
2779No arg (i.e., it is nil) erases the entire frame and then\n\
2780redraws with point in the center of the current window.")
7ab12479
JB
2781 (n)
2782 register Lisp_Object n;
2783{
2784 register struct window *w = XWINDOW (selected_window);
2785 register int ht = window_internal_height (w);
113d9015 2786 struct position pos;
7ab12479 2787
265a9e55 2788 if (NILP (n))
7ab12479 2789 {
44fa5b1e 2790 extern int frame_garbaged;
7ab12479 2791
44fa5b1e 2792 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
d834a2e9 2793 XSETFASTINT (n, ht / 2);
7ab12479 2794 }
017b2bad 2795 else if (CONSP (n)) /* Just C-u. */
7ab12479 2796 {
d834a2e9 2797 XSETFASTINT (n, ht / 2);
7ab12479
JB
2798 }
2799 else
2800 {
2801 n = Fprefix_numeric_value (n);
2802 CHECK_NUMBER (n, 0);
2803 }
2804
2805 if (XINT (n) < 0)
2806 XSETINT (n, XINT (n) + ht);
2807
6e55cbc2 2808 pos = *vmotion (point, - XINT (n), w);
7ab12479 2809
113d9015
KH
2810 Fset_marker (w->start, make_number (pos.bufpos), w->buffer);
2811 w->start_at_line_beg = ((pos.bufpos == BEGV
2812 || FETCH_CHAR (pos.bufpos - 1) == '\n')
2813 ? Qt : Qnil);
7ab12479
JB
2814 w->force_start = Qt;
2815
2816 return Qnil;
2817}
2818\f
2819DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
2820 1, 1, "P",
2821 "Position point relative to window.\n\
19e3bf0a 2822With no argument, position point at center of window.\n\
44fa5b1e 2823An argument specifies frame line; zero means top of window,\n\
7ab12479
JB
2824negative means relative to bottom of window.")
2825 (arg)
2826 register Lisp_Object arg;
2827{
2828 register struct window *w = XWINDOW (selected_window);
2829 register int height = window_internal_height (w);
2830 register int start;
540b6aa0 2831 Lisp_Object window;
7ab12479 2832
265a9e55 2833 if (NILP (arg))
d834a2e9 2834 XSETFASTINT (arg, height / 2);
7ab12479
JB
2835 else
2836 {
2837 arg = Fprefix_numeric_value (arg);
2838 if (XINT (arg) < 0)
2839 XSETINT (arg, XINT (arg) + height);
2840 }
2841
2842 start = marker_position (w->start);
74112613 2843 XSETWINDOW (window, w);
7ab12479
JB
2844 if (start < BEGV || start > ZV)
2845 {
cd2be1dd 2846 Fvertical_motion (make_number (- (height / 2)), window);
5ce7b543 2847 Fset_marker (w->start, make_number (PT), w->buffer);
7ab12479
JB
2848 w->start_at_line_beg = Fbolp ();
2849 w->force_start = Qt;
2850 }
2851 else
2852 SET_PT (start);
2853
540b6aa0 2854 return Fvertical_motion (arg, window);
7ab12479
JB
2855}
2856\f
2857struct save_window_data
2858 {
2859 int size_from_Lisp_Vector_struct;
2860 struct Lisp_Vector *next_from_Lisp_Vector_struct;
8f6ea2e9 2861 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
bdc727bf 2862 Lisp_Object selected_frame;
7ab12479
JB
2863 Lisp_Object current_window;
2864 Lisp_Object current_buffer;
2865 Lisp_Object minibuf_scroll_window;
2866 Lisp_Object root_window;
bdc727bf 2867 Lisp_Object focus_frame;
756b6edc
RS
2868 /* Record the values of window-min-width and window-min-height
2869 so that window sizes remain consistent with them. */
2870 Lisp_Object min_width, min_height;
7ab12479
JB
2871 /* A vector, interpreted as a struct saved_window */
2872 Lisp_Object saved_windows;
2873 };
ff06df24 2874
7ab12479
JB
2875/* This is saved as a Lisp_Vector */
2876struct saved_window
2877 {
2878 /* these first two must agree with struct Lisp_Vector in lisp.h */
2879 int size_from_Lisp_Vector_struct;
2880 struct Lisp_Vector *next_from_Lisp_Vector_struct;
2881
2882 Lisp_Object window;
2883 Lisp_Object buffer, start, pointm, mark;
2884 Lisp_Object left, top, width, height, hscroll;
2885 Lisp_Object parent, prev;
2886 Lisp_Object start_at_line_beg;
2887 Lisp_Object display_table;
2888 };
2889#define SAVED_WINDOW_VECTOR_SIZE 14 /* Arg to Fmake_vector */
2890
2891#define SAVED_WINDOW_N(swv,n) \
2892 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
2893
2894DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
2895 "T if OBJECT is a window-configration object.")
2896 (obj)
2897 Lisp_Object obj;
2898{
017b2bad 2899 if (WINDOW_CONFIGURATIONP (obj))
7ab12479
JB
2900 return Qt;
2901 return Qnil;
2902}
2903
2904
d5b2799e
RS
2905DEFUN ("set-window-configuration", Fset_window_configuration,
2906 Sset_window_configuration, 1, 1, 0,
7ab12479
JB
2907 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
2908CONFIGURATION must be a value previously returned\n\
2909by `current-window-configuration' (which see).")
2f83aebe
JB
2910 (configuration)
2911 Lisp_Object configuration;
7ab12479 2912{
7ab12479
JB
2913 register struct save_window_data *data;
2914 struct Lisp_Vector *saved_windows;
7ab12479 2915 Lisp_Object new_current_buffer;
fd482be5 2916 Lisp_Object frame;
44fa5b1e 2917 FRAME_PTR f;
7ab12479 2918
017b2bad 2919 while (!WINDOW_CONFIGURATIONP (configuration))
7ab12479 2920 {
2f83aebe
JB
2921 configuration = wrong_type_argument (intern ("window-configuration-p"),
2922 configuration);
7ab12479
JB
2923 }
2924
2f83aebe 2925 data = (struct save_window_data *) XVECTOR (configuration);
7ab12479
JB
2926 saved_windows = XVECTOR (data->saved_windows);
2927
7ab12479 2928 new_current_buffer = data->current_buffer;
265a9e55 2929 if (NILP (XBUFFER (new_current_buffer)->name))
7ab12479
JB
2930 new_current_buffer = Qnil;
2931
fd482be5
JB
2932 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
2933 f = XFRAME (frame);
9ace597f 2934
fd482be5
JB
2935 /* If f is a dead frame, don't bother rebuilding its window tree.
2936 However, there is other stuff we should still try to do below. */
2937 if (FRAME_LIVE_P (f))
7ab12479 2938 {
fd482be5
JB
2939 register struct window *w;
2940 register struct saved_window *p;
2941 int k;
2942
2943 /* If the frame has been resized since this window configuration was
2944 made, we change the frame to the size specified in the
2945 configuration, restore the configuration, and then resize it
2946 back. We keep track of the prevailing height in these variables. */
2947 int previous_frame_height = FRAME_HEIGHT (f);
2948 int previous_frame_width = FRAME_WIDTH (f);
8f6ea2e9 2949 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
fd482be5
JB
2950
2951 if (XFASTINT (data->frame_height) != previous_frame_height
2952 || XFASTINT (data->frame_width) != previous_frame_width)
2953 change_frame_size (f, data->frame_height, data->frame_width, 0, 0);
217f2871 2954#ifdef HAVE_X_WINDOWS
8f6ea2e9
KH
2955 if (XFASTINT (data->frame_menu_bar_lines)
2956 != previous_frame_menu_bar_lines)
2957 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, 0);
217f2871 2958#endif
fd482be5
JB
2959
2960 windows_or_buffers_changed++;
29aeee73 2961 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
fd482be5 2962
756b6edc
RS
2963 /* Temporarily avoid any problems with windows that are smaller
2964 than they are supposed to be. */
2965 window_min_height = 1;
2966 window_min_width = 1;
2967
fd482be5
JB
2968 /* Kludge Alert!
2969 Mark all windows now on frame as "deleted".
2970 Restoring the new configuration "undeletes" any that are in it.
2971
2972 Save their current buffers in their height fields, since we may
2973 need it later, if a buffer saved in the configuration is now
2974 dead. */
2975 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
2976
2977 for (k = 0; k < saved_windows->size; k++)
2978 {
2979 p = SAVED_WINDOW_N (saved_windows, k);
2980 w = XWINDOW (p->window);
2981 w->next = Qnil;
7ab12479 2982
fd482be5
JB
2983 if (!NILP (p->parent))
2984 w->parent = SAVED_WINDOW_N (saved_windows,
2985 XFASTINT (p->parent))->window;
2986 else
2987 w->parent = Qnil;
7ab12479 2988
fd482be5 2989 if (!NILP (p->prev))
7ab12479 2990 {
fd482be5
JB
2991 w->prev = SAVED_WINDOW_N (saved_windows,
2992 XFASTINT (p->prev))->window;
2993 XWINDOW (w->prev)->next = p->window;
2994 }
2995 else
2996 {
2997 w->prev = Qnil;
2998 if (!NILP (w->parent))
2999 {
3000 if (EQ (p->width, XWINDOW (w->parent)->width))
3001 {
3002 XWINDOW (w->parent)->vchild = p->window;
3003 XWINDOW (w->parent)->hchild = Qnil;
3004 }
3005 else
3006 {
3007 XWINDOW (w->parent)->hchild = p->window;
3008 XWINDOW (w->parent)->vchild = Qnil;
3009 }
3010 }
3011 }
3012
3013 /* If we squirreled away the buffer in the window's height,
3014 restore it now. */
017b2bad 3015 if (BUFFERP (w->height))
fd482be5
JB
3016 w->buffer = w->height;
3017 w->left = p->left;
3018 w->top = p->top;
3019 w->width = p->width;
3020 w->height = p->height;
3021 w->hscroll = p->hscroll;
3022 w->display_table = p->display_table;
d834a2e9 3023 XSETFASTINT (w->last_modified, 0);
fd482be5
JB
3024
3025 /* Reinstall the saved buffer and pointers into it. */
3026 if (NILP (p->buffer))
3027 w->buffer = p->buffer;
3028 else
3029 {
3030 if (!NILP (XBUFFER (p->buffer)->name))
3031 /* If saved buffer is alive, install it. */
3032 {
3033 w->buffer = p->buffer;
3034 w->start_at_line_beg = p->start_at_line_beg;
3035 set_marker_restricted (w->start,
3036 Fmarker_position (p->start),
3037 w->buffer);
3038 set_marker_restricted (w->pointm,
3039 Fmarker_position (p->pointm),
3040 w->buffer);
3041 Fset_marker (XBUFFER (w->buffer)->mark,
3042 Fmarker_position (p->mark), w->buffer);
3043
3044 /* As documented in Fcurrent_window_configuration, don't
3045 save the location of point in the buffer which was current
3046 when the window configuration was recorded. */
6b54027b
RS
3047 if (!EQ (p->buffer, new_current_buffer)
3048 && XBUFFER (p->buffer) == current_buffer)
fd482be5
JB
3049 Fgoto_char (w->pointm);
3050 }
52a68e98
RS
3051 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
3052 /* Else unless window has a live buffer, get one. */
7ab12479 3053 {
fd482be5
JB
3054 w->buffer = Fcdr (Fcar (Vbuffer_alist));
3055 /* This will set the markers to beginning of visible
3056 range. */
3057 set_marker_restricted (w->start, make_number (0), w->buffer);
3058 set_marker_restricted (w->pointm, make_number (0),w->buffer);
3059 w->start_at_line_beg = Qt;
7ab12479
JB
3060 }
3061 else
fd482be5 3062 /* Keeping window's old buffer; make sure the markers
52a68e98 3063 are real. */
7ab12479 3064 {
fd482be5
JB
3065 /* Set window markers at start of visible range. */
3066 if (XMARKER (w->start)->buffer == 0)
3067 set_marker_restricted (w->start, make_number (0),
3068 w->buffer);
3069 if (XMARKER (w->pointm)->buffer == 0)
3070 set_marker_restricted (w->pointm,
3071 (make_number
3072 (BUF_PT (XBUFFER (w->buffer)))),
3073 w->buffer);
3074 w->start_at_line_beg = Qt;
7ab12479
JB
3075 }
3076 }
3077 }
9ace597f 3078
fd482be5
JB
3079 FRAME_ROOT_WINDOW (f) = data->root_window;
3080 Fselect_window (data->current_window);
7ab12479 3081
fd482be5 3082#ifdef MULTI_FRAME
db269683 3083 if (NILP (data->focus_frame)
017b2bad 3084 || (FRAMEP (data->focus_frame)
db269683
JB
3085 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
3086 Fredirect_frame_focus (frame, data->focus_frame);
fd482be5 3087#endif
7ab12479 3088
fd482be5
JB
3089#if 0 /* I don't understand why this is needed, and it causes problems
3090 when the frame's old selected window has been deleted. */
3091#ifdef MULTI_FRAME
3092 if (f != selected_frame && ! FRAME_TERMCAP_P (f))
9a7c6fc3
RS
3093 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
3094 Qnil, 0);
fd482be5
JB
3095#endif
3096#endif
3097
3098 /* Set the screen height to the value it had before this function. */
3099 if (previous_frame_height != FRAME_HEIGHT (f)
3100 || previous_frame_width != FRAME_WIDTH (f))
3101 change_frame_size (f, previous_frame_height, previous_frame_width,
3102 0, 0);
217f2871 3103#ifdef HAVE_X_WINDOWS
8f6ea2e9
KH
3104 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
3105 x_set_menu_bar_lines (f, previous_frame_menu_bar_lines, 0);
217f2871 3106#endif
fd482be5 3107 }
bdc727bf 3108
756b6edc
RS
3109 /* Restore the minimum heights recorded in the configuration. */
3110 window_min_height = XINT (data->min_height);
3111 window_min_width = XINT (data->min_width);
3112
ad854249 3113#ifdef MULTI_FRAME
bdc727bf 3114 /* Fselect_window will have made f the selected frame, so we
d5b2799e 3115 reselect the proper frame here. Fhandle_switch_frame will change the
bdc727bf
JB
3116 selected window too, but that doesn't make the call to
3117 Fselect_window above totally superfluous; it still sets f's
3118 selected window. */
fd482be5 3119 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
9a7c6fc3 3120 do_switch_frame (data->selected_frame, Qnil, 0);
ad854249 3121#endif
bdc727bf
JB
3122
3123 if (!NILP (new_current_buffer))
3124 Fset_buffer (new_current_buffer);
3125
7ab12479
JB
3126 Vminibuf_scroll_window = data->minibuf_scroll_window;
3127 return (Qnil);
3128}
3129
44fa5b1e 3130/* Mark all windows now on frame as deleted
7ab12479
JB
3131 by setting their buffers to nil. */
3132
fd482be5 3133void
7ab12479
JB
3134delete_all_subwindows (w)
3135 register struct window *w;
3136{
265a9e55 3137 if (!NILP (w->next))
7ab12479 3138 delete_all_subwindows (XWINDOW (w->next));
265a9e55 3139 if (!NILP (w->vchild))
7ab12479 3140 delete_all_subwindows (XWINDOW (w->vchild));
265a9e55 3141 if (!NILP (w->hchild))
7ab12479 3142 delete_all_subwindows (XWINDOW (w->hchild));
605be8af
JB
3143
3144 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
3145
3146 /* We set all three of these fields to nil, to make sure that we can
3147 distinguish this dead window from any live window. Live leaf
3148 windows will have buffer set, and combination windows will have
3149 vchild or hchild set. */
3150 w->buffer = Qnil;
3151 w->vchild = Qnil;
3152 w->hchild = Qnil;
7ab12479
JB
3153}
3154\f
3155static int
3156count_windows (window)
3157 register struct window *window;
3158{
3159 register int count = 1;
265a9e55 3160 if (!NILP (window->next))
7ab12479 3161 count += count_windows (XWINDOW (window->next));
265a9e55 3162 if (!NILP (window->vchild))
7ab12479 3163 count += count_windows (XWINDOW (window->vchild));
265a9e55 3164 if (!NILP (window->hchild))
7ab12479
JB
3165 count += count_windows (XWINDOW (window->hchild));
3166 return count;
3167}
3168
3169static int
3170save_window_save (window, vector, i)
3171 Lisp_Object window;
3172 struct Lisp_Vector *vector;
3173 int i;
3174{
3175 register struct saved_window *p;
3176 register struct window *w;
3177 register Lisp_Object tem;
3178
265a9e55 3179 for (;!NILP (window); window = w->next)
7ab12479
JB
3180 {
3181 p = SAVED_WINDOW_N (vector, i);
3182 w = XWINDOW (window);
3183
d834a2e9 3184 XSETFASTINT (w->temslot, i++);
7ab12479
JB
3185 p->window = window;
3186 p->buffer = w->buffer;
3187 p->left = w->left;
3188 p->top = w->top;
3189 p->width = w->width;
3190 p->height = w->height;
3191 p->hscroll = w->hscroll;
3192 p->display_table = w->display_table;
265a9e55 3193 if (!NILP (w->buffer))
7ab12479
JB
3194 {
3195 /* Save w's value of point in the window configuration.
3196 If w is the selected window, then get the value of point
3197 from the buffer; pointm is garbage in the selected window. */
3198 if (EQ (window, selected_window))
3199 {
3200 p->pointm = Fmake_marker ();
3201 Fset_marker (p->pointm, BUF_PT (XBUFFER (w->buffer)),
3202 w->buffer);
3203 }
3204 else
3205 p->pointm = Fcopy_marker (w->pointm);
3206
3207 p->start = Fcopy_marker (w->start);
3208 p->start_at_line_beg = w->start_at_line_beg;
3209
3210 tem = XBUFFER (w->buffer)->mark;
3211 p->mark = Fcopy_marker (tem);
3212 }
3213 else
3214 {
3215 p->pointm = Qnil;
3216 p->start = Qnil;
3217 p->mark = Qnil;
3218 p->start_at_line_beg = Qnil;
3219 }
3220
265a9e55 3221 if (NILP (w->parent))
7ab12479
JB
3222 p->parent = Qnil;
3223 else
3224 p->parent = XWINDOW (w->parent)->temslot;
3225
265a9e55 3226 if (NILP (w->prev))
7ab12479
JB
3227 p->prev = Qnil;
3228 else
3229 p->prev = XWINDOW (w->prev)->temslot;
3230
265a9e55 3231 if (!NILP (w->vchild))
7ab12479 3232 i = save_window_save (w->vchild, vector, i);
265a9e55 3233 if (!NILP (w->hchild))
7ab12479
JB
3234 i = save_window_save (w->hchild, vector, i);
3235 }
3236
3237 return i;
3238}
3239
3240DEFUN ("current-window-configuration",
43bad991 3241 Fcurrent_window_configuration, Scurrent_window_configuration, 0, 1, 0,
44fa5b1e
JB
3242 "Return an object representing the current window configuration of FRAME.\n\
3243If FRAME is nil or omitted, use the selected frame.\n\
7ab12479
JB
3244This describes the number of windows, their sizes and current buffers,\n\
3245and for each displayed buffer, where display starts, and the positions of\n\
3246point and mark. An exception is made for point in the current buffer:\n\
bdc727bf
JB
3247its value is -not- saved.\n\
3248This also records the currently selected frame, and FRAME's focus\n\
3249redirection (see `redirect-frame-focus').")
44fa5b1e
JB
3250 (frame)
3251 Lisp_Object frame;
7ab12479
JB
3252{
3253 register Lisp_Object tem;
3254 register int n_windows;
3255 register struct save_window_data *data;
da2792e0 3256 register struct Lisp_Vector *vec;
7ab12479 3257 register int i;
44fa5b1e 3258 FRAME_PTR f;
43bad991 3259
44fa5b1e
JB
3260 if (NILP (frame))
3261 f = selected_frame;
43bad991
JB
3262 else
3263 {
44fa5b1e
JB
3264 CHECK_LIVE_FRAME (frame, 0);
3265 f = XFRAME (frame);
43bad991 3266 }
7ab12479 3267
44fa5b1e 3268 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
da2792e0
KH
3269 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
3270 for (i = 0; i < VECSIZE (struct save_window_data); i++)
3271 vec->contents[i] = Qnil;
3272 vec->size = VECSIZE (struct save_window_data);
3273 data = (struct save_window_data *)vec;
3274
d834a2e9
KH
3275 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
3276 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
3277 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
ad854249 3278#ifdef MULTI_FRAME
74112613 3279 XSETFRAME (data->selected_frame, selected_frame);
ad854249 3280#endif
44fa5b1e 3281 data->current_window = FRAME_SELECTED_WINDOW (f);
74112613 3282 XSETBUFFER (data->current_buffer, current_buffer);
7ab12479 3283 data->minibuf_scroll_window = Vminibuf_scroll_window;
44fa5b1e 3284 data->root_window = FRAME_ROOT_WINDOW (f);
bdc727bf 3285 data->focus_frame = FRAME_FOCUS_FRAME (f);
74112613
KH
3286 XSETINT (data->min_height, window_min_height);
3287 XSETINT (data->min_width, window_min_width);
7ab12479
JB
3288 tem = Fmake_vector (make_number (n_windows), Qnil);
3289 data->saved_windows = tem;
3290 for (i = 0; i < n_windows; i++)
3291 XVECTOR (tem)->contents[i]
3292 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
44fa5b1e 3293 save_window_save (FRAME_ROOT_WINDOW (f),
7ab12479 3294 XVECTOR (tem), 0);
74112613 3295 XSETWINDOW_CONFIGURATION (tem, data);
7ab12479
JB
3296 return (tem);
3297}
3298
3299DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
3300 0, UNEVALLED, 0,
3301 "Execute body, preserving window sizes and contents.\n\
eb16ec06
RS
3302Restore which buffer appears in which window, where display starts,\n\
3303and the value of point and mark for each window.\n\
3304Also restore which buffer is current.\n\
3305But do not preserve point in the current buffer.\n\
7ab12479
JB
3306Does not restore the value of point in current buffer.")
3307 (args)
3308 Lisp_Object args;
3309{
3310 register Lisp_Object val;
3311 register int count = specpdl_ptr - specpdl;
3312
3313 record_unwind_protect (Fset_window_configuration,
43bad991 3314 Fcurrent_window_configuration (Qnil));
7ab12479
JB
3315 val = Fprogn (args);
3316 return unbind_to (count, val);
3317}
3318\f
3319init_window_once ()
3320{
44fa5b1e
JB
3321#ifdef MULTI_FRAME
3322 selected_frame = make_terminal_frame ();
bc6c324f 3323 XSETFRAME (Vterminal_frame, selected_frame);
44fa5b1e
JB
3324 minibuf_window = selected_frame->minibuffer_window;
3325 selected_window = selected_frame->selected_window;
3326 last_nonminibuf_frame = selected_frame;
3327#else /* not MULTI_FRAME */
7ab12479
JB
3328 extern Lisp_Object get_minibuffer ();
3329
87485d6f
MW
3330 selected_frame = last_nonminibuf_frame = &the_only_frame;
3331
95605e15 3332 minibuf_window = make_window ();
4b206065 3333 FRAME_ROOT_WINDOW (selected_frame) = make_window ();
7ab12479 3334
44fa5b1e
JB
3335 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->next = minibuf_window;
3336 XWINDOW (minibuf_window)->prev = FRAME_ROOT_WINDOW (selected_frame);
4b206065 3337 XWINDOW (minibuf_window)->mini_p = Qt;
7ab12479
JB
3338
3339 /* These values 9 and 10 are arbitrary,
3340 just so that there is "something there."
3341 Correct values are put in in init_xdisp */
3342
d834a2e9
KH
3343 XSETFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->width, 10);
3344 XSETFASTINT (XWINDOW (minibuf_window)->width, 10);
7ab12479 3345
d834a2e9
KH
3346 XSETFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->height, 9);
3347 XSETFASTINT (XWINDOW (minibuf_window)->top, 9);
3348 XSETFASTINT (XWINDOW (minibuf_window)->height, 1);
7ab12479
JB
3349
3350 /* Prevent error in Fset_window_buffer. */
44fa5b1e 3351 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->buffer = Qt;
7ab12479
JB
3352 XWINDOW (minibuf_window)->buffer = Qt;
3353
3354 /* Now set them up for real. */
44fa5b1e 3355 Fset_window_buffer (FRAME_ROOT_WINDOW (selected_frame),
e5d77022 3356 Fcurrent_buffer ());
7ab12479
JB
3357 Fset_window_buffer (minibuf_window, get_minibuffer (0));
3358
44fa5b1e 3359 selected_window = FRAME_ROOT_WINDOW (selected_frame);
1d8d96fa
JB
3360 /* Make sure this window seems more recently used than
3361 a newly-created, never-selected window. Increment
3362 window_select_count so the first selection ever will get
3363 something newer than this. */
d834a2e9 3364 XSETFASTINT (XWINDOW (selected_window)->use_time, ++window_select_count);
44fa5b1e 3365#endif /* not MULTI_FRAME */
7ab12479
JB
3366}
3367
3368syms_of_window ()
3369{
3370 Qwindowp = intern ("windowp");
3371 staticpro (&Qwindowp);
3372
806b4d9b
JB
3373 Qwindow_live_p = intern ("window-live-p");
3374 staticpro (&Qwindow_live_p);
605be8af 3375
2cccc823 3376 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
a58ec57d
RS
3377 staticpro (&Qtemp_buffer_show_hook);
3378
2f83aebe 3379#ifndef MULTI_FRAME
7ab12479
JB
3380 /* Make sure all windows get marked */
3381 staticpro (&minibuf_window);
2f83aebe 3382#endif
7ab12479
JB
3383
3384 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
3385 "Non-nil means call as function to display a help buffer.\n\
c3ef6b1d 3386The function is called with one argument, the buffer to be displayed.\n\
f52cca03
RS
3387Used by `with-output-to-temp-buffer'.\n\
3388If this function is used, then it must do the entire job of showing\n\
3389the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
7ab12479
JB
3390 Vtemp_buffer_show_function = Qnil;
3391
3392 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
3393 "If non-nil, function to call to handle `display-buffer'.\n\
3394It will receive two args, the buffer and a flag which if non-nil means\n\
3395 that the currently selected window is not acceptable.\n\
3396Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
3397work using this function.");
3398 Vdisplay_buffer_function = Qnil;
3399
7ab12479
JB
3400 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
3401 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
3402 Vminibuf_scroll_window = Qnil;
3403
3404 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
3405 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
3406 Vother_window_scroll_buffer = Qnil;
3407
44fa5b1e 3408 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
700f75a4 3409 "*Non-nil means `display-buffer' should make a separate frame.");
44fa5b1e 3410 pop_up_frames = 0;
7ab12479 3411
44fa5b1e 3412 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
a90712c2 3413 "Function to call to handle automatic new frame creation.\n\
44fa5b1e 3414It is called with no arguments and should return a newly created frame.\n\
7ab12479 3415\n\
44fa5b1e
JB
3416A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
3417where `pop-up-frame-alist' would hold the default frame parameters.");
3418 Vpop_up_frame_function = Qnil;
7ab12479 3419
a90712c2
RS
3420 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
3421 "*List of buffer names that should have their own special frames.\n\
3422Displaying a buffer whose name is in this list makes a special frame for it\n\
0a952b57 3423using `special-display-function'.\n\
3548e138
RS
3424\n\
3425An element of the list can be a cons cell instead of just a string.\n\
3426Then the car should be a buffer name, and the cdr specifies frame\n\
3427parameters for creating the frame for that buffer.\n\
3428More precisely, the cdr is passed as the second argument to\n\
3429the function found in `special-display-function', when making that frame.\n\
0a952b57 3430See also `special-display-regexps'.");
a90712c2
RS
3431 Vspecial_display_buffer_names = Qnil;
3432
3433 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
3434 "*List of regexps saying which buffers should have their own special frames.\n\
3435If a buffer name matches one of these regexps, it gets its own frame.\n\
3436Displaying a buffer whose name is in this list makes a special frame for it\n\
0a952b57 3437using `special-display-function'.\n\
3548e138
RS
3438\n\
3439An element of the list can be a cons cell instead of just a string.\n\
3440Then the car should be the regexp, and the cdr specifies frame\n\
3441parameters for creating the frame for buffers that match.\n\
3442More precisely, the cdr is passed as the second argument to\n\
3443the function found in `special-display-function', when making that frame.\n\
0a952b57 3444See also `special-display-buffer-names'.");
a90712c2
RS
3445 Vspecial_display_regexps = Qnil;
3446
3447 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
3448 "Function to call to make a new frame for a special buffer.\n\
0a952b57
RS
3449It is called with two arguments, the buffer and optional buffer specific\n\
3450data, and should return a window displaying that buffer.\n\
a90712c2 3451The default value makes a separate frame for the buffer,\n\
bdd3a802 3452using `special-display-frame-alist' to specify the frame parameters.\n\
a90712c2
RS
3453\n\
3454A buffer is special if its is listed in `special-display-buffer-names'\n\
3455or matches a regexp in `special-display-regexps'.");
3456 Vspecial_display_function = Qnil;
3457
855d8627
RS
3458 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
3459 "*List of buffer names that should appear in the selected window.\n\
3460Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
3461switches to it in the selected window, rather than making it appear\n\
2e5ce1a0 3462in some other window.\n\
855d8627
RS
3463\n\
3464An element of the list can be a cons cell instead of just a string.\n\
3465Then the car must be a string, which specifies the buffer name.\n\
3466This is for compatibility with `special-display-buffer-names';\n\
3467the cdr of the cons cell is ignored.\n\
3468\n\
3469See also `same-window-regexps'.");
3470 Vsame_window_buffer_names = Qnil;
3471
3472 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
3473 "*List of regexps saying which buffers should appear in the selected window.\n\
3474If a buffer name matches one of these regexps, then displaying it\n\
3475using `display-buffer' or `pop-to-buffer' switches to it\n\
3476in the selected window, rather than making it appear in some other window.\n\
3477\n\
3478An element of the list can be a cons cell instead of just a string.\n\
3479Then the car must be a string, which specifies the buffer name.\n\
3480This is for compatibility with `special-display-buffer-names';\n\
3481the cdr of the cons cell is ignored.\n\
3482\n\
3483See also `same-window-buffer-names'.");
3484 Vsame_window_regexps = Qnil;
3485
7ab12479
JB
3486 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
3487 "*Non-nil means display-buffer should make new windows.");
3488 pop_up_windows = 1;
3489
3490 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
3491 "*Number of lines of continuity when scrolling by screenfuls.");
3492 next_screen_context_lines = 2;
3493
3494 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
3495 "*display-buffer would prefer to split the largest window if this large.\n\
3496If there is only one window, it is split regardless of this value.");
3497 split_height_threshold = 500;
3498
3499 DEFVAR_INT ("window-min-height", &window_min_height,
3500 "*Delete any window less than this tall (including its mode line).");
3501 window_min_height = 4;
3502
3503 DEFVAR_INT ("window-min-width", &window_min_width,
3504 "*Delete any window less than this wide.");
3505 window_min_width = 10;
3506
3507 defsubr (&Sselected_window);
3508 defsubr (&Sminibuffer_window);
3509 defsubr (&Swindow_minibuffer_p);
3510 defsubr (&Swindowp);
806b4d9b 3511 defsubr (&Swindow_live_p);
7ab12479
JB
3512 defsubr (&Spos_visible_in_window_p);
3513 defsubr (&Swindow_buffer);
3514 defsubr (&Swindow_height);
3515 defsubr (&Swindow_width);
3516 defsubr (&Swindow_hscroll);
3517 defsubr (&Sset_window_hscroll);
3518 defsubr (&Swindow_edges);
d5783c40
JB
3519 defsubr (&Scoordinates_in_window_p);
3520 defsubr (&Swindow_at);
7ab12479
JB
3521 defsubr (&Swindow_point);
3522 defsubr (&Swindow_start);
3523 defsubr (&Swindow_end);
3524 defsubr (&Sset_window_point);
3525 defsubr (&Sset_window_start);
3526 defsubr (&Swindow_dedicated_p);
d207b766 3527 defsubr (&Sset_window_dedicated_p);
7ab12479
JB
3528 defsubr (&Swindow_display_table);
3529 defsubr (&Sset_window_display_table);
3530 defsubr (&Snext_window);
3531 defsubr (&Sprevious_window);
3532 defsubr (&Sother_window);
3533 defsubr (&Sget_lru_window);
3534 defsubr (&Sget_largest_window);
3535 defsubr (&Sget_buffer_window);
3536 defsubr (&Sdelete_other_windows);
3537 defsubr (&Sdelete_windows_on);
3538 defsubr (&Sreplace_buffer_in_windows);
3539 defsubr (&Sdelete_window);
3540 defsubr (&Sset_window_buffer);
3541 defsubr (&Sselect_window);
3542 defsubr (&Sdisplay_buffer);
3543 defsubr (&Ssplit_window);
3544 defsubr (&Senlarge_window);
3545 defsubr (&Sshrink_window);
3546 defsubr (&Sscroll_up);
3547 defsubr (&Sscroll_down);
3548 defsubr (&Sscroll_left);
3549 defsubr (&Sscroll_right);
ccd0664b 3550 defsubr (&Sother_window_for_scrolling);
7ab12479
JB
3551 defsubr (&Sscroll_other_window);
3552 defsubr (&Srecenter);
3553 defsubr (&Smove_to_window_line);
3554 defsubr (&Swindow_configuration_p);
3555 defsubr (&Sset_window_configuration);
3556 defsubr (&Scurrent_window_configuration);
3557 defsubr (&Ssave_window_excursion);
3558}
3559
3560keys_of_window ()
3561{
3562 initial_define_key (control_x_map, '1', "delete-other-windows");
3563 initial_define_key (control_x_map, '2', "split-window");
3564 initial_define_key (control_x_map, '0', "delete-window");
3565 initial_define_key (control_x_map, 'o', "other-window");
3566 initial_define_key (control_x_map, '^', "enlarge-window");
3567 initial_define_key (control_x_map, '<', "scroll-left");
3568 initial_define_key (control_x_map, '>', "scroll-right");
3569
3570 initial_define_key (global_map, Ctl ('V'), "scroll-up");
3571 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
3572 initial_define_key (meta_map, 'v', "scroll-down");
3573
3574 initial_define_key (global_map, Ctl('L'), "recenter");
3575 initial_define_key (meta_map, 'r', "move-to-window-line");
3576}