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