(Fset_window_buffer): Clear window_end_{pos,valid}.
[bpt/emacs.git] / src / window.c
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985, 1986, 1987, 1993 Free Software Foundation, Inc.
4
5 This file is part of GNU Emacs.
6
7 GNU Emacs is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
11
12 GNU Emacs is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with GNU Emacs; see the file COPYING. If not, write to
19 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
20
21 #include "config.h"
22 #include "lisp.h"
23 #include "buffer.h"
24 #include "frame.h"
25 #include "window.h"
26 #include "commands.h"
27 #include "indent.h"
28 #include "termchar.h"
29 #include "disptab.h"
30 #include "keyboard.h"
31
32 Lisp_Object Qwindowp, Qwindow_live_p;
33
34 Lisp_Object Fnext_window (), Fdelete_window (), Fselect_window ();
35 Lisp_Object Fset_window_buffer (), Fsplit_window (), Frecenter ();
36
37 void delete_all_subwindows ();
38 static 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
46 FRAME_SELECTED_WINDOW (selected_frame). */
47
48 Lisp_Object selected_window;
49
50 /* The minibuffer window of the selected frame.
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. */
54 Lisp_Object minibuf_window;
55
56 /* Non-nil means it is the window for C-M-v to scroll
57 when the minibuffer is selected. */
58 Lisp_Object Vminibuf_scroll_window;
59
60 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
61 Lisp_Object Vother_window_scroll_buffer;
62
63 /* Non-nil means it's function to call to display temp buffers. */
64 Lisp_Object Vtemp_buffer_show_function;
65
66 /* If a window gets smaller than either of these, it is removed. */
67 int window_min_height;
68 int window_min_width;
69
70 /* Nonzero implies Fdisplay_buffer should create windows. */
71 int pop_up_windows;
72
73 /* Nonzero implies make new frames for Fdisplay_buffer. */
74 int pop_up_frames;
75
76 /* Non-nil means use this function instead of default */
77 Lisp_Object Vpop_up_frame_function;
78
79 /* Function to call to handle Fdisplay_buffer. */
80 Lisp_Object Vdisplay_buffer_function;
81
82 /* Fdisplay_buffer always splits the largest window
83 if that window is more than this high. */
84 int split_height_threshold;
85
86 /* Number of lines of continuity in scrolling by screenfuls. */
87 int next_screen_context_lines;
88
89 /* Incremented for each window created. */
90 static int sequence_number;
91
92 #define min(a, b) ((a) < (b) ? (a) : (b))
93 \f
94 DEFUN ("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
102 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
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
112 Lisp_Object
113 make_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;
135 p->frame = Qnil;
136 p->display_table = Qnil;
137 p->dedicated = Qnil;
138 return val;
139 }
140
141 DEFUN ("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
148 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
149 "Return the window used now for minibuffers.\n\
150 If the optional argument FRAME is specified, return the minibuffer window\n\
151 used by that frame.")
152 (frame)
153 Lisp_Object frame;
154 {
155 #ifdef MULTI_FRAME
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));
163 }
164
165 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
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
174 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
175 Spos_visible_in_window_p, 0, 2, 0,
176 "Return t if position POS is currently on the frame in WINDOW.\n\
177 Returns nil if that position is scrolled vertically out of view.\n\
178 POS 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
189 if (NILP (pos))
190 posint = point;
191 else
192 {
193 CHECK_NUMBER_COERCE_MARKER (pos, 0);
194 posint = XINT (pos);
195 }
196
197 w = decode_window (window);
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 {
208 /* If frame is up to date,
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,
222 window_internal_width (w) - 1,
223 XINT (w->hscroll), 0);
224
225 return posval.vpos < height ? Qt : Qnil;
226 }
227 }
228 \f
229 static struct window *
230 decode_window (window)
231 register Lisp_Object window;
232 {
233 if (NILP (window))
234 return XWINDOW (selected_window);
235
236 CHECK_LIVE_WINDOW (window, 0);
237 return XWINDOW (window);
238 }
239
240 DEFUN ("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
248 DEFUN ("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
256 DEFUN ("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);
262 register int width = XFASTINT (w->width);
263
264 return make_number (window_internal_width (w));
265 }
266
267 DEFUN ("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
275 DEFUN ("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\
277 NCOL 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);
288 if (XINT (w->hscroll) != XINT (ncol))
289 clip_changed = 1; /* Prevent redisplay shortcuts */
290 w->hscroll = ncol;
291 return ncol;
292 }
293
294 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
295 "Return a list of the edge coordinates of WINDOW.\n\
296 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
297 RIGHT is one more than the rightmost column used by WINDOW,\n\
298 and 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
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. */
321 static int
322 coordinates_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
337 && ! MINI_WINDOW_P (w))
338 return 2;
339
340 /* Is the character in the right border? */
341 if (*x == left + width - 1
342 && left + width != FRAME_WIDTH (XFRAME (w->frame)))
343 return 3;
344
345 *x -= left;
346 *y -= top;
347 return 1;
348 }
349
350 DEFUN ("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\
353 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
354 measured in characters from the upper-left corner of the frame.\n\
355 (0 . 0) denotes the character in the upper left corner of the\n\
356 frame.\n\
357 If COORDINATES are in the text portion of WINDOW,\n\
358 the coordinates relative to the window are returned.\n\
359 If they are in the mode line of WINDOW, `mode-line' is returned.\n\
360 If they are on the border between WINDOW and its right sibling,\n\
361 `vertical-line' is returned.")
362 (coordinates, window)
363 register Lisp_Object coordinates, window;
364 {
365 int x, y;
366
367 CHECK_LIVE_WINDOW (window, 0);
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. */
384 return Qvertical_line;
385
386 default:
387 abort ();
388 }
389 }
390
391 /* Find the window containing column x, row y, and return it as a
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. */
396 Lisp_Object
397 window_from_coordinates (frame, x, y, part)
398 FRAME_PTR frame;
399 int x, y;
400 int *part;
401 {
402 register Lisp_Object tem, first;
403
404 tem = first = FRAME_SELECTED_WINDOW (frame);
405
406 do
407 {
408 int found = coordinates_in_window (XWINDOW (tem), &x, &y);
409
410 if (found)
411 {
412 *part = found - 1;
413 return tem;
414 }
415
416 tem = Fnext_window (tem, Qt, Qlambda);
417 }
418 while (! EQ (tem, first));
419
420 return Qnil;
421 }
422
423 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
424 "Return window containing coordinates X and Y on FRAME.\n\
425 If omitted, FRAME defaults to the currently selected frame.\n\
426 The top left corner of the frame is considered to be row 0,\n\
427 column 0.")
428 (x, y, frame)
429 Lisp_Object x, y, frame;
430 {
431 int part;
432
433 #ifdef MULTI_FRAME
434 if (NILP (frame))
435 XSET (frame, Lisp_Frame, selected_frame);
436 else
437 CHECK_LIVE_FRAME (frame, 2);
438 #endif
439 CHECK_NUMBER (x, 0);
440 CHECK_NUMBER (y, 1);
441
442 return window_from_coordinates (XFRAME (frame),
443 XINT (x), XINT (y),
444 &part);
445 }
446
447 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
448 "Return current value of point in WINDOW.\n\
449 For a nonselected window, this is the value point would have\n\
450 if that window were selected.\n\
451 \n\
452 Note that, when WINDOW is the selected window and its buffer\n\
453 is also currently selected, the value returned is the same as (point).\n\
454 It would be more strictly correct to return the `top-level' value\n\
455 of point, outside of any save-excursion forms.\n\
456 But 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
468 DEFUN ("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
476 DEFUN ("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);
483 Lisp_Object buf;
484
485 buf = w->buffer;
486 CHECK_BUFFER (buf, 0);
487
488 XSET (value, Lisp_Int,
489 BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
490
491 return value;
492 }
493
494 DEFUN ("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
510 DEFUN ("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\
512 Optional third arg NOFORCE non-nil inhibits next redisplay\n\
513 from 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;
523 if (NILP (noforce))
524 w->force_start = Qt;
525 w->update_mode_line = Qt;
526 XFASTINT (w->last_modified) = 0;
527 if (!EQ (window, selected_window))
528 windows_or_buffers_changed++;
529 return pos;
530 }
531
532 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
533 1, 1, 0,
534 "Return WINDOW's dedicated object, usually t or nil.\n\
535 See also `set-window-dedicated-p'.")
536 (window)
537 Lisp_Object window;
538 {
539 return decode_window (window)->dedicated;
540 }
541
542 DEFUN ("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\
545 If it is dedicated, Emacs will not automatically change\n\
546 which buffer appears in it.\n\
547 The second argument is the new value for the dedication flag;\n\
548 non-nil means yes.")
549 (window, arg)
550 Lisp_Object window, arg;
551 {
552 register struct window *w = decode_window (window);
553
554 if (NILP (arg))
555 w->dedicated = Qnil;
556 else
557 w->dedicated = Qt;
558
559 return w->dedicated;
560 }
561
562 DEFUN ("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
576 struct Lisp_Vector *
577 window_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
593 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
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. */
608 static
609 unshow_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. */
634 static
635 replace_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
641 /* If OLD is its frame's root_window, then replacement is the new
642 root_window for that frame. */
643
644 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
645 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
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;
653 if (!NILP (tem))
654 XWINDOW (tem)->prev = replacement;
655
656 p->prev = tem = o->prev;
657 if (!NILP (tem))
658 XWINDOW (tem)->next = replacement;
659
660 p->parent = tem = o->parent;
661 if (!NILP (tem))
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
670 and so is its new parent, we should make replacement's
671 children be children of that parent instead. ***/
672 }
673
674 DEFUN ("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
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. */
686 if (NILP (window))
687 window = selected_window;
688 else
689 CHECK_WINDOW (window, 0);
690 p = XWINDOW (window);
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
698 parent = p->parent;
699 if (NILP (parent))
700 error ("Attempt to delete minibuffer or sole ordinary window");
701 par = XWINDOW (parent);
702
703 windows_or_buffers_changed++;
704
705 /* Are we trying to delete any frame's selected window? */
706 {
707 Lisp_Object frame, pwindow;
708
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))
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
734 FRAME_SELECTED_WINDOW (XFRAME (frame)) = alternative;
735 }
736 }
737
738 tem = p->buffer;
739 /* tem is null for dummy parent windows
740 (which have inferiors but not any contents themselves) */
741 if (!NILP (tem))
742 {
743 unshow_buffer (p);
744 unchain_marker (p->pointm);
745 unchain_marker (p->start);
746 }
747
748 tem = p->next;
749 if (!NILP (tem))
750 XWINDOW (tem)->prev = p->prev;
751
752 tem = p->prev;
753 if (!NILP (tem))
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;
763 if (NILP (sib))
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;
770 XWINDOW (sib)->top = p->top;
771 XWINDOW (sib)->left = p->left;
772 }
773
774 /* Stretch that sibling. */
775 if (!NILP (par->vchild))
776 set_window_height (sib,
777 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
778 1);
779 if (!NILP (par->hchild))
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. */
786 tem = par->hchild;
787 if (NILP (tem))
788 tem = par->vchild;
789 if (NILP (XWINDOW (tem)->next))
790 replace_window (parent, tem);
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
802 return Qnil;
803 }
804 \f
805
806 extern Lisp_Object next_frame (), prev_frame ();
807
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
812 DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
813 "Return next window after WINDOW in canonical ordering of windows.\n\
814 If omitted, WINDOW defaults to the selected window.\n\
815 \n\
816 Optional second arg MINIBUF t means count the minibuffer window even\n\
817 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
818 it is active. MINIBUF neither t nor nil means not to count the\n\
819 minibuffer even if it is active.\n\
820 \n\
821 Several frames may share a single minibuffer; if the minibuffer\n\
822 counts, all windows on all frames that share that minibuffer count\n\
823 too. This means that next-window may be used to iterate through the\n\
824 set of windows even when the minibuffer is on another frame. If the\n\
825 minibuffer does not count, only windows from WINDOW's frame count.\n\
826 \n\
827 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
828 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
829 above. If neither nil nor t, restrict to WINDOW's frame.\n\
830 \n\
831 If 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\
833 windows, eventually ending up back at the window you started with.\n\
834 `previous-window' traverses the same cycle, in the reverse order.")
835 (window, minibuf, all_frames) */
836
837 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
838 0)
839 (window, minibuf, all_frames)
840 register Lisp_Object window, minibuf, all_frames;
841 {
842 register Lisp_Object tem;
843 Lisp_Object start_window;
844
845 if (NILP (window))
846 window = selected_window;
847 else
848 CHECK_LIVE_WINDOW (window, 0);
849
850 start_window = window;
851
852 /* minibuf == nil may or may not include minibuffers.
853 Decide if it does. */
854 if (NILP (minibuf))
855 minibuf = (minibuf_level ? Qt : Qlambda);
856
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
864 (XWINDOW (window)))))
865 : Qnil);
866 else if (! EQ (all_frames, Qt))
867 all_frames = Qnil;
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. */
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. */
878 while (tem = XWINDOW (window)->next, NILP (tem))
879 if (tem = XWINDOW (window)->parent, !NILP (tem))
880 window = tem;
881 else
882 {
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);
889 #endif
890 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
891
892 break;
893 }
894
895 window = tem;
896
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 {
901 if (!NILP (XWINDOW (window)->hchild))
902 window = XWINDOW (window)->hchild;
903 else if (!NILP (XWINDOW (window)->vchild))
904 window = XWINDOW (window)->vchild;
905 else break;
906 }
907 }
908 /* Which windows are acceptible?
909 Exit the loop and accept this window if
910 this isn't a minibuffer window, or
911 we're accepting minibuffer windows, or
912 we've come all the way around and we're back at the original window. */
913 while (MINI_WINDOW_P (XWINDOW (window))
914 && ! EQ (minibuf, Qt)
915 && ! EQ (window, start_window));
916
917 return window;
918 }
919
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
924 DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
925 "Return the window preceeding WINDOW in canonical ordering of windows.\n\
926 If omitted, WINDOW defaults to the selected window.\n\
927 \n\
928 Optional second arg MINIBUF t means count the minibuffer window even\n\
929 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
930 it is active. MINIBUF neither t nor nil means not to count the\n\
931 minibuffer even if it is active.\n\
932 \n\
933 Several frames may share a single minibuffer; if the minibuffer\n\
934 counts, all windows on all frames that share that minibuffer count\n\
935 too. This means that previous-window may be used to iterate through\n\
936 the set of windows even when the minibuffer is on another frame. If\n\
937 the minibuffer does not count, only windows from WINDOW's frame\n\
938 count.\n\
939 \n\
940 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
941 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
942 above. If neither nil nor t, restrict to WINDOW's frame.\n\
943 \n\
944 If 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\
946 windows, eventually ending up back at the window you started with.\n\
947 `next-window' traverses the same cycle, in the reverse order.")
948 (window, minibuf, all_frames) */
949
950
951 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
952 0)
953 (window, minibuf, all_frames)
954 register Lisp_Object window, minibuf, all_frames;
955 {
956 register Lisp_Object tem;
957 Lisp_Object start_window;
958
959 if (NILP (window))
960 window = selected_window;
961 else
962 CHECK_LIVE_WINDOW (window, 0);
963
964 start_window = window;
965
966 /* minibuf == nil may or may not include minibuffers.
967 Decide if it does. */
968 if (NILP (minibuf))
969 minibuf = (minibuf_level ? Qt : Qlambda);
970
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
978 (XWINDOW (window)))))
979 : Qnil);
980 else if (! EQ (all_frames, Qt))
981 all_frames = Qnil;
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. */
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. */
992 while (tem = XWINDOW (window)->prev, NILP (tem))
993 if (tem = XWINDOW (window)->parent, !NILP (tem))
994 window = tem;
995 else
996 {
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))
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);
1012 #endif
1013 /* If this frame has a minibuffer, find that window first,
1014 because it is conceptually the last window in that frame. */
1015 if (FRAME_HAS_MINIBUF_P (XFRAME (tem)))
1016 tem = FRAME_MINIBUF_WINDOW (XFRAME (tem));
1017 else
1018 tem = FRAME_ROOT_WINDOW (XFRAME (tem));
1019
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 {
1028 if (!NILP (XWINDOW (window)->hchild))
1029 window = XWINDOW (window)->hchild;
1030 else if (!NILP (XWINDOW (window)->vchild))
1031 window = XWINDOW (window)->vchild;
1032 else break;
1033 while (tem = XWINDOW (window)->next, !NILP (tem))
1034 window = tem;
1035 }
1036 }
1037 /* Which windows are acceptable?
1038 Exit the loop and accept this window if
1039 this isn't a minibuffer window, or
1040 we're accepting minibuffer windows, or
1041 we've come all the way around and we're back at the original window. */
1042 while (MINI_WINDOW_P (XWINDOW (window))
1043 && !EQ (minibuf, Qt)
1044 && !EQ (window, start_window));
1045
1046 return window;
1047 }
1048
1049 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1050 "Select the ARG'th different window on this frame.\n\
1051 All windows on current frame are arranged in a cyclic order.\n\
1052 This command selects the window ARG steps away in that order.\n\
1053 A negative ARG moves in the opposite order. If the optional second\n\
1054 argument ALL_FRAMES is non-nil, cycle through all frames.")
1055 (n, all_frames)
1056 register Lisp_Object n, all_frames;
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 {
1067 w = Fnext_window (w, Qnil, all_frames);
1068 i--;
1069 }
1070 while (i < 0)
1071 {
1072 w = Fprevious_window (w, Qnil, all_frames);
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.
1081 If FRAMES is Qt, look at all frames;
1082 Qnil, look at just the selected frame;
1083 a frame, just look at windows on that frame.
1084 If MINI is non-zero, perform the operation on minibuffer windows too.
1085 */
1086
1087 enum 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,
1095 UNSHOW_BUFFER, /* Arg is buffer */
1096 };
1097
1098 static Lisp_Object
1099 window_loop (type, obj, mini, frames)
1100 enum window_loop type;
1101 register Lisp_Object obj, frames;
1102 int mini;
1103 {
1104 register Lisp_Object w;
1105 register Lisp_Object best_window;
1106 register Lisp_Object next_window;
1107 register Lisp_Object last_window;
1108 FRAME_PTR frame;
1109
1110 #ifdef MULTI_FRAME
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;
1118 else
1119 frame = 0;
1120 #else
1121 frame = 0;
1122 #endif
1123
1124 /* Pick a window to start with. */
1125 if (XTYPE (obj) == Lisp_Window)
1126 w = obj;
1127 else if (frame)
1128 w = FRAME_SELECTED_WINDOW (frame);
1129 else
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);
1147
1148 best_window = Qnil;
1149 for (;;)
1150 {
1151 FRAME_PTR w_frame = XFRAME (WINDOW_FRAME (XWINDOW (w)));
1152
1153 /* Pick the next window now, since some operations will delete
1154 the current window. */
1155 #ifdef MULTI_FRAME
1156 if (frame)
1157 next_window = Fnext_window (w, (mini ? Qt : Qnil), Qlambda);
1158 else
1159 #endif /* MULTI_FRAME */
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? */
1162 next_window = Fnext_window (w, mini ? Qt : Qnil, Qt);
1163
1164 if (! MINI_WINDOW_P (XWINDOW (w))
1165 || (mini && minibuf_level > 0))
1166 switch (type)
1167 {
1168 case GET_BUFFER_WINDOW:
1169 /* Ignore invisible and iconified frames. */
1170 if (! FRAME_VISIBLE_P (w_frame)
1171 || FRAME_ICONIFIED_P (w_frame))
1172 break;
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 */
1179 if (!NILP (obj) && XFASTINT (XWINDOW (w)->width)
1180 != FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
1181 break;
1182 #if 0
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)))))
1186 break;
1187 #endif
1188 /* Ignore dedicated windows and minibuffers. */
1189 if (MINI_WINDOW_P (XWINDOW (w))
1190 || !NILP (XWINDOW (w)->dedicated))
1191 break;
1192 if (NILP (best_window)
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
1207 on the frame, find a new buffer to display there. */
1208 if (NILP (XWINDOW (w)->parent))
1209 {
1210 Lisp_Object new_buffer = Fother_buffer (obj, Qnil);
1211 if (NILP (new_buffer))
1212 new_buffer
1213 = Fget_buffer_create (build_string ("*scratch*"));
1214 Fset_window_buffer (w, new_buffer);
1215 Fset_buffer (XWINDOW (w)->buffer);
1216 }
1217 else
1218 Fdelete_window (w);
1219 }
1220 break;
1221
1222 case GET_LARGEST_WINDOW:
1223 #if 0
1224 /* Ignore invisible and iconified frames. */
1225 if (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (w))))
1226 || FRAME_ICONIFIED_P (XFRAME (WINDOW_FRAME (XWINDOW (w)))))
1227 break;
1228 #endif
1229 /* Ignore dedicated windows and minibuffers. */
1230 if (MINI_WINDOW_P (XWINDOW (w))
1231 || !NILP (XWINDOW (w)->dedicated))
1232 break;
1233 {
1234 struct window *best_window_ptr = XWINDOW (best_window);
1235 struct window *w_ptr = XWINDOW (w);
1236 if (NILP (best_window) ||
1237 (XFASTINT (w_ptr->height) * XFASTINT (w_ptr->width))
1238 > (XFASTINT (best_window_ptr->height)
1239 * XFASTINT (best_window_ptr->width)))
1240 best_window = w;
1241 }
1242 break;
1243
1244 case UNSHOW_BUFFER:
1245 if (EQ (XWINDOW (w)->buffer, obj))
1246 {
1247 /* Find another buffer to show in this window. */
1248 Lisp_Object another_buffer = Fother_buffer (obj, Qnil);
1249 if (NILP (another_buffer))
1250 another_buffer
1251 = Fget_buffer_create (build_string ("*scratch*"));
1252 Fset_window_buffer (w, another_buffer);
1253 if (EQ (w, selected_window))
1254 Fset_buffer (XWINDOW (w)->buffer);
1255 }
1256 break;
1257 }
1258
1259 if (EQ (w, last_window))
1260 break;
1261
1262 w = next_window;
1263 }
1264
1265 return best_window;
1266 }
1267
1268 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1269 "Return the window least recently selected or used for display.\n\
1270 If optional argument FRAMES is t, search all frames. If FRAME is a\n\
1271 frame, search only that frame.\n")
1272 (frames)
1273 Lisp_Object frames;
1274 {
1275 register Lisp_Object w;
1276 /* First try for a window that is full-width */
1277 w = window_loop (GET_LRU_WINDOW, Qt, 0, frames);
1278 if (!NILP (w) && !EQ (w, selected_window))
1279 return w;
1280 /* If none of them, try the rest */
1281 return window_loop (GET_LRU_WINDOW, Qnil, 0, frames);
1282 }
1283
1284 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1285 "Return the largest window in area.\n\
1286 If optional argument FRAMES is t, search all frames. If FRAME is a\n\
1287 frame, search only that frame.\n")
1288 (frame)
1289 Lisp_Object frame;
1290 {
1291 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
1292 frame);
1293 }
1294
1295 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1296 "Return a window currently displaying BUFFER, or nil if none.\n\
1297 If optional argument FRAME is t, search all visible frames.\n\
1298 If FRAME is nil, search only the selected frame.\n\
1299 If FRAME is a frame, search only that frame.\n")
1300 (buffer, frame)
1301 Lisp_Object buffer, frame;
1302 {
1303 buffer = Fget_buffer (buffer);
1304 if (XTYPE (buffer) == Lisp_Buffer)
1305 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
1306 else
1307 return Qnil;
1308 }
1309
1310 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1311 0, 1, "",
1312 "Make WINDOW (or the selected window) fill its frame.\n\
1313 Only the frame WINDOW is on is affected.")
1314 (window)
1315 Lisp_Object window;
1316 {
1317 struct window *w;
1318 int opoint = point;
1319 struct buffer *obuf = current_buffer;
1320 int top;
1321
1322 if (NILP (window))
1323 window = selected_window;
1324 else
1325 CHECK_LIVE_WINDOW (window, 0);
1326
1327 w = XWINDOW (window);
1328 top = XFASTINT (w->top);
1329
1330 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
1331
1332 Fset_buffer (w->buffer);
1333 SET_PT (marker_position (w->start));
1334 Frecenter (make_number (top - FRAME_MENU_BAR_LINES (XFRAME (WINDOW_FRAME (w)))));
1335
1336 set_buffer_internal (obuf);
1337 SET_PT (opoint);
1338 return Qnil;
1339 }
1340
1341 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
1342 1, 1, "bDelete windows on (buffer): ",
1343 "Delete all windows showing BUFFER.\n\
1344 Optional second argument FRAME controls which frames are affected.\n\
1345 If nil or omitted, delete all windows showing BUFFER in any frame.\n\
1346 If t, delete only windows showing BUFFER in the selected frame.\n\
1347 If a frame, delete only windows showing BUFFER in that frame.")
1348 (buffer, frame)
1349 Lisp_Object buffer, frame;
1350 {
1351 #ifdef MULTI_FRAME
1352 /* FRAME uses t and nil to mean the opposite of what window_loop
1353 expects. */
1354 if (! FRAMEP (frame))
1355 frame = NILP (frame) ? Qt : Qnil;
1356 #else
1357 frame = Qt;
1358 #endif
1359
1360 if (!NILP (buffer))
1361 {
1362 buffer = Fget_buffer (buffer);
1363 CHECK_BUFFER (buffer, 0);
1364 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
1365 }
1366 return Qnil;
1367 }
1368
1369 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
1370 Sreplace_buffer_in_windows,
1371 1, 1, "bReplace buffer in windows: ",
1372 "Replace BUFFER with some other buffer in all windows showing it.")
1373 (buffer)
1374 Lisp_Object buffer;
1375 {
1376 if (!NILP (buffer))
1377 {
1378 buffer = Fget_buffer (buffer);
1379 CHECK_BUFFER (buffer, 0);
1380 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
1381 }
1382 return Qnil;
1383 }
1384 \f
1385 /* Set the height of WINDOW and all its inferiors. */
1386
1387 /* The smallest acceptable dimensions for a window. Anything smaller
1388 might crash Emacs. */
1389 #define MIN_SAFE_WINDOW_WIDTH (2)
1390 #define MIN_SAFE_WINDOW_HEIGHT (2)
1391
1392 /* Make sure that window_min_height and window_min_width are
1393 not too small; if they are, set them to safe minima. */
1394
1395 static void
1396 check_min_window_sizes ()
1397 {
1398 /* Smaller values might permit a crash. */
1399 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
1400 window_min_width = MIN_SAFE_WINDOW_WIDTH;
1401 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
1402 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
1403 }
1404
1405 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
1406 minimum allowable size. */
1407 void
1408 check_frame_size (frame, rows, cols)
1409 FRAME_PTR frame;
1410 int *rows, *cols;
1411 {
1412 /* For height, we have to see whether the frame has a minibuffer, and
1413 whether it wants a mode line. */
1414 int min_height =
1415 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
1416 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
1417 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
1418
1419 if (*rows < min_height)
1420 *rows = min_height;
1421 if (*cols < MIN_SAFE_WINDOW_WIDTH)
1422 *cols = MIN_SAFE_WINDOW_WIDTH;
1423 }
1424
1425 /* Normally the window is deleted if it gets too small.
1426 nodelete nonzero means do not do this.
1427 (The caller should check later and do so if appropriate) */
1428
1429 set_window_height (window, height, nodelete)
1430 Lisp_Object window;
1431 int height;
1432 int nodelete;
1433 {
1434 register struct window *w = XWINDOW (window);
1435 register struct window *c;
1436 int oheight = XFASTINT (w->height);
1437 int top, pos, lastbot, opos, lastobot;
1438 Lisp_Object child;
1439
1440 check_min_window_sizes ();
1441
1442 if (!nodelete
1443 && ! NILP (w->parent)
1444 && height < window_min_height)
1445 {
1446 Fdelete_window (window);
1447 return;
1448 }
1449
1450 XFASTINT (w->last_modified) = 0;
1451 windows_or_buffers_changed++;
1452 XFASTINT (w->height) = height;
1453 if (!NILP (w->hchild))
1454 {
1455 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
1456 {
1457 XWINDOW (child)->top = w->top;
1458 set_window_height (child, height, nodelete);
1459 }
1460 }
1461 else if (!NILP (w->vchild))
1462 {
1463 lastbot = top = XFASTINT (w->top);
1464 lastobot = 0;
1465 for (child = w->vchild; !NILP (child); child = c->next)
1466 {
1467 c = XWINDOW (child);
1468
1469 opos = lastobot + XFASTINT (c->height);
1470
1471 XFASTINT (c->top) = lastbot;
1472
1473 pos = (((opos * height) << 1) + oheight) / (oheight << 1);
1474
1475 /* Avoid confusion: inhibit deletion of child if becomes too small */
1476 set_window_height (child, pos + top - lastbot, 1);
1477
1478 /* Now advance child to next window,
1479 and set lastbot if child was not just deleted. */
1480 lastbot = pos + top;
1481 lastobot = opos;
1482 }
1483 /* Now delete any children that became too small. */
1484 if (!nodelete)
1485 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
1486 {
1487 set_window_height (child, XINT (XWINDOW (child)->height), 0);
1488 }
1489 }
1490 }
1491
1492 /* Recursively set width of WINDOW and its inferiors. */
1493
1494 set_window_width (window, width, nodelete)
1495 Lisp_Object window;
1496 int width;
1497 int nodelete;
1498 {
1499 register struct window *w = XWINDOW (window);
1500 register struct window *c;
1501 int owidth = XFASTINT (w->width);
1502 int left, pos, lastright, opos, lastoright;
1503 Lisp_Object child;
1504
1505 if (!nodelete && width < window_min_width)
1506 {
1507 Fdelete_window (window);
1508 return;
1509 }
1510
1511 XFASTINT (w->last_modified) = 0;
1512 windows_or_buffers_changed++;
1513 XFASTINT (w->width) = width;
1514 if (!NILP (w->vchild))
1515 {
1516 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
1517 {
1518 XWINDOW (child)->left = w->left;
1519 set_window_width (child, width, nodelete);
1520 }
1521 }
1522 else if (!NILP (w->hchild))
1523 {
1524 lastright = left = XFASTINT (w->left);
1525 lastoright = 0;
1526 for (child = w->hchild; !NILP (child); child = c->next)
1527 {
1528 c = XWINDOW (child);
1529
1530 opos = lastoright + XFASTINT (c->width);
1531
1532 XFASTINT (c->left) = lastright;
1533
1534 pos = (((opos * width) << 1) + owidth) / (owidth << 1);
1535
1536 /* Inhibit deletion for becoming too small */
1537 set_window_width (child, pos + left - lastright, 1);
1538
1539 /* Now advance child to next window,
1540 and set lastright if child was not just deleted. */
1541 lastright = pos + left, lastoright = opos;
1542 }
1543 /* Delete children that became too small */
1544 if (!nodelete)
1545 for (child = w->hchild; !NILP (child); child = XWINDOW (child)->next)
1546 {
1547 set_window_width (child, XINT (XWINDOW (child)->width), 0);
1548 }
1549 }
1550 }
1551 \f
1552 int window_select_count;
1553
1554 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
1555 "Make WINDOW display BUFFER as its contents.\n\
1556 BUFFER can be a buffer or buffer name.")
1557 (window, buffer)
1558 register Lisp_Object window, buffer;
1559 {
1560 register Lisp_Object tem;
1561 register struct window *w = decode_window (window);
1562
1563 buffer = Fget_buffer (buffer);
1564 CHECK_BUFFER (buffer, 1);
1565
1566 if (NILP (XBUFFER (buffer)->name))
1567 error ("Attempt to display deleted buffer");
1568
1569 tem = w->buffer;
1570 if (NILP (tem))
1571 error ("Window is deleted");
1572 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
1573 is first being set up. */
1574 {
1575 if (!NILP (w->dedicated) && !EQ (tem, buffer))
1576 error ("Window is dedicated to %s\n", tem);
1577
1578 unshow_buffer (w);
1579 }
1580
1581 w->buffer = buffer;
1582 w->window_end_pos = 0;
1583 w->window_end_valid = Qnil;
1584 w->hscroll = 0;
1585 Fset_marker (w->pointm,
1586 make_number (BUF_PT (XBUFFER (buffer))),
1587 buffer);
1588 set_marker_restricted (w->start,
1589 make_number (XBUFFER (buffer)->last_window_start),
1590 buffer);
1591 w->start_at_line_beg = Qnil;
1592 w->force_start = Qnil;
1593 XFASTINT (w->last_modified) = 0;
1594 windows_or_buffers_changed++;
1595 if (EQ (window, selected_window))
1596 Fset_buffer (buffer);
1597
1598 return Qnil;
1599 }
1600
1601 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
1602 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
1603 The main editor command loop selects the buffer of the selected window\n\
1604 before each command.")
1605 (window)
1606 register Lisp_Object window;
1607 {
1608 register struct window *w;
1609 register struct window *ow = XWINDOW (selected_window);
1610
1611 CHECK_LIVE_WINDOW (window, 0);
1612
1613 w = XWINDOW (window);
1614
1615 if (NILP (w->buffer))
1616 error ("Trying to select deleted window or non-leaf window");
1617
1618 XFASTINT (w->use_time) = ++window_select_count;
1619 if (EQ (window, selected_window))
1620 return window;
1621
1622 Fset_marker (ow->pointm, make_number (BUF_PT (XBUFFER (ow->buffer))),
1623 ow->buffer);
1624
1625 selected_window = window;
1626 #ifdef MULTI_FRAME
1627 if (XFRAME (WINDOW_FRAME (w)) != selected_frame)
1628 {
1629 XFRAME (WINDOW_FRAME (w))->selected_window = window;
1630 Fhandle_switch_frame (WINDOW_FRAME (w), Qnil);
1631 }
1632 else
1633 selected_frame->selected_window = window;
1634 #endif
1635
1636 record_buffer (w->buffer);
1637 Fset_buffer (w->buffer);
1638
1639 /* Go to the point recorded in the window.
1640 This is important when the buffer is in more
1641 than one window. It also matters when
1642 redisplay_window has altered point after scrolling,
1643 because it makes the change only in the window. */
1644 {
1645 register int new_point = marker_position (w->pointm);
1646 if (new_point < BEGV)
1647 SET_PT (BEGV);
1648 if (new_point > ZV)
1649 SET_PT (ZV);
1650 else
1651 SET_PT (new_point);
1652 }
1653
1654 windows_or_buffers_changed++;
1655 return window;
1656 }
1657
1658 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 2,
1659 "BDisplay buffer: \nP",
1660 "Make BUFFER appear in some window but don't select it.\n\
1661 BUFFER can be a buffer or a buffer name.\n\
1662 If BUFFER is shown already in some window, just use that one,\n\
1663 unless the window is the selected window and the optional second\n\
1664 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
1665 Returns the window displaying BUFFER.")
1666 (buffer, not_this_window)
1667 register Lisp_Object buffer, not_this_window;
1668 {
1669 register Lisp_Object window;
1670
1671 buffer = Fget_buffer (buffer);
1672 CHECK_BUFFER (buffer, 0);
1673
1674 if (!NILP (Vdisplay_buffer_function))
1675 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
1676
1677 if (NILP (not_this_window)
1678 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
1679 return selected_window;
1680
1681 window = Fget_buffer_window (buffer, Qnil);
1682 if (!NILP (window)
1683 && (NILP (not_this_window) || !EQ (window, selected_window)))
1684 return window;
1685
1686 #ifdef MULTI_FRAME
1687 /* If there are no frames open that have more than a minibuffer,
1688 we need to create a new frame. */
1689 if (pop_up_frames || last_nonminibuf_frame == 0)
1690 {
1691 window
1692 = Fframe_selected_window (call0 (Vpop_up_frame_function));
1693 Fset_window_buffer (window, buffer);
1694 #if 0
1695 Fhandle_switch_frame (XWINDOW (window)->frame, Qnil);
1696 #endif
1697 return window;
1698 }
1699 #endif /* MULTI_FRAME */
1700
1701 if (pop_up_windows
1702 #ifdef MULTI_FRAME
1703 || FRAME_MINIBUF_ONLY_P (selected_frame)
1704 #endif
1705 )
1706 {
1707 Lisp_Object frames = Qnil;
1708
1709 #ifdef MULTI_FRAME
1710 if (FRAME_MINIBUF_ONLY_P (selected_frame))
1711 XSET (frames, Lisp_Frame, last_nonminibuf_frame);
1712 #endif
1713 /* Don't try to create a window if would get an error */
1714 if (split_height_threshold < window_min_height << 1)
1715 split_height_threshold = window_min_height << 1;
1716
1717 window = Fget_largest_window (frames);
1718
1719 if (!NILP (window)
1720 && window_height (window) >= split_height_threshold
1721 && (XFASTINT (XWINDOW (window)->width)
1722 == FRAME_WIDTH (XFRAME (WINDOW_FRAME (XWINDOW (window))))))
1723 window = Fsplit_window (window, Qnil, Qnil);
1724 else
1725 {
1726 window = Fget_lru_window (frames);
1727 if ((EQ (window, selected_window)
1728 || EQ (XWINDOW (window)->parent, Qnil))
1729 && window_height (window) >= window_min_height << 1)
1730 window = Fsplit_window (window, Qnil, Qnil);
1731 }
1732 }
1733 else
1734 window = Fget_lru_window (Qnil);
1735
1736 Fset_window_buffer (window, buffer);
1737 return window;
1738 }
1739
1740 void
1741 temp_output_buffer_show (buf)
1742 register Lisp_Object buf;
1743 {
1744 register struct buffer *old = current_buffer;
1745 register Lisp_Object window;
1746 register struct window *w;
1747
1748 Fset_buffer (buf);
1749 XBUFFER (buf)->save_modified = MODIFF;
1750 BEGV = BEG;
1751 ZV = Z;
1752 SET_PT (BEG);
1753 clip_changed = 1;
1754 set_buffer_internal (old);
1755
1756 if (!EQ (Vtemp_buffer_show_function, Qnil))
1757 call1 (Vtemp_buffer_show_function, buf);
1758 else
1759 {
1760 window = Fdisplay_buffer (buf, Qnil);
1761
1762 #ifdef MULTI_FRAME
1763 if (XFRAME (XWINDOW (window)->frame) != selected_frame)
1764 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
1765 #endif /* MULTI_FRAME */
1766 Vminibuf_scroll_window = window;
1767 w = XWINDOW (window);
1768 XFASTINT (w->hscroll) = 0;
1769 set_marker_restricted (w->start, make_number (1), buf);
1770 set_marker_restricted (w->pointm, make_number (1), buf);
1771 }
1772 }
1773 \f
1774 static
1775 make_dummy_parent (window)
1776 Lisp_Object window;
1777 {
1778 register Lisp_Object old, new;
1779 register struct window *o, *p;
1780
1781 old = window;
1782 XSETTYPE (old, Lisp_Vector);
1783 new = Fcopy_sequence (old);
1784 XSETTYPE (new, Lisp_Window);
1785
1786 o = XWINDOW (old);
1787 p = XWINDOW (new);
1788 XFASTINT (p->sequence_number) = ++sequence_number;
1789
1790 /* Put new into window structure in place of window */
1791 replace_window (window, new);
1792
1793 o->next = Qnil;
1794 o->prev = Qnil;
1795 o->vchild = Qnil;
1796 o->hchild = Qnil;
1797 o->parent = new;
1798
1799 p->start = Qnil;
1800 p->pointm = Qnil;
1801 p->buffer = Qnil;
1802 }
1803
1804 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
1805 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
1806 WINDOW defaults to selected one and SIZE to half its size.\n\
1807 If optional third arg HOR-FLAG is non-nil, split side by side\n\
1808 and put SIZE columns in the first of the pair.")
1809 (window, chsize, horflag)
1810 Lisp_Object window, chsize, horflag;
1811 {
1812 register Lisp_Object new;
1813 register struct window *o, *p;
1814 register int size;
1815
1816 if (NILP (window))
1817 window = selected_window;
1818 else
1819 CHECK_LIVE_WINDOW (window, 0);
1820
1821 o = XWINDOW (window);
1822
1823 if (NILP (chsize))
1824 {
1825 if (!NILP (horflag))
1826 /* Round odd size up, since this is for the left-hand window,
1827 and it will lose a column for the separators. */
1828 size = ((XFASTINT (o->width) + 1) & -2) >> 1;
1829 else
1830 size = XFASTINT (o->height) >> 1;
1831 }
1832 else
1833 {
1834 CHECK_NUMBER (chsize, 1);
1835 size = XINT (chsize);
1836 }
1837
1838 if (MINI_WINDOW_P (o))
1839 error ("Attempt to split minibuffer window");
1840 else if (FRAME_NO_SPLIT_P (XFRAME (WINDOW_FRAME (o))))
1841 error ("Attempt to split unsplittable frame");
1842
1843 check_min_window_sizes ();
1844
1845 if (NILP (horflag))
1846 {
1847 if (size < window_min_height
1848 || size + window_min_height > XFASTINT (o->height))
1849 args_out_of_range_3 (window, chsize, horflag);
1850 if (NILP (o->parent)
1851 || NILP (XWINDOW (o->parent)->vchild))
1852 {
1853 make_dummy_parent (window);
1854 new = o->parent;
1855 XWINDOW (new)->vchild = window;
1856 }
1857 }
1858 else
1859 {
1860 if (size < window_min_width
1861 || size + window_min_width > XFASTINT (o->width))
1862 args_out_of_range_3 (window, chsize, horflag);
1863 if (NILP (o->parent)
1864 || NILP (XWINDOW (o->parent)->hchild))
1865 {
1866 make_dummy_parent (window);
1867 new = o->parent;
1868 XWINDOW (new)->hchild = window;
1869 }
1870 }
1871
1872 /* Now we know that window's parent is a vertical combination
1873 if we are dividing vertically, or a horizontal combination
1874 if we are making side-by-side windows */
1875
1876 windows_or_buffers_changed++;
1877 new = make_window ();
1878 p = XWINDOW (new);
1879
1880 p->frame = o->frame;
1881 p->next = o->next;
1882 if (!NILP (p->next))
1883 XWINDOW (p->next)->prev = new;
1884 p->prev = window;
1885 o->next = new;
1886 p->parent = o->parent;
1887 p->buffer = Qt;
1888
1889 Fset_window_buffer (new, o->buffer);
1890
1891 /* Apportion the available frame space among the two new windows */
1892
1893 if (!NILP (horflag))
1894 {
1895 p->height = o->height;
1896 p->top = o->top;
1897 XFASTINT (p->width) = XFASTINT (o->width) - size;
1898 XFASTINT (o->width) = size;
1899 XFASTINT (p->left) = XFASTINT (o->left) + size;
1900 }
1901 else
1902 {
1903 p->left = o->left;
1904 p->width = o->width;
1905 XFASTINT (p->height) = XFASTINT (o->height) - size;
1906 XFASTINT (o->height) = size;
1907 XFASTINT (p->top) = XFASTINT (o->top) + size;
1908 }
1909
1910 return new;
1911 }
1912 \f
1913 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
1914 "Make current window ARG lines bigger.\n\
1915 From program, optional second arg non-nil means grow sideways ARG columns.")
1916 (n, side)
1917 register Lisp_Object n, side;
1918 {
1919 CHECK_NUMBER (n, 0);
1920 change_window_height (XINT (n), !NILP (side));
1921 return Qnil;
1922 }
1923
1924 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
1925 "Make current window ARG lines smaller.\n\
1926 From program, optional second arg non-nil means shrink sideways ARG columns.")
1927 (n, side)
1928 register Lisp_Object n, side;
1929 {
1930 CHECK_NUMBER (n, 0);
1931 change_window_height (-XINT (n), !NILP (side));
1932 return Qnil;
1933 }
1934
1935 int
1936 window_height (window)
1937 Lisp_Object window;
1938 {
1939 register struct window *p = XWINDOW (window);
1940 return XFASTINT (p->height);
1941 }
1942
1943 int
1944 window_width (window)
1945 Lisp_Object window;
1946 {
1947 register struct window *p = XWINDOW (window);
1948 return XFASTINT (p->width);
1949 }
1950
1951 #define MINSIZE(w) \
1952 (widthflag \
1953 ? window_min_width \
1954 : (MINI_WINDOW_P (XWINDOW (w)) ? 1 : window_min_height))
1955
1956 #define CURBEG(w) \
1957 *(widthflag ? (int *) &(XWINDOW (w)->left) : (int *) &(XWINDOW (w)->top))
1958
1959 #define CURSIZE(w) \
1960 *(widthflag ? (int *) &(XWINDOW (w)->width) : (int *) &(XWINDOW (w)->height))
1961
1962 /* Unlike set_window_height, this function
1963 also changes the heights of the siblings so as to
1964 keep everything consistent. */
1965
1966 change_window_height (delta, widthflag)
1967 register int delta;
1968 int widthflag;
1969 {
1970 register Lisp_Object parent;
1971 Lisp_Object window;
1972 register struct window *p;
1973 int *sizep;
1974 int (*sizefun) () = widthflag ? window_width : window_height;
1975 register int (*setsizefun) () = (widthflag
1976 ? set_window_width
1977 : set_window_height);
1978
1979 check_min_window_sizes ();
1980
1981 window = selected_window;
1982 while (1)
1983 {
1984 p = XWINDOW (window);
1985 parent = p->parent;
1986 if (NILP (parent))
1987 {
1988 if (widthflag)
1989 error ("No other window to side of this one");
1990 break;
1991 }
1992 if (widthflag ? !NILP (XWINDOW (parent)->hchild)
1993 : !NILP (XWINDOW (parent)->vchild))
1994 break;
1995 window = parent;
1996 }
1997
1998 sizep = &CURSIZE (window);
1999
2000 if (*sizep + delta < MINSIZE (window))
2001 {
2002 Fdelete_window (window);
2003 return;
2004 }
2005
2006 {
2007 register int maxdelta;
2008
2009 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - *sizep
2010 : !NILP (p->next) ? (*sizefun) (p->next) - MINSIZE (p->next)
2011 : !NILP (p->prev) ? (*sizefun) (p->prev) - MINSIZE (p->prev)
2012 /* This is a frame with only one window, a minibuffer-only
2013 or a minibufferless frame. */
2014 : (delta = 0));
2015
2016 if (delta > maxdelta)
2017 /* This case traps trying to make the minibuffer
2018 the full frame, or make the only window aside from the
2019 minibuffer the full frame. */
2020 delta = maxdelta;
2021
2022 if (delta == 0)
2023 return;
2024 }
2025
2026 if (!NILP (p->next) &&
2027 (*sizefun) (p->next) - delta >= MINSIZE (p->next))
2028 {
2029 (*setsizefun) (p->next, (*sizefun) (p->next) - delta, 0);
2030 (*setsizefun) (window, *sizep + delta, 0);
2031 CURBEG (p->next) += delta;
2032 /* This does not change size of p->next,
2033 but it propagates the new top edge to its children */
2034 (*setsizefun) (p->next, (*sizefun) (p->next), 0);
2035 }
2036 else if (!NILP (p->prev) &&
2037 (*sizefun) (p->prev) - delta >= MINSIZE (p->prev))
2038 {
2039 (*setsizefun) (p->prev, (*sizefun) (p->prev) - delta, 0);
2040 CURBEG (window) -= delta;
2041 (*setsizefun) (window, *sizep + delta, 0);
2042 }
2043 else
2044 {
2045 register int delta1;
2046 register int opht = (*sizefun) (parent);
2047
2048 /* If trying to grow this window to or beyond size of the parent,
2049 make delta1 so big that, on shrinking back down,
2050 all the siblings end up with less than one line and are deleted. */
2051 if (opht <= *sizep + delta)
2052 delta1 = opht * opht * 2;
2053 /* Otherwise, make delta1 just right so that if we add delta1
2054 lines to this window and to the parent, and then shrink
2055 the parent back to its original size, the new proportional
2056 size of this window will increase by delta. */
2057 else
2058 delta1 = (delta * opht * 100) / ((opht - *sizep - delta) * 100);
2059
2060 /* Add delta1 lines or columns to this window, and to the parent,
2061 keeping things consistent while not affecting siblings. */
2062 CURSIZE (parent) = opht + delta1;
2063 (*setsizefun) (window, *sizep + delta1, 0);
2064
2065 /* Squeeze out delta1 lines or columns from our parent,
2066 shriking this window and siblings proportionately.
2067 This brings parent back to correct size.
2068 Delta1 was calculated so this makes this window the desired size,
2069 taking it all out of the siblings. */
2070 (*setsizefun) (parent, opht, 0);
2071 }
2072
2073 XFASTINT (p->last_modified) = 0;
2074 }
2075 #undef MINSIZE
2076 #undef CURBEG
2077 #undef CURSIZE
2078
2079 \f
2080 /* Return number of lines of text (not counting mode line) in W. */
2081
2082 int
2083 window_internal_height (w)
2084 struct window *w;
2085 {
2086 int ht = XFASTINT (w->height);
2087
2088 if (MINI_WINDOW_P (w))
2089 return ht;
2090
2091 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
2092 || !NILP (w->next) || !NILP (w->prev)
2093 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
2094 return ht - 1;
2095
2096 return ht;
2097 }
2098
2099
2100 /* Return the number of columns in W.
2101 Don't count columns occupied by scroll bars or the vertical bar
2102 separating W from the sibling to its right. */
2103 int
2104 window_internal_width (w)
2105 struct window *w;
2106 {
2107 FRAME_PTR f = XFRAME (WINDOW_FRAME (w));
2108 int left = XINT (w->left);
2109 int width = XINT (w->width);
2110
2111 /* If this window is flush against the right edge of the frame, its
2112 internal width is its full width. */
2113 if (left + width >= FRAME_WIDTH (f))
2114 return width;
2115
2116 /* If we are not flush right, then our rightmost columns are
2117 occupied by some sort of separator. */
2118
2119 /* Scroll bars occupy a few columns. */
2120 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
2121 return width - VERTICAL_SCROLL_BAR_WIDTH;
2122
2123 /* The column of `|' characters separating side-by-side windows
2124 occupies one column only. */
2125 return width - 1;
2126 }
2127
2128
2129 /* Scroll contents of window WINDOW up N lines. */
2130
2131 void
2132 window_scroll (window, n, noerror)
2133 Lisp_Object window;
2134 int n;
2135 int noerror;
2136 {
2137 register struct window *w = XWINDOW (window);
2138 register int opoint = point;
2139 register int pos;
2140 register int ht = window_internal_height (w);
2141 register Lisp_Object tem;
2142 int lose;
2143 Lisp_Object bolp, nmoved;
2144
2145 XFASTINT (tem) = point;
2146 tem = Fpos_visible_in_window_p (tem, window);
2147
2148 if (NILP (tem))
2149 {
2150 Fvertical_motion (make_number (- ht / 2));
2151 XFASTINT (tem) = point;
2152 Fset_marker (w->start, tem, w->buffer);
2153 w->force_start = Qt;
2154 }
2155
2156 SET_PT (marker_position (w->start));
2157 lose = n < 0 && point == BEGV;
2158 Fvertical_motion (make_number (n));
2159 pos = point;
2160 bolp = Fbolp ();
2161 SET_PT (opoint);
2162
2163 if (lose)
2164 {
2165 if (noerror)
2166 return;
2167 else
2168 Fsignal (Qbeginning_of_buffer, Qnil);
2169 }
2170
2171 if (pos < ZV)
2172 {
2173 set_marker_restricted (w->start, make_number (pos), w->buffer);
2174 w->start_at_line_beg = bolp;
2175 w->update_mode_line = Qt;
2176 XFASTINT (w->last_modified) = 0;
2177 if (pos > opoint)
2178 SET_PT (pos);
2179 if (n < 0)
2180 {
2181 SET_PT (pos);
2182 tem = Fvertical_motion (make_number (ht));
2183 if (point > opoint || XFASTINT (tem) < ht)
2184 SET_PT (opoint);
2185 else
2186 Fvertical_motion (make_number (-1));
2187 }
2188 }
2189 else
2190 {
2191 if (noerror)
2192 return;
2193 else
2194 Fsignal (Qend_of_buffer, Qnil);
2195 }
2196 }
2197 \f
2198 /* This is the guts of Fscroll_up and Fscroll_down. */
2199
2200 static void
2201 scroll_command (n, direction)
2202 register Lisp_Object n;
2203 int direction;
2204 {
2205 register int defalt;
2206 int count = specpdl_ptr - specpdl;
2207
2208 /* If selected window's buffer isn't current, make it current for the moment.
2209 But don't screw up if window_scroll gets an error. */
2210 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
2211 {
2212 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2213 Fset_buffer (XWINDOW (selected_window)->buffer);
2214 }
2215
2216 defalt = (window_internal_height (XWINDOW (selected_window))
2217 - next_screen_context_lines);
2218 defalt = direction * (defalt < 1 ? 1 : defalt);
2219
2220 if (NILP (n))
2221 window_scroll (selected_window, defalt, 0);
2222 else if (EQ (n, Qminus))
2223 window_scroll (selected_window, - defalt, 0);
2224 else
2225 {
2226 n = Fprefix_numeric_value (n);
2227 window_scroll (selected_window, XINT (n) * direction, 0);
2228 }
2229
2230 unbind_to (count, Qnil);
2231 }
2232
2233 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
2234 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
2235 A near full screen is `next-screen-context-lines' less than a full screen.\n\
2236 When calling from a program, supply a number as argument or nil.")
2237 (n)
2238 Lisp_Object n;
2239 {
2240 scroll_command (n, 1);
2241 return Qnil;
2242 }
2243
2244 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
2245 "Scroll text of current window downward ARG lines; or near full screen if no ARG.\n\
2246 A near full screen is `next-screen-context-lines' less than a full screen.\n\
2247 When calling from a program, supply a number as argument or nil.")
2248 (n)
2249 Lisp_Object n;
2250 {
2251 scroll_command (n, -1);
2252 return Qnil;
2253 }
2254
2255 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
2256 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
2257 The next window is the one below the current one; or the one at the top\n\
2258 if the current one is at the bottom.\n\
2259 When calling from a program, supply a number as argument or nil.\n\
2260 \n\
2261 If in the minibuffer, `minibuf-scroll-window' if non-nil\n\
2262 specifies the window to scroll.\n\
2263 If `other-window-scroll-buffer' is non-nil, scroll the window\n\
2264 showing that buffer, popping the buffer up if necessary.")
2265 (n)
2266 register Lisp_Object n;
2267 {
2268 register Lisp_Object window;
2269 register int ht;
2270 register struct window *w;
2271 register int count = specpdl_ptr - specpdl;
2272
2273 if (MINI_WINDOW_P (XWINDOW (selected_window))
2274 && !NILP (Vminibuf_scroll_window))
2275 window = Vminibuf_scroll_window;
2276 /* If buffer is specified, scroll that buffer. */
2277 else if (!NILP (Vother_window_scroll_buffer))
2278 {
2279 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
2280 if (NILP (window))
2281 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt);
2282 }
2283 else
2284 {
2285 /* Nothing specified; look for a neighboring window on the same
2286 frame. */
2287 window = Fnext_window (selected_window, Qnil, Qnil);
2288
2289 if (EQ (window, selected_window))
2290 /* That didn't get us anywhere; look for a window on another
2291 visible frame. */
2292 do
2293 window = Fnext_window (window, Qnil, Qt);
2294 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
2295 && ! EQ (window, selected_window));
2296 }
2297
2298 CHECK_LIVE_WINDOW (window, 0);
2299
2300 if (EQ (window, selected_window))
2301 error ("There is no other window");
2302
2303 w = XWINDOW (window);
2304 ht = window_internal_height (w);
2305
2306 /* Don't screw up if window_scroll gets an error. */
2307 record_unwind_protect (save_excursion_restore, save_excursion_save ());
2308
2309 Fset_buffer (w->buffer);
2310 SET_PT (marker_position (w->pointm));
2311
2312 if (NILP (n))
2313 window_scroll (window, ht - next_screen_context_lines, 1);
2314 else if (EQ (n, Qminus))
2315 window_scroll (window, next_screen_context_lines - ht, 1);
2316 else
2317 {
2318 if (XTYPE (n) == Lisp_Cons)
2319 n = Fcar (n);
2320 CHECK_NUMBER (n, 0);
2321 window_scroll (window, XINT (n), 1);
2322 }
2323
2324 Fset_marker (w->pointm, make_number (point), Qnil);
2325 unbind_to (count, Qnil);
2326
2327 return Qnil;
2328 }
2329 \f
2330 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
2331 "Scroll selected window display ARG columns left.\n\
2332 Default for ARG is window width minus 2.")
2333 (arg)
2334 register Lisp_Object arg;
2335 {
2336
2337 if (NILP (arg))
2338 XFASTINT (arg) = window_internal_width (XWINDOW (selected_window)) - 2;
2339 else
2340 arg = Fprefix_numeric_value (arg);
2341
2342 return
2343 Fset_window_hscroll (selected_window,
2344 make_number (XINT (XWINDOW (selected_window)->hscroll)
2345 + XINT (arg)));
2346 }
2347
2348 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
2349 "Scroll selected window display ARG columns right.\n\
2350 Default for ARG is window width minus 2.")
2351 (arg)
2352 register Lisp_Object arg;
2353 {
2354 if (NILP (arg))
2355 XFASTINT (arg) = window_internal_width (XWINDOW (selected_window)) - 2;
2356 else
2357 arg = Fprefix_numeric_value (arg);
2358
2359 return
2360 Fset_window_hscroll (selected_window,
2361 make_number (XINT (XWINDOW (selected_window)->hscroll)
2362 - XINT (arg)));
2363 }
2364
2365 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
2366 "Center point in window and redisplay frame. With ARG, put point on line ARG.\n\
2367 The desired position of point is always relative to the current window.\n\
2368 Just C-u as prefix means put point in the center of the window.\n\
2369 No arg (i.e., it is nil) erases the entire frame and then\n\
2370 redraws with point in the center of the current window.")
2371 (n)
2372 register Lisp_Object n;
2373 {
2374 register struct window *w = XWINDOW (selected_window);
2375 register int ht = window_internal_height (w);
2376 register int opoint = point;
2377
2378 if (NILP (n))
2379 {
2380 extern int frame_garbaged;
2381
2382 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
2383 XFASTINT (n) = ht / 2;
2384 }
2385 else if (XTYPE (n) == Lisp_Cons) /* Just C-u. */
2386 {
2387 XFASTINT (n) = ht / 2;
2388 }
2389 else
2390 {
2391 n = Fprefix_numeric_value (n);
2392 CHECK_NUMBER (n, 0);
2393 }
2394
2395 if (XINT (n) < 0)
2396 XSETINT (n, XINT (n) + ht);
2397
2398 XSETINT (n, - XINT (n));
2399
2400 Fvertical_motion (n);
2401 Fset_marker (w->start, make_number (point), w->buffer);
2402 w->start_at_line_beg = Fbolp ();
2403
2404 SET_PT (opoint);
2405 w->force_start = Qt;
2406
2407 return Qnil;
2408 }
2409 \f
2410 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
2411 1, 1, "P",
2412 "Position point relative to window.\n\
2413 With no argument, position text at center of window.\n\
2414 An argument specifies frame line; zero means top of window,\n\
2415 negative means relative to bottom of window.")
2416 (arg)
2417 register Lisp_Object arg;
2418 {
2419 register struct window *w = XWINDOW (selected_window);
2420 register int height = window_internal_height (w);
2421 register int start;
2422
2423 if (NILP (arg))
2424 XFASTINT (arg) = height / 2;
2425 else
2426 {
2427 arg = Fprefix_numeric_value (arg);
2428 if (XINT (arg) < 0)
2429 XSETINT (arg, XINT (arg) + height);
2430 }
2431
2432 start = marker_position (w->start);
2433 if (start < BEGV || start > ZV)
2434 {
2435 Fvertical_motion (make_number (- height / 2));
2436 Fset_marker (w->start, make_number (point), w->buffer);
2437 w->start_at_line_beg = Fbolp ();
2438 w->force_start = Qt;
2439 }
2440 else
2441 SET_PT (start);
2442
2443 return Fvertical_motion (arg);
2444 }
2445 \f
2446 struct save_window_data
2447 {
2448 int size_from_Lisp_Vector_struct;
2449 struct Lisp_Vector *next_from_Lisp_Vector_struct;
2450 Lisp_Object frame_width, frame_height;
2451 Lisp_Object selected_frame;
2452 Lisp_Object current_window;
2453 Lisp_Object current_buffer;
2454 Lisp_Object minibuf_scroll_window;
2455 Lisp_Object root_window;
2456 Lisp_Object focus_frame;
2457 /* A vector, interpreted as a struct saved_window */
2458 Lisp_Object saved_windows;
2459 };
2460
2461 /* Arg to Fmake_vector */
2462 #define SAVE_WINDOW_DATA_SIZE \
2463 ((sizeof (struct save_window_data) \
2464 - (sizeof (struct Lisp_Vector) \
2465 /* Don't count the contents member of the struct Lisp_Vector */ \
2466 - sizeof (Lisp_Object))) \
2467 / sizeof (Lisp_Object))
2468
2469 /* This is saved as a Lisp_Vector */
2470 struct saved_window
2471 {
2472 /* these first two must agree with struct Lisp_Vector in lisp.h */
2473 int size_from_Lisp_Vector_struct;
2474 struct Lisp_Vector *next_from_Lisp_Vector_struct;
2475
2476 Lisp_Object window;
2477 Lisp_Object buffer, start, pointm, mark;
2478 Lisp_Object left, top, width, height, hscroll;
2479 Lisp_Object parent, prev;
2480 Lisp_Object start_at_line_beg;
2481 Lisp_Object display_table;
2482 };
2483 #define SAVED_WINDOW_VECTOR_SIZE 14 /* Arg to Fmake_vector */
2484
2485 #define SAVED_WINDOW_N(swv,n) \
2486 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
2487
2488 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
2489 "T if OBJECT is a window-configration object.")
2490 (obj)
2491 Lisp_Object obj;
2492 {
2493 if (XTYPE (obj) == Lisp_Window_Configuration)
2494 return Qt;
2495 return Qnil;
2496 }
2497
2498
2499 DEFUN ("set-window-configuration", Fset_window_configuration,
2500 Sset_window_configuration, 1, 1, 0,
2501 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
2502 CONFIGURATION must be a value previously returned\n\
2503 by `current-window-configuration' (which see).")
2504 (configuration)
2505 Lisp_Object configuration;
2506 {
2507 register struct save_window_data *data;
2508 struct Lisp_Vector *saved_windows;
2509 Lisp_Object new_current_buffer;
2510 Lisp_Object frame;
2511 FRAME_PTR f;
2512
2513 while (XTYPE (configuration) != Lisp_Window_Configuration)
2514 {
2515 configuration = wrong_type_argument (intern ("window-configuration-p"),
2516 configuration);
2517 }
2518
2519 data = (struct save_window_data *) XVECTOR (configuration);
2520 saved_windows = XVECTOR (data->saved_windows);
2521
2522 new_current_buffer = data->current_buffer;
2523 if (NILP (XBUFFER (new_current_buffer)->name))
2524 new_current_buffer = Qnil;
2525
2526 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
2527 f = XFRAME (frame);
2528
2529 /* If f is a dead frame, don't bother rebuilding its window tree.
2530 However, there is other stuff we should still try to do below. */
2531 if (FRAME_LIVE_P (f))
2532 {
2533 register struct window *w;
2534 register struct saved_window *p;
2535 int k;
2536
2537 /* If the frame has been resized since this window configuration was
2538 made, we change the frame to the size specified in the
2539 configuration, restore the configuration, and then resize it
2540 back. We keep track of the prevailing height in these variables. */
2541 int previous_frame_height = FRAME_HEIGHT (f);
2542 int previous_frame_width = FRAME_WIDTH (f);
2543
2544 if (XFASTINT (data->frame_height) != previous_frame_height
2545 || XFASTINT (data->frame_width) != previous_frame_width)
2546 change_frame_size (f, data->frame_height, data->frame_width, 0, 0);
2547
2548 windows_or_buffers_changed++;
2549
2550 /* Kludge Alert!
2551 Mark all windows now on frame as "deleted".
2552 Restoring the new configuration "undeletes" any that are in it.
2553
2554 Save their current buffers in their height fields, since we may
2555 need it later, if a buffer saved in the configuration is now
2556 dead. */
2557 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
2558
2559 for (k = 0; k < saved_windows->size; k++)
2560 {
2561 p = SAVED_WINDOW_N (saved_windows, k);
2562 w = XWINDOW (p->window);
2563 w->next = Qnil;
2564
2565 if (!NILP (p->parent))
2566 w->parent = SAVED_WINDOW_N (saved_windows,
2567 XFASTINT (p->parent))->window;
2568 else
2569 w->parent = Qnil;
2570
2571 if (!NILP (p->prev))
2572 {
2573 w->prev = SAVED_WINDOW_N (saved_windows,
2574 XFASTINT (p->prev))->window;
2575 XWINDOW (w->prev)->next = p->window;
2576 }
2577 else
2578 {
2579 w->prev = Qnil;
2580 if (!NILP (w->parent))
2581 {
2582 if (EQ (p->width, XWINDOW (w->parent)->width))
2583 {
2584 XWINDOW (w->parent)->vchild = p->window;
2585 XWINDOW (w->parent)->hchild = Qnil;
2586 }
2587 else
2588 {
2589 XWINDOW (w->parent)->hchild = p->window;
2590 XWINDOW (w->parent)->vchild = Qnil;
2591 }
2592 }
2593 }
2594
2595 /* If we squirreled away the buffer in the window's height,
2596 restore it now. */
2597 if (XTYPE (w->height) == Lisp_Buffer)
2598 w->buffer = w->height;
2599 w->left = p->left;
2600 w->top = p->top;
2601 w->width = p->width;
2602 w->height = p->height;
2603 w->hscroll = p->hscroll;
2604 w->display_table = p->display_table;
2605 XFASTINT (w->last_modified) = 0;
2606
2607 /* Reinstall the saved buffer and pointers into it. */
2608 if (NILP (p->buffer))
2609 w->buffer = p->buffer;
2610 else
2611 {
2612 if (!NILP (XBUFFER (p->buffer)->name))
2613 /* If saved buffer is alive, install it. */
2614 {
2615 w->buffer = p->buffer;
2616 w->start_at_line_beg = p->start_at_line_beg;
2617 set_marker_restricted (w->start,
2618 Fmarker_position (p->start),
2619 w->buffer);
2620 set_marker_restricted (w->pointm,
2621 Fmarker_position (p->pointm),
2622 w->buffer);
2623 Fset_marker (XBUFFER (w->buffer)->mark,
2624 Fmarker_position (p->mark), w->buffer);
2625
2626 /* As documented in Fcurrent_window_configuration, don't
2627 save the location of point in the buffer which was current
2628 when the window configuration was recorded. */
2629 if (!EQ (p->buffer, new_current_buffer) &&
2630 XBUFFER (p->buffer) == current_buffer)
2631 Fgoto_char (w->pointm);
2632 }
2633 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
2634 /* Else unless window has a live buffer, get one. */
2635 {
2636 w->buffer = Fcdr (Fcar (Vbuffer_alist));
2637 /* This will set the markers to beginning of visible
2638 range. */
2639 set_marker_restricted (w->start, make_number (0), w->buffer);
2640 set_marker_restricted (w->pointm, make_number (0),w->buffer);
2641 w->start_at_line_beg = Qt;
2642 }
2643 else
2644 /* Keeping window's old buffer; make sure the markers
2645 are real. */
2646 {
2647 /* Set window markers at start of visible range. */
2648 if (XMARKER (w->start)->buffer == 0)
2649 set_marker_restricted (w->start, make_number (0),
2650 w->buffer);
2651 if (XMARKER (w->pointm)->buffer == 0)
2652 set_marker_restricted (w->pointm,
2653 (make_number
2654 (BUF_PT (XBUFFER (w->buffer)))),
2655 w->buffer);
2656 w->start_at_line_beg = Qt;
2657 }
2658 }
2659 }
2660
2661 FRAME_ROOT_WINDOW (f) = data->root_window;
2662 Fselect_window (data->current_window);
2663
2664 #ifdef MULTI_FRAME
2665 if (NILP (data->focus_frame)
2666 || (XTYPE (data->focus_frame) == Lisp_Frame
2667 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
2668 Fredirect_frame_focus (frame, data->focus_frame);
2669 #endif
2670
2671 #if 0 /* I don't understand why this is needed, and it causes problems
2672 when the frame's old selected window has been deleted. */
2673 #ifdef MULTI_FRAME
2674 if (f != selected_frame && ! FRAME_TERMCAP_P (f))
2675 Fhandle_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)), Qnil);
2676 #endif
2677 #endif
2678
2679 /* Set the screen height to the value it had before this function. */
2680 if (previous_frame_height != FRAME_HEIGHT (f)
2681 || previous_frame_width != FRAME_WIDTH (f))
2682 change_frame_size (f, previous_frame_height, previous_frame_width,
2683 0, 0);
2684 }
2685
2686 #ifdef MULTI_FRAME
2687 /* Fselect_window will have made f the selected frame, so we
2688 reselect the proper frame here. Fhandle_switch_frame will change the
2689 selected window too, but that doesn't make the call to
2690 Fselect_window above totally superfluous; it still sets f's
2691 selected window. */
2692 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
2693 Fhandle_switch_frame (data->selected_frame, Qnil);
2694 #endif
2695
2696 if (!NILP (new_current_buffer))
2697 Fset_buffer (new_current_buffer);
2698
2699 Vminibuf_scroll_window = data->minibuf_scroll_window;
2700 return (Qnil);
2701 }
2702
2703 /* Mark all windows now on frame as deleted
2704 by setting their buffers to nil. */
2705
2706 void
2707 delete_all_subwindows (w)
2708 register struct window *w;
2709 {
2710 if (!NILP (w->next))
2711 delete_all_subwindows (XWINDOW (w->next));
2712 if (!NILP (w->vchild))
2713 delete_all_subwindows (XWINDOW (w->vchild));
2714 if (!NILP (w->hchild))
2715 delete_all_subwindows (XWINDOW (w->hchild));
2716
2717 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
2718
2719 /* We set all three of these fields to nil, to make sure that we can
2720 distinguish this dead window from any live window. Live leaf
2721 windows will have buffer set, and combination windows will have
2722 vchild or hchild set. */
2723 w->buffer = Qnil;
2724 w->vchild = Qnil;
2725 w->hchild = Qnil;
2726 }
2727 \f
2728 static int
2729 count_windows (window)
2730 register struct window *window;
2731 {
2732 register int count = 1;
2733 if (!NILP (window->next))
2734 count += count_windows (XWINDOW (window->next));
2735 if (!NILP (window->vchild))
2736 count += count_windows (XWINDOW (window->vchild));
2737 if (!NILP (window->hchild))
2738 count += count_windows (XWINDOW (window->hchild));
2739 return count;
2740 }
2741
2742 static int
2743 save_window_save (window, vector, i)
2744 Lisp_Object window;
2745 struct Lisp_Vector *vector;
2746 int i;
2747 {
2748 register struct saved_window *p;
2749 register struct window *w;
2750 register Lisp_Object tem;
2751
2752 for (;!NILP (window); window = w->next)
2753 {
2754 p = SAVED_WINDOW_N (vector, i);
2755 w = XWINDOW (window);
2756
2757 XFASTINT (w->temslot) = i++;
2758 p->window = window;
2759 p->buffer = w->buffer;
2760 p->left = w->left;
2761 p->top = w->top;
2762 p->width = w->width;
2763 p->height = w->height;
2764 p->hscroll = w->hscroll;
2765 p->display_table = w->display_table;
2766 if (!NILP (w->buffer))
2767 {
2768 /* Save w's value of point in the window configuration.
2769 If w is the selected window, then get the value of point
2770 from the buffer; pointm is garbage in the selected window. */
2771 if (EQ (window, selected_window))
2772 {
2773 p->pointm = Fmake_marker ();
2774 Fset_marker (p->pointm, BUF_PT (XBUFFER (w->buffer)),
2775 w->buffer);
2776 }
2777 else
2778 p->pointm = Fcopy_marker (w->pointm);
2779
2780 p->start = Fcopy_marker (w->start);
2781 p->start_at_line_beg = w->start_at_line_beg;
2782
2783 tem = XBUFFER (w->buffer)->mark;
2784 p->mark = Fcopy_marker (tem);
2785 }
2786 else
2787 {
2788 p->pointm = Qnil;
2789 p->start = Qnil;
2790 p->mark = Qnil;
2791 p->start_at_line_beg = Qnil;
2792 }
2793
2794 if (NILP (w->parent))
2795 p->parent = Qnil;
2796 else
2797 p->parent = XWINDOW (w->parent)->temslot;
2798
2799 if (NILP (w->prev))
2800 p->prev = Qnil;
2801 else
2802 p->prev = XWINDOW (w->prev)->temslot;
2803
2804 if (!NILP (w->vchild))
2805 i = save_window_save (w->vchild, vector, i);
2806 if (!NILP (w->hchild))
2807 i = save_window_save (w->hchild, vector, i);
2808 }
2809
2810 return i;
2811 }
2812
2813 DEFUN ("current-window-configuration",
2814 Fcurrent_window_configuration, Scurrent_window_configuration, 0, 1, 0,
2815 "Return an object representing the current window configuration of FRAME.\n\
2816 If FRAME is nil or omitted, use the selected frame.\n\
2817 This describes the number of windows, their sizes and current buffers,\n\
2818 and for each displayed buffer, where display starts, and the positions of\n\
2819 point and mark. An exception is made for point in the current buffer:\n\
2820 its value is -not- saved.\n\
2821 This also records the currently selected frame, and FRAME's focus\n\
2822 redirection (see `redirect-frame-focus').")
2823 (frame)
2824 Lisp_Object frame;
2825 {
2826 register Lisp_Object tem;
2827 register int n_windows;
2828 register struct save_window_data *data;
2829 register int i;
2830 FRAME_PTR f;
2831
2832 if (NILP (frame))
2833 f = selected_frame;
2834 else
2835 {
2836 CHECK_LIVE_FRAME (frame, 0);
2837 f = XFRAME (frame);
2838 }
2839
2840 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
2841 data = (struct save_window_data *)
2842 XVECTOR (Fmake_vector (make_number (SAVE_WINDOW_DATA_SIZE),
2843 Qnil));
2844 XFASTINT (data->frame_width) = FRAME_WIDTH (f);
2845 XFASTINT (data->frame_height) = FRAME_HEIGHT (f);
2846 #ifdef MULTI_FRAME
2847 XSET (data->selected_frame, Lisp_Frame, selected_frame);
2848 #endif
2849 data->current_window = FRAME_SELECTED_WINDOW (f);
2850 XSET (data->current_buffer, Lisp_Buffer, current_buffer);
2851 data->minibuf_scroll_window = Vminibuf_scroll_window;
2852 data->root_window = FRAME_ROOT_WINDOW (f);
2853 data->focus_frame = FRAME_FOCUS_FRAME (f);
2854 tem = Fmake_vector (make_number (n_windows), Qnil);
2855 data->saved_windows = tem;
2856 for (i = 0; i < n_windows; i++)
2857 XVECTOR (tem)->contents[i]
2858 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
2859 save_window_save (FRAME_ROOT_WINDOW (f),
2860 XVECTOR (tem), 0);
2861 XSET (tem, Lisp_Window_Configuration, data);
2862 return (tem);
2863 }
2864
2865 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
2866 0, UNEVALLED, 0,
2867 "Execute body, preserving window sizes and contents.\n\
2868 Restores which buffer appears in which window, where display starts,\n\
2869 as well as the current buffer.\n\
2870 Does not restore the value of point in current buffer.")
2871 (args)
2872 Lisp_Object args;
2873 {
2874 register Lisp_Object val;
2875 register int count = specpdl_ptr - specpdl;
2876
2877 record_unwind_protect (Fset_window_configuration,
2878 Fcurrent_window_configuration (Qnil));
2879 val = Fprogn (args);
2880 return unbind_to (count, val);
2881 }
2882 \f
2883 init_window_once ()
2884 {
2885 #ifdef MULTI_FRAME
2886 selected_frame = make_terminal_frame ();
2887 minibuf_window = selected_frame->minibuffer_window;
2888 selected_window = selected_frame->selected_window;
2889 last_nonminibuf_frame = selected_frame;
2890 #else /* not MULTI_FRAME */
2891 extern Lisp_Object get_minibuffer ();
2892
2893 minibuf_window = make_window ();
2894 FRAME_ROOT_WINDOW (selected_frame) = make_window ();
2895
2896 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->next = minibuf_window;
2897 XWINDOW (minibuf_window)->prev = FRAME_ROOT_WINDOW (selected_frame);
2898 XWINDOW (minibuf_window)->mini_p = Qt;
2899
2900 /* These values 9 and 10 are arbitrary,
2901 just so that there is "something there."
2902 Correct values are put in in init_xdisp */
2903
2904 XFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->width) = 10;
2905 XFASTINT (XWINDOW (minibuf_window)->width) = 10;
2906
2907 XFASTINT (XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->height) = 9;
2908 XFASTINT (XWINDOW (minibuf_window)->top) = 9;
2909 XFASTINT (XWINDOW (minibuf_window)->height) = 1;
2910
2911 /* Prevent error in Fset_window_buffer. */
2912 XWINDOW (FRAME_ROOT_WINDOW (selected_frame))->buffer = Qt;
2913 XWINDOW (minibuf_window)->buffer = Qt;
2914
2915 /* Now set them up for real. */
2916 Fset_window_buffer (FRAME_ROOT_WINDOW (selected_frame),
2917 Fcurrent_buffer ());
2918 Fset_window_buffer (minibuf_window, get_minibuffer (0));
2919
2920 selected_window = FRAME_ROOT_WINDOW (selected_frame);
2921 /* Make sure this window seems more recently used than
2922 a newly-created, never-selected window. Increment
2923 window_select_count so the first selection ever will get
2924 something newer than this. */
2925 XFASTINT (XWINDOW (selected_window)->use_time) = ++window_select_count;
2926 #endif /* not MULTI_FRAME */
2927 }
2928
2929 syms_of_window ()
2930 {
2931 Qwindowp = intern ("windowp");
2932 staticpro (&Qwindowp);
2933
2934 Qwindow_live_p = intern ("window-live-p");
2935 staticpro (&Qwindow_live_p);
2936
2937 #ifndef MULTI_FRAME
2938 /* Make sure all windows get marked */
2939 staticpro (&minibuf_window);
2940 #endif
2941
2942 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
2943 "Non-nil means call as function to display a help buffer.\n\
2944 Used by `with-output-to-temp-buffer'.");
2945 Vtemp_buffer_show_function = Qnil;
2946
2947 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
2948 "If non-nil, function to call to handle `display-buffer'.\n\
2949 It will receive two args, the buffer and a flag which if non-nil means\n\
2950 that the currently selected window is not acceptable.\n\
2951 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
2952 work using this function.");
2953 Vdisplay_buffer_function = Qnil;
2954
2955 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
2956 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
2957 Vminibuf_scroll_window = Qnil;
2958
2959 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
2960 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
2961 Vother_window_scroll_buffer = Qnil;
2962
2963 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
2964 "*Non-nil means `display-buffer' should make a separate frame.");
2965 pop_up_frames = 0;
2966
2967 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
2968 "*If non-nil, function to call to handle automatic new frame creation.\n\
2969 It is called with no arguments and should return a newly created frame.\n\
2970 \n\
2971 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
2972 where `pop-up-frame-alist' would hold the default frame parameters.");
2973 Vpop_up_frame_function = Qnil;
2974
2975 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
2976 "*Non-nil means display-buffer should make new windows.");
2977 pop_up_windows = 1;
2978
2979 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
2980 "*Number of lines of continuity when scrolling by screenfuls.");
2981 next_screen_context_lines = 2;
2982
2983 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
2984 "*display-buffer would prefer to split the largest window if this large.\n\
2985 If there is only one window, it is split regardless of this value.");
2986 split_height_threshold = 500;
2987
2988 DEFVAR_INT ("window-min-height", &window_min_height,
2989 "*Delete any window less than this tall (including its mode line).");
2990 window_min_height = 4;
2991
2992 DEFVAR_INT ("window-min-width", &window_min_width,
2993 "*Delete any window less than this wide.");
2994 window_min_width = 10;
2995
2996 defsubr (&Sselected_window);
2997 defsubr (&Sminibuffer_window);
2998 defsubr (&Swindow_minibuffer_p);
2999 defsubr (&Swindowp);
3000 defsubr (&Swindow_live_p);
3001 defsubr (&Spos_visible_in_window_p);
3002 defsubr (&Swindow_buffer);
3003 defsubr (&Swindow_height);
3004 defsubr (&Swindow_width);
3005 defsubr (&Swindow_hscroll);
3006 defsubr (&Sset_window_hscroll);
3007 defsubr (&Swindow_edges);
3008 defsubr (&Scoordinates_in_window_p);
3009 defsubr (&Swindow_at);
3010 defsubr (&Swindow_point);
3011 defsubr (&Swindow_start);
3012 defsubr (&Swindow_end);
3013 defsubr (&Sset_window_point);
3014 defsubr (&Sset_window_start);
3015 defsubr (&Swindow_dedicated_p);
3016 defsubr (&Sset_window_dedicated_p);
3017 defsubr (&Swindow_display_table);
3018 defsubr (&Sset_window_display_table);
3019 defsubr (&Snext_window);
3020 defsubr (&Sprevious_window);
3021 defsubr (&Sother_window);
3022 defsubr (&Sget_lru_window);
3023 defsubr (&Sget_largest_window);
3024 defsubr (&Sget_buffer_window);
3025 defsubr (&Sdelete_other_windows);
3026 defsubr (&Sdelete_windows_on);
3027 defsubr (&Sreplace_buffer_in_windows);
3028 defsubr (&Sdelete_window);
3029 defsubr (&Sset_window_buffer);
3030 defsubr (&Sselect_window);
3031 defsubr (&Sdisplay_buffer);
3032 defsubr (&Ssplit_window);
3033 defsubr (&Senlarge_window);
3034 defsubr (&Sshrink_window);
3035 defsubr (&Sscroll_up);
3036 defsubr (&Sscroll_down);
3037 defsubr (&Sscroll_left);
3038 defsubr (&Sscroll_right);
3039 defsubr (&Sscroll_other_window);
3040 defsubr (&Srecenter);
3041 defsubr (&Smove_to_window_line);
3042 defsubr (&Swindow_configuration_p);
3043 defsubr (&Sset_window_configuration);
3044 defsubr (&Scurrent_window_configuration);
3045 defsubr (&Ssave_window_excursion);
3046 }
3047
3048 keys_of_window ()
3049 {
3050 initial_define_key (control_x_map, '1', "delete-other-windows");
3051 initial_define_key (control_x_map, '2', "split-window");
3052 initial_define_key (control_x_map, '0', "delete-window");
3053 initial_define_key (control_x_map, 'o', "other-window");
3054 initial_define_key (control_x_map, '^', "enlarge-window");
3055 initial_define_key (control_x_map, '<', "scroll-left");
3056 initial_define_key (control_x_map, '>', "scroll-right");
3057
3058 initial_define_key (global_map, Ctl ('V'), "scroll-up");
3059 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
3060 initial_define_key (meta_map, 'v', "scroll-down");
3061
3062 initial_define_key (global_map, Ctl('L'), "recenter");
3063 initial_define_key (meta_map, 'r', "move-to-window-line");
3064 }