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