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