(Autoinserting): Remove doubled `insert'.
[emacs.git] / src / window.c
blob051ab8f400a7f6e070d6827b92e5190c213ec55e
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985,86,87,93,94,95,96,97,1998,2000, 2001
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include "lisp.h"
25 #include "buffer.h"
26 #include "keyboard.h"
27 #include "frame.h"
28 #include "window.h"
29 #include "commands.h"
30 #include "indent.h"
31 #include "termchar.h"
32 #include "disptab.h"
33 #include "dispextern.h"
34 #include "blockinput.h"
35 #include "intervals.h"
37 #ifdef HAVE_X_WINDOWS
38 #include "xterm.h"
39 #endif /* HAVE_X_WINDOWS */
40 #ifdef WINDOWSNT
41 #include "w32term.h"
42 #endif
43 #ifdef MSDOS
44 #include "msdos.h"
45 #endif
46 #ifdef macintosh
47 #include "macterm.h"
48 #endif
50 #ifndef max
51 #define max(a, b) ((a) < (b) ? (b) : (a))
52 #endif
54 /* Values returned from coordinates_in_window. */
56 enum window_part
58 ON_NOTHING,
59 ON_TEXT,
60 ON_MODE_LINE,
61 ON_VERTICAL_BORDER,
62 ON_HEADER_LINE,
63 ON_LEFT_FRINGE,
64 ON_RIGHT_FRINGE
68 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
69 Lisp_Object Qwindow_size_fixed, Qleft_fringe, Qright_fringe;
70 extern Lisp_Object Qheight, Qwidth;
72 static struct window *decode_window P_ ((Lisp_Object));
73 static Lisp_Object select_window_1 P_ ((Lisp_Object, int));
74 static int count_windows P_ ((struct window *));
75 static int get_leaf_windows P_ ((struct window *, struct window **, int));
76 static void window_scroll P_ ((Lisp_Object, int, int, int));
77 static void window_scroll_pixel_based P_ ((Lisp_Object, int, int, int));
78 static void window_scroll_line_based P_ ((Lisp_Object, int, int, int));
79 static int window_min_size_1 P_ ((struct window *, int));
80 static int window_min_size P_ ((struct window *, int, int, int *));
81 static void size_window P_ ((Lisp_Object, int, int, int));
82 static int freeze_window_start P_ ((struct window *, void *));
83 static int window_fixed_size_p P_ ((struct window *, int, int));
84 static void enlarge_window P_ ((Lisp_Object, int, int));
85 static Lisp_Object window_list P_ ((void));
86 static int add_window_to_list P_ ((struct window *, void *));
87 static int candidate_window_p P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
88 Lisp_Object));
89 static Lisp_Object next_window P_ ((Lisp_Object, Lisp_Object,
90 Lisp_Object, int));
91 static void decode_next_window_args P_ ((Lisp_Object *, Lisp_Object *,
92 Lisp_Object *));
93 static int foreach_window_1 P_ ((struct window *,
94 int (* fn) (struct window *, void *),
95 void *));
96 static Lisp_Object window_list_1 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
98 /* The value of `window-size-fixed'. */
100 int window_size_fixed;
102 /* This is the window in which the terminal's cursor should
103 be left when nothing is being done with it. This must
104 always be a leaf window, and its buffer is selected by
105 the top level editing loop at the end of each command.
107 This value is always the same as
108 FRAME_SELECTED_WINDOW (selected_frame). */
110 Lisp_Object selected_window;
112 /* A list of all windows for use by next_window and Fwindow_list.
113 Functions creating or deleting windows should invalidate this cache
114 by setting it to nil. */
116 Lisp_Object Vwindow_list;
118 /* The mini-buffer window of the selected frame.
119 Note that you cannot test for mini-bufferness of an arbitrary window
120 by comparing against this; but you can test for mini-bufferness of
121 the selected window. */
123 Lisp_Object minibuf_window;
125 /* Non-nil means it is the window for C-M-v to scroll
126 when the mini-buffer is selected. */
128 Lisp_Object Vminibuf_scroll_window;
130 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
132 Lisp_Object Vother_window_scroll_buffer;
134 /* Non-nil means it's function to call to display temp buffers. */
136 Lisp_Object Vtemp_buffer_show_function;
138 /* If a window gets smaller than either of these, it is removed. */
140 int window_min_height;
141 int window_min_width;
143 /* Nonzero implies Fdisplay_buffer should create windows. */
145 int pop_up_windows;
147 /* Nonzero implies make new frames for Fdisplay_buffer. */
149 int pop_up_frames;
151 /* Nonzero means reuse existing frames for displaying buffers. */
153 int display_buffer_reuse_frames;
155 /* Non-nil means use this function instead of default */
157 Lisp_Object Vpop_up_frame_function;
159 /* Function to call to handle Fdisplay_buffer. */
161 Lisp_Object Vdisplay_buffer_function;
163 /* Non-nil means that Fdisplay_buffer should even the heights of windows. */
165 Lisp_Object Veven_window_heights;
167 /* List of buffer *names* for buffers that should have their own frames. */
169 Lisp_Object Vspecial_display_buffer_names;
171 /* List of regexps for buffer names that should have their own frames. */
173 Lisp_Object Vspecial_display_regexps;
175 /* Function to pop up a special frame. */
177 Lisp_Object Vspecial_display_function;
179 /* List of buffer *names* for buffers to appear in selected window. */
181 Lisp_Object Vsame_window_buffer_names;
183 /* List of regexps for buffer names to appear in selected window. */
185 Lisp_Object Vsame_window_regexps;
187 /* Hook run at end of temp_output_buffer_show. */
189 Lisp_Object Qtemp_buffer_show_hook;
191 /* Fdisplay_buffer always splits the largest window
192 if that window is more than this high. */
194 int split_height_threshold;
196 /* Number of lines of continuity in scrolling by screenfuls. */
198 int next_screen_context_lines;
200 /* Incremented for each window created. */
202 static int sequence_number;
204 /* Nonzero after init_window_once has finished. */
206 static int window_initialized;
208 /* Hook to run when window config changes. */
210 Lisp_Object Qwindow_configuration_change_hook;
211 Lisp_Object Vwindow_configuration_change_hook;
213 /* Nonzero means scroll commands try to put point
214 at the same screen height as previously. */
216 Lisp_Object Vscroll_preserve_screen_position;
218 #if 0 /* This isn't used anywhere. */
219 /* Nonzero means we can split a frame even if it is "unsplittable". */
220 static int inhibit_frame_unsplittable;
221 #endif /* 0 */
223 #define min(a, b) ((a) < (b) ? (a) : (b))
225 extern int scroll_margin;
227 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
229 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
230 "Returns t if OBJECT is a window.")
231 (object)
232 Lisp_Object object;
234 return WINDOWP (object) ? Qt : Qnil;
237 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
238 "Returns t if OBJECT is a window which is currently visible.")
239 (object)
240 Lisp_Object object;
242 return WINDOW_LIVE_P (object) ? Qt : Qnil;
245 Lisp_Object
246 make_window ()
248 Lisp_Object val;
249 register struct window *p;
250 register struct Lisp_Vector *vec;
251 int i;
253 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct window));
254 for (i = 0; i < VECSIZE (struct window); i++)
255 vec->contents[i] = Qnil;
256 vec->size = VECSIZE (struct window);
257 p = (struct window *) vec;
258 XSETFASTINT (p->sequence_number, ++sequence_number);
259 XSETFASTINT (p->left, 0);
260 XSETFASTINT (p->top, 0);
261 XSETFASTINT (p->height, 0);
262 XSETFASTINT (p->width, 0);
263 XSETFASTINT (p->hscroll, 0);
264 XSETFASTINT (p->min_hscroll, 0);
265 p->orig_top = p->orig_height = Qnil;
266 p->start = Fmake_marker ();
267 p->pointm = Fmake_marker ();
268 XSETFASTINT (p->use_time, 0);
269 p->frame = Qnil;
270 p->display_table = Qnil;
271 p->dedicated = Qnil;
272 p->pseudo_window_p = 0;
273 bzero (&p->cursor, sizeof (p->cursor));
274 bzero (&p->last_cursor, sizeof (p->last_cursor));
275 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
276 p->desired_matrix = p->current_matrix = 0;
277 p->phys_cursor_type = -1;
278 p->must_be_updated_p = 0;
279 XSETFASTINT (p->window_end_vpos, 0);
280 XSETFASTINT (p->window_end_pos, 0);
281 p->window_end_valid = Qnil;
282 p->vscroll = 0;
283 XSETWINDOW (val, p);
284 XSETFASTINT (p->last_point, 0);
285 p->frozen_window_start_p = 0;
287 Vwindow_list = Qnil;
288 return val;
291 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
292 "Return the window that the cursor now appears in and commands apply to.")
295 return selected_window;
298 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
299 "Return the window used now for minibuffers.\n\
300 If the optional argument FRAME is specified, return the minibuffer window\n\
301 used by that frame.")
302 (frame)
303 Lisp_Object frame;
305 if (NILP (frame))
306 frame = selected_frame;
307 CHECK_LIVE_FRAME (frame, 0);
308 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
311 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
312 "Returns non-nil if WINDOW is a minibuffer window.")
313 (window)
314 Lisp_Object window;
316 struct window *w = decode_window (window);
317 return MINI_WINDOW_P (w) ? Qt : Qnil;
321 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
322 Spos_visible_in_window_p, 0, 3, 0,
323 "Return t if position POS is currently on the frame in WINDOW.\n\
324 Return nil if that position is scrolled vertically out of view.\n\
325 If a character is only partially visible, nil is returned, unless the\n\
326 optional argument PARTIALLY is non-nil.\n\
327 POS defaults to point in WINDOW; WINDOW defaults to the selected window.")
328 (pos, window, partially)
329 Lisp_Object pos, window, partially;
331 register struct window *w;
332 register int posint;
333 register struct buffer *buf;
334 struct text_pos top;
335 Lisp_Object in_window;
336 int fully_p;
338 w = decode_window (window);
339 buf = XBUFFER (w->buffer);
340 SET_TEXT_POS_FROM_MARKER (top, w->start);
342 if (!NILP (pos))
344 CHECK_NUMBER_COERCE_MARKER (pos, 0);
345 posint = XINT (pos);
347 else if (w == XWINDOW (selected_window))
348 posint = PT;
349 else
350 posint = XMARKER (w->pointm)->charpos;
352 /* If position is above window start, it's not visible. */
353 if (posint < CHARPOS (top))
354 in_window = Qnil;
355 else if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)
356 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (buf)
357 && posint < BUF_Z (buf) - XFASTINT (w->window_end_pos))
359 /* If frame is up-to-date, and POSINT is < window end pos, use
360 that info. This doesn't work for POSINT == end pos, because
361 the window end pos is actually the position _after_ the last
362 char in the window. */
363 if (NILP (partially))
365 pos_visible_p (w, posint, &fully_p, NILP (partially));
366 in_window = fully_p ? Qt : Qnil;
368 else
369 in_window = Qt;
371 else if (posint > BUF_ZV (buf))
372 in_window = Qnil;
373 else if (CHARPOS (top) < BUF_BEGV (buf) || CHARPOS (top) > BUF_ZV (buf))
374 /* If window start is out of range, do something reasonable. */
375 in_window = Qnil;
376 else
378 if (pos_visible_p (w, posint, &fully_p, NILP (partially)))
379 in_window = !NILP (partially) || fully_p ? Qt : Qnil;
380 else
381 in_window = Qnil;
384 return in_window;
388 static struct window *
389 decode_window (window)
390 register Lisp_Object window;
392 if (NILP (window))
393 return XWINDOW (selected_window);
395 CHECK_LIVE_WINDOW (window, 0);
396 return XWINDOW (window);
399 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
400 "Return the buffer that WINDOW is displaying.")
401 (window)
402 Lisp_Object window;
404 return decode_window (window)->buffer;
407 DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
408 "Return the number of lines in WINDOW (including its mode line).")
409 (window)
410 Lisp_Object window;
412 return decode_window (window)->height;
415 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
416 "Return the number of display columns in WINDOW.\n\
417 This is the width that is usable columns available for text in WINDOW.\n\
418 If you want to find out how many columns WINDOW takes up,\n\
419 use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
420 (window)
421 Lisp_Object window;
423 return make_number (window_internal_width (decode_window (window)));
426 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
427 "Return the number of columns by which WINDOW is scrolled from left margin.")
428 (window)
429 Lisp_Object window;
431 return decode_window (window)->hscroll;
434 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
435 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
436 NCOL should be zero or positive.")
437 (window, ncol)
438 Lisp_Object window, ncol;
440 struct window *w = decode_window (window);
441 int hscroll;
443 CHECK_NUMBER (ncol, 1);
444 hscroll = max (0, XINT (ncol));
446 /* Prevent redisplay shortcuts when changing the hscroll. */
447 if (XINT (w->hscroll) != hscroll)
448 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
450 w->hscroll = make_number (hscroll);
451 return ncol;
454 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
455 Swindow_redisplay_end_trigger, 0, 1, 0,
456 "Return WINDOW's redisplay end trigger value.\n\
457 See `set-window-redisplay-end-trigger' for more information.")
458 (window)
459 Lisp_Object window;
461 return decode_window (window)->redisplay_end_trigger;
464 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
465 Sset_window_redisplay_end_trigger, 2, 2, 0,
466 "Set WINDOW's redisplay end trigger value to VALUE.\n\
467 VALUE should be a buffer position (typically a marker) or nil.\n\
468 If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
469 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
470 with two arguments: WINDOW, and the end trigger value.\n\
471 Afterwards the end-trigger value is reset to nil.")
472 (window, value)
473 register Lisp_Object window, value;
475 register struct window *w;
477 w = decode_window (window);
478 w->redisplay_end_trigger = value;
479 return value;
482 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
483 "Return a list of the edge coordinates of WINDOW.\n\
484 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
485 RIGHT is one more than the rightmost column used by WINDOW,\n\
486 and BOTTOM is one more than the bottommost row used by WINDOW\n\
487 and its mode-line.")
488 (window)
489 Lisp_Object window;
491 register struct window *w = decode_window (window);
493 return Fcons (w->left, Fcons (w->top,
494 Fcons (make_number (WINDOW_RIGHT_EDGE (w)),
495 Fcons (make_number (XFASTINT (w->top)
496 + XFASTINT (w->height)),
497 Qnil))));
500 /* Test if the character at column *X, row *Y is within window W.
501 If it is not, return 0;
502 if it is in the window's text area,
503 set *x and *y to its location relative to the upper left corner
504 of the window, and
505 return 1;
506 if it is on the window's modeline, return 2;
507 if it is on the border between the window and its right sibling,
508 return 3.
509 if it is on the window's top line, return 4;
510 if it is in the bitmap area to the left/right of the window,
511 return 5 or 6, and convert *X and *Y to window-relative corrdinates.
513 X and Y are frame relative pixel coordinates. */
515 static enum window_part
516 coordinates_in_window (w, x, y)
517 register struct window *w;
518 register int *x, *y;
520 /* Let's make this a global enum later, instead of using numbers
521 everywhere. */
522 struct frame *f = XFRAME (WINDOW_FRAME (w));
523 int left_x, right_x, top_y, bottom_y;
524 int flags_area_width = FRAME_LEFT_FLAGS_AREA_WIDTH (f);
525 enum window_part part;
526 int ux = CANON_X_UNIT (f), uy = CANON_Y_UNIT (f);
527 int x0 = XFASTINT (w->left) * ux;
528 int x1 = x0 + XFASTINT (w->width) * ux;
529 /* The width of the area where the vertical line can be dragged.
530 (Between mode lines for instance. */
531 int grabbable_width = ux;
533 if (*x < x0 || *x >= x1)
534 return ON_NOTHING;
536 /* In what's below, we subtract 1 when computing right_x because we
537 want the rightmost pixel, which is given by left_pixel+width-1. */
538 if (w->pseudo_window_p)
540 left_x = 0;
541 right_x = XFASTINT (w->width) * CANON_X_UNIT (f) - 1;
542 top_y = WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
543 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
545 else
547 left_x = (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w)
548 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
549 right_x = WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X (w) - 1;
550 top_y = (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w)
551 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
552 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
555 /* On the mode line or header line? If it's near the start of
556 the mode or header line of window that's has a horizontal
557 sibling, say it's on the vertical line. That's to be able
558 to resize windows horizontally in case we're using toolkit
559 scroll bars. */
561 if (WINDOW_WANTS_MODELINE_P (w)
562 && *y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w)
563 && *y < bottom_y)
565 /* We're somewhere on the mode line. We consider the place
566 between mode lines of horizontally adjacent mode lines
567 as the vertical border. If scroll bars on the left,
568 return the right window. */
569 part = ON_MODE_LINE;
571 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
573 if (abs (*x - x0) < grabbable_width)
574 part = ON_VERTICAL_BORDER;
576 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < grabbable_width)
577 part = ON_VERTICAL_BORDER;
579 else if (WINDOW_WANTS_HEADER_LINE_P (w)
580 && *y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
581 && *y >= top_y)
583 part = ON_HEADER_LINE;
585 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
587 if (abs (*x - x0) < grabbable_width)
588 part = ON_VERTICAL_BORDER;
590 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < grabbable_width)
591 part = ON_VERTICAL_BORDER;
593 /* Outside anything interesting? */
594 else if (*y < top_y
595 || *y >= bottom_y
596 || *x < (left_x
597 - flags_area_width
598 - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * ux)
599 || *x > (right_x
600 + flags_area_width
601 + FRAME_RIGHT_SCROLL_BAR_WIDTH (f) * ux))
603 part = ON_NOTHING;
605 else if (FRAME_WINDOW_P (f))
607 if (!w->pseudo_window_p
608 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f)
609 && !WINDOW_RIGHTMOST_P (w)
610 && (abs (*x - right_x - flags_area_width) < grabbable_width))
612 part = ON_VERTICAL_BORDER;
614 else if (*x < left_x || *x > right_x)
616 /* Other lines than the mode line don't include flags areas and
617 scroll bars on the left. */
619 /* Convert X and Y to window-relative pixel coordinates. */
620 *x -= left_x;
621 *y -= top_y;
622 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
624 else
626 *x -= left_x;
627 *y -= top_y;
628 part = ON_TEXT;
631 else
633 /* Need to say "*x > right_x" rather than >=, since on character
634 terminals, the vertical line's x coordinate is right_x. */
635 if (*x < left_x || *x > right_x)
637 /* Other lines than the mode line don't include flags areas and
638 scroll bars on the left. */
640 /* Convert X and Y to window-relative pixel coordinates. */
641 *x -= left_x;
642 *y -= top_y;
643 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
645 /* Here, too, "*x > right_x" is because of character terminals. */
646 else if (!w->pseudo_window_p
647 && !WINDOW_RIGHTMOST_P (w)
648 && *x > right_x - ux)
650 /* On the border on the right side of the window? Assume that
651 this area begins at RIGHT_X minus a canonical char width. */
652 part = ON_VERTICAL_BORDER;
654 else
656 /* Convert X and Y to window-relative pixel coordinates. */
657 *x -= left_x;
658 *y -= top_y;
659 part = ON_TEXT;
663 return part;
667 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
668 Scoordinates_in_window_p, 2, 2, 0,
669 "Return non-nil if COORDINATES are in WINDOW.\n\
670 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
671 measured in characters from the upper-left corner of the frame.\n\
672 \(0 . 0) denotes the character in the upper left corner of the\n\
673 frame.\n\
674 If COORDINATES are in the text portion of WINDOW,\n\
675 the coordinates relative to the window are returned.\n\
676 If they are in the mode line of WINDOW, `mode-line' is returned.\n\
677 If they are in the top mode line of WINDOW, `header-line' is returned.\n\
678 If they are in the fringe to the left of the window,\n\
679 `left-fringe' is returned, if they are in the area on the right of\n\
680 the window, `right-fringe' is returned.\n\
681 If they are on the border between WINDOW and its right sibling,\n\
682 `vertical-line' is returned.")
683 (coordinates, window)
684 register Lisp_Object coordinates, window;
686 struct window *w;
687 struct frame *f;
688 int x, y;
689 Lisp_Object lx, ly;
691 CHECK_LIVE_WINDOW (window, 0);
692 w = XWINDOW (window);
693 f = XFRAME (w->frame);
694 CHECK_CONS (coordinates, 1);
695 lx = Fcar (coordinates);
696 ly = Fcdr (coordinates);
697 CHECK_NUMBER_OR_FLOAT (lx, 1);
698 CHECK_NUMBER_OR_FLOAT (ly, 1);
699 x = PIXEL_X_FROM_CANON_X (f, lx);
700 y = PIXEL_Y_FROM_CANON_Y (f, ly);
702 switch (coordinates_in_window (w, &x, &y))
704 case ON_NOTHING:
705 return Qnil;
707 case ON_TEXT:
708 /* X and Y are now window relative pixel coordinates. Convert
709 them to canonical char units before returning them. */
710 return Fcons (CANON_X_FROM_PIXEL_X (f, x),
711 CANON_Y_FROM_PIXEL_Y (f, y));
713 case ON_MODE_LINE:
714 return Qmode_line;
716 case ON_VERTICAL_BORDER:
717 return Qvertical_line;
719 case ON_HEADER_LINE:
720 return Qheader_line;
722 case ON_LEFT_FRINGE:
723 return Qleft_fringe;
725 case ON_RIGHT_FRINGE:
726 return Qright_fringe;
728 default:
729 abort ();
734 /* Callback for foreach_window, used in window_from_coordinates.
735 Check if window W contains coordinates specified by USER_DATA which
736 is actually a pointer to a struct check_window_data CW.
738 Check if window W contains coordinates *CW->x and *CW->y. If it
739 does, return W in *CW->window, as Lisp_Object, and return in
740 *CW->part the part of the window under coordinates *X,*Y. Return
741 zero from this function to stop iterating over windows. */
743 struct check_window_data
745 Lisp_Object *window;
746 int *x, *y, *part;
749 static int
750 check_window_containing (w, user_data)
751 struct window *w;
752 void *user_data;
754 struct check_window_data *cw = (struct check_window_data *) user_data;
755 enum window_part found;
756 int continue_p = 1;
758 found = coordinates_in_window (w, cw->x, cw->y);
759 if (found != ON_NOTHING)
761 *cw->part = found - 1;
762 XSETWINDOW (*cw->window, w);
763 continue_p = 0;
766 return continue_p;
770 /* Find the window containing frame-relative pixel position X/Y and
771 return it as a Lisp_Object. If X, Y is on the window's modeline,
772 set *PART to 1; if it is on the separating line between the window
773 and its right sibling, set it to 2; otherwise set it to 0. If
774 there is no window under X, Y return nil and leave *PART
775 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
777 This function was previously implemented with a loop cycling over
778 windows with Fnext_window, and starting with the frame's selected
779 window. It turned out that this doesn't work with an
780 implementation of next_window using Vwindow_list, because
781 FRAME_SELECTED_WINDOW (F) is not always contained in the window
782 tree of F when this function is called asynchronously from
783 note_mouse_highlight. The original loop didn't terminate in this
784 case. */
786 Lisp_Object
787 window_from_coordinates (f, x, y, part, tool_bar_p)
788 struct frame *f;
789 int x, y;
790 int *part;
791 int tool_bar_p;
793 Lisp_Object window;
794 struct check_window_data cw;
796 window = Qnil;
797 cw.window = &window, cw.x = &x, cw.y = &y; cw.part = part;
798 foreach_window (f, check_window_containing, &cw);
800 /* If not found above, see if it's in the tool bar window, if a tool
801 bar exists. */
802 if (NILP (window)
803 && tool_bar_p
804 && WINDOWP (f->tool_bar_window)
805 && XINT (XWINDOW (f->tool_bar_window)->height) > 0
806 && (coordinates_in_window (XWINDOW (f->tool_bar_window), &x, &y)
807 != ON_NOTHING))
809 *part = 0;
810 window = f->tool_bar_window;
813 return window;
816 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
817 "Return window containing coordinates X and Y on FRAME.\n\
818 If omitted, FRAME defaults to the currently selected frame.\n\
819 The top left corner of the frame is considered to be row 0,\n\
820 column 0.")
821 (x, y, frame)
822 Lisp_Object x, y, frame;
824 int part;
825 struct frame *f;
827 if (NILP (frame))
828 frame = selected_frame;
829 CHECK_LIVE_FRAME (frame, 2);
830 f = XFRAME (frame);
832 /* Check that arguments are integers or floats. */
833 CHECK_NUMBER_OR_FLOAT (x, 0);
834 CHECK_NUMBER_OR_FLOAT (y, 1);
836 return window_from_coordinates (f,
837 PIXEL_X_FROM_CANON_X (f, x),
838 PIXEL_Y_FROM_CANON_Y (f, y),
839 &part, 0);
842 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
843 "Return current value of point in WINDOW.\n\
844 For a nonselected window, this is the value point would have\n\
845 if that window were selected.\n\
847 Note that, when WINDOW is the selected window and its buffer\n\
848 is also currently selected, the value returned is the same as (point).\n\
849 It would be more strictly correct to return the `top-level' value\n\
850 of point, outside of any save-excursion forms.\n\
851 But that is hard to define.")
852 (window)
853 Lisp_Object window;
855 register struct window *w = decode_window (window);
857 if (w == XWINDOW (selected_window)
858 && current_buffer == XBUFFER (w->buffer))
859 return Fpoint ();
860 return Fmarker_position (w->pointm);
863 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
864 "Return position at which display currently starts in WINDOW.\n\
865 This is updated by redisplay or by calling `set-window-start'.")
866 (window)
867 Lisp_Object window;
869 return Fmarker_position (decode_window (window)->start);
872 /* This is text temporarily removed from the doc string below.
874 This function returns nil if the position is not currently known.\n\
875 That happens when redisplay is preempted and doesn't finish.\n\
876 If in that case you want to compute where the end of the window would\n\
877 have been if redisplay had finished, do this:\n\
878 (save-excursion\n\
879 (goto-char (window-start window))\n\
880 (vertical-motion (1- (window-height window)) window)\n\
881 (point))") */
883 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
884 "Return position at which display currently ends in WINDOW.\n\
885 This is updated by redisplay, when it runs to completion.\n\
886 Simply changing the buffer text or setting `window-start'\n\
887 does not update this value.\n\
888 If UPDATE is non-nil, compute the up-to-date position\n\
889 if it isn't already recorded.")
890 (window, update)
891 Lisp_Object window, update;
893 Lisp_Object value;
894 struct window *w = decode_window (window);
895 Lisp_Object buf;
897 buf = w->buffer;
898 CHECK_BUFFER (buf, 0);
900 #if 0 /* This change broke some things. We should make it later. */
901 /* If we don't know the end position, return nil.
902 The user can compute it with vertical-motion if he wants to.
903 It would be nicer to do it automatically,
904 but that's so slow that it would probably bother people. */
905 if (NILP (w->window_end_valid))
906 return Qnil;
907 #endif
909 if (! NILP (update)
910 && ! (! NILP (w->window_end_valid)
911 && XFASTINT (w->last_modified) >= MODIFF))
913 struct text_pos startp;
914 struct it it;
915 struct buffer *old_buffer = NULL, *b = XBUFFER (buf);
917 /* In case W->start is out of the range, use something
918 reasonable. This situation occured when loading a file with
919 `-l' containing a call to `rmail' with subsequent other
920 commands. At the end, W->start happened to be BEG, while
921 rmail had already narrowed the buffer. */
922 if (XMARKER (w->start)->charpos < BEGV)
923 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
924 else if (XMARKER (w->start)->charpos > ZV)
925 SET_TEXT_POS (startp, ZV, ZV_BYTE);
926 else
927 SET_TEXT_POS_FROM_MARKER (startp, w->start);
929 /* Cannot use Fvertical_motion because that function doesn't
930 cope with variable-height lines. */
931 if (b != current_buffer)
933 old_buffer = current_buffer;
934 set_buffer_internal (b);
937 start_display (&it, w, startp);
938 move_it_vertically (&it, window_box_height (w));
939 move_it_past_eol (&it);
940 value = make_number (IT_CHARPOS (it));
942 if (old_buffer)
943 set_buffer_internal (old_buffer);
945 else
946 XSETINT (value, BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
948 return value;
951 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
952 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
953 (window, pos)
954 Lisp_Object window, pos;
956 register struct window *w = decode_window (window);
958 CHECK_NUMBER_COERCE_MARKER (pos, 1);
959 if (w == XWINDOW (selected_window)
960 && XBUFFER (w->buffer) == current_buffer)
961 Fgoto_char (pos);
962 else
963 set_marker_restricted (w->pointm, pos, w->buffer);
965 /* We have to make sure that redisplay updates the window to show
966 the new value of point. */
967 if (!EQ (window, selected_window))
968 ++windows_or_buffers_changed;
970 return pos;
973 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
974 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
975 Optional third arg NOFORCE non-nil inhibits next redisplay\n\
976 from overriding motion of point in order to display at this exact start.")
977 (window, pos, noforce)
978 Lisp_Object window, pos, noforce;
980 register struct window *w = decode_window (window);
982 CHECK_NUMBER_COERCE_MARKER (pos, 1);
983 set_marker_restricted (w->start, pos, w->buffer);
984 /* this is not right, but much easier than doing what is right. */
985 w->start_at_line_beg = Qnil;
986 if (NILP (noforce))
987 w->force_start = Qt;
988 w->update_mode_line = Qt;
989 XSETFASTINT (w->last_modified, 0);
990 XSETFASTINT (w->last_overlay_modified, 0);
991 if (!EQ (window, selected_window))
992 windows_or_buffers_changed++;
994 return pos;
997 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
998 1, 1, 0,
999 "Return WINDOW's dedicated object, usually t or nil.\n\
1000 See also `set-window-dedicated-p'.")
1001 (window)
1002 Lisp_Object window;
1004 return decode_window (window)->dedicated;
1007 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
1008 Sset_window_dedicated_p, 2, 2, 0,
1009 "Control whether WINDOW is dedicated to the buffer it displays.\n\
1010 If it is dedicated, Emacs will not automatically change\n\
1011 which buffer appears in it.\n\
1012 The second argument is the new value for the dedication flag;\n\
1013 non-nil means yes.")
1014 (window, arg)
1015 Lisp_Object window, arg;
1017 register struct window *w = decode_window (window);
1019 if (NILP (arg))
1020 w->dedicated = Qnil;
1021 else
1022 w->dedicated = Qt;
1024 return w->dedicated;
1027 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
1028 0, 1, 0,
1029 "Return the display-table that WINDOW is using.")
1030 (window)
1031 Lisp_Object window;
1033 return decode_window (window)->display_table;
1036 /* Get the display table for use on window W. This is either W's
1037 display table or W's buffer's display table. Ignore the specified
1038 tables if they are not valid; if no valid table is specified,
1039 return 0. */
1041 struct Lisp_Char_Table *
1042 window_display_table (w)
1043 struct window *w;
1045 struct Lisp_Char_Table *dp = NULL;
1047 if (DISP_TABLE_P (w->display_table))
1048 dp = XCHAR_TABLE (w->display_table);
1049 else if (BUFFERP (w->buffer))
1051 struct buffer *b = XBUFFER (w->buffer);
1053 if (DISP_TABLE_P (b->display_table))
1054 dp = XCHAR_TABLE (b->display_table);
1055 else if (DISP_TABLE_P (Vstandard_display_table))
1056 dp = XCHAR_TABLE (Vstandard_display_table);
1059 return dp;
1062 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
1063 "Set WINDOW's display-table to TABLE.")
1064 (window, table)
1065 register Lisp_Object window, table;
1067 register struct window *w;
1069 w = decode_window (window);
1070 w->display_table = table;
1071 return table;
1074 /* Record info on buffer window w is displaying
1075 when it is about to cease to display that buffer. */
1076 static void
1077 unshow_buffer (w)
1078 register struct window *w;
1080 Lisp_Object buf;
1081 struct buffer *b;
1083 buf = w->buffer;
1084 b = XBUFFER (buf);
1085 if (b != XMARKER (w->pointm)->buffer)
1086 abort ();
1088 #if 0
1089 if (w == XWINDOW (selected_window)
1090 || ! EQ (buf, XWINDOW (selected_window)->buffer))
1091 /* Do this except when the selected window's buffer
1092 is being removed from some other window. */
1093 #endif
1094 /* last_window_start records the start position that this buffer
1095 had in the last window to be disconnected from it.
1096 Now that this statement is unconditional,
1097 it is possible for the buffer to be displayed in the
1098 selected window, while last_window_start reflects another
1099 window which was recently showing the same buffer.
1100 Some people might say that might be a good thing. Let's see. */
1101 b->last_window_start = marker_position (w->start);
1103 /* Point in the selected window's buffer
1104 is actually stored in that buffer, and the window's pointm isn't used.
1105 So don't clobber point in that buffer. */
1106 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1107 /* This line helps to fix Horsley's testbug.el bug. */
1108 && !(WINDOWP (b->last_selected_window)
1109 && w != XWINDOW (b->last_selected_window)
1110 && EQ (buf, XWINDOW (b->last_selected_window)->buffer)))
1111 temp_set_point_both (b,
1112 clip_to_bounds (BUF_BEGV (b),
1113 XMARKER (w->pointm)->charpos,
1114 BUF_ZV (b)),
1115 clip_to_bounds (BUF_BEGV_BYTE (b),
1116 marker_byte_position (w->pointm),
1117 BUF_ZV_BYTE (b)));
1119 if (WINDOWP (b->last_selected_window)
1120 && w == XWINDOW (b->last_selected_window))
1121 b->last_selected_window = Qnil;
1124 /* Put replacement into the window structure in place of old. */
1125 static void
1126 replace_window (old, replacement)
1127 Lisp_Object old, replacement;
1129 register Lisp_Object tem;
1130 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
1132 /* If OLD is its frame's root_window, then replacement is the new
1133 root_window for that frame. */
1135 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
1136 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
1138 p->left = o->left;
1139 p->top = o->top;
1140 p->width = o->width;
1141 p->height = o->height;
1142 p->desired_matrix = p->current_matrix = 0;
1143 p->vscroll = 0;
1144 bzero (&p->cursor, sizeof (p->cursor));
1145 bzero (&p->last_cursor, sizeof (p->last_cursor));
1146 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
1147 p->phys_cursor_type = -1;
1148 p->must_be_updated_p = 0;
1149 p->pseudo_window_p = 0;
1150 XSETFASTINT (p->window_end_vpos, 0);
1151 XSETFASTINT (p->window_end_pos, 0);
1152 p->window_end_valid = Qnil;
1153 p->frozen_window_start_p = 0;
1154 p->orig_top = p->orig_height = Qnil;
1156 p->next = tem = o->next;
1157 if (!NILP (tem))
1158 XWINDOW (tem)->prev = replacement;
1160 p->prev = tem = o->prev;
1161 if (!NILP (tem))
1162 XWINDOW (tem)->next = replacement;
1164 p->parent = tem = o->parent;
1165 if (!NILP (tem))
1167 if (EQ (XWINDOW (tem)->vchild, old))
1168 XWINDOW (tem)->vchild = replacement;
1169 if (EQ (XWINDOW (tem)->hchild, old))
1170 XWINDOW (tem)->hchild = replacement;
1173 /*** Here, if replacement is a vertical combination
1174 and so is its new parent, we should make replacement's
1175 children be children of that parent instead. ***/
1178 DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
1179 "Remove WINDOW from the display. Default is selected window.")
1180 (window)
1181 register Lisp_Object window;
1183 delete_window (window);
1185 if (! NILP (Vwindow_configuration_change_hook)
1186 && ! NILP (Vrun_hooks))
1187 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1189 return Qnil;
1192 void
1193 delete_window (window)
1194 register Lisp_Object window;
1196 register Lisp_Object tem, parent, sib;
1197 register struct window *p;
1198 register struct window *par;
1199 struct frame *f;
1201 /* Because this function is called by other C code on non-leaf
1202 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
1203 so we can't decode_window here. */
1204 if (NILP (window))
1205 window = selected_window;
1206 else
1207 CHECK_WINDOW (window, 0);
1208 p = XWINDOW (window);
1210 /* It's okay to delete an already-deleted window. */
1211 if (NILP (p->buffer)
1212 && NILP (p->hchild)
1213 && NILP (p->vchild))
1214 return;
1216 parent = p->parent;
1217 if (NILP (parent))
1218 error ("Attempt to delete minibuffer or sole ordinary window");
1219 par = XWINDOW (parent);
1221 windows_or_buffers_changed++;
1222 Vwindow_list = Qnil;
1223 f = XFRAME (WINDOW_FRAME (p));
1224 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
1226 /* Are we trying to delete any frame's selected window? */
1228 Lisp_Object pwindow;
1230 /* See if the frame's selected window is either WINDOW
1231 or any subwindow of it, by finding all that window's parents
1232 and comparing each one with WINDOW. */
1233 pwindow = FRAME_SELECTED_WINDOW (f);
1235 while (!NILP (pwindow))
1237 if (EQ (window, pwindow))
1238 break;
1239 pwindow = XWINDOW (pwindow)->parent;
1242 if (EQ (window, pwindow))
1244 Lisp_Object alternative;
1245 alternative = Fnext_window (window, Qlambda, Qnil);
1247 /* If we're about to delete the selected window on the
1248 selected frame, then we should use Fselect_window to select
1249 the new window. On the other hand, if we're about to
1250 delete the selected window on any other frame, we shouldn't do
1251 anything but set the frame's selected_window slot. */
1252 if (EQ (window, selected_window))
1253 Fselect_window (alternative);
1254 else
1255 FRAME_SELECTED_WINDOW (f) = alternative;
1259 tem = p->buffer;
1260 /* tem is null for dummy parent windows
1261 (which have inferiors but not any contents themselves) */
1262 if (!NILP (tem))
1264 unshow_buffer (p);
1265 unchain_marker (p->pointm);
1266 unchain_marker (p->start);
1269 /* Free window glyph matrices. It is sure that they are allocated
1270 again when ADJUST_GLYPHS is called. Block input so that expose
1271 events and other events that access glyph matrices are not
1272 processed while we are changing them. */
1273 BLOCK_INPUT;
1274 free_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)));
1276 tem = p->next;
1277 if (!NILP (tem))
1278 XWINDOW (tem)->prev = p->prev;
1280 tem = p->prev;
1281 if (!NILP (tem))
1282 XWINDOW (tem)->next = p->next;
1284 if (EQ (window, par->hchild))
1285 par->hchild = p->next;
1286 if (EQ (window, par->vchild))
1287 par->vchild = p->next;
1289 /* Find one of our siblings to give our space to. */
1290 sib = p->prev;
1291 if (NILP (sib))
1293 /* If p gives its space to its next sibling, that sibling needs
1294 to have its top/left side pulled back to where p's is.
1295 set_window_{height,width} will re-position the sibling's
1296 children. */
1297 sib = p->next;
1298 XWINDOW (sib)->top = p->top;
1299 XWINDOW (sib)->left = p->left;
1302 /* Stretch that sibling. */
1303 if (!NILP (par->vchild))
1304 set_window_height (sib,
1305 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
1307 if (!NILP (par->hchild))
1308 set_window_width (sib,
1309 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
1312 /* If parent now has only one child,
1313 put the child into the parent's place. */
1314 tem = par->hchild;
1315 if (NILP (tem))
1316 tem = par->vchild;
1317 if (NILP (XWINDOW (tem)->next))
1318 replace_window (parent, tem);
1320 /* Since we may be deleting combination windows, we must make sure that
1321 not only p but all its children have been marked as deleted. */
1322 if (! NILP (p->hchild))
1323 delete_all_subwindows (XWINDOW (p->hchild));
1324 else if (! NILP (p->vchild))
1325 delete_all_subwindows (XWINDOW (p->vchild));
1327 /* Mark this window as deleted. */
1328 p->buffer = p->hchild = p->vchild = Qnil;
1330 /* Adjust glyph matrices. */
1331 adjust_glyphs (f);
1332 UNBLOCK_INPUT;
1337 /***********************************************************************
1338 Window List
1339 ***********************************************************************/
1341 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
1342 pointer. This is a callback function for foreach_window, used in
1343 function window_list. */
1345 static int
1346 add_window_to_list (w, user_data)
1347 struct window *w;
1348 void *user_data;
1350 Lisp_Object *list = (Lisp_Object *) user_data;
1351 Lisp_Object window;
1352 XSETWINDOW (window, w);
1353 *list = Fcons (window, *list);
1354 return 1;
1358 /* Return a list of all windows, for use by next_window. If
1359 Vwindow_list is a list, return that list. Otherwise, build a new
1360 list, cache it in Vwindow_list, and return that. */
1362 static Lisp_Object
1363 window_list ()
1365 if (!CONSP (Vwindow_list))
1367 Lisp_Object tail;
1369 Vwindow_list = Qnil;
1370 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1372 Lisp_Object args[2];
1374 /* We are visiting windows in canonical order, and add
1375 new windows at the front of args[1], which means we
1376 have to reverse this list at the end. */
1377 args[1] = Qnil;
1378 foreach_window (XFRAME (XCAR (tail)), add_window_to_list, &args[1]);
1379 args[0] = Vwindow_list;
1380 args[1] = Fnreverse (args[1]);
1381 Vwindow_list = Fnconc (2, args);
1385 return Vwindow_list;
1389 /* Value is non-zero if WINDOW satisfies the constraints given by
1390 OWINDOW, MINIBUF and ALL_FRAMES.
1392 MINIBUF t means WINDOW may be minibuffer windows.
1393 `lambda' means WINDOW may not be a minibuffer window.
1394 a window means a specific minibuffer window
1396 ALL_FRAMES t means search all frames,
1397 nil means search just current frame,
1398 `visible' means search just visible frames,
1399 0 means search visible and iconified frames,
1400 a window means search the frame that window belongs to,
1401 a frame means consider windows on that frame, only. */
1403 static int
1404 candidate_window_p (window, owindow, minibuf, all_frames)
1405 Lisp_Object window, owindow, minibuf, all_frames;
1407 struct window *w = XWINDOW (window);
1408 struct frame *f = XFRAME (w->frame);
1409 int candidate_p = 1;
1411 if (!BUFFERP (w->buffer))
1412 candidate_p = 0;
1413 else if (MINI_WINDOW_P (w)
1414 && (EQ (minibuf, Qlambda)
1415 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
1417 /* If MINIBUF is `lambda' don't consider any mini-windows.
1418 If it is a window, consider only that one. */
1419 candidate_p = 0;
1421 else if (EQ (all_frames, Qt))
1422 candidate_p = 1;
1423 else if (NILP (all_frames))
1425 xassert (WINDOWP (owindow));
1426 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
1428 else if (EQ (all_frames, Qvisible))
1430 FRAME_SAMPLE_VISIBILITY (f);
1431 candidate_p = FRAME_VISIBLE_P (f);
1433 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
1435 FRAME_SAMPLE_VISIBILITY (f);
1436 candidate_p = FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
1438 else if (WINDOWP (all_frames))
1439 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
1440 || EQ (XWINDOW (all_frames)->frame, w->frame)
1441 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
1442 else if (FRAMEP (all_frames))
1443 candidate_p = EQ (all_frames, w->frame);
1445 return candidate_p;
1449 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
1450 Fwindow_list. See there for the meaning of WINDOW, MINIBUF, and
1451 ALL_FRAMES. */
1453 static void
1454 decode_next_window_args (window, minibuf, all_frames)
1455 Lisp_Object *window, *minibuf, *all_frames;
1457 if (NILP (*window))
1458 *window = selected_window;
1459 else
1460 CHECK_LIVE_WINDOW (*window, 0);
1462 /* MINIBUF nil may or may not include minibuffers. Decide if it
1463 does. */
1464 if (NILP (*minibuf))
1465 *minibuf = minibuf_level ? minibuf_window : Qlambda;
1466 else if (!EQ (*minibuf, Qt))
1467 *minibuf = Qlambda;
1469 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
1470 => count none of them, or a specific minibuffer window (the
1471 active one) to count. */
1473 /* ALL_FRAMES nil doesn't specify which frames to include. */
1474 if (NILP (*all_frames))
1475 *all_frames = (!EQ (*minibuf, Qlambda)
1476 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window)->frame))
1477 : Qnil);
1478 else if (EQ (*all_frames, Qvisible))
1480 else if (XFASTINT (*all_frames) == 0)
1482 else if (FRAMEP (*all_frames))
1484 else if (!EQ (*all_frames, Qt))
1485 *all_frames = Qnil;
1487 /* Now *ALL_FRAMES is t meaning search all frames, nil meaning
1488 search just current frame, `visible' meaning search just visible
1489 frames, 0 meaning search visible and iconified frames, or a
1490 window, meaning search the frame that window belongs to, or a
1491 frame, meaning consider windows on that frame, only. */
1495 /* Return the next or previous window of WINDOW in canonical ordering
1496 of windows. NEXT_P non-zero means return the next window. See the
1497 documentation string of next-window for the meaning of MINIBUF and
1498 ALL_FRAMES. */
1500 static Lisp_Object
1501 next_window (window, minibuf, all_frames, next_p)
1502 Lisp_Object window, minibuf, all_frames;
1503 int next_p;
1505 decode_next_window_args (&window, &minibuf, &all_frames);
1507 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
1508 return the first window on the frame. */
1509 if (FRAMEP (all_frames)
1510 && !EQ (all_frames, XWINDOW (window)->frame))
1511 return Fframe_first_window (all_frames);
1513 if (next_p)
1515 Lisp_Object list;
1517 /* Find WINDOW in the list of all windows. */
1518 list = Fmemq (window, window_list ());
1520 /* Scan forward from WINDOW to the end of the window list. */
1521 if (CONSP (list))
1522 for (list = XCDR (list); CONSP (list); list = XCDR (list))
1523 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1524 break;
1526 /* Scan from the start of the window list up to WINDOW. */
1527 if (!CONSP (list))
1528 for (list = Vwindow_list;
1529 CONSP (list) && !EQ (XCAR (list), window);
1530 list = XCDR (list))
1531 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1532 break;
1534 if (CONSP (list))
1535 window = XCAR (list);
1537 else
1539 Lisp_Object candidate, list;
1541 /* Scan through the list of windows for candidates. If there are
1542 candidate windows in front of WINDOW, the last one of these
1543 is the one we want. If there are candidates following WINDOW
1544 in the list, again the last one of these is the one we want. */
1545 candidate = Qnil;
1546 for (list = window_list (); CONSP (list); list = XCDR (list))
1548 if (EQ (XCAR (list), window))
1550 if (WINDOWP (candidate))
1551 break;
1553 else if (candidate_window_p (XCAR (list), window, minibuf,
1554 all_frames))
1555 candidate = XCAR (list);
1558 if (WINDOWP (candidate))
1559 window = candidate;
1562 return window;
1566 /* This comment supplies the doc string for `next-window',
1567 for make-docfile to see. We cannot put this in the real DEFUN
1568 due to limits in the Unix cpp.
1570 DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
1571 "Return next window after WINDOW in canonical ordering of windows.\n\
1572 If omitted, WINDOW defaults to the selected window.\n\
1574 Optional second arg MINIBUF t means count the minibuffer window even\n\
1575 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1576 it is active. MINIBUF neither t nor nil means not to count the\n\
1577 minibuffer even if it is active.\n\
1579 Several frames may share a single minibuffer; if the minibuffer\n\
1580 counts, all windows on all frames that share that minibuffer count\n\
1581 too. Therefore, `next-window' can be used to iterate through the\n\
1582 set of windows even when the minibuffer is on another frame. If the\n\
1583 minibuffer does not count, only windows from WINDOW's frame count.\n\
1585 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1586 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1587 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1588 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1589 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1590 Anything else means restrict to WINDOW's frame.\n\
1592 If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1593 `next-window' to iterate through the entire cycle of acceptable\n\
1594 windows, eventually ending up back at the window you started with.\n\
1595 `previous-window' traverses the same cycle, in the reverse order.")
1596 (window, minibuf, all_frames) */
1598 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1600 (window, minibuf, all_frames)
1601 Lisp_Object window, minibuf, all_frames;
1603 return next_window (window, minibuf, all_frames, 1);
1607 /* This comment supplies the doc string for `previous-window',
1608 for make-docfile to see. We cannot put this in the real DEFUN
1609 due to limits in the Unix cpp.
1611 DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
1612 "Return the window preceding WINDOW in canonical ordering of windows.\n\
1613 If omitted, WINDOW defaults to the selected window.\n\
1615 Optional second arg MINIBUF t means count the minibuffer window even\n\
1616 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1617 it is active. MINIBUF neither t nor nil means not to count the\n\
1618 minibuffer even if it is active.\n\
1620 Several frames may share a single minibuffer; if the minibuffer\n\
1621 counts, all windows on all frames that share that minibuffer count\n\
1622 too. Therefore, `previous-window' can be used to iterate through\n\
1623 the set of windows even when the minibuffer is on another frame. If\n\
1624 the minibuffer does not count, only windows from WINDOW's frame count\n\
1626 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1627 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1628 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1629 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1630 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1631 Anything else means restrict to WINDOW's frame.\n\
1633 If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1634 `previous-window' to iterate through the entire cycle of acceptable\n\
1635 windows, eventually ending up back at the window you started with.\n\
1636 `next-window' traverses the same cycle, in the reverse order.")
1637 (window, minibuf, all_frames) */
1640 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1642 (window, minibuf, all_frames)
1643 Lisp_Object window, minibuf, all_frames;
1645 return next_window (window, minibuf, all_frames, 0);
1649 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1650 "Select the ARG'th different window on this frame.\n\
1651 All windows on current frame are arranged in a cyclic order.\n\
1652 This command selects the window ARG steps away in that order.\n\
1653 A negative ARG moves in the opposite order. If the optional second\n\
1654 argument ALL_FRAMES is non-nil, cycle through all frames.")
1655 (arg, all_frames)
1656 Lisp_Object arg, all_frames;
1658 Lisp_Object window;
1659 int i;
1661 CHECK_NUMBER (arg, 0);
1662 window = selected_window;
1664 for (i = XINT (arg); i > 0; --i)
1665 window = Fnext_window (window, Qnil, all_frames);
1666 for (; i < 0; ++i)
1667 window = Fprevious_window (window, Qnil, all_frames);
1669 Fselect_window (window);
1670 return Qnil;
1674 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
1675 "Return a list of windows on FRAME, starting with WINDOW.\n\
1676 FRAME nil or omitted means use the selected frame.\n\
1677 WINDOW nil or omitted means use the selected window.\n\
1678 MINIBUF t means include the minibuffer window, even if it isn't active.\n\
1679 MINIBUF nil or omitted means include the minibuffer window only\n\
1680 if it's active.\n\
1681 MINIBUF neither nil nor t means never include the minibuffer window.")
1682 (frame, minibuf, window)
1683 Lisp_Object frame, minibuf, window;
1685 if (NILP (window))
1686 window = selected_window;
1687 if (NILP (frame))
1688 frame = selected_frame;
1690 if (!EQ (frame, XWINDOW (window)->frame))
1691 error ("Window is on a different frame");
1693 return window_list_1 (window, minibuf, frame);
1697 /* Return a list of windows in canonical ordering. Arguments are like
1698 for `next-window'. */
1700 static Lisp_Object
1701 window_list_1 (window, minibuf, all_frames)
1702 Lisp_Object window, minibuf, all_frames;
1704 Lisp_Object tail, list;
1706 decode_next_window_args (&window, &minibuf, &all_frames);
1707 list = Qnil;
1709 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
1710 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
1711 list = Fcons (XCAR (tail), list);
1713 return Fnreverse (list);
1718 /* Look at all windows, performing an operation specified by TYPE
1719 with argument OBJ.
1720 If FRAMES is Qt, look at all frames;
1721 Qnil, look at just the selected frame;
1722 Qvisible, look at visible frames;
1723 a frame, just look at windows on that frame.
1724 If MINI is non-zero, perform the operation on minibuffer windows too. */
1726 enum window_loop
1728 WINDOW_LOOP_UNUSED,
1729 GET_BUFFER_WINDOW, /* Arg is buffer */
1730 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1731 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1732 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1733 GET_LARGEST_WINDOW,
1734 UNSHOW_BUFFER, /* Arg is buffer */
1735 CHECK_ALL_WINDOWS
1738 static Lisp_Object
1739 window_loop (type, obj, mini, frames)
1740 enum window_loop type;
1741 Lisp_Object obj, frames;
1742 int mini;
1744 Lisp_Object window, windows, best_window, frame_arg;
1745 struct frame *f;
1746 struct gcpro gcpro1;
1748 /* If we're only looping through windows on a particular frame,
1749 frame points to that frame. If we're looping through windows
1750 on all frames, frame is 0. */
1751 if (FRAMEP (frames))
1752 f = XFRAME (frames);
1753 else if (NILP (frames))
1754 f = SELECTED_FRAME ();
1755 else
1756 f = NULL;
1758 if (f)
1759 frame_arg = Qlambda;
1760 else if (XFASTINT (frames) == 0)
1761 frame_arg = frames;
1762 else if (EQ (frames, Qvisible))
1763 frame_arg = frames;
1764 else
1765 frame_arg = Qt;
1767 /* frame_arg is Qlambda to stick to one frame,
1768 Qvisible to consider all visible frames,
1769 or Qt otherwise. */
1771 /* Pick a window to start with. */
1772 if (WINDOWP (obj))
1773 window = obj;
1774 else if (f)
1775 window = FRAME_SELECTED_WINDOW (f);
1776 else
1777 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
1779 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
1780 GCPRO1 (windows);
1781 best_window = Qnil;
1783 for (; CONSP (windows); windows = CDR (windows))
1785 struct window *w;
1787 window = XCAR (windows);
1788 w = XWINDOW (window);
1790 /* Note that we do not pay attention here to whether the frame
1791 is visible, since Fwindow_list skips non-visible frames if
1792 that is desired, under the control of frame_arg. */
1793 if (!MINI_WINDOW_P (w)
1794 /* For UNSHOW_BUFFER, we must always consider all windows. */
1795 || type == UNSHOW_BUFFER
1796 || (mini && minibuf_level > 0))
1797 switch (type)
1799 case GET_BUFFER_WINDOW:
1800 if (EQ (w->buffer, obj)
1801 /* Don't find any minibuffer window
1802 except the one that is currently in use. */
1803 && (MINI_WINDOW_P (w)
1804 ? EQ (window, minibuf_window)
1805 : 1))
1807 if (NILP (best_window))
1808 best_window = window;
1809 else if (EQ (window, selected_window))
1810 /* For compatibility with 20.x, prefer to return
1811 selected-window. */
1812 best_window = window;
1814 break;
1816 case GET_LRU_WINDOW:
1817 /* t as arg means consider only full-width windows */
1818 if (!NILP (obj) && !WINDOW_FULL_WIDTH_P (w))
1819 break;
1820 /* Ignore dedicated windows and minibuffers. */
1821 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
1822 break;
1823 if (NILP (best_window)
1824 || (XFASTINT (XWINDOW (best_window)->use_time)
1825 > XFASTINT (w->use_time)))
1826 best_window = window;
1827 break;
1829 case DELETE_OTHER_WINDOWS:
1830 if (!EQ (window, obj))
1831 Fdelete_window (window);
1832 break;
1834 case DELETE_BUFFER_WINDOWS:
1835 if (EQ (w->buffer, obj))
1837 struct frame *f = XFRAME (WINDOW_FRAME (w));
1839 /* If this window is dedicated, and in a frame of its own,
1840 kill the frame. */
1841 if (EQ (window, FRAME_ROOT_WINDOW (f))
1842 && !NILP (w->dedicated)
1843 && other_visible_frames (f))
1845 /* Skip the other windows on this frame.
1846 There might be one, the minibuffer! */
1847 while (CONSP (XCDR (windows))
1848 && EQ (XWINDOW (XCAR (windows))->frame,
1849 XWINDOW (XCAR (XCDR (windows)))->frame))
1850 windows = XCDR (windows);
1852 /* Now we can safely delete the frame. */
1853 Fdelete_frame (w->frame, Qnil);
1855 else if (NILP (w->parent))
1857 /* If we're deleting the buffer displayed in the
1858 only window on the frame, find a new buffer to
1859 display there. */
1860 Lisp_Object buffer;
1861 buffer = Fother_buffer (obj, Qnil, w->frame);
1862 if (NILP (buffer))
1863 buffer = Fget_buffer_create (build_string ("*scratch*"));
1864 Fset_window_buffer (window, buffer);
1865 if (EQ (window, selected_window))
1866 Fset_buffer (w->buffer);
1868 else
1869 Fdelete_window (window);
1871 break;
1873 case GET_LARGEST_WINDOW:
1875 /* Ignore dedicated windows and minibuffers. */
1876 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
1877 break;
1879 if (NILP (best_window))
1880 best_window = window;
1881 else
1883 struct window *b = XWINDOW (best_window);
1884 if (XFASTINT (w->height) * XFASTINT (w->width)
1885 > XFASTINT (b->height) * XFASTINT (b->width))
1886 best_window = window;
1889 break;
1891 case UNSHOW_BUFFER:
1892 if (EQ (w->buffer, obj))
1894 Lisp_Object buffer;
1895 struct frame *f = XFRAME (w->frame);
1897 /* Find another buffer to show in this window. */
1898 buffer = Fother_buffer (obj, Qnil, w->frame);
1899 if (NILP (buffer))
1900 buffer = Fget_buffer_create (build_string ("*scratch*"));
1902 /* If this window is dedicated, and in a frame of its own,
1903 kill the frame. */
1904 if (EQ (window, FRAME_ROOT_WINDOW (f))
1905 && !NILP (w->dedicated)
1906 && other_visible_frames (f))
1908 /* Skip the other windows on this frame.
1909 There might be one, the minibuffer! */
1910 while (CONSP (XCDR (windows))
1911 && EQ (XWINDOW (XCAR (windows))->frame,
1912 XWINDOW (XCAR (XCDR (windows)))->frame))
1913 windows = XCDR (windows);
1915 /* Now we can safely delete the frame. */
1916 Fdelete_frame (w->frame, Qnil);
1918 else
1920 /* Otherwise show a different buffer in the window. */
1921 w->dedicated = Qnil;
1922 Fset_window_buffer (window, buffer);
1923 if (EQ (window, selected_window))
1924 Fset_buffer (w->buffer);
1927 break;
1929 /* Check for a window that has a killed buffer. */
1930 case CHECK_ALL_WINDOWS:
1931 if (! NILP (w->buffer)
1932 && NILP (XBUFFER (w->buffer)->name))
1933 abort ();
1934 break;
1936 case WINDOW_LOOP_UNUSED:
1937 break;
1941 UNGCPRO;
1942 return best_window;
1945 /* Used for debugging. Abort if any window has a dead buffer. */
1947 void
1948 check_all_windows ()
1950 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
1953 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1954 "Return the window least recently selected or used for display.\n\
1955 If optional argument FRAME is `visible', search all visible frames.\n\
1956 If FRAME is 0, search all visible and iconified frames.\n\
1957 If FRAME is t, search all frames.\n\
1958 If FRAME is nil, search only the selected frame.\n\
1959 If FRAME is a frame, search only that frame.")
1960 (frame)
1961 Lisp_Object frame;
1963 register Lisp_Object w;
1964 /* First try for a window that is full-width */
1965 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
1966 if (!NILP (w) && !EQ (w, selected_window))
1967 return w;
1968 /* If none of them, try the rest */
1969 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
1972 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1973 "Return the largest window in area.\n\
1974 If optional argument FRAME is `visible', search all visible frames.\n\
1975 If FRAME is 0, search all visible and iconified frames.\n\
1976 If FRAME is t, search all frames.\n\
1977 If FRAME is nil, search only the selected frame.\n\
1978 If FRAME is a frame, search only that frame.")
1979 (frame)
1980 Lisp_Object frame;
1982 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
1983 frame);
1986 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1987 "Return a window currently displaying BUFFER, or nil if none.\n\
1988 If optional argument FRAME is `visible', search all visible frames.\n\
1989 If optional argument FRAME is 0, search all visible and iconified frames.\n\
1990 If FRAME is t, search all frames.\n\
1991 If FRAME is nil, search only the selected frame.\n\
1992 If FRAME is a frame, search only that frame.")
1993 (buffer, frame)
1994 Lisp_Object buffer, frame;
1996 buffer = Fget_buffer (buffer);
1997 if (BUFFERP (buffer))
1998 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
1999 else
2000 return Qnil;
2003 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
2004 0, 1, "",
2005 "Make WINDOW (or the selected window) fill its frame.\n\
2006 Only the frame WINDOW is on is affected.\n\
2007 This function tries to reduce display jumps\n\
2008 by keeping the text previously visible in WINDOW\n\
2009 in the same place on the frame. Doing this depends on\n\
2010 the value of (window-start WINDOW), so if calling this function\n\
2011 in a program gives strange scrolling, make sure the window-start\n\
2012 value is reasonable when this function is called.")
2013 (window)
2014 Lisp_Object window;
2016 struct window *w;
2017 int startpos;
2018 int top, new_top;
2020 if (NILP (window))
2021 window = selected_window;
2022 else
2023 CHECK_LIVE_WINDOW (window, 0);
2024 w = XWINDOW (window);
2026 startpos = marker_position (w->start);
2027 top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2029 if (MINI_WINDOW_P (w) && top > 0)
2030 error ("Can't expand minibuffer to full frame");
2032 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
2034 /* Try to minimize scrolling, by setting the window start to the point
2035 will cause the text at the old window start to be at the same place
2036 on the frame. But don't try to do this if the window start is
2037 outside the visible portion (as might happen when the display is
2038 not current, due to typeahead). */
2039 new_top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2040 if (new_top != top
2041 && startpos >= BUF_BEGV (XBUFFER (w->buffer))
2042 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
2044 struct position pos;
2045 struct buffer *obuf = current_buffer;
2047 Fset_buffer (w->buffer);
2048 /* This computation used to temporarily move point, but that can
2049 have unwanted side effects due to text properties. */
2050 pos = *vmotion (startpos, -top, w);
2052 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
2053 w->window_end_valid = Qnil;
2054 w->start_at_line_beg = ((pos.bytepos == BEGV_BYTE
2055 || FETCH_BYTE (pos.bytepos - 1) == '\n') ? Qt
2056 : Qnil);
2057 /* We need to do this, so that the window-scroll-functions
2058 get called. */
2059 w->optional_new_start = Qt;
2061 set_buffer_internal (obuf);
2064 return Qnil;
2067 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
2068 1, 2, "bDelete windows on (buffer): ",
2069 "Delete all windows showing BUFFER.\n\
2070 Optional second argument FRAME controls which frames are affected.\n\
2071 If optional argument FRAME is `visible', search all visible frames.\n\
2072 If FRAME is 0, search all visible and iconified frames.\n\
2073 If FRAME is nil, search all frames.\n\
2074 If FRAME is t, search only the selected frame.\n\
2075 If FRAME is a frame, search only that frame.")
2076 (buffer, frame)
2077 Lisp_Object buffer, frame;
2079 /* FRAME uses t and nil to mean the opposite of what window_loop
2080 expects. */
2081 if (NILP (frame))
2082 frame = Qt;
2083 else if (EQ (frame, Qt))
2084 frame = Qnil;
2086 if (!NILP (buffer))
2088 buffer = Fget_buffer (buffer);
2089 CHECK_BUFFER (buffer, 0);
2090 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
2093 return Qnil;
2096 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
2097 Sreplace_buffer_in_windows,
2098 1, 1, "bReplace buffer in windows: ",
2099 "Replace BUFFER with some other buffer in all windows showing it.")
2100 (buffer)
2101 Lisp_Object buffer;
2103 if (!NILP (buffer))
2105 buffer = Fget_buffer (buffer);
2106 CHECK_BUFFER (buffer, 0);
2107 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
2109 return Qnil;
2112 /* Replace BUFFER with some other buffer in all windows
2113 of all frames, even those on other keyboards. */
2115 void
2116 replace_buffer_in_all_windows (buffer)
2117 Lisp_Object buffer;
2119 #ifdef MULTI_KBOARD
2120 Lisp_Object tail, frame;
2122 /* A single call to window_loop won't do the job
2123 because it only considers frames on the current keyboard.
2124 So loop manually over frames, and handle each one. */
2125 FOR_EACH_FRAME (tail, frame)
2126 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
2127 #else
2128 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
2129 #endif
2132 /* Set the height of WINDOW and all its inferiors. */
2134 /* The smallest acceptable dimensions for a window. Anything smaller
2135 might crash Emacs. */
2137 #define MIN_SAFE_WINDOW_WIDTH (2)
2138 #define MIN_SAFE_WINDOW_HEIGHT (2)
2140 /* Make sure that window_min_height and window_min_width are
2141 not too small; if they are, set them to safe minima. */
2143 static void
2144 check_min_window_sizes ()
2146 /* Smaller values might permit a crash. */
2147 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
2148 window_min_width = MIN_SAFE_WINDOW_WIDTH;
2149 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
2150 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
2153 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
2154 minimum allowable size. */
2156 void
2157 check_frame_size (frame, rows, cols)
2158 FRAME_PTR frame;
2159 int *rows, *cols;
2161 /* For height, we have to see:
2162 whether the frame has a minibuffer,
2163 whether it wants a mode line, and
2164 whether it has a menu bar. */
2165 int min_height =
2166 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
2167 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
2168 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
2170 if (FRAME_TOP_MARGIN (frame) > 0)
2171 min_height += FRAME_TOP_MARGIN (frame);
2173 if (*rows < min_height)
2174 *rows = min_height;
2175 if (*cols < MIN_SAFE_WINDOW_WIDTH)
2176 *cols = MIN_SAFE_WINDOW_WIDTH;
2180 /* Value is non-zero if window W is fixed-size. WIDTH_P non-zero means
2181 check if W's width can be changed, otherwise check W's height.
2182 CHECK_SIBLINGS_P non-zero means check resizablity of WINDOW's
2183 siblings, too. If none of the siblings is resizable, WINDOW isn't
2184 either. */
2186 static int
2187 window_fixed_size_p (w, width_p, check_siblings_p)
2188 struct window *w;
2189 int width_p, check_siblings_p;
2191 int fixed_p;
2192 struct window *c;
2194 if (!NILP (w->hchild))
2196 c = XWINDOW (w->hchild);
2198 if (width_p)
2200 /* A horiz. combination is fixed-width if all of if its
2201 children are. */
2202 while (c && window_fixed_size_p (c, width_p, 0))
2203 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2204 fixed_p = c == NULL;
2206 else
2208 /* A horiz. combination is fixed-height if one of if its
2209 children is. */
2210 while (c && !window_fixed_size_p (c, width_p, 0))
2211 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2212 fixed_p = c != NULL;
2215 else if (!NILP (w->vchild))
2217 c = XWINDOW (w->vchild);
2219 if (width_p)
2221 /* A vert. combination is fixed-width if one of if its
2222 children is. */
2223 while (c && !window_fixed_size_p (c, width_p, 0))
2224 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2225 fixed_p = c != NULL;
2227 else
2229 /* A vert. combination is fixed-height if all of if its
2230 children are. */
2231 while (c && window_fixed_size_p (c, width_p, 0))
2232 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2233 fixed_p = c == NULL;
2236 else if (BUFFERP (w->buffer))
2238 if (w->height_fixed_p && !width_p)
2239 fixed_p = 1;
2240 else
2242 struct buffer *old = current_buffer;
2243 Lisp_Object val;
2245 current_buffer = XBUFFER (w->buffer);
2246 val = find_symbol_value (Qwindow_size_fixed);
2247 current_buffer = old;
2249 fixed_p = 0;
2250 if (!EQ (val, Qunbound))
2252 fixed_p = !NILP (val);
2254 if (fixed_p
2255 && ((EQ (val, Qheight) && width_p)
2256 || (EQ (val, Qwidth) && !width_p)))
2257 fixed_p = 0;
2261 /* Can't tell if this one is resizable without looking at
2262 siblings. If all siblings are fixed-size this one is too. */
2263 if (!fixed_p && check_siblings_p && WINDOWP (w->parent))
2265 Lisp_Object child;
2267 for (child = w->prev; !NILP (child); child = XWINDOW (child)->prev)
2268 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2269 break;
2271 if (NILP (child))
2272 for (child = w->next; !NILP (child); child = XWINDOW (child)->next)
2273 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2274 break;
2276 if (NILP (child))
2277 fixed_p = 1;
2280 else
2281 fixed_p = 1;
2283 return fixed_p;
2287 /* Return the minimum size of window W, not taking fixed-width windows
2288 into account. WIDTH_P non-zero means return the minimum width,
2289 otherwise return the minimum height. If W is a combination window,
2290 compute the minimum size from the minimum sizes of W's children. */
2292 static int
2293 window_min_size_1 (w, width_p)
2294 struct window *w;
2295 int width_p;
2297 struct window *c;
2298 int size;
2300 if (!NILP (w->hchild))
2302 c = XWINDOW (w->hchild);
2303 size = 0;
2305 if (width_p)
2307 /* The min width of a horizontal combination is
2308 the sum of the min widths of its children. */
2309 while (c)
2311 size += window_min_size_1 (c, width_p);
2312 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2315 else
2317 /* The min height a horizontal combination equals
2318 the maximum of all min height of its children. */
2319 while (c)
2321 int min_size = window_min_size_1 (c, width_p);
2322 size = max (min_size, size);
2323 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2327 else if (!NILP (w->vchild))
2329 c = XWINDOW (w->vchild);
2330 size = 0;
2332 if (width_p)
2334 /* The min width of a vertical combination is
2335 the maximum of the min widths of its children. */
2336 while (c)
2338 int min_size = window_min_size_1 (c, width_p);
2339 size = max (min_size, size);
2340 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2343 else
2345 /* The min height of a vertical combination equals
2346 the sum of the min height of its children. */
2347 while (c)
2349 size += window_min_size_1 (c, width_p);
2350 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2354 else
2356 if (width_p)
2357 size = window_min_width;
2358 else
2360 if (MINI_WINDOW_P (w)
2361 || (!WINDOW_WANTS_MODELINE_P (w)
2362 && !WINDOW_WANTS_HEADER_LINE_P (w)))
2363 size = 1;
2364 else
2365 size = window_min_height;
2369 return size;
2373 /* Return the minimum size of window W, taking fixed-size windows into
2374 account. WIDTH_P non-zero means return the minimum width,
2375 otherwise return the minimum height. IGNORE_FIXED_P non-zero means
2376 ignore if W is fixed-size. Set *FIXED to 1 if W is fixed-size
2377 unless FIXED is null. */
2379 static int
2380 window_min_size (w, width_p, ignore_fixed_p, fixed)
2381 struct window *w;
2382 int width_p, ignore_fixed_p, *fixed;
2384 int size, fixed_p;
2386 if (ignore_fixed_p)
2387 fixed_p = 0;
2388 else
2389 fixed_p = window_fixed_size_p (w, width_p, 1);
2391 if (fixed)
2392 *fixed = fixed_p;
2394 if (fixed_p)
2395 size = width_p ? XFASTINT (w->width) : XFASTINT (w->height);
2396 else
2397 size = window_min_size_1 (w, width_p);
2399 return size;
2403 /* Set WINDOW's height or width to SIZE. WIDTH_P non-zero means set
2404 WINDOW's width. Resize WINDOW's children, if any, so that they
2405 keep their proportionate size relative to WINDOW. Propagate
2406 WINDOW's top or left edge position to children. Delete windows
2407 that become too small unless NODELETE_P is non-zero. */
2409 static void
2410 size_window (window, size, width_p, nodelete_p)
2411 Lisp_Object window;
2412 int size, width_p, nodelete_p;
2414 struct window *w = XWINDOW (window);
2415 struct window *c;
2416 Lisp_Object child, *forward, *sideward;
2417 int old_size, min_size;
2419 check_min_window_sizes ();
2420 size = max (0, size);
2422 /* If the window has been "too small" at one point,
2423 don't delete it for being "too small" in the future.
2424 Preserve it as long as that is at all possible. */
2425 if (width_p)
2427 old_size = XINT (w->width);
2428 min_size = window_min_width;
2430 else
2432 old_size = XINT (w->height);
2433 min_size = window_min_height;
2436 if (old_size < min_size)
2437 w->too_small_ok = Qt;
2439 /* Maybe delete WINDOW if it's too small. */
2440 if (!nodelete_p && !NILP (w->parent))
2442 if (!MINI_WINDOW_P (w) && !NILP (w->too_small_ok))
2443 min_size = width_p ? MIN_SAFE_WINDOW_WIDTH : MIN_SAFE_WINDOW_HEIGHT;
2444 else
2445 min_size = width_p ? window_min_width : window_min_height;
2447 if (size < min_size)
2449 delete_window (window);
2450 return;
2454 /* Set redisplay hints. */
2455 w->last_modified = make_number (0);
2456 w->last_overlay_modified = make_number (0);
2457 windows_or_buffers_changed++;
2458 FRAME_WINDOW_SIZES_CHANGED (XFRAME (w->frame)) = 1;
2460 if (width_p)
2462 sideward = &w->vchild;
2463 forward = &w->hchild;
2464 w->width = make_number (size);
2466 else
2468 sideward = &w->hchild;
2469 forward = &w->vchild;
2470 w->height = make_number (size);
2471 w->orig_height = Qnil;
2474 if (!NILP (*sideward))
2476 for (child = *sideward; !NILP (child); child = c->next)
2478 c = XWINDOW (child);
2479 if (width_p)
2480 c->left = w->left;
2481 else
2482 c->top = w->top;
2483 size_window (child, size, width_p, nodelete_p);
2486 else if (!NILP (*forward))
2488 int fixed_size, each, extra, n;
2489 int resize_fixed_p, nfixed;
2490 int last_pos, first_pos, nchildren, total;
2492 /* Determine the fixed-size portion of the this window, and the
2493 number of child windows. */
2494 fixed_size = nchildren = nfixed = total = 0;
2495 for (child = *forward; !NILP (child); child = c->next, ++nchildren)
2497 int child_size;
2499 c = XWINDOW (child);
2500 child_size = width_p ? XINT (c->width) : XINT (c->height);
2501 total += child_size;
2503 if (window_fixed_size_p (c, width_p, 0))
2505 fixed_size += child_size;
2506 ++nfixed;
2510 /* If the new size is smaller than fixed_size, or if there
2511 aren't any resizable windows, allow resizing fixed-size
2512 windows. */
2513 resize_fixed_p = nfixed == nchildren || size < fixed_size;
2515 /* Compute how many lines/columns to add to each child. The
2516 value of extra takes care of rounding errors. */
2517 n = resize_fixed_p ? nchildren : nchildren - nfixed;
2518 each = (size - total) / n;
2519 extra = (size - total) - n * each;
2521 /* Compute new children heights and edge positions. */
2522 first_pos = width_p ? XINT (w->left) : XINT (w->top);
2523 last_pos = first_pos;
2524 for (child = *forward; !NILP (child); child = c->next)
2526 int new_size, old_size;
2528 c = XWINDOW (child);
2529 old_size = width_p ? XFASTINT (c->width) : XFASTINT (c->height);
2530 new_size = old_size;
2532 /* The top or left edge position of this child equals the
2533 bottom or right edge of its predecessor. */
2534 if (width_p)
2535 c->left = make_number (last_pos);
2536 else
2537 c->top = make_number (last_pos);
2539 /* If this child can be resized, do it. */
2540 if (resize_fixed_p || !window_fixed_size_p (c, width_p, 0))
2542 new_size = old_size + each + extra;
2543 extra = 0;
2546 /* Set new height. Note that size_window also propagates
2547 edge positions to children, so it's not a no-op if we
2548 didn't change the child's size. */
2549 size_window (child, new_size, width_p, 1);
2551 /* Remember the bottom/right edge position of this child; it
2552 will be used to set the top/left edge of the next child. */
2553 last_pos += new_size;
2556 /* We should have covered the parent exactly with child windows. */
2557 xassert (size == last_pos - first_pos);
2559 /* Now delete any children that became too small. */
2560 if (!nodelete_p)
2561 for (child = *forward; !NILP (child); child = c->next)
2563 int child_size;
2564 c = XWINDOW (child);
2565 child_size = width_p ? XINT (c->width) : XINT (c->height);
2566 size_window (child, child_size, width_p, 0);
2571 /* Set WINDOW's height to HEIGHT, and recursively change the height of
2572 WINDOW's children. NODELETE non-zero means don't delete windows
2573 that become too small in the process. (The caller should check
2574 later and do so if appropriate.) */
2576 void
2577 set_window_height (window, height, nodelete)
2578 Lisp_Object window;
2579 int height;
2580 int nodelete;
2582 size_window (window, height, 0, nodelete);
2586 /* Set WINDOW's width to WIDTH, and recursively change the width of
2587 WINDOW's children. NODELETE non-zero means don't delete windows
2588 that become too small in the process. (The caller should check
2589 later and do so if appropriate.) */
2591 void
2592 set_window_width (window, width, nodelete)
2593 Lisp_Object window;
2594 int width;
2595 int nodelete;
2597 size_window (window, width, 1, nodelete);
2601 int window_select_count;
2603 Lisp_Object
2604 Fset_window_buffer_unwind (obuf)
2605 Lisp_Object obuf;
2607 Fset_buffer (obuf);
2608 return Qnil;
2612 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
2613 means it's allowed to run hooks. See make_frame for a case where
2614 it's not allowed. */
2616 void
2617 set_window_buffer (window, buffer, run_hooks_p)
2618 Lisp_Object window, buffer;
2619 int run_hooks_p;
2621 struct window *w = XWINDOW (window);
2622 struct buffer *b = XBUFFER (buffer);
2623 int count = specpdl_ptr - specpdl;
2625 w->buffer = buffer;
2627 if (EQ (window, selected_window))
2628 b->last_selected_window = window;
2630 /* Update time stamps of buffer display. */
2631 if (INTEGERP (b->display_count))
2632 XSETINT (b->display_count, XINT (b->display_count) + 1);
2633 b->display_time = Fcurrent_time ();
2635 XSETFASTINT (w->window_end_pos, 0);
2636 XSETFASTINT (w->window_end_vpos, 0);
2637 bzero (&w->last_cursor, sizeof w->last_cursor);
2638 w->window_end_valid = Qnil;
2639 w->hscroll = w->min_hscroll = make_number (0);
2640 w->vscroll = make_number (0);
2641 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
2642 set_marker_restricted (w->start,
2643 make_number (b->last_window_start),
2644 buffer);
2645 w->start_at_line_beg = Qnil;
2646 w->force_start = Qnil;
2647 XSETFASTINT (w->last_modified, 0);
2648 XSETFASTINT (w->last_overlay_modified, 0);
2649 windows_or_buffers_changed++;
2651 /* We must select BUFFER for running the window-scroll-functions.
2652 If WINDOW is selected, switch permanently.
2653 Otherwise, switch but go back to the ambient buffer afterward. */
2654 if (EQ (window, selected_window))
2655 Fset_buffer (buffer);
2656 /* We can't check ! NILP (Vwindow_scroll_functions) here
2657 because that might itself be a local variable. */
2658 else if (window_initialized)
2660 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
2661 Fset_buffer (buffer);
2664 /* Set left and right marginal area width from buffer. */
2665 Fset_window_margins (window, b->left_margin_width, b->right_margin_width);
2667 if (run_hooks_p)
2669 if (! NILP (Vwindow_scroll_functions))
2670 run_hook_with_args_2 (Qwindow_scroll_functions, window,
2671 Fmarker_position (w->start));
2673 if (! NILP (Vwindow_configuration_change_hook)
2674 && ! NILP (Vrun_hooks))
2675 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2678 unbind_to (count, Qnil);
2682 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
2683 "Make WINDOW display BUFFER as its contents.\n\
2684 BUFFER can be a buffer or buffer name.")
2685 (window, buffer)
2686 register Lisp_Object window, buffer;
2688 register Lisp_Object tem;
2689 register struct window *w = decode_window (window);
2691 XSETWINDOW (window, w);
2692 buffer = Fget_buffer (buffer);
2693 CHECK_BUFFER (buffer, 1);
2695 if (NILP (XBUFFER (buffer)->name))
2696 error ("Attempt to display deleted buffer");
2698 tem = w->buffer;
2699 if (NILP (tem))
2700 error ("Window is deleted");
2701 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
2702 is first being set up. */
2704 if (!NILP (w->dedicated) && !EQ (tem, buffer))
2705 error ("Window is dedicated to `%s'",
2706 XSTRING (XBUFFER (tem)->name)->data);
2708 unshow_buffer (w);
2711 set_window_buffer (window, buffer, 1);
2712 return Qnil;
2715 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
2716 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
2717 If WINDOW is not already selected, also make WINDOW's buffer current.\n\
2718 Note that the main editor command loop\n\
2719 selects the buffer of the selected window before each command.")
2720 (window)
2721 register Lisp_Object window;
2723 return select_window_1 (window, 1);
2726 /* Note that selected_window can be nil
2727 when this is called from Fset_window_configuration. */
2729 static Lisp_Object
2730 select_window_1 (window, recordflag)
2731 register Lisp_Object window;
2732 int recordflag;
2734 register struct window *w;
2735 register struct window *ow;
2736 struct frame *sf;
2738 CHECK_LIVE_WINDOW (window, 0);
2740 w = XWINDOW (window);
2742 if (NILP (w->buffer))
2743 error ("Trying to select deleted window or non-leaf window");
2745 XSETFASTINT (w->use_time, ++window_select_count);
2746 if (EQ (window, selected_window))
2747 return window;
2749 if (!NILP (selected_window))
2751 ow = XWINDOW (selected_window);
2752 if (! NILP (ow->buffer))
2753 set_marker_both (ow->pointm, ow->buffer,
2754 BUF_PT (XBUFFER (ow->buffer)),
2755 BUF_PT_BYTE (XBUFFER (ow->buffer)));
2758 selected_window = window;
2759 sf = SELECTED_FRAME ();
2760 if (XFRAME (WINDOW_FRAME (w)) != sf)
2762 XFRAME (WINDOW_FRAME (w))->selected_window = window;
2763 /* Use this rather than Fhandle_switch_frame
2764 so that FRAME_FOCUS_FRAME is moved appropriately as we
2765 move around in the state where a minibuffer in a separate
2766 frame is active. */
2767 Fselect_frame (WINDOW_FRAME (w), Qnil);
2769 else
2770 sf->selected_window = window;
2772 if (recordflag)
2773 record_buffer (w->buffer);
2774 Fset_buffer (w->buffer);
2776 XBUFFER (w->buffer)->last_selected_window = window;
2778 /* Go to the point recorded in the window.
2779 This is important when the buffer is in more
2780 than one window. It also matters when
2781 redisplay_window has altered point after scrolling,
2782 because it makes the change only in the window. */
2784 register int new_point = marker_position (w->pointm);
2785 if (new_point < BEGV)
2786 SET_PT (BEGV);
2787 else if (new_point > ZV)
2788 SET_PT (ZV);
2789 else
2790 SET_PT (new_point);
2793 windows_or_buffers_changed++;
2794 return window;
2797 /* Deiconify the frame containing the window WINDOW,
2798 unless it is the selected frame;
2799 then return WINDOW.
2801 The reason for the exception for the selected frame
2802 is that it seems better not to change the selected frames visibility
2803 merely because of displaying a different buffer in it.
2804 The deiconification is useful when a buffer gets shown in
2805 another frame that you were not using lately. */
2807 static Lisp_Object
2808 display_buffer_1 (window)
2809 Lisp_Object window;
2811 Lisp_Object frame = XWINDOW (window)->frame;
2812 FRAME_PTR f = XFRAME (frame);
2814 FRAME_SAMPLE_VISIBILITY (f);
2816 if (!EQ (frame, selected_frame))
2818 if (FRAME_ICONIFIED_P (f))
2819 Fmake_frame_visible (frame);
2820 else if (FRAME_VISIBLE_P (f))
2821 Fraise_frame (frame);
2824 return window;
2827 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
2828 "Returns non-nil if a buffer named BUFFER-NAME would be created specially.\n\
2829 The value is actually t if the frame should be called with default frame\n\
2830 parameters, and a list of frame parameters if they were specified.\n\
2831 See `special-display-buffer-names', and `special-display-regexps'.")
2832 (buffer_name)
2833 Lisp_Object buffer_name;
2835 Lisp_Object tem;
2837 CHECK_STRING (buffer_name, 1);
2839 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
2840 if (!NILP (tem))
2841 return Qt;
2843 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
2844 if (!NILP (tem))
2845 return XCDR (tem);
2847 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
2849 Lisp_Object car = XCAR (tem);
2850 if (STRINGP (car)
2851 && fast_string_match (car, buffer_name) >= 0)
2852 return Qt;
2853 else if (CONSP (car)
2854 && STRINGP (XCAR (car))
2855 && fast_string_match (XCAR (car), buffer_name) >= 0)
2856 return XCDR (car);
2858 return Qnil;
2861 DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
2862 "Returns non-nil if a new buffer named BUFFER-NAME would use the same window.\n\
2863 See `same-window-buffer-names' and `same-window-regexps'.")
2864 (buffer_name)
2865 Lisp_Object buffer_name;
2867 Lisp_Object tem;
2869 CHECK_STRING (buffer_name, 1);
2871 tem = Fmember (buffer_name, Vsame_window_buffer_names);
2872 if (!NILP (tem))
2873 return Qt;
2875 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
2876 if (!NILP (tem))
2877 return Qt;
2879 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
2881 Lisp_Object car = XCAR (tem);
2882 if (STRINGP (car)
2883 && fast_string_match (car, buffer_name) >= 0)
2884 return Qt;
2885 else if (CONSP (car)
2886 && STRINGP (XCAR (car))
2887 && fast_string_match (XCAR (car), buffer_name) >= 0)
2888 return Qt;
2890 return Qnil;
2893 /* Use B so the default is (other-buffer). */
2894 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
2895 "BDisplay buffer: \nP",
2896 "Make BUFFER appear in some window but don't select it.\n\
2897 BUFFER can be a buffer or a buffer name.\n\
2898 If BUFFER is shown already in some window, just use that one,\n\
2899 unless the window is the selected window and the optional second\n\
2900 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
2901 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
2902 Returns the window displaying BUFFER.\n\
2903 If `display-reuse-frames' is non-nil, and another frame is currently\n\
2904 displaying BUFFER, then simply raise that frame.\n\
2906 The variables `special-display-buffer-names', `special-display-regexps',\n\
2907 `same-window-buffer-names', and `same-window-regexps' customize how certain\n\
2908 buffer names are handled.\n\
2910 If optional argument FRAME is `visible', search all visible frames.\n\
2911 If FRAME is 0, search all visible and iconified frames.\n\
2912 If FRAME is t, search all frames.\n\
2913 If FRAME is a frame, search only that frame.\n\
2914 If FRAME is nil, search only the selected frame\n\
2915 (actually the last nonminibuffer frame),\n\
2916 unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,\n\
2917 which means search visible and iconified frames.\n\
2919 If `even-window-heights' is non-nil, window heights will be evened out\n\
2920 if displaying the buffer causes two vertically adjacent windows to be\n\
2921 displayed.")
2922 (buffer, not_this_window, frame)
2923 register Lisp_Object buffer, not_this_window, frame;
2925 register Lisp_Object window, tem, swp;
2926 struct frame *f;
2928 swp = Qnil;
2929 buffer = Fget_buffer (buffer);
2930 CHECK_BUFFER (buffer, 0);
2932 if (!NILP (Vdisplay_buffer_function))
2933 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
2935 if (NILP (not_this_window)
2936 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
2937 return display_buffer_1 (selected_window);
2939 /* See if the user has specified this buffer should appear
2940 in the selected window. */
2941 if (NILP (not_this_window))
2943 swp = Fsame_window_p (XBUFFER (buffer)->name);
2944 if (!NILP (swp) && !no_switch_window (selected_window))
2946 Fswitch_to_buffer (buffer, Qnil);
2947 return display_buffer_1 (selected_window);
2951 /* If the user wants pop-up-frames or display-reuse-frames, then
2952 look for a window showing BUFFER on any visible or iconified frame.
2953 Otherwise search only the current frame. */
2954 if (! NILP (frame))
2955 tem = frame;
2956 else if (pop_up_frames
2957 || display_buffer_reuse_frames
2958 || last_nonminibuf_frame == 0)
2959 XSETFASTINT (tem, 0);
2960 else
2961 XSETFRAME (tem, last_nonminibuf_frame);
2963 window = Fget_buffer_window (buffer, tem);
2964 if (!NILP (window)
2965 && (NILP (not_this_window) || !EQ (window, selected_window)))
2966 return display_buffer_1 (window);
2968 /* Certain buffer names get special handling. */
2969 if (!NILP (Vspecial_display_function) && NILP (swp))
2971 tem = Fspecial_display_p (XBUFFER (buffer)->name);
2972 if (EQ (tem, Qt))
2973 return call1 (Vspecial_display_function, buffer);
2974 if (CONSP (tem))
2975 return call2 (Vspecial_display_function, buffer, tem);
2978 /* If there are no frames open that have more than a minibuffer,
2979 we need to create a new frame. */
2980 if (pop_up_frames || last_nonminibuf_frame == 0)
2982 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
2983 Fset_window_buffer (window, buffer);
2984 return display_buffer_1 (window);
2987 f = SELECTED_FRAME ();
2988 if (pop_up_windows
2989 || FRAME_MINIBUF_ONLY_P (f)
2990 /* If the current frame is a special display frame,
2991 don't try to reuse its windows. */
2992 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (f))->dedicated))
2994 Lisp_Object frames;
2996 frames = Qnil;
2997 if (FRAME_MINIBUF_ONLY_P (f))
2998 XSETFRAME (frames, last_nonminibuf_frame);
2999 /* Don't try to create a window if would get an error */
3000 if (split_height_threshold < window_min_height << 1)
3001 split_height_threshold = window_min_height << 1;
3003 /* Note that both Fget_largest_window and Fget_lru_window
3004 ignore minibuffers and dedicated windows.
3005 This means they can return nil. */
3007 /* If the frame we would try to split cannot be split,
3008 try other frames. */
3009 if (FRAME_NO_SPLIT_P (NILP (frames) ? f : last_nonminibuf_frame))
3011 /* Try visible frames first. */
3012 window = Fget_largest_window (Qvisible);
3013 /* If that didn't work, try iconified frames. */
3014 if (NILP (window))
3015 window = Fget_largest_window (make_number (0));
3016 if (NILP (window))
3017 window = Fget_largest_window (Qt);
3019 else
3020 window = Fget_largest_window (frames);
3022 /* If we got a tall enough full-width window that can be split,
3023 split it. */
3024 if (!NILP (window)
3025 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3026 && window_height (window) >= split_height_threshold
3027 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
3028 window = Fsplit_window (window, Qnil, Qnil);
3029 else
3031 Lisp_Object upper, lower, other;
3033 window = Fget_lru_window (frames);
3034 /* If the LRU window is selected, and big enough,
3035 and can be split, split it. */
3036 if (!NILP (window)
3037 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3038 && (EQ (window, selected_window)
3039 || EQ (XWINDOW (window)->parent, Qnil))
3040 && window_height (window) >= window_min_height << 1)
3041 window = Fsplit_window (window, Qnil, Qnil);
3042 /* If Fget_lru_window returned nil, try other approaches. */
3044 /* Try visible frames first. */
3045 if (NILP (window))
3046 window = Fget_buffer_window (buffer, Qvisible);
3047 if (NILP (window))
3048 window = Fget_largest_window (Qvisible);
3049 /* If that didn't work, try iconified frames. */
3050 if (NILP (window))
3051 window = Fget_buffer_window (buffer, make_number (0));
3052 if (NILP (window))
3053 window = Fget_largest_window (make_number (0));
3054 /* Try invisible frames. */
3055 if (NILP (window))
3056 window = Fget_buffer_window (buffer, Qt);
3057 if (NILP (window))
3058 window = Fget_largest_window (Qt);
3059 /* As a last resort, make a new frame. */
3060 if (NILP (window))
3061 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3062 /* If window appears above or below another,
3063 even out their heights. */
3064 other = upper = lower = Qnil;
3065 if (!NILP (XWINDOW (window)->prev))
3066 other = upper = XWINDOW (window)->prev, lower = window;
3067 if (!NILP (XWINDOW (window)->next))
3068 other = lower = XWINDOW (window)->next, upper = window;
3069 if (!NILP (other)
3070 && !NILP (Veven_window_heights)
3071 /* Check that OTHER and WINDOW are vertically arrayed. */
3072 && !EQ (XWINDOW (other)->top, XWINDOW (window)->top)
3073 && (XFASTINT (XWINDOW (other)->height)
3074 > XFASTINT (XWINDOW (window)->height)))
3076 int total = (XFASTINT (XWINDOW (other)->height)
3077 + XFASTINT (XWINDOW (window)->height));
3078 enlarge_window (upper,
3079 total / 2 - XFASTINT (XWINDOW (upper)->height),
3084 else
3085 window = Fget_lru_window (Qnil);
3087 Fset_window_buffer (window, buffer);
3088 return display_buffer_1 (window);
3091 void
3092 temp_output_buffer_show (buf)
3093 register Lisp_Object buf;
3095 register struct buffer *old = current_buffer;
3096 register Lisp_Object window;
3097 register struct window *w;
3099 XBUFFER (buf)->directory = current_buffer->directory;
3101 Fset_buffer (buf);
3102 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3103 BEGV = BEG;
3104 ZV = Z;
3105 SET_PT (BEG);
3106 XBUFFER (buf)->prevent_redisplay_optimizations_p = 1;
3107 set_buffer_internal (old);
3109 if (!EQ (Vtemp_buffer_show_function, Qnil))
3110 call1 (Vtemp_buffer_show_function, buf);
3111 else
3113 window = Fdisplay_buffer (buf, Qnil, Qnil);
3115 if (!EQ (XWINDOW (window)->frame, selected_frame))
3116 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3117 Vminibuf_scroll_window = window;
3118 w = XWINDOW (window);
3119 XSETFASTINT (w->hscroll, 0);
3120 XSETFASTINT (w->min_hscroll, 0);
3121 set_marker_restricted_both (w->start, buf, 1, 1);
3122 set_marker_restricted_both (w->pointm, buf, 1, 1);
3124 /* Run temp-buffer-show-hook, with the chosen window selected
3125 and it sbuffer current. */
3126 if (!NILP (Vrun_hooks))
3128 Lisp_Object tem;
3129 tem = Fboundp (Qtemp_buffer_show_hook);
3130 if (!NILP (tem))
3132 tem = Fsymbol_value (Qtemp_buffer_show_hook);
3133 if (!NILP (tem))
3135 int count = specpdl_ptr - specpdl;
3136 Lisp_Object prev_window;
3137 prev_window = selected_window;
3139 /* Select the window that was chosen, for running the hook. */
3140 record_unwind_protect (Fselect_window, prev_window);
3141 select_window_1 (window, 0);
3142 Fset_buffer (w->buffer);
3143 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
3144 select_window_1 (prev_window, 0);
3145 unbind_to (count, Qnil);
3152 static void
3153 make_dummy_parent (window)
3154 Lisp_Object window;
3156 Lisp_Object new;
3157 register struct window *o, *p;
3158 register struct Lisp_Vector *vec;
3159 int i;
3161 o = XWINDOW (window);
3162 vec = allocate_vectorlike ((EMACS_INT)VECSIZE (struct window));
3163 for (i = 0; i < VECSIZE (struct window); ++i)
3164 vec->contents[i] = ((struct Lisp_Vector *)o)->contents[i];
3165 vec->size = VECSIZE (struct window);
3166 p = (struct window *)vec;
3167 XSETWINDOW (new, p);
3169 XSETFASTINT (p->sequence_number, ++sequence_number);
3171 /* Put new into window structure in place of window */
3172 replace_window (window, new);
3174 o->next = Qnil;
3175 o->prev = Qnil;
3176 o->vchild = Qnil;
3177 o->hchild = Qnil;
3178 o->parent = new;
3180 p->start = Qnil;
3181 p->pointm = Qnil;
3182 p->buffer = Qnil;
3185 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
3186 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
3187 WINDOW defaults to selected one and SIZE to half its size.\n\
3188 If optional third arg HORFLAG is non-nil, split side by side\n\
3189 and put SIZE columns in the first of the pair. In that case,\n\
3190 SIZE includes that window's scroll bar, or the divider column to its right.")
3191 (window, size, horflag)
3192 Lisp_Object window, size, horflag;
3194 register Lisp_Object new;
3195 register struct window *o, *p;
3196 FRAME_PTR fo;
3197 register int size_int;
3199 if (NILP (window))
3200 window = selected_window;
3201 else
3202 CHECK_LIVE_WINDOW (window, 0);
3204 o = XWINDOW (window);
3205 fo = XFRAME (WINDOW_FRAME (o));
3207 if (NILP (size))
3209 if (!NILP (horflag))
3210 /* Calculate the size of the left-hand window, by dividing
3211 the usable space in columns by two.
3212 We round up, since the left-hand window may include
3213 a dividing line, while the right-hand may not. */
3214 size_int = (XFASTINT (o->width) + 1) >> 1;
3215 else
3216 size_int = XFASTINT (o->height) >> 1;
3218 else
3220 CHECK_NUMBER (size, 1);
3221 size_int = XINT (size);
3224 if (MINI_WINDOW_P (o))
3225 error ("Attempt to split minibuffer window");
3226 else if (window_fixed_size_p (o, !NILP (horflag), 0))
3227 error ("Attempt to split fixed-size window");
3229 check_min_window_sizes ();
3231 if (NILP (horflag))
3233 if (size_int < window_min_height)
3234 error ("Window height %d too small (after splitting)", size_int);
3235 if (size_int + window_min_height > XFASTINT (o->height))
3236 error ("Window height %d too small (after splitting)",
3237 XFASTINT (o->height) - size_int);
3238 if (NILP (o->parent)
3239 || NILP (XWINDOW (o->parent)->vchild))
3241 make_dummy_parent (window);
3242 new = o->parent;
3243 XWINDOW (new)->vchild = window;
3246 else
3248 if (size_int < window_min_width)
3249 error ("Window width %d too small (after splitting)", size_int);
3251 if (size_int + window_min_width > XFASTINT (o->width))
3252 error ("Window width %d too small (after splitting)",
3253 XFASTINT (o->width) - size_int);
3254 if (NILP (o->parent)
3255 || NILP (XWINDOW (o->parent)->hchild))
3257 make_dummy_parent (window);
3258 new = o->parent;
3259 XWINDOW (new)->hchild = window;
3263 /* Now we know that window's parent is a vertical combination
3264 if we are dividing vertically, or a horizontal combination
3265 if we are making side-by-side windows */
3267 windows_or_buffers_changed++;
3268 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
3269 new = make_window ();
3270 p = XWINDOW (new);
3272 p->frame = o->frame;
3273 p->next = o->next;
3274 if (!NILP (p->next))
3275 XWINDOW (p->next)->prev = new;
3276 p->prev = window;
3277 o->next = new;
3278 p->parent = o->parent;
3279 p->buffer = Qt;
3280 p->window_end_valid = Qnil;
3281 bzero (&p->last_cursor, sizeof p->last_cursor);
3283 /* Apportion the available frame space among the two new windows */
3285 if (!NILP (horflag))
3287 p->height = o->height;
3288 p->top = o->top;
3289 XSETFASTINT (p->width, XFASTINT (o->width) - size_int);
3290 XSETFASTINT (o->width, size_int);
3291 XSETFASTINT (p->left, XFASTINT (o->left) + size_int);
3293 else
3295 p->left = o->left;
3296 p->width = o->width;
3297 XSETFASTINT (p->height, XFASTINT (o->height) - size_int);
3298 XSETFASTINT (o->height, size_int);
3299 XSETFASTINT (p->top, XFASTINT (o->top) + size_int);
3302 /* Adjust glyph matrices. */
3303 adjust_glyphs (fo);
3304 Fset_window_buffer (new, o->buffer);
3305 return new;
3308 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
3309 "Make current window ARG lines bigger.\n\
3310 From program, optional second arg non-nil means grow sideways ARG columns.\n\
3311 Interactively, if an argument is not given, make the window one line bigger.")
3312 (arg, side)
3313 register Lisp_Object arg, side;
3315 CHECK_NUMBER (arg, 0);
3316 enlarge_window (selected_window, XINT (arg), !NILP (side));
3318 if (! NILP (Vwindow_configuration_change_hook))
3319 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3321 return Qnil;
3324 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
3325 "Make current window ARG lines smaller.\n\
3326 From program, optional second arg non-nil means shrink sideways arg columns.\n\
3327 Interactively, if an argument is not given, make the window one line smaller.")
3328 (arg, side)
3329 register Lisp_Object arg, side;
3331 CHECK_NUMBER (arg, 0);
3332 enlarge_window (selected_window, -XINT (arg), !NILP (side));
3334 if (! NILP (Vwindow_configuration_change_hook))
3335 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3337 return Qnil;
3341 window_height (window)
3342 Lisp_Object window;
3344 register struct window *p = XWINDOW (window);
3345 return XFASTINT (p->height);
3349 window_width (window)
3350 Lisp_Object window;
3352 register struct window *p = XWINDOW (window);
3353 return XFASTINT (p->width);
3357 #define CURBEG(w) \
3358 *(widthflag ? &(XWINDOW (w)->left) : &(XWINDOW (w)->top))
3360 #define CURSIZE(w) \
3361 *(widthflag ? &(XWINDOW (w)->width) : &(XWINDOW (w)->height))
3364 /* Enlarge selected_window by DELTA. WIDTHFLAG non-zero means
3365 increase its width. Siblings of the selected window are resized to
3366 fullfil the size request. If they become too small in the process,
3367 they will be deleted. */
3369 static void
3370 enlarge_window (window, delta, widthflag)
3371 Lisp_Object window;
3372 int delta, widthflag;
3374 Lisp_Object parent, next, prev;
3375 struct window *p;
3376 Lisp_Object *sizep;
3377 int maximum;
3378 int (*sizefun) P_ ((Lisp_Object))
3379 = widthflag ? window_width : window_height;
3380 void (*setsizefun) P_ ((Lisp_Object, int, int))
3381 = (widthflag ? set_window_width : set_window_height);
3383 /* Check values of window_min_width and window_min_height for
3384 validity. */
3385 check_min_window_sizes ();
3387 /* Give up if this window cannot be resized. */
3388 if (window_fixed_size_p (XWINDOW (window), widthflag, 1))
3389 error ("Window is not resizable");
3391 /* Find the parent of the selected window. */
3392 while (1)
3394 p = XWINDOW (window);
3395 parent = p->parent;
3397 if (NILP (parent))
3399 if (widthflag)
3400 error ("No other window to side of this one");
3401 break;
3404 if (widthflag
3405 ? !NILP (XWINDOW (parent)->hchild)
3406 : !NILP (XWINDOW (parent)->vchild))
3407 break;
3409 window = parent;
3412 sizep = &CURSIZE (window);
3415 register int maxdelta;
3417 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
3418 : !NILP (p->next) ? ((*sizefun) (p->next)
3419 - window_min_size (XWINDOW (p->next),
3420 widthflag, 0, 0))
3421 : !NILP (p->prev) ? ((*sizefun) (p->prev)
3422 - window_min_size (XWINDOW (p->prev),
3423 widthflag, 0, 0))
3424 /* This is a frame with only one window, a minibuffer-only
3425 or a minibufferless frame. */
3426 : (delta = 0));
3428 if (delta > maxdelta)
3429 /* This case traps trying to make the minibuffer
3430 the full frame, or make the only window aside from the
3431 minibuffer the full frame. */
3432 delta = maxdelta;
3435 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), widthflag, 0, 0))
3437 delete_window (window);
3438 return;
3441 if (delta == 0)
3442 return;
3444 /* Find the total we can get from other siblings. */
3445 maximum = 0;
3446 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
3447 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
3448 widthflag, 0, 0);
3449 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
3450 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
3451 widthflag, 0, 0);
3453 /* If we can get it all from them, do so. */
3454 if (delta <= maximum)
3456 Lisp_Object first_unaffected;
3457 Lisp_Object first_affected;
3458 int fixed_p;
3460 next = p->next;
3461 prev = p->prev;
3462 first_affected = window;
3463 /* Look at one sibling at a time,
3464 moving away from this window in both directions alternately,
3465 and take as much as we can get without deleting that sibling. */
3466 while (delta != 0 && (!NILP (next) || !NILP (prev)))
3468 if (! NILP (next))
3470 int this_one = ((*sizefun) (next)
3471 - window_min_size (XWINDOW (next),
3472 widthflag, 0, &fixed_p));
3473 if (!fixed_p)
3475 if (this_one > delta)
3476 this_one = delta;
3478 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
3479 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3481 delta -= this_one;
3484 next = XWINDOW (next)->next;
3487 if (delta == 0)
3488 break;
3490 if (! NILP (prev))
3492 int this_one = ((*sizefun) (prev)
3493 - window_min_size (XWINDOW (prev),
3494 widthflag, 0, &fixed_p));
3495 if (!fixed_p)
3497 if (this_one > delta)
3498 this_one = delta;
3500 first_affected = prev;
3502 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
3503 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3505 delta -= this_one;
3508 prev = XWINDOW (prev)->prev;
3512 xassert (delta == 0);
3514 /* Now recalculate the edge positions of all the windows affected,
3515 based on the new sizes. */
3516 first_unaffected = next;
3517 prev = first_affected;
3518 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
3519 prev = next, next = XWINDOW (next)->next)
3521 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
3522 /* This does not change size of NEXT,
3523 but it propagates the new top edge to its children */
3524 (*setsizefun) (next, (*sizefun) (next), 0);
3527 else
3529 register int delta1;
3530 register int opht = (*sizefun) (parent);
3532 /* If trying to grow this window to or beyond size of the parent,
3533 make delta1 so big that, on shrinking back down,
3534 all the siblings end up with less than one line and are deleted. */
3535 if (opht <= XINT (*sizep) + delta)
3536 delta1 = opht * opht * 2;
3537 else
3539 /* Otherwise, make delta1 just right so that if we add
3540 delta1 lines to this window and to the parent, and then
3541 shrink the parent back to its original size, the new
3542 proportional size of this window will increase by delta.
3544 The function size_window will compute the new height h'
3545 of the window from delta1 as:
3547 e = delta1/n
3548 x = delta1 - delta1/n * n for the 1st resizable child
3549 h' = h + e + x
3551 where n is the number of children that can be resized.
3552 We can ignore x by choosing a delta1 that is a multiple of
3553 n. We want the height of this window to come out as
3555 h' = h + delta
3557 So, delta1 must be
3559 h + e = h + delta
3560 delta1/n = delta
3561 delta1 = n * delta.
3563 The number of children n rquals the number of resizable
3564 children of this window + 1 because we know window itself
3565 is resizable (otherwise we would have signalled an error. */
3567 struct window *w = XWINDOW (window);
3568 Lisp_Object s;
3569 int n = 1;
3571 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
3572 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3573 ++n;
3574 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
3575 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3576 ++n;
3578 delta1 = n * delta;
3581 /* Add delta1 lines or columns to this window, and to the parent,
3582 keeping things consistent while not affecting siblings. */
3583 XSETINT (CURSIZE (parent), opht + delta1);
3584 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
3586 /* Squeeze out delta1 lines or columns from our parent,
3587 shriking this window and siblings proportionately.
3588 This brings parent back to correct size.
3589 Delta1 was calculated so this makes this window the desired size,
3590 taking it all out of the siblings. */
3591 (*setsizefun) (parent, opht, 0);
3594 XSETFASTINT (p->last_modified, 0);
3595 XSETFASTINT (p->last_overlay_modified, 0);
3597 /* Adjust glyph matrices. */
3598 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
3601 #undef CURBEG
3602 #undef CURSIZE
3606 /***********************************************************************
3607 Resizing Mini-Windows
3608 ***********************************************************************/
3610 static void shrink_window_lowest_first P_ ((struct window *, int));
3612 enum save_restore_action
3614 CHECK_ORIG_SIZES,
3615 SAVE_ORIG_SIZES,
3616 RESTORE_ORIG_SIZES
3619 static int save_restore_orig_size P_ ((struct window *,
3620 enum save_restore_action));
3622 /* Shrink windows rooted in window W to HEIGHT. Take the space needed
3623 from lowest windows first. */
3625 static void
3626 shrink_window_lowest_first (w, height)
3627 struct window *w;
3628 int height;
3630 struct window *c;
3631 Lisp_Object child;
3632 int old_height;
3634 xassert (!MINI_WINDOW_P (w));
3636 /* Set redisplay hints. */
3637 XSETFASTINT (w->last_modified, 0);
3638 XSETFASTINT (w->last_overlay_modified, 0);
3639 windows_or_buffers_changed++;
3640 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
3642 old_height = XFASTINT (w->height);
3643 XSETFASTINT (w->height, height);
3645 if (!NILP (w->hchild))
3647 for (child = w->hchild; !NILP (child); child = c->next)
3649 c = XWINDOW (child);
3650 c->top = w->top;
3651 shrink_window_lowest_first (c, height);
3654 else if (!NILP (w->vchild))
3656 Lisp_Object last_child;
3657 int delta = old_height - height;
3658 int last_top;
3660 last_child = Qnil;
3662 /* Find the last child. We are taking space from lowest windows
3663 first, so we iterate over children from the last child
3664 backwards. */
3665 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
3666 last_child = child;
3668 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
3669 for (child = last_child; delta && !NILP (child); child = c->prev)
3671 int this_one;
3673 c = XWINDOW (child);
3674 this_one = XFASTINT (c->height) - MIN_SAFE_WINDOW_HEIGHT;
3676 if (this_one > delta)
3677 this_one = delta;
3679 shrink_window_lowest_first (c, XFASTINT (c->height) - this_one);
3680 delta -= this_one;
3683 /* Compute new positions. */
3684 last_top = XINT (w->top);
3685 for (child = w->vchild; !NILP (child); child = c->next)
3687 c = XWINDOW (child);
3688 c->top = make_number (last_top);
3689 shrink_window_lowest_first (c, XFASTINT (c->height));
3690 last_top += XFASTINT (c->height);
3696 /* Save, restore, or check positions and sizes in the window tree
3697 rooted at W. ACTION says what to do.
3699 If ACTION is CHECK_ORIG_SIZES, check if orig_top and orig_height
3700 members are valid for all windows in the window tree. Value is
3701 non-zero if they are valid.
3703 If ACTION is SAVE_ORIG_SIZES, save members top and height in
3704 orig_top and orig_height for all windows in the tree.
3706 If ACTION is RESTORE_ORIG_SIZES, restore top and height from
3707 values stored in orig_top and orig_height for all windows. */
3709 static int
3710 save_restore_orig_size (w, action)
3711 struct window *w;
3712 enum save_restore_action action;
3714 int success_p = 1;
3716 while (w)
3718 if (!NILP (w->hchild))
3720 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
3721 success_p = 0;
3723 else if (!NILP (w->vchild))
3725 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
3726 success_p = 0;
3729 switch (action)
3731 case CHECK_ORIG_SIZES:
3732 if (!INTEGERP (w->orig_top) || !INTEGERP (w->orig_height))
3733 return 0;
3734 break;
3736 case SAVE_ORIG_SIZES:
3737 w->orig_top = w->top;
3738 w->orig_height = w->height;
3739 XSETFASTINT (w->last_modified, 0);
3740 XSETFASTINT (w->last_overlay_modified, 0);
3741 break;
3743 case RESTORE_ORIG_SIZES:
3744 xassert (INTEGERP (w->orig_top) && INTEGERP (w->orig_height));
3745 w->top = w->orig_top;
3746 w->height = w->orig_height;
3747 w->orig_height = w->orig_top = Qnil;
3748 XSETFASTINT (w->last_modified, 0);
3749 XSETFASTINT (w->last_overlay_modified, 0);
3750 break;
3752 default:
3753 abort ();
3756 w = NILP (w->next) ? NULL : XWINDOW (w->next);
3759 return success_p;
3763 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
3764 without deleting other windows. */
3766 void
3767 grow_mini_window (w, delta)
3768 struct window *w;
3769 int delta;
3771 struct frame *f = XFRAME (w->frame);
3772 struct window *root;
3774 xassert (MINI_WINDOW_P (w));
3775 xassert (delta >= 0);
3777 /* Check values of window_min_width and window_min_height for
3778 validity. */
3779 check_min_window_sizes ();
3781 /* Compute how much we can enlarge the mini-window without deleting
3782 other windows. */
3783 root = XWINDOW (FRAME_ROOT_WINDOW (f));
3784 if (delta)
3786 int min_height = window_min_size (root, 0, 0, 0);
3787 if (XFASTINT (root->height) - delta < min_height)
3788 delta = XFASTINT (root->height) - min_height;
3791 if (delta)
3793 /* Save original window sizes and positions, if not already done. */
3794 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
3795 save_restore_orig_size (root, SAVE_ORIG_SIZES);
3797 /* Shrink other windows. */
3798 shrink_window_lowest_first (root, XFASTINT (root->height) - delta);
3800 /* Grow the mini-window. */
3801 w->top = make_number (XFASTINT (root->top) + XFASTINT (root->height));
3802 w->height = make_number (XFASTINT (w->height) + delta);
3803 XSETFASTINT (w->last_modified, 0);
3804 XSETFASTINT (w->last_overlay_modified, 0);
3806 adjust_glyphs (f);
3811 /* Shrink mini-window W. If there is recorded info about window sizes
3812 before a call to grow_mini_window, restore recorded window sizes.
3813 Otherwise, if the mini-window is higher than 1 line, resize it to 1
3814 line. */
3816 void
3817 shrink_mini_window (w)
3818 struct window *w;
3820 struct frame *f = XFRAME (w->frame);
3821 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
3823 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
3825 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
3826 adjust_glyphs (f);
3827 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3828 windows_or_buffers_changed = 1;
3830 else if (XFASTINT (w->height) > 1)
3832 /* Distribute the additional lines of the mini-window
3833 among the other windows. */
3834 Lisp_Object window;
3835 XSETWINDOW (window, w);
3836 enlarge_window (window, 1 - XFASTINT (w->height), 0);
3842 /* Mark window cursors off for all windows in the window tree rooted
3843 at W by setting their phys_cursor_on_p flag to zero. Called from
3844 xterm.c, e.g. when a frame is cleared and thereby all cursors on
3845 the frame are cleared. */
3847 void
3848 mark_window_cursors_off (w)
3849 struct window *w;
3851 while (w)
3853 if (!NILP (w->hchild))
3854 mark_window_cursors_off (XWINDOW (w->hchild));
3855 else if (!NILP (w->vchild))
3856 mark_window_cursors_off (XWINDOW (w->vchild));
3857 else
3858 w->phys_cursor_on_p = 0;
3860 w = NILP (w->next) ? 0 : XWINDOW (w->next);
3865 /* Return number of lines of text (not counting mode line) in W. */
3868 window_internal_height (w)
3869 struct window *w;
3871 int ht = XFASTINT (w->height);
3873 if (MINI_WINDOW_P (w))
3874 return ht;
3876 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
3877 || !NILP (w->next) || !NILP (w->prev)
3878 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
3879 return ht - 1;
3881 return ht;
3885 /* Return the number of columns in W.
3886 Don't count columns occupied by scroll bars or the vertical bar
3887 separating W from the sibling to its right. */
3890 window_internal_width (w)
3891 struct window *w;
3893 struct frame *f = XFRAME (WINDOW_FRAME (w));
3894 int width = XINT (w->width);
3896 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3897 /* Scroll bars occupy a few columns. */
3898 width -= FRAME_SCROLL_BAR_COLS (f);
3899 else if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
3900 /* The column of `|' characters separating side-by-side windows
3901 occupies one column only. */
3902 width -= 1;
3904 /* On window-systems, areas to the left and right of the window
3905 are used to display bitmaps there. */
3906 if (FRAME_WINDOW_P (f))
3907 width -= FRAME_FLAGS_AREA_COLS (f);
3909 return width;
3913 /************************************************************************
3914 Window Scrolling
3915 ***********************************************************************/
3917 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
3918 one screen-full, which is defined as the height of the window minus
3919 next_screen_context_lines. If WHOLE is zero, scroll up N lines
3920 instead. Negative values of N mean scroll down. NOERROR non-zero
3921 means don't signal an error if we try to move over BEGV or ZV,
3922 respectively. */
3924 static void
3925 window_scroll (window, n, whole, noerror)
3926 Lisp_Object window;
3927 int n;
3928 int whole;
3929 int noerror;
3931 /* If we must, use the pixel-based version which is much slower than
3932 the line-based one but can handle varying line heights. */
3933 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
3934 window_scroll_pixel_based (window, n, whole, noerror);
3935 else
3936 window_scroll_line_based (window, n, whole, noerror);
3940 /* Implementation of window_scroll that works based on pixel line
3941 heights. See the comment of window_scroll for parameter
3942 descriptions. */
3944 static void
3945 window_scroll_pixel_based (window, n, whole, noerror)
3946 Lisp_Object window;
3947 int n;
3948 int whole;
3949 int noerror;
3951 struct it it;
3952 struct window *w = XWINDOW (window);
3953 struct text_pos start;
3954 Lisp_Object tem;
3955 int this_scroll_margin;
3956 int preserve_y;
3957 /* True if we fiddled the window vscroll field without really scrolling. */
3958 int vscrolled = 0;
3960 SET_TEXT_POS_FROM_MARKER (start, w->start);
3962 /* If PT is not visible in WINDOW, move back one half of
3963 the screen. */
3964 tem = Fpos_visible_in_window_p (make_number (PT), window, Qnil);
3965 if (NILP (tem))
3967 /* Move backward half the height of the window. Performance note:
3968 vmotion used here is about 10% faster, but would give wrong
3969 results for variable height lines. */
3970 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3971 it.current_y = it.last_visible_y;
3972 move_it_vertically (&it, -it.last_visible_y / 2);
3974 /* The function move_iterator_vertically may move over more than
3975 the specified y-distance. If it->w is small, e.g. a
3976 mini-buffer window, we may end up in front of the window's
3977 display area. This is the case when Start displaying at the
3978 start of the line containing PT in this case. */
3979 if (it.current_y <= 0)
3981 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3982 move_it_vertically (&it, 0);
3983 it.current_y = 0;
3986 start = it.current.pos;
3989 /* If scroll_preserve_screen_position is non-zero, we try to set
3990 point in the same window line as it is now, so get that line. */
3991 if (!NILP (Vscroll_preserve_screen_position))
3993 start_display (&it, w, start);
3994 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
3995 preserve_y = it.current_y;
3997 else
3998 preserve_y = -1;
4000 /* Move iterator it from start the specified distance forward or
4001 backward. The result is the new window start. */
4002 start_display (&it, w, start);
4003 if (whole)
4005 int screen_full = (it.last_visible_y
4006 - next_screen_context_lines * CANON_Y_UNIT (it.f));
4007 int direction = n < 0 ? -1 : 1;
4008 int dy = direction * screen_full;
4010 /* Note that move_it_vertically always moves the iterator to the
4011 start of a line. So, if the last line doesn't have a newline,
4012 we would end up at the start of the line ending at ZV. */
4013 if (dy <= 0)
4014 move_it_vertically_backward (&it, -dy);
4015 else if (dy > 0)
4016 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4017 MOVE_TO_POS | MOVE_TO_Y);
4019 else
4020 move_it_by_lines (&it, n, 1);
4022 /* End if we end up at ZV or BEGV. */
4023 if ((n > 0 && IT_CHARPOS (it) == ZV)
4024 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4026 if (IT_CHARPOS (it) == ZV)
4028 if (it.current_y + it.max_ascent + it.max_descent
4029 > it.last_visible_y)
4031 /* The last line was only partially visible, make it fully
4032 visible. */
4033 w->vscroll = (it.last_visible_y
4034 - it.current_y + it.max_ascent + it.max_descent);
4035 adjust_glyphs (it.f);
4037 else if (noerror)
4038 return;
4039 else
4040 Fsignal (Qend_of_buffer, Qnil);
4042 else
4044 if (w->vscroll != 0)
4045 /* The first line was only partially visible, make it fully
4046 visible. */
4047 w->vscroll = 0;
4048 else if (noerror)
4049 return;
4050 else
4051 Fsignal (Qbeginning_of_buffer, Qnil);
4054 /* If control gets here, then we vscrolled. */
4056 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
4058 /* Don't try to change the window start below. */
4059 vscrolled = 1;
4062 if (! vscrolled)
4064 /* Set the window start, and set up the window for redisplay. */
4065 set_marker_restricted (w->start, make_number (IT_CHARPOS (it)),
4066 w->buffer);
4067 w->start_at_line_beg = Fbolp ();
4068 w->update_mode_line = Qt;
4069 XSETFASTINT (w->last_modified, 0);
4070 XSETFASTINT (w->last_overlay_modified, 0);
4071 /* Set force_start so that redisplay_window will run the
4072 window-scroll-functions. */
4073 w->force_start = Qt;
4076 it.current_y = it.vpos = 0;
4078 /* Preserve the screen position if we must. */
4079 if (preserve_y >= 0)
4081 move_it_to (&it, -1, -1, preserve_y, -1, MOVE_TO_Y);
4082 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4084 else
4086 /* Move PT out of scroll margins. */
4087 this_scroll_margin = max (0, scroll_margin);
4088 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
4089 this_scroll_margin *= CANON_Y_UNIT (it.f);
4091 if (n > 0)
4093 /* We moved the window start towards ZV, so PT may be now
4094 in the scroll margin at the top. */
4095 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4096 while (it.current_y < this_scroll_margin)
4097 move_it_by_lines (&it, 1, 1);
4098 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4100 else if (n < 0)
4102 int charpos, bytepos;
4104 /* We moved the window start towards BEGV, so PT may be now
4105 in the scroll margin at the bottom. */
4106 move_it_to (&it, PT, -1,
4107 it.last_visible_y - this_scroll_margin - 1, -1,
4108 MOVE_TO_POS | MOVE_TO_Y);
4110 /* Save our position, in case it's correct. */
4111 charpos = IT_CHARPOS (it);
4112 bytepos = IT_BYTEPOS (it);
4114 /* See if point is on a partially visible line at the end. */
4115 move_it_by_lines (&it, 1, 1);
4116 if (it.current_y > it.last_visible_y)
4117 /* The last line was only partially visible, so back up two
4118 lines to make sure we're on a fully visible line. */
4120 move_it_by_lines (&it, -2, 0);
4121 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4123 else
4124 /* No, the position we saved is OK, so use it. */
4125 SET_PT_BOTH (charpos, bytepos);
4131 /* Implementation of window_scroll that works based on screen lines.
4132 See the comment of window_scroll for parameter descriptions. */
4134 static void
4135 window_scroll_line_based (window, n, whole, noerror)
4136 Lisp_Object window;
4137 int n;
4138 int whole;
4139 int noerror;
4141 register struct window *w = XWINDOW (window);
4142 register int opoint = PT, opoint_byte = PT_BYTE;
4143 register int pos, pos_byte;
4144 register int ht = window_internal_height (w);
4145 register Lisp_Object tem;
4146 int lose;
4147 Lisp_Object bolp;
4148 int startpos;
4149 struct position posit;
4150 int original_vpos;
4152 startpos = marker_position (w->start);
4154 posit = *compute_motion (startpos, 0, 0, 0,
4155 PT, ht, 0,
4156 window_internal_width (w), XINT (w->hscroll),
4157 0, w);
4158 original_vpos = posit.vpos;
4160 XSETFASTINT (tem, PT);
4161 tem = Fpos_visible_in_window_p (tem, window, Qnil);
4163 if (NILP (tem))
4165 Fvertical_motion (make_number (- (ht / 2)), window);
4166 startpos = PT;
4169 SET_PT (startpos);
4170 lose = n < 0 && PT == BEGV;
4171 Fvertical_motion (make_number (n), window);
4172 pos = PT;
4173 pos_byte = PT_BYTE;
4174 bolp = Fbolp ();
4175 SET_PT_BOTH (opoint, opoint_byte);
4177 if (lose)
4179 if (noerror)
4180 return;
4181 else
4182 Fsignal (Qbeginning_of_buffer, Qnil);
4185 if (pos < ZV)
4187 int this_scroll_margin = scroll_margin;
4189 /* Don't use a scroll margin that is negative or too large. */
4190 if (this_scroll_margin < 0)
4191 this_scroll_margin = 0;
4193 if (XINT (w->height) < 4 * scroll_margin)
4194 this_scroll_margin = XINT (w->height) / 4;
4196 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
4197 w->start_at_line_beg = bolp;
4198 w->update_mode_line = Qt;
4199 XSETFASTINT (w->last_modified, 0);
4200 XSETFASTINT (w->last_overlay_modified, 0);
4201 /* Set force_start so that redisplay_window will run
4202 the window-scroll-functions. */
4203 w->force_start = Qt;
4205 if (whole && !NILP (Vscroll_preserve_screen_position))
4207 SET_PT_BOTH (pos, pos_byte);
4208 Fvertical_motion (make_number (original_vpos), window);
4210 /* If we scrolled forward, put point enough lines down
4211 that it is outside the scroll margin. */
4212 else if (n > 0)
4214 int top_margin;
4216 if (this_scroll_margin > 0)
4218 SET_PT_BOTH (pos, pos_byte);
4219 Fvertical_motion (make_number (this_scroll_margin), window);
4220 top_margin = PT;
4222 else
4223 top_margin = pos;
4225 if (top_margin <= opoint)
4226 SET_PT_BOTH (opoint, opoint_byte);
4227 else if (!NILP (Vscroll_preserve_screen_position))
4229 SET_PT_BOTH (pos, pos_byte);
4230 Fvertical_motion (make_number (original_vpos), window);
4232 else
4233 SET_PT (top_margin);
4235 else if (n < 0)
4237 int bottom_margin;
4239 /* If we scrolled backward, put point near the end of the window
4240 but not within the scroll margin. */
4241 SET_PT_BOTH (pos, pos_byte);
4242 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
4243 if (XFASTINT (tem) == ht - this_scroll_margin)
4244 bottom_margin = PT;
4245 else
4246 bottom_margin = PT + 1;
4248 if (bottom_margin > opoint)
4249 SET_PT_BOTH (opoint, opoint_byte);
4250 else
4252 if (!NILP (Vscroll_preserve_screen_position))
4254 SET_PT_BOTH (pos, pos_byte);
4255 Fvertical_motion (make_number (original_vpos), window);
4257 else
4258 Fvertical_motion (make_number (-1), window);
4262 else
4264 if (noerror)
4265 return;
4266 else
4267 Fsignal (Qend_of_buffer, Qnil);
4272 /* Scroll selected_window up or down. If N is nil, scroll a
4273 screen-full which is defined as the height of the window minus
4274 next_screen_context_lines. If N is the symbol `-', scroll.
4275 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4276 up. This is the guts of Fscroll_up and Fscroll_down. */
4278 static void
4279 scroll_command (n, direction)
4280 Lisp_Object n;
4281 int direction;
4283 register int defalt;
4284 int count = specpdl_ptr - specpdl;
4286 xassert (abs (direction) == 1);
4288 /* If selected window's buffer isn't current, make it current for
4289 the moment. But don't screw up if window_scroll gets an error. */
4290 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
4292 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4293 Fset_buffer (XWINDOW (selected_window)->buffer);
4295 /* Make redisplay consider other windows than just selected_window. */
4296 ++windows_or_buffers_changed;
4299 defalt = (window_internal_height (XWINDOW (selected_window))
4300 - next_screen_context_lines);
4301 defalt = direction * (defalt < 1 ? 1 : defalt);
4303 if (NILP (n))
4304 window_scroll (selected_window, defalt, 1, 0);
4305 else if (EQ (n, Qminus))
4306 window_scroll (selected_window, - defalt, 1, 0);
4307 else
4309 n = Fprefix_numeric_value (n);
4310 window_scroll (selected_window, XINT (n) * direction, 0, 0);
4313 unbind_to (count, Qnil);
4316 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
4317 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
4318 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4319 Negative ARG means scroll downward.\n\
4320 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4321 When calling from a program, supply as argument a number, nil, or `-'.")
4322 (arg)
4323 Lisp_Object arg;
4325 scroll_command (arg, 1);
4326 return Qnil;
4329 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
4330 "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\
4331 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4332 Negative ARG means scroll upward.\n\
4333 If ARG is the atom `-', scroll upward by nearly full screen.\n\
4334 When calling from a program, supply as argument a number, nil, or `-'.")
4335 (arg)
4336 Lisp_Object arg;
4338 scroll_command (arg, -1);
4339 return Qnil;
4342 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4343 "Return the other window for \"other window scroll\" commands.\n\
4344 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4345 specifies the window.\n\
4346 If `other-window-scroll-buffer' is non-nil, a window\n\
4347 showing that buffer is used.")
4350 Lisp_Object window;
4352 if (MINI_WINDOW_P (XWINDOW (selected_window))
4353 && !NILP (Vminibuf_scroll_window))
4354 window = Vminibuf_scroll_window;
4355 /* If buffer is specified, scroll that buffer. */
4356 else if (!NILP (Vother_window_scroll_buffer))
4358 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
4359 if (NILP (window))
4360 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
4362 else
4364 /* Nothing specified; look for a neighboring window on the same
4365 frame. */
4366 window = Fnext_window (selected_window, Qnil, Qnil);
4368 if (EQ (window, selected_window))
4369 /* That didn't get us anywhere; look for a window on another
4370 visible frame. */
4372 window = Fnext_window (window, Qnil, Qt);
4373 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4374 && ! EQ (window, selected_window));
4377 CHECK_LIVE_WINDOW (window, 0);
4379 if (EQ (window, selected_window))
4380 error ("There is no other window");
4382 return window;
4385 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4386 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
4387 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4388 The next window is the one below the current one; or the one at the top\n\
4389 if the current one is at the bottom. Negative ARG means scroll downward.\n\
4390 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4391 When calling from a program, supply as argument a number, nil, or `-'.\n\
4393 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4394 specifies the window to scroll.\n\
4395 If `other-window-scroll-buffer' is non-nil, scroll the window\n\
4396 showing that buffer, popping the buffer up if necessary.")
4397 (arg)
4398 register Lisp_Object arg;
4400 register Lisp_Object window;
4401 register int defalt;
4402 register struct window *w;
4403 register int count = specpdl_ptr - specpdl;
4405 window = Fother_window_for_scrolling ();
4407 w = XWINDOW (window);
4408 defalt = window_internal_height (w) - next_screen_context_lines;
4409 if (defalt < 1) defalt = 1;
4411 /* Don't screw up if window_scroll gets an error. */
4412 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4413 ++windows_or_buffers_changed;
4415 Fset_buffer (w->buffer);
4416 SET_PT (marker_position (w->pointm));
4418 if (NILP (arg))
4419 window_scroll (window, defalt, 1, 1);
4420 else if (EQ (arg, Qminus))
4421 window_scroll (window, -defalt, 1, 1);
4422 else
4424 if (CONSP (arg))
4425 arg = Fcar (arg);
4426 CHECK_NUMBER (arg, 0);
4427 window_scroll (window, XINT (arg), 0, 1);
4430 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
4431 unbind_to (count, Qnil);
4433 return Qnil;
4436 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
4437 "Scroll selected window display ARG columns left.\n\
4438 Default for ARG is window width minus 2.")
4439 (arg)
4440 register Lisp_Object arg;
4442 Lisp_Object result;
4443 int hscroll;
4444 struct window *w = XWINDOW (selected_window);
4446 if (NILP (arg))
4447 XSETFASTINT (arg, window_internal_width (w) - 2);
4448 else
4449 arg = Fprefix_numeric_value (arg);
4451 hscroll = XINT (w->hscroll) + XINT (arg);
4452 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4454 if (interactive_p (0))
4455 w->min_hscroll = w->hscroll;
4457 return result;
4460 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
4461 "Scroll selected window display ARG columns right.\n\
4462 Default for ARG is window width minus 2.")
4463 (arg)
4464 register Lisp_Object arg;
4466 Lisp_Object result;
4467 int hscroll;
4468 struct window *w = XWINDOW (selected_window);
4470 if (NILP (arg))
4471 XSETFASTINT (arg, window_internal_width (w) - 2);
4472 else
4473 arg = Fprefix_numeric_value (arg);
4475 hscroll = XINT (w->hscroll) - XINT (arg);
4476 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4478 if (interactive_p (0))
4479 w->min_hscroll = w->hscroll;
4481 return result;
4484 /* Value is the number of lines actually displayed in window W,
4485 as opposed to its height. */
4487 static int
4488 displayed_window_lines (w)
4489 struct window *w;
4491 struct it it;
4492 struct text_pos start;
4493 int height = window_box_height (w);
4494 struct buffer *old_buffer;
4495 int bottom_y;
4497 if (XBUFFER (w->buffer) != current_buffer)
4499 old_buffer = current_buffer;
4500 set_buffer_internal (XBUFFER (w->buffer));
4502 else
4503 old_buffer = NULL;
4505 SET_TEXT_POS_FROM_MARKER (start, w->start);
4506 start_display (&it, w, start);
4507 move_it_vertically (&it, height);
4508 bottom_y = line_bottom_y (&it);
4510 /* Add in empty lines at the bottom of the window. */
4511 if (bottom_y < height)
4513 int uy = CANON_Y_UNIT (it.f);
4514 it.vpos += (height - bottom_y + uy - 1) / uy;
4517 if (old_buffer)
4518 set_buffer_internal (old_buffer);
4520 return it.vpos;
4524 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
4525 "Center point in window and redisplay frame.\n\
4526 With prefix argument ARG, recenter putting point on screen line ARG\n\
4527 relative to the current window. If ARG is negative, it counts up from the\n\
4528 bottom of the window. (ARG should be less than the height of the window.)\n\
4530 If ARG is omitted or nil, erase the entire frame and then\n\
4531 redraw with point in the center of the current window.\n\
4532 Just C-u as prefix means put point in the center of the window\n\
4533 and redisplay normally--don't erase and redraw the frame.")
4534 (arg)
4535 register Lisp_Object arg;
4537 struct window *w = XWINDOW (selected_window);
4538 struct buffer *buf = XBUFFER (w->buffer);
4539 struct buffer *obuf = current_buffer;
4540 int center_p = 0;
4541 int charpos, bytepos;
4543 if (NILP (arg))
4545 int i;
4547 /* Invalidate pixel data calculated for all compositions. */
4548 for (i = 0; i < n_compositions; i++)
4549 composition_table[i]->font = NULL;
4551 Fredraw_frame (w->frame);
4552 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
4553 center_p = 1;
4555 else if (CONSP (arg)) /* Just C-u. */
4556 center_p = 1;
4557 else
4559 arg = Fprefix_numeric_value (arg);
4560 CHECK_NUMBER (arg, 0);
4563 set_buffer_internal (buf);
4565 /* Handle centering on a gfaphical frame specially. Such frames can
4566 have variable-height lines and centering point on the basis of
4567 line counts would lead to strange effects. */
4568 if (center_p && FRAME_WINDOW_P (XFRAME (w->frame)))
4570 struct it it;
4571 struct text_pos pt;
4573 SET_TEXT_POS (pt, PT, PT_BYTE);
4574 start_display (&it, w, pt);
4575 move_it_vertically (&it, - it.last_visible_y / 2);
4576 charpos = IT_CHARPOS (it);
4577 bytepos = IT_BYTEPOS (it);
4579 else
4581 struct position pos;
4583 if (center_p)
4585 int ht = displayed_window_lines (w);
4586 arg = make_number (ht / 2);
4588 else if (XINT (arg) < 0)
4590 int ht = displayed_window_lines (w);
4591 XSETINT (arg, XINT (arg) + ht);
4594 pos = *vmotion (PT, - XINT (arg), w);
4595 charpos = pos.bufpos;
4596 bytepos = pos.bytepos;
4599 /* Set the new window start. */
4600 set_marker_both (w->start, w->buffer, charpos, bytepos);
4601 w->window_end_valid = Qnil;
4602 w->force_start = Qt;
4603 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
4604 w->start_at_line_beg = Qt;
4605 else
4606 w->start_at_line_beg = Qnil;
4608 set_buffer_internal (obuf);
4609 return Qnil;
4613 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
4614 0, 1, 0,
4615 "Return the height in lines of the text display area of WINDOW.\n\
4616 This doesn't include the mode-line (or header-line if any) or any\n\
4617 partial-height lines in the text display area.")
4618 (window)
4619 Lisp_Object window;
4621 struct window *w = decode_window (window);
4622 int pixel_height = window_box_height (w);
4623 int line_height = pixel_height / CANON_Y_UNIT (XFRAME (w->frame));
4624 return make_number (line_height);
4629 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
4630 1, 1, "P",
4631 "Position point relative to window.\n\
4632 With no argument, position point at center of window.\n\
4633 An argument specifies vertical position within the window;\n\
4634 zero means top of window, negative means relative to bottom of window.")
4635 (arg)
4636 Lisp_Object arg;
4638 struct window *w = XWINDOW (selected_window);
4639 int lines, start;
4640 Lisp_Object window;
4642 window = selected_window;
4643 start = marker_position (w->start);
4644 if (start < BEGV || start > ZV)
4646 int height = window_internal_height (w);
4647 Fvertical_motion (make_number (- (height / 2)), window);
4648 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
4649 w->start_at_line_beg = Fbolp ();
4650 w->force_start = Qt;
4652 else
4653 Fgoto_char (w->start);
4655 lines = displayed_window_lines (w);
4656 if (NILP (arg))
4657 XSETFASTINT (arg, lines / 2);
4658 else
4660 arg = Fprefix_numeric_value (arg);
4661 if (XINT (arg) < 0)
4662 XSETINT (arg, XINT (arg) + lines);
4665 /* Skip past a partially visible first line. */
4666 if (w->vscroll)
4667 XSETINT (arg, XINT (arg) + 1);
4669 return Fvertical_motion (arg, window);
4674 /***********************************************************************
4675 Window Configuration
4676 ***********************************************************************/
4678 struct save_window_data
4680 EMACS_INT size_from_Lisp_Vector_struct;
4681 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4682 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
4683 Lisp_Object frame_tool_bar_lines;
4684 Lisp_Object selected_frame;
4685 Lisp_Object current_window;
4686 Lisp_Object current_buffer;
4687 Lisp_Object minibuf_scroll_window;
4688 Lisp_Object root_window;
4689 Lisp_Object focus_frame;
4690 /* Record the values of window-min-width and window-min-height
4691 so that window sizes remain consistent with them. */
4692 Lisp_Object min_width, min_height;
4693 /* A vector, each of whose elements is a struct saved_window
4694 for one window. */
4695 Lisp_Object saved_windows;
4698 /* This is saved as a Lisp_Vector */
4699 struct saved_window
4701 /* these first two must agree with struct Lisp_Vector in lisp.h */
4702 EMACS_INT size_from_Lisp_Vector_struct;
4703 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4705 Lisp_Object window;
4706 Lisp_Object buffer, start, pointm, mark;
4707 Lisp_Object left, top, width, height, hscroll, min_hscroll;
4708 Lisp_Object parent, prev;
4709 Lisp_Object start_at_line_beg;
4710 Lisp_Object display_table;
4711 Lisp_Object orig_top, orig_height;
4714 #define SAVED_WINDOW_VECTOR_SIZE 17 /* Arg to Fmake_vector */
4716 #define SAVED_WINDOW_N(swv,n) \
4717 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
4719 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
4720 "Return t if OBJECT is a window-configuration object.")
4721 (object)
4722 Lisp_Object object;
4724 if (WINDOW_CONFIGURATIONP (object))
4725 return Qt;
4726 return Qnil;
4729 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
4730 "Return the frame that CONFIG, a window-configuration object, is about.")
4731 (config)
4732 Lisp_Object config;
4734 register struct save_window_data *data;
4735 struct Lisp_Vector *saved_windows;
4737 if (! WINDOW_CONFIGURATIONP (config))
4738 wrong_type_argument (Qwindow_configuration_p, config);
4740 data = (struct save_window_data *) XVECTOR (config);
4741 saved_windows = XVECTOR (data->saved_windows);
4742 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4745 DEFUN ("set-window-configuration", Fset_window_configuration,
4746 Sset_window_configuration, 1, 1, 0,
4747 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
4748 CONFIGURATION must be a value previously returned\n\
4749 by `current-window-configuration' (which see).\n\
4750 If CONFIGURATION was made from a frame that is now deleted,\n\
4751 only frame-independent values can be restored. In this case,\n\
4752 the return value is nil. Otherwise the value is t.")
4753 (configuration)
4754 Lisp_Object configuration;
4756 register struct save_window_data *data;
4757 struct Lisp_Vector *saved_windows;
4758 Lisp_Object new_current_buffer;
4759 Lisp_Object frame;
4760 FRAME_PTR f;
4761 int old_point = -1;
4763 while (!WINDOW_CONFIGURATIONP (configuration))
4764 wrong_type_argument (Qwindow_configuration_p, configuration);
4766 data = (struct save_window_data *) XVECTOR (configuration);
4767 saved_windows = XVECTOR (data->saved_windows);
4769 new_current_buffer = data->current_buffer;
4770 if (NILP (XBUFFER (new_current_buffer)->name))
4771 new_current_buffer = Qnil;
4772 else
4774 if (XBUFFER (new_current_buffer) == current_buffer)
4775 old_point = PT;
4778 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4779 f = XFRAME (frame);
4781 /* If f is a dead frame, don't bother rebuilding its window tree.
4782 However, there is other stuff we should still try to do below. */
4783 if (FRAME_LIVE_P (f))
4785 register struct window *w;
4786 register struct saved_window *p;
4787 struct window *root_window;
4788 struct window **leaf_windows;
4789 int n_leaf_windows;
4790 int k, i, n;
4792 /* If the frame has been resized since this window configuration was
4793 made, we change the frame to the size specified in the
4794 configuration, restore the configuration, and then resize it
4795 back. We keep track of the prevailing height in these variables. */
4796 int previous_frame_height = FRAME_HEIGHT (f);
4797 int previous_frame_width = FRAME_WIDTH (f);
4798 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
4799 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
4801 /* The mouse highlighting code could get screwed up
4802 if it runs during this. */
4803 BLOCK_INPUT;
4805 if (XFASTINT (data->frame_height) != previous_frame_height
4806 || XFASTINT (data->frame_width) != previous_frame_width)
4807 change_frame_size (f, XFASTINT (data->frame_height),
4808 XFASTINT (data->frame_width), 0, 0, 0);
4809 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4810 if (XFASTINT (data->frame_menu_bar_lines)
4811 != previous_frame_menu_bar_lines)
4812 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
4813 #ifdef HAVE_WINDOW_SYSTEM
4814 if (XFASTINT (data->frame_tool_bar_lines)
4815 != previous_frame_tool_bar_lines)
4816 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
4817 #endif
4818 #endif
4820 /* "Swap out" point from the selected window
4821 into its buffer. We do this now, before
4822 restoring the window contents, and prevent it from
4823 being done later on when we select a new window. */
4824 if (! NILP (XWINDOW (selected_window)->buffer))
4826 w = XWINDOW (selected_window);
4827 set_marker_both (w->pointm,
4828 w->buffer,
4829 BUF_PT (XBUFFER (w->buffer)),
4830 BUF_PT_BYTE (XBUFFER (w->buffer)));
4833 windows_or_buffers_changed++;
4834 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4836 /* Problem: Freeing all matrices and later allocating them again
4837 is a serious redisplay flickering problem. What we would
4838 really like to do is to free only those matrices not reused
4839 below. */
4840 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
4841 leaf_windows
4842 = (struct window **) alloca (count_windows (root_window)
4843 * sizeof (struct window *));
4844 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
4846 /* Temporarily avoid any problems with windows that are smaller
4847 than they are supposed to be. */
4848 window_min_height = 1;
4849 window_min_width = 1;
4851 /* Kludge Alert!
4852 Mark all windows now on frame as "deleted".
4853 Restoring the new configuration "undeletes" any that are in it.
4855 Save their current buffers in their height fields, since we may
4856 need it later, if a buffer saved in the configuration is now
4857 dead. */
4858 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
4860 for (k = 0; k < saved_windows->size; k++)
4862 p = SAVED_WINDOW_N (saved_windows, k);
4863 w = XWINDOW (p->window);
4864 w->next = Qnil;
4866 if (!NILP (p->parent))
4867 w->parent = SAVED_WINDOW_N (saved_windows,
4868 XFASTINT (p->parent))->window;
4869 else
4870 w->parent = Qnil;
4872 if (!NILP (p->prev))
4874 w->prev = SAVED_WINDOW_N (saved_windows,
4875 XFASTINT (p->prev))->window;
4876 XWINDOW (w->prev)->next = p->window;
4878 else
4880 w->prev = Qnil;
4881 if (!NILP (w->parent))
4883 if (EQ (p->width, XWINDOW (w->parent)->width))
4885 XWINDOW (w->parent)->vchild = p->window;
4886 XWINDOW (w->parent)->hchild = Qnil;
4888 else
4890 XWINDOW (w->parent)->hchild = p->window;
4891 XWINDOW (w->parent)->vchild = Qnil;
4896 /* If we squirreled away the buffer in the window's height,
4897 restore it now. */
4898 if (BUFFERP (w->height))
4899 w->buffer = w->height;
4900 w->left = p->left;
4901 w->top = p->top;
4902 w->width = p->width;
4903 w->height = p->height;
4904 w->hscroll = p->hscroll;
4905 w->min_hscroll = p->min_hscroll;
4906 w->display_table = p->display_table;
4907 w->orig_top = p->orig_top;
4908 w->orig_height = p->orig_height;
4909 XSETFASTINT (w->last_modified, 0);
4910 XSETFASTINT (w->last_overlay_modified, 0);
4912 /* Reinstall the saved buffer and pointers into it. */
4913 if (NILP (p->buffer))
4914 w->buffer = p->buffer;
4915 else
4917 if (!NILP (XBUFFER (p->buffer)->name))
4918 /* If saved buffer is alive, install it. */
4920 w->buffer = p->buffer;
4921 w->start_at_line_beg = p->start_at_line_beg;
4922 set_marker_restricted (w->start, p->start, w->buffer);
4923 set_marker_restricted (w->pointm, p->pointm, w->buffer);
4924 Fset_marker (XBUFFER (w->buffer)->mark,
4925 p->mark, w->buffer);
4927 /* As documented in Fcurrent_window_configuration, don't
4928 save the location of point in the buffer which was current
4929 when the window configuration was recorded. */
4930 if (!EQ (p->buffer, new_current_buffer)
4931 && XBUFFER (p->buffer) == current_buffer)
4932 Fgoto_char (w->pointm);
4934 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
4935 /* Else unless window has a live buffer, get one. */
4937 w->buffer = Fcdr (Fcar (Vbuffer_alist));
4938 /* This will set the markers to beginning of visible
4939 range. */
4940 set_marker_restricted (w->start, make_number (0), w->buffer);
4941 set_marker_restricted (w->pointm, make_number (0),w->buffer);
4942 w->start_at_line_beg = Qt;
4944 else
4945 /* Keeping window's old buffer; make sure the markers
4946 are real. */
4948 /* Set window markers at start of visible range. */
4949 if (XMARKER (w->start)->buffer == 0)
4950 set_marker_restricted (w->start, make_number (0),
4951 w->buffer);
4952 if (XMARKER (w->pointm)->buffer == 0)
4953 set_marker_restricted_both (w->pointm, w->buffer,
4954 BUF_PT (XBUFFER (w->buffer)),
4955 BUF_PT_BYTE (XBUFFER (w->buffer)));
4956 w->start_at_line_beg = Qt;
4961 FRAME_ROOT_WINDOW (f) = data->root_window;
4962 /* Prevent "swapping out point" in the old selected window
4963 using the buffer that has been restored into it.
4964 That swapping out has already been done,
4965 near the beginning of this function. */
4966 selected_window = Qnil;
4967 Fselect_window (data->current_window);
4968 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
4969 = selected_window;
4971 if (NILP (data->focus_frame)
4972 || (FRAMEP (data->focus_frame)
4973 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
4974 Fredirect_frame_focus (frame, data->focus_frame);
4976 #if 0 /* I don't understand why this is needed, and it causes problems
4977 when the frame's old selected window has been deleted. */
4978 if (f != selected_frame && FRAME_WINDOW_P (f))
4979 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
4980 Qnil, 0);
4981 #endif
4983 /* Set the screen height to the value it had before this function. */
4984 if (previous_frame_height != FRAME_HEIGHT (f)
4985 || previous_frame_width != FRAME_WIDTH (f))
4986 change_frame_size (f, previous_frame_height, previous_frame_width,
4987 0, 0, 0);
4988 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4989 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
4990 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
4991 make_number (0));
4992 #ifdef HAVE_WINDOW_SYSTEM
4993 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
4994 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
4995 make_number (0));
4996 #endif
4997 #endif
4999 /* Now, free glyph matrices in windows that were not reused. */
5000 for (i = n = 0; i < n_leaf_windows; ++i)
5002 if (NILP (leaf_windows[i]->buffer))
5004 /* Assert it's not reused as a combination. */
5005 xassert (NILP (leaf_windows[i]->hchild)
5006 && NILP (leaf_windows[i]->vchild));
5007 free_window_matrices (leaf_windows[i]);
5009 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
5010 ++n;
5013 /* If more than one window shows the new and old current buffer,
5014 don't try to preserve point in that buffer. */
5015 if (old_point > 0 && n > 1)
5016 old_point = -1;
5018 adjust_glyphs (f);
5020 UNBLOCK_INPUT;
5022 /* Fselect_window will have made f the selected frame, so we
5023 reselect the proper frame here. Fhandle_switch_frame will change the
5024 selected window too, but that doesn't make the call to
5025 Fselect_window above totally superfluous; it still sets f's
5026 selected window. */
5027 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
5028 do_switch_frame (data->selected_frame, Qnil, 0);
5030 if (! NILP (Vwindow_configuration_change_hook)
5031 && ! NILP (Vrun_hooks))
5032 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
5035 if (!NILP (new_current_buffer))
5037 Fset_buffer (new_current_buffer);
5039 /* If the buffer that is current now is the same
5040 that was current before setting the window configuration,
5041 don't alter its PT. */
5042 if (old_point >= 0)
5043 SET_PT (old_point);
5046 /* Restore the minimum heights recorded in the configuration. */
5047 window_min_height = XINT (data->min_height);
5048 window_min_width = XINT (data->min_width);
5050 Vminibuf_scroll_window = data->minibuf_scroll_window;
5052 return (FRAME_LIVE_P (f) ? Qt : Qnil);
5055 /* Mark all windows now on frame as deleted
5056 by setting their buffers to nil. */
5058 void
5059 delete_all_subwindows (w)
5060 register struct window *w;
5062 if (!NILP (w->next))
5063 delete_all_subwindows (XWINDOW (w->next));
5064 if (!NILP (w->vchild))
5065 delete_all_subwindows (XWINDOW (w->vchild));
5066 if (!NILP (w->hchild))
5067 delete_all_subwindows (XWINDOW (w->hchild));
5069 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
5071 if (!NILP (w->buffer))
5072 unshow_buffer (w);
5074 /* We set all three of these fields to nil, to make sure that we can
5075 distinguish this dead window from any live window. Live leaf
5076 windows will have buffer set, and combination windows will have
5077 vchild or hchild set. */
5078 w->buffer = Qnil;
5079 w->vchild = Qnil;
5080 w->hchild = Qnil;
5082 Vwindow_list = Qnil;
5085 static int
5086 count_windows (window)
5087 register struct window *window;
5089 register int count = 1;
5090 if (!NILP (window->next))
5091 count += count_windows (XWINDOW (window->next));
5092 if (!NILP (window->vchild))
5093 count += count_windows (XWINDOW (window->vchild));
5094 if (!NILP (window->hchild))
5095 count += count_windows (XWINDOW (window->hchild));
5096 return count;
5100 /* Fill vector FLAT with leaf windows under W, starting at index I.
5101 Value is last index + 1. */
5103 static int
5104 get_leaf_windows (w, flat, i)
5105 struct window *w;
5106 struct window **flat;
5107 int i;
5109 while (w)
5111 if (!NILP (w->hchild))
5112 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5113 else if (!NILP (w->vchild))
5114 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
5115 else
5116 flat[i++] = w;
5118 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5121 return i;
5125 /* Return a pointer to the glyph W's physical cursor is on. Value is
5126 null if W's current matrix is invalid, so that no meaningfull glyph
5127 can be returned. */
5129 struct glyph *
5130 get_phys_cursor_glyph (w)
5131 struct window *w;
5133 struct glyph_row *row;
5134 struct glyph *glyph;
5136 if (w->phys_cursor.vpos >= 0
5137 && w->phys_cursor.vpos < w->current_matrix->nrows
5138 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
5139 row->enabled_p)
5140 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
5141 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
5142 else
5143 glyph = NULL;
5145 return glyph;
5149 static int
5150 save_window_save (window, vector, i)
5151 Lisp_Object window;
5152 struct Lisp_Vector *vector;
5153 int i;
5155 register struct saved_window *p;
5156 register struct window *w;
5157 register Lisp_Object tem;
5159 for (;!NILP (window); window = w->next)
5161 p = SAVED_WINDOW_N (vector, i);
5162 w = XWINDOW (window);
5164 XSETFASTINT (w->temslot, i++);
5165 p->window = window;
5166 p->buffer = w->buffer;
5167 p->left = w->left;
5168 p->top = w->top;
5169 p->width = w->width;
5170 p->height = w->height;
5171 p->hscroll = w->hscroll;
5172 p->min_hscroll = w->min_hscroll;
5173 p->display_table = w->display_table;
5174 p->orig_top = w->orig_top;
5175 p->orig_height = w->orig_height;
5176 if (!NILP (w->buffer))
5178 /* Save w's value of point in the window configuration.
5179 If w is the selected window, then get the value of point
5180 from the buffer; pointm is garbage in the selected window. */
5181 if (EQ (window, selected_window))
5183 p->pointm = Fmake_marker ();
5184 set_marker_both (p->pointm, w->buffer,
5185 BUF_PT (XBUFFER (w->buffer)),
5186 BUF_PT_BYTE (XBUFFER (w->buffer)));
5188 else
5189 p->pointm = Fcopy_marker (w->pointm, Qnil);
5191 p->start = Fcopy_marker (w->start, Qnil);
5192 p->start_at_line_beg = w->start_at_line_beg;
5194 tem = XBUFFER (w->buffer)->mark;
5195 p->mark = Fcopy_marker (tem, Qnil);
5197 else
5199 p->pointm = Qnil;
5200 p->start = Qnil;
5201 p->mark = Qnil;
5202 p->start_at_line_beg = Qnil;
5205 if (NILP (w->parent))
5206 p->parent = Qnil;
5207 else
5208 p->parent = XWINDOW (w->parent)->temslot;
5210 if (NILP (w->prev))
5211 p->prev = Qnil;
5212 else
5213 p->prev = XWINDOW (w->prev)->temslot;
5215 if (!NILP (w->vchild))
5216 i = save_window_save (w->vchild, vector, i);
5217 if (!NILP (w->hchild))
5218 i = save_window_save (w->hchild, vector, i);
5221 return i;
5224 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
5225 Scurrent_window_configuration, 0, 1, 0,
5226 "Return an object representing the current window configuration of FRAME.\n\
5227 If FRAME is nil or omitted, use the selected frame.\n\
5228 This describes the number of windows, their sizes and current buffers,\n\
5229 and for each displayed buffer, where display starts, and the positions of\n\
5230 point and mark. An exception is made for point in the current buffer:\n\
5231 its value is -not- saved.\n\
5232 This also records the currently selected frame, and FRAME's focus\n\
5233 redirection (see `redirect-frame-focus').")
5234 (frame)
5235 Lisp_Object frame;
5237 register Lisp_Object tem;
5238 register int n_windows;
5239 register struct save_window_data *data;
5240 register struct Lisp_Vector *vec;
5241 register int i;
5242 FRAME_PTR f;
5244 if (NILP (frame))
5245 frame = selected_frame;
5246 CHECK_LIVE_FRAME (frame, 0);
5247 f = XFRAME (frame);
5249 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
5250 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
5251 for (i = 0; i < VECSIZE (struct save_window_data); i++)
5252 vec->contents[i] = Qnil;
5253 vec->size = VECSIZE (struct save_window_data);
5254 data = (struct save_window_data *)vec;
5256 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
5257 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
5258 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
5259 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
5260 data->selected_frame = selected_frame;
5261 data->current_window = FRAME_SELECTED_WINDOW (f);
5262 XSETBUFFER (data->current_buffer, current_buffer);
5263 data->minibuf_scroll_window = Vminibuf_scroll_window;
5264 data->root_window = FRAME_ROOT_WINDOW (f);
5265 data->focus_frame = FRAME_FOCUS_FRAME (f);
5266 XSETINT (data->min_height, window_min_height);
5267 XSETINT (data->min_width, window_min_width);
5268 tem = Fmake_vector (make_number (n_windows), Qnil);
5269 data->saved_windows = tem;
5270 for (i = 0; i < n_windows; i++)
5271 XVECTOR (tem)->contents[i]
5272 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
5273 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
5274 XSETWINDOW_CONFIGURATION (tem, data);
5275 return (tem);
5278 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
5279 0, UNEVALLED, 0,
5280 "Execute body, preserving window sizes and contents.\n\
5281 Restore which buffer appears in which window, where display starts,\n\
5282 and the value of point and mark for each window.\n\
5283 Also restore the choice of selected window.\n\
5284 Also restore which buffer is current.\n\
5285 Does not restore the value of point in current buffer.")
5286 (args)
5287 Lisp_Object args;
5289 register Lisp_Object val;
5290 register int count = specpdl_ptr - specpdl;
5292 record_unwind_protect (Fset_window_configuration,
5293 Fcurrent_window_configuration (Qnil));
5294 val = Fprogn (args);
5295 return unbind_to (count, val);
5299 /***********************************************************************
5300 Marginal Areas
5301 ***********************************************************************/
5303 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
5304 2, 3, 0,
5305 "Set width of marginal areas of window WINDOW.\n\
5306 If window is nil, set margins of the currently selected window.\n\
5307 First parameter LEFT-WIDTH specifies the number of character\n\
5308 cells to reserve for the left marginal area. Second parameter\n\
5309 RIGHT-WIDTH does the same for the right marginal area.\n\
5310 A nil width parameter means no margin.")
5311 (window, left, right)
5312 Lisp_Object window, left, right;
5314 struct window *w = decode_window (window);
5316 if (!NILP (left))
5317 CHECK_NUMBER_OR_FLOAT (left, 1);
5318 if (!NILP (right))
5319 CHECK_NUMBER_OR_FLOAT (right, 2);
5321 /* Check widths < 0 and translate a zero width to nil.
5322 Margins that are too wide have to be checked elsewhere. */
5323 if ((INTEGERP (left) && XINT (left) < 0)
5324 || (FLOATP (left) && XFLOAT_DATA (left) <= 0))
5325 XSETFASTINT (left, 0);
5326 if (INTEGERP (left) && XFASTINT (left) == 0)
5327 left = Qnil;
5329 if ((INTEGERP (right) && XINT (right) < 0)
5330 || (FLOATP (right) && XFLOAT_DATA (right) <= 0))
5331 XSETFASTINT (right, 0);
5332 if (INTEGERP (right) && XFASTINT (right) == 0)
5333 right = Qnil;
5335 w->left_margin_width = left;
5336 w->right_margin_width = right;
5338 ++windows_or_buffers_changed;
5339 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
5340 return Qnil;
5344 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
5345 0, 1, 0,
5346 "Get width of marginal areas of window WINDOW.\n\
5347 If WINDOW is omitted or nil, use the currently selected window.\n\
5348 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).\n\
5349 If a marginal area does not exist, its width will be returned\n\
5350 as nil.")
5351 (window)
5352 Lisp_Object window;
5354 struct window *w = decode_window (window);
5355 return Fcons (w->left_margin_width, w->right_margin_width);
5360 /***********************************************************************
5361 Smooth scrolling
5362 ***********************************************************************/
5364 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 1, 0,
5365 "Return the amount by which WINDOW is scrolled vertically.\n\
5366 Use the selected window if WINDOW is nil or omitted.\n\
5367 Value is a multiple of the canonical character height of WINDOW.")
5368 (window)
5369 Lisp_Object window;
5371 Lisp_Object result;
5372 struct frame *f;
5373 struct window *w;
5375 if (NILP (window))
5376 window = selected_window;
5377 else
5378 CHECK_WINDOW (window, 0);
5379 w = XWINDOW (window);
5380 f = XFRAME (w->frame);
5382 if (FRAME_WINDOW_P (f))
5383 result = CANON_Y_FROM_PIXEL_Y (f, -w->vscroll);
5384 else
5385 result = make_number (0);
5386 return result;
5390 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
5391 2, 2, 0,
5392 "Set amount by which WINDOW should be scrolled vertically to VSCROLL.\n\
5393 WINDOW nil or omitted means use the selected window. VSCROLL is a\n\
5394 non-negative multiple of the canonical character height of WINDOW.")
5395 (window, vscroll)
5396 Lisp_Object window, vscroll;
5398 struct window *w;
5399 struct frame *f;
5401 if (NILP (window))
5402 window = selected_window;
5403 else
5404 CHECK_WINDOW (window, 0);
5405 CHECK_NUMBER_OR_FLOAT (vscroll, 1);
5407 w = XWINDOW (window);
5408 f = XFRAME (w->frame);
5410 if (FRAME_WINDOW_P (f))
5412 int old_dy = w->vscroll;
5414 w->vscroll = - CANON_Y_UNIT (f) * XFLOATINT (vscroll);
5415 w->vscroll = min (w->vscroll, 0);
5417 /* Adjust glyph matrix of the frame if the virtual display
5418 area becomes larger than before. */
5419 if (w->vscroll < 0 && w->vscroll < old_dy)
5420 adjust_glyphs (f);
5422 /* Prevent redisplay shortcuts. */
5423 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
5426 return Fwindow_vscroll (window);
5430 /* Call FN for all leaf windows on frame F. FN is called with the
5431 first argument being a pointer to the leaf window, and with
5432 additional argument USER_DATA. Stops when FN returns 0. */
5434 void
5435 foreach_window (f, fn, user_data)
5436 struct frame *f;
5437 int (* fn) P_ ((struct window *, void *));
5438 void *user_data;
5440 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
5444 /* Helper function for foreach_window. Call FN for all leaf windows
5445 reachable from W. FN is called with the first argument being a
5446 pointer to the leaf window, and with additional argument USER_DATA.
5447 Stop when FN returns 0. Value is 0 if stopped by FN. */
5449 static int
5450 foreach_window_1 (w, fn, user_data)
5451 struct window *w;
5452 int (* fn) P_ ((struct window *, void *));
5453 void *user_data;
5455 int cont;
5457 for (cont = 1; w && cont;)
5459 if (!NILP (w->hchild))
5460 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
5461 else if (!NILP (w->vchild))
5462 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
5463 else
5464 cont = fn (w, user_data);
5466 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5469 return cont;
5473 /* Freeze or unfreeze the window start of W if unless it is a
5474 mini-window or the selected window. FREEZE_P non-null means freeze
5475 the window start. */
5477 static int
5478 freeze_window_start (w, freeze_p)
5479 struct window *w;
5480 void *freeze_p;
5482 if (w == XWINDOW (selected_window)
5483 || MINI_WINDOW_P (w)
5484 || (MINI_WINDOW_P (XWINDOW (selected_window))
5485 && ! NILP (Vminibuf_scroll_window)
5486 && w == XWINDOW (Vminibuf_scroll_window)))
5487 freeze_p = NULL;
5489 w->frozen_window_start_p = freeze_p != NULL;
5490 return 1;
5494 /* Freeze or unfreeze the window starts of all leaf windows on frame
5495 F, except the selected window and a mini-window. FREEZE_P non-zero
5496 means freeze the window start. */
5498 void
5499 freeze_window_starts (f, freeze_p)
5500 struct frame *f;
5501 int freeze_p;
5503 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
5507 /***********************************************************************
5508 Initialization
5509 ***********************************************************************/
5511 /* Return 1 if window configurations C1 and C2
5512 describe the same state of affairs. This is used by Fequal. */
5515 compare_window_configurations (c1, c2, ignore_positions)
5516 Lisp_Object c1, c2;
5517 int ignore_positions;
5519 register struct save_window_data *d1, *d2;
5520 struct Lisp_Vector *sw1, *sw2;
5521 int i;
5523 if (!WINDOW_CONFIGURATIONP (c1))
5524 wrong_type_argument (Qwindow_configuration_p, c1);
5525 if (!WINDOW_CONFIGURATIONP (c2))
5526 wrong_type_argument (Qwindow_configuration_p, c2);
5528 d1 = (struct save_window_data *) XVECTOR (c1);
5529 d2 = (struct save_window_data *) XVECTOR (c2);
5530 sw1 = XVECTOR (d1->saved_windows);
5531 sw2 = XVECTOR (d2->saved_windows);
5533 if (! EQ (d1->frame_width, d2->frame_width))
5534 return 0;
5535 if (! EQ (d1->frame_height, d2->frame_height))
5536 return 0;
5537 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
5538 return 0;
5539 if (! EQ (d1->selected_frame, d2->selected_frame))
5540 return 0;
5541 /* Don't compare the current_window field directly.
5542 Instead see w1_is_current and w2_is_current, below. */
5543 if (! EQ (d1->current_buffer, d2->current_buffer))
5544 return 0;
5545 if (! ignore_positions)
5546 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
5547 return 0;
5548 /* Don't compare the root_window field.
5549 We don't require the two configurations
5550 to use the same window object,
5551 and the two root windows must be equivalent
5552 if everything else compares equal. */
5553 if (! EQ (d1->focus_frame, d2->focus_frame))
5554 return 0;
5555 if (! EQ (d1->min_width, d2->min_width))
5556 return 0;
5557 if (! EQ (d1->min_height, d2->min_height))
5558 return 0;
5560 /* Verify that the two confis have the same number of windows. */
5561 if (sw1->size != sw2->size)
5562 return 0;
5564 for (i = 0; i < sw1->size; i++)
5566 struct saved_window *p1, *p2;
5567 int w1_is_current, w2_is_current;
5569 p1 = SAVED_WINDOW_N (sw1, i);
5570 p2 = SAVED_WINDOW_N (sw2, i);
5572 /* Verify that the current windows in the two
5573 configurations correspond to each other. */
5574 w1_is_current = EQ (d1->current_window, p1->window);
5575 w2_is_current = EQ (d2->current_window, p2->window);
5577 if (w1_is_current != w2_is_current)
5578 return 0;
5580 /* Verify that the corresponding windows do match. */
5581 if (! EQ (p1->buffer, p2->buffer))
5582 return 0;
5583 if (! EQ (p1->left, p2->left))
5584 return 0;
5585 if (! EQ (p1->top, p2->top))
5586 return 0;
5587 if (! EQ (p1->width, p2->width))
5588 return 0;
5589 if (! EQ (p1->height, p2->height))
5590 return 0;
5591 if (! EQ (p1->display_table, p2->display_table))
5592 return 0;
5593 if (! EQ (p1->parent, p2->parent))
5594 return 0;
5595 if (! EQ (p1->prev, p2->prev))
5596 return 0;
5597 if (! ignore_positions)
5599 if (! EQ (p1->hscroll, p2->hscroll))
5600 return 0;
5601 if (!EQ (p1->min_hscroll, p2->min_hscroll))
5602 return 0;
5603 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
5604 return 0;
5605 if (NILP (Fequal (p1->start, p2->start)))
5606 return 0;
5607 if (NILP (Fequal (p1->pointm, p2->pointm)))
5608 return 0;
5609 if (NILP (Fequal (p1->mark, p2->mark)))
5610 return 0;
5614 return 1;
5617 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
5618 Scompare_window_configurations, 2, 2, 0,
5619 "Compare two window configurations as regards the structure of windows.\n\
5620 This function ignores details such as the values of point and mark\n\
5621 and scrolling positions.")
5622 (x, y)
5623 Lisp_Object x, y;
5625 if (compare_window_configurations (x, y, 1))
5626 return Qt;
5627 return Qnil;
5630 void
5631 init_window_once ()
5633 struct frame *f = make_terminal_frame ();
5634 XSETFRAME (selected_frame, f);
5635 Vterminal_frame = selected_frame;
5636 minibuf_window = f->minibuffer_window;
5637 selected_window = f->selected_window;
5638 last_nonminibuf_frame = f;
5640 window_initialized = 1;
5643 void
5644 init_window ()
5646 Vwindow_list = Qnil;
5649 void
5650 syms_of_window ()
5652 Qleft_fringe = intern ("left-fringe");
5653 staticpro (&Qleft_fringe);
5654 Qright_fringe = intern ("right-fringe");
5655 staticpro (&Qright_fringe);
5657 Qwindow_size_fixed = intern ("window-size-fixed");
5658 staticpro (&Qwindow_size_fixed);
5660 staticpro (&Qwindow_configuration_change_hook);
5661 Qwindow_configuration_change_hook
5662 = intern ("window-configuration-change-hook");
5664 Qwindowp = intern ("windowp");
5665 staticpro (&Qwindowp);
5667 Qwindow_configuration_p = intern ("window-configuration-p");
5668 staticpro (&Qwindow_configuration_p);
5670 Qwindow_live_p = intern ("window-live-p");
5671 staticpro (&Qwindow_live_p);
5673 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
5674 staticpro (&Qtemp_buffer_show_hook);
5676 staticpro (&Vwindow_list);
5678 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
5679 "Non-nil means call as function to display a help buffer.\n\
5680 The function is called with one argument, the buffer to be displayed.\n\
5681 Used by `with-output-to-temp-buffer'.\n\
5682 If this function is used, then it must do the entire job of showing\n\
5683 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
5684 Vtemp_buffer_show_function = Qnil;
5686 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
5687 "If non-nil, function to call to handle `display-buffer'.\n\
5688 It will receive two args, the buffer and a flag which if non-nil means\n\
5689 that the currently selected window is not acceptable.\n\
5690 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
5691 work using this function.");
5692 Vdisplay_buffer_function = Qnil;
5694 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
5695 "*If non-nil, `display-buffer' should even the window heights.\n\
5696 If nil, `display-buffer' will leave the window configuration alone.");
5697 Veven_window_heights = Qt;
5699 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
5700 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
5701 Vminibuf_scroll_window = Qnil;
5703 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
5704 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
5705 Vother_window_scroll_buffer = Qnil;
5707 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
5708 "*Non-nil means `display-buffer' should make a separate frame.");
5709 pop_up_frames = 0;
5711 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
5712 "*Non-nil means `display-buffer' should reuse frames.\n\
5713 If the buffer in question is already displayed in a frame, raise that frame.");
5714 display_buffer_reuse_frames = 0;
5716 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
5717 "Function to call to handle automatic new frame creation.\n\
5718 It is called with no arguments and should return a newly created frame.\n\
5720 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
5721 where `pop-up-frame-alist' would hold the default frame parameters.");
5722 Vpop_up_frame_function = Qnil;
5724 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
5725 "*List of buffer names that should have their own special frames.\n\
5726 Displaying a buffer whose name is in this list makes a special frame for it\n\
5727 using `special-display-function'. See also `special-display-regexps'.\n\
5729 An element of the list can be a list instead of just a string.\n\
5730 There are two ways to use a list as an element:\n\
5731 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
5732 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5733 In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
5734 followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
5735 All this is done by the function found in `special-display-function'.\n\
5737 If this variable appears \"not to work\", because you add a name to it\n\
5738 but that buffer still appears in the selected window, look at the\n\
5739 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5740 Those variables take precedence over this one.");
5741 Vspecial_display_buffer_names = Qnil;
5743 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
5744 "*List of regexps saying which buffers should have their own special frames.\n\
5745 If a buffer name matches one of these regexps, it gets its own frame.\n\
5746 Displaying a buffer whose name is in this list makes a special frame for it\n\
5747 using `special-display-function'.\n\
5749 An element of the list can be a list instead of just a string.\n\
5750 There are two ways to use a list as an element:\n\
5751 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
5752 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5753 In the latter case, FUNCTION is called with the buffer as first argument,\n\
5754 followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
5755 All this is done by the function found in `special-display-function'.\n\
5757 If this variable appears \"not to work\", because you add a regexp to it\n\
5758 but the matching buffers still appear in the selected window, look at the\n\
5759 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5760 Those variables take precedence over this one.");
5761 Vspecial_display_regexps = Qnil;
5763 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
5764 "Function to call to make a new frame for a special buffer.\n\
5765 It is called with two arguments, the buffer and optional buffer specific\n\
5766 data, and should return a window displaying that buffer.\n\
5767 The default value makes a separate frame for the buffer,\n\
5768 using `special-display-frame-alist' to specify the frame parameters.\n\
5770 A buffer is special if its is listed in `special-display-buffer-names'\n\
5771 or matches a regexp in `special-display-regexps'.");
5772 Vspecial_display_function = Qnil;
5774 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
5775 "*List of buffer names that should appear in the selected window.\n\
5776 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
5777 switches to it in the selected window, rather than making it appear\n\
5778 in some other window.\n\
5780 An element of the list can be a cons cell instead of just a string.\n\
5781 Then the car must be a string, which specifies the buffer name.\n\
5782 This is for compatibility with `special-display-buffer-names';\n\
5783 the cdr of the cons cell is ignored.\n\
5785 See also `same-window-regexps'.");
5786 Vsame_window_buffer_names = Qnil;
5788 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
5789 "*List of regexps saying which buffers should appear in the selected window.\n\
5790 If a buffer name matches one of these regexps, then displaying it\n\
5791 using `display-buffer' or `pop-to-buffer' switches to it\n\
5792 in the selected window, rather than making it appear in some other window.\n\
5794 An element of the list can be a cons cell instead of just a string.\n\
5795 Then the car must be a string, which specifies the buffer name.\n\
5796 This is for compatibility with `special-display-buffer-names';\n\
5797 the cdr of the cons cell is ignored.\n\
5799 See also `same-window-buffer-names'.");
5800 Vsame_window_regexps = Qnil;
5802 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
5803 "*Non-nil means display-buffer should make new windows.");
5804 pop_up_windows = 1;
5806 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
5807 "*Number of lines of continuity when scrolling by screenfuls.");
5808 next_screen_context_lines = 2;
5810 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
5811 "*display-buffer would prefer to split the largest window if this large.\n\
5812 If there is only one window, it is split regardless of this value.");
5813 split_height_threshold = 500;
5815 DEFVAR_INT ("window-min-height", &window_min_height,
5816 "*Delete any window less than this tall (including its mode line).");
5817 window_min_height = 4;
5819 DEFVAR_INT ("window-min-width", &window_min_width,
5820 "*Delete any window less than this wide.");
5821 window_min_width = 10;
5823 DEFVAR_LISP ("scroll-preserve-screen-position",
5824 &Vscroll_preserve_screen_position,
5825 "*Non-nil means scroll commands move point to keep its screen line unchanged.");
5826 Vscroll_preserve_screen_position = Qnil;
5828 DEFVAR_LISP ("window-configuration-change-hook",
5829 &Vwindow_configuration_change_hook,
5830 "Functions to call when window configuration changes.\n\
5831 The selected frame is the one whose configuration has changed.");
5832 Vwindow_configuration_change_hook = Qnil;
5834 DEFVAR_BOOL ("window-size-fixed", &window_size_fixed,
5835 "Non-nil in a buffer means windows displaying the buffer are fixed-size.\n\
5836 Emacs won't change the size of any window displaying that buffer,\n\
5837 unless you explicitly change the size, or Emacs has no other choice.\n\
5838 This variable automatically becomes buffer-local when set.");
5839 Fmake_variable_buffer_local (Qwindow_size_fixed);
5840 window_size_fixed = 0;
5842 defsubr (&Sselected_window);
5843 defsubr (&Sminibuffer_window);
5844 defsubr (&Swindow_minibuffer_p);
5845 defsubr (&Swindowp);
5846 defsubr (&Swindow_live_p);
5847 defsubr (&Spos_visible_in_window_p);
5848 defsubr (&Swindow_buffer);
5849 defsubr (&Swindow_height);
5850 defsubr (&Swindow_width);
5851 defsubr (&Swindow_hscroll);
5852 defsubr (&Sset_window_hscroll);
5853 defsubr (&Swindow_redisplay_end_trigger);
5854 defsubr (&Sset_window_redisplay_end_trigger);
5855 defsubr (&Swindow_edges);
5856 defsubr (&Scoordinates_in_window_p);
5857 defsubr (&Swindow_at);
5858 defsubr (&Swindow_point);
5859 defsubr (&Swindow_start);
5860 defsubr (&Swindow_end);
5861 defsubr (&Sset_window_point);
5862 defsubr (&Sset_window_start);
5863 defsubr (&Swindow_dedicated_p);
5864 defsubr (&Sset_window_dedicated_p);
5865 defsubr (&Swindow_display_table);
5866 defsubr (&Sset_window_display_table);
5867 defsubr (&Snext_window);
5868 defsubr (&Sprevious_window);
5869 defsubr (&Sother_window);
5870 defsubr (&Sget_lru_window);
5871 defsubr (&Sget_largest_window);
5872 defsubr (&Sget_buffer_window);
5873 defsubr (&Sdelete_other_windows);
5874 defsubr (&Sdelete_windows_on);
5875 defsubr (&Sreplace_buffer_in_windows);
5876 defsubr (&Sdelete_window);
5877 defsubr (&Sset_window_buffer);
5878 defsubr (&Sselect_window);
5879 defsubr (&Sspecial_display_p);
5880 defsubr (&Ssame_window_p);
5881 defsubr (&Sdisplay_buffer);
5882 defsubr (&Ssplit_window);
5883 defsubr (&Senlarge_window);
5884 defsubr (&Sshrink_window);
5885 defsubr (&Sscroll_up);
5886 defsubr (&Sscroll_down);
5887 defsubr (&Sscroll_left);
5888 defsubr (&Sscroll_right);
5889 defsubr (&Sother_window_for_scrolling);
5890 defsubr (&Sscroll_other_window);
5891 defsubr (&Srecenter);
5892 defsubr (&Swindow_text_height);
5893 defsubr (&Smove_to_window_line);
5894 defsubr (&Swindow_configuration_p);
5895 defsubr (&Swindow_configuration_frame);
5896 defsubr (&Sset_window_configuration);
5897 defsubr (&Scurrent_window_configuration);
5898 defsubr (&Ssave_window_excursion);
5899 defsubr (&Sset_window_margins);
5900 defsubr (&Swindow_margins);
5901 defsubr (&Swindow_vscroll);
5902 defsubr (&Sset_window_vscroll);
5903 defsubr (&Scompare_window_configurations);
5904 defsubr (&Swindow_list);
5907 void
5908 keys_of_window ()
5910 initial_define_key (control_x_map, '1', "delete-other-windows");
5911 initial_define_key (control_x_map, '2', "split-window");
5912 initial_define_key (control_x_map, '0', "delete-window");
5913 initial_define_key (control_x_map, 'o', "other-window");
5914 initial_define_key (control_x_map, '^', "enlarge-window");
5915 initial_define_key (control_x_map, '<', "scroll-left");
5916 initial_define_key (control_x_map, '>', "scroll-right");
5918 initial_define_key (global_map, Ctl ('V'), "scroll-up");
5919 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
5920 initial_define_key (meta_map, 'v', "scroll-down");
5922 initial_define_key (global_map, Ctl('L'), "recenter");
5923 initial_define_key (meta_map, 'r', "move-to-window-line");