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