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