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