mail/mail-hist.el (mail-hist-text-too-long-p): doc fix.
[emacs.git] / src / window.c
blob5d779026bad78728fc0acb8d489c02d5f55eac0d
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
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
55 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
56 Lisp_Object Qwindow_size_fixed, Qleft_bitmap_area, Qright_bitmap_area;
57 extern Lisp_Object Qheight, Qwidth;
59 static struct window *decode_window P_ ((Lisp_Object));
60 static Lisp_Object select_window_1 P_ ((Lisp_Object, int));
61 static int count_windows P_ ((struct window *));
62 static int get_leaf_windows P_ ((struct window *, struct window **, int));
63 static void window_scroll P_ ((Lisp_Object, int, int, int));
64 static void window_scroll_pixel_based P_ ((Lisp_Object, int, int, int));
65 static void window_scroll_line_based P_ ((Lisp_Object, int, int, int));
66 static int window_min_size_1 P_ ((struct window *, int));
67 static int window_min_size P_ ((struct window *, int, int, int *));
68 static void size_window P_ ((Lisp_Object, int, int, int));
69 static int freeze_window_start P_ ((struct window *, void *));
70 static int window_fixed_size_p P_ ((struct window *, int, int));
71 static void enlarge_window P_ ((Lisp_Object, int, int));
72 static Lisp_Object window_list P_ ((void));
73 static int add_window_to_list P_ ((struct window *, void *));
74 static int candidate_window_p P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
75 Lisp_Object));
76 static Lisp_Object next_window P_ ((Lisp_Object, Lisp_Object,
77 Lisp_Object, int));
78 static void decode_next_window_args P_ ((Lisp_Object *, Lisp_Object *,
79 Lisp_Object *));
80 static int foreach_window_1 P_ ((struct window *,
81 int (* fn) (struct window *, void *),
82 void *));
83 static Lisp_Object window_list_1 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
85 /* This is the window in which the terminal's cursor should
86 be left when nothing is being done with it. This must
87 always be a leaf window, and its buffer is selected by
88 the top level editing loop at the end of each command.
90 This value is always the same as
91 FRAME_SELECTED_WINDOW (selected_frame). */
93 Lisp_Object selected_window;
95 /* A list of all windows for use by next_window and Fwindow_list.
96 Functions creating or deleting windows should invalidate this cache
97 by setting it to nil. */
99 Lisp_Object Vwindow_list;
101 /* The mini-buffer window of the selected frame.
102 Note that you cannot test for mini-bufferness of an arbitrary window
103 by comparing against this; but you can test for mini-bufferness of
104 the selected window. */
106 Lisp_Object minibuf_window;
108 /* Non-nil means it is the window for C-M-v to scroll
109 when the mini-buffer is selected. */
111 Lisp_Object Vminibuf_scroll_window;
113 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
115 Lisp_Object Vother_window_scroll_buffer;
117 /* Non-nil means it's function to call to display temp buffers. */
119 Lisp_Object Vtemp_buffer_show_function;
121 /* If a window gets smaller than either of these, it is removed. */
123 int window_min_height;
124 int window_min_width;
126 /* Nonzero implies Fdisplay_buffer should create windows. */
128 int pop_up_windows;
130 /* Nonzero implies make new frames for Fdisplay_buffer. */
132 int pop_up_frames;
134 /* Nonzero means reuse existing frames for displaying buffers. */
136 int display_buffer_reuse_frames;
138 /* Non-nil means use this function instead of default */
140 Lisp_Object Vpop_up_frame_function;
142 /* Function to call to handle Fdisplay_buffer. */
144 Lisp_Object Vdisplay_buffer_function;
146 /* Non-nil means that Fdisplay_buffer should even the heights of windows. */
148 Lisp_Object Veven_window_heights;
150 /* List of buffer *names* for buffers that should have their own frames. */
152 Lisp_Object Vspecial_display_buffer_names;
154 /* List of regexps for buffer names that should have their own frames. */
156 Lisp_Object Vspecial_display_regexps;
158 /* Function to pop up a special frame. */
160 Lisp_Object Vspecial_display_function;
162 /* List of buffer *names* for buffers to appear in selected window. */
164 Lisp_Object Vsame_window_buffer_names;
166 /* List of regexps for buffer names to appear in selected window. */
168 Lisp_Object Vsame_window_regexps;
170 /* Hook run at end of temp_output_buffer_show. */
172 Lisp_Object Qtemp_buffer_show_hook;
174 /* Fdisplay_buffer always splits the largest window
175 if that window is more than this high. */
177 int split_height_threshold;
179 /* Number of lines of continuity in scrolling by screenfuls. */
181 int next_screen_context_lines;
183 /* Incremented for each window created. */
185 static int sequence_number;
187 /* Nonzero after init_window_once has finished. */
189 static int window_initialized;
191 /* Hook to run when window config changes. */
193 Lisp_Object Qwindow_configuration_change_hook;
194 Lisp_Object Vwindow_configuration_change_hook;
196 /* Nonzero means scroll commands try to put point
197 at the same screen height as previously. */
199 Lisp_Object Vscroll_preserve_screen_position;
201 #if 0 /* This isn't used anywhere. */
202 /* Nonzero means we can split a frame even if it is "unsplittable". */
203 static int inhibit_frame_unsplittable;
204 #endif /* 0 */
206 #define min(a, b) ((a) < (b) ? (a) : (b))
208 extern int scroll_margin;
210 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
212 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
213 "Returns t if OBJECT is a window.")
214 (object)
215 Lisp_Object object;
217 return WINDOWP (object) ? Qt : Qnil;
220 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
221 "Returns t if OBJECT is a window which is currently visible.")
222 (object)
223 Lisp_Object object;
225 return (WINDOWP (object) && ! NILP (XWINDOW (object)->buffer) ? Qt : Qnil);
228 Lisp_Object
229 make_window ()
231 Lisp_Object val;
232 register struct window *p;
233 register struct Lisp_Vector *vec;
234 int i;
236 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct window));
237 for (i = 0; i < VECSIZE (struct window); i++)
238 vec->contents[i] = Qnil;
239 vec->size = VECSIZE (struct window);
240 p = (struct window *) vec;
241 XSETFASTINT (p->sequence_number, ++sequence_number);
242 XSETFASTINT (p->left, 0);
243 XSETFASTINT (p->top, 0);
244 XSETFASTINT (p->height, 0);
245 XSETFASTINT (p->width, 0);
246 XSETFASTINT (p->hscroll, 0);
247 XSETFASTINT (p->min_hscroll, 0);
248 p->orig_top = p->orig_height = Qnil;
249 p->start = Fmake_marker ();
250 p->pointm = Fmake_marker ();
251 XSETFASTINT (p->use_time, 0);
252 p->frame = Qnil;
253 p->display_table = Qnil;
254 p->dedicated = Qnil;
255 p->pseudo_window_p = 0;
256 bzero (&p->cursor, sizeof (p->cursor));
257 bzero (&p->last_cursor, sizeof (p->last_cursor));
258 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
259 p->desired_matrix = p->current_matrix = 0;
260 p->phys_cursor_type = -1;
261 p->must_be_updated_p = 0;
262 XSETFASTINT (p->window_end_vpos, 0);
263 XSETFASTINT (p->window_end_pos, 0);
264 p->window_end_valid = Qnil;
265 p->vscroll = 0;
266 XSETWINDOW (val, p);
267 XSETFASTINT (p->last_point, 0);
268 p->frozen_window_start_p = 0;
270 Vwindow_list = Qnil;
271 return val;
274 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
275 "Return the window that the cursor now appears in and commands apply to.")
278 return selected_window;
281 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
282 "Return the window used now for minibuffers.\n\
283 If the optional argument FRAME is specified, return the minibuffer window\n\
284 used by that frame.")
285 (frame)
286 Lisp_Object frame;
288 if (NILP (frame))
289 frame = selected_frame;
290 CHECK_LIVE_FRAME (frame, 0);
291 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
294 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
295 "Returns non-nil if WINDOW is a minibuffer window.")
296 (window)
297 Lisp_Object window;
299 struct window *w = decode_window (window);
300 return MINI_WINDOW_P (w) ? Qt : Qnil;
304 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
305 Spos_visible_in_window_p, 0, 3, 0,
306 "Return t if position POS is currently on the frame in WINDOW.\n\
307 Return nil if that position is scrolled vertically out of view.\n\
308 If a character is only partially visible, nil is returned, unless the\n\
309 optional argument PARTIALLY is non-nil.\n\
310 POS defaults to point in WINDOW; WINDOW defaults to the selected window.")
311 (pos, window, partially)
312 Lisp_Object pos, window, partially;
314 register struct window *w;
315 register int posint;
316 register struct buffer *buf;
317 struct text_pos top;
318 Lisp_Object in_window;
319 int fully_p;
321 w = decode_window (window);
322 buf = XBUFFER (w->buffer);
323 SET_TEXT_POS_FROM_MARKER (top, w->start);
325 if (!NILP (pos))
327 CHECK_NUMBER_COERCE_MARKER (pos, 0);
328 posint = XINT (pos);
330 else if (w == XWINDOW (selected_window))
331 posint = PT;
332 else
333 posint = XMARKER (w->pointm)->charpos;
335 /* If position is above window start, it's not visible. */
336 if (posint < CHARPOS (top))
337 in_window = Qnil;
338 else if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)
339 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (buf)
340 && posint < BUF_Z (buf) - XFASTINT (w->window_end_pos))
342 /* If frame is up-to-date, and POSINT is < window end pos, use
343 that info. This doesn't work for POSINT == end pos, because
344 the window end pos is actually the position _after_ the last
345 char in the window. */
346 if (NILP (partially))
348 pos_visible_p (w, posint, &fully_p, NILP (partially));
349 in_window = fully_p ? Qt : Qnil;
351 else
352 in_window = Qt;
354 else if (posint > BUF_ZV (buf))
355 in_window = Qnil;
356 else if (CHARPOS (top) < BUF_BEGV (buf) || CHARPOS (top) > BUF_ZV (buf))
357 /* If window start is out of range, do something reasonable. */
358 in_window = Qnil;
359 else
361 if (pos_visible_p (w, posint, &fully_p, NILP (partially)))
362 in_window = !NILP (partially) || fully_p ? Qt : Qnil;
363 else
364 in_window = Qnil;
367 return in_window;
371 static struct window *
372 decode_window (window)
373 register Lisp_Object window;
375 if (NILP (window))
376 return XWINDOW (selected_window);
378 CHECK_LIVE_WINDOW (window, 0);
379 return XWINDOW (window);
382 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
383 "Return the buffer that WINDOW is displaying.")
384 (window)
385 Lisp_Object window;
387 return decode_window (window)->buffer;
390 DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
391 "Return the number of lines in WINDOW (including its mode line).")
392 (window)
393 Lisp_Object window;
395 return decode_window (window)->height;
398 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
399 "Return the number of display columns in WINDOW.\n\
400 This is the width that is usable columns available for text in WINDOW.\n\
401 If you want to find out how many columns WINDOW takes up,\n\
402 use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
403 (window)
404 Lisp_Object window;
406 return make_number (window_internal_width (decode_window (window)));
409 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
410 "Return the number of columns by which WINDOW is scrolled from left margin.")
411 (window)
412 Lisp_Object window;
414 return decode_window (window)->hscroll;
417 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
418 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
419 NCOL should be zero or positive.")
420 (window, ncol)
421 Lisp_Object window, ncol;
423 struct window *w = decode_window (window);
424 int hscroll;
426 CHECK_NUMBER (ncol, 1);
427 hscroll = max (0, XINT (ncol));
429 /* Prevent redisplay shortcuts when changing the hscroll. */
430 if (XINT (w->hscroll) != hscroll)
431 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
433 w->hscroll = w->min_hscroll = make_number (hscroll);
434 return ncol;
437 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
438 Swindow_redisplay_end_trigger, 0, 1, 0,
439 "Return WINDOW's redisplay end trigger value.\n\
440 See `set-window-redisplay-end-trigger' for more information.")
441 (window)
442 Lisp_Object window;
444 return decode_window (window)->redisplay_end_trigger;
447 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
448 Sset_window_redisplay_end_trigger, 2, 2, 0,
449 "Set WINDOW's redisplay end trigger value to VALUE.\n\
450 VALUE should be a buffer position (typically a marker) or nil.\n\
451 If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
452 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
453 with two arguments: WINDOW, and the end trigger value.\n\
454 Afterwards the end-trigger value is reset to nil.")
455 (window, value)
456 register Lisp_Object window, value;
458 register struct window *w;
460 w = decode_window (window);
461 w->redisplay_end_trigger = value;
462 return value;
465 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
466 "Return a list of the edge coordinates of WINDOW.\n\
467 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
468 RIGHT is one more than the rightmost column used by WINDOW,\n\
469 and BOTTOM is one more than the bottommost row used by WINDOW\n\
470 and its mode-line.")
471 (window)
472 Lisp_Object window;
474 register struct window *w = decode_window (window);
476 return Fcons (w->left, Fcons (w->top,
477 Fcons (make_number (WINDOW_RIGHT_EDGE (w)),
478 Fcons (make_number (XFASTINT (w->top)
479 + XFASTINT (w->height)),
480 Qnil))));
483 /* Test if the character at column *X, row *Y is within window W.
484 If it is not, return 0;
485 if it is in the window's text area,
486 set *x and *y to its location relative to the upper left corner
487 of the window, and
488 return 1;
489 if it is on the window's modeline, return 2;
490 if it is on the border between the window and its right sibling,
491 return 3.
492 if it is on the window's top line, return 4;
493 if it is in the bitmap area to the left/right of the window,
494 return 5 or 6, and convert *X and *Y to window-relative corrdinates.
496 X and Y are frame relative pixel coordinates. */
498 static int
499 coordinates_in_window (w, x, y)
500 register struct window *w;
501 register int *x, *y;
503 /* Let's make this a global enum later, instead of using numbers
504 everywhere. */
505 enum {ON_NOTHING, ON_TEXT, ON_MODE_LINE, ON_VERTICAL_BORDER,
506 ON_HEADER_LINE, ON_LEFT_FRINGE, ON_RIGHT_FRINGE};
508 struct frame *f = XFRAME (WINDOW_FRAME (w));
509 int left_x, right_x, top_y, bottom_y;
510 int flags_area_width = FRAME_LEFT_FLAGS_AREA_WIDTH (f);
511 int part;
512 int ux = CANON_X_UNIT (f), uy = CANON_Y_UNIT (f);
513 int x0 = XFASTINT (w->left) * ux;
514 int x1 = x0 + XFASTINT (w->width) * ux;
516 if (*x < x0 || *x >= x1)
517 return ON_NOTHING;
519 /* In what's below, we subtract 1 when computing right_x because we
520 want the rightmost pixel, which is given by left_pixel+width-1. */
521 if (w->pseudo_window_p)
523 left_x = 0;
524 right_x = XFASTINT (w->width) * CANON_X_UNIT (f) - 1;
525 top_y = WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
526 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
528 else
530 left_x = (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w)
531 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
532 right_x = WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X (w) - 1;
533 top_y = (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w)
534 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
535 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
538 /* On the mode line or header line? If it's near the start of
539 the mode or header line of window that's has a horizontal
540 sibling, say it's on the vertical line. That's to be able
541 to resize windows horizontally in case we're using toolkit
542 scroll bars. */
544 if (WINDOW_WANTS_MODELINE_P (w)
545 && *y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w)
546 && *y < bottom_y)
548 /* We're somewhere on the mode line. We consider the place
549 between mode lines of horizontally adjacent mode lines
550 as the vertical border. If scroll bars on the left,
551 return the right window. */
552 part = ON_MODE_LINE;
554 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
556 if (abs (*x - x0) < ux / 2)
557 part = ON_VERTICAL_BORDER;
559 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < ux / 2)
560 part = ON_VERTICAL_BORDER;
562 else if (WINDOW_WANTS_HEADER_LINE_P (w)
563 && *y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
564 && *y >= top_y)
566 part = ON_HEADER_LINE;
568 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
570 if (abs (*x - x0) < ux / 2)
571 part = ON_VERTICAL_BORDER;
573 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < ux / 2)
574 part = ON_VERTICAL_BORDER;
576 /* Outside anything interesting? */
577 else if (*y < top_y
578 || *y >= bottom_y
579 || *x < (left_x
580 - flags_area_width
581 - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * ux)
582 || *x > right_x + flags_area_width)
584 part = ON_NOTHING;
586 else if (FRAME_WINDOW_P (f))
588 if (!w->pseudo_window_p
589 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f)
590 && !WINDOW_RIGHTMOST_P (w)
591 && (abs (*x - right_x - flags_area_width) < ux / 2))
593 part = ON_VERTICAL_BORDER;
595 else if (*x < left_x || *x > right_x)
597 /* Other lines than the mode line don't include flags areas and
598 scroll bars on the left. */
600 /* Convert X and Y to window-relative pixel coordinates. */
601 *x -= left_x;
602 *y -= top_y;
603 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
605 else
607 *x -= left_x;
608 *y -= top_y;
609 part = ON_TEXT;
612 else
614 /* Need to say "*x > right_x" rather than >=, since on character
615 terminals, the vertical line's x coordinate is right_x. */
616 if (*x < left_x || *x > right_x)
618 /* Other lines than the mode line don't include flags areas and
619 scroll bars on the left. */
621 /* Convert X and Y to window-relative pixel coordinates. */
622 *x -= left_x;
623 *y -= top_y;
624 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
626 /* Here, too, "*x > right_x" is because of character terminals. */
627 else if (!w->pseudo_window_p
628 && !WINDOW_RIGHTMOST_P (w)
629 && *x > right_x - ux)
631 /* On the border on the right side of the window? Assume that
632 this area begins at RIGHT_X minus a canonical char width. */
633 part = ON_VERTICAL_BORDER;
635 else
637 /* Convert X and Y to window-relative pixel coordinates. */
638 *x -= left_x;
639 *y -= top_y;
640 part = ON_TEXT;
644 return part;
648 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
649 Scoordinates_in_window_p, 2, 2, 0,
650 "Return non-nil if COORDINATES are in WINDOW.\n\
651 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
652 measured in characters from the upper-left corner of the frame.\n\
653 (0 . 0) denotes the character in the upper left corner of the\n\
654 frame.\n\
655 If COORDINATES are in the text portion of WINDOW,\n\
656 the coordinates relative to the window are returned.\n\
657 If they are in the mode line of WINDOW, `mode-line' is returned.\n\
658 If they are in the top mode line of WINDOW, `header-line' is returned.\n\
659 If they are in the bitmap-area to the left of the window,\n\
660 `left-bitmap-area' is returned, if they are in the area on the right of\n\
661 the window, `right-bitmap-area' is returned.\n\
662 If they are on the border between WINDOW and its right sibling,\n\
663 `vertical-line' is returned.")
664 (coordinates, window)
665 register Lisp_Object coordinates, window;
667 struct window *w;
668 struct frame *f;
669 int x, y;
670 Lisp_Object lx, ly;
672 CHECK_LIVE_WINDOW (window, 0);
673 w = XWINDOW (window);
674 f = XFRAME (w->frame);
675 CHECK_CONS (coordinates, 1);
676 lx = Fcar (coordinates);
677 ly = Fcdr (coordinates);
678 CHECK_NUMBER_OR_FLOAT (lx, 1);
679 CHECK_NUMBER_OR_FLOAT (ly, 1);
680 x = PIXEL_X_FROM_CANON_X (f, lx);
681 y = PIXEL_Y_FROM_CANON_Y (f, ly);
683 switch (coordinates_in_window (w, &x, &y))
685 case 0: /* NOT in window at all. */
686 return Qnil;
688 case 1: /* In text part of window. */
689 /* X and Y are now window relative pixel coordinates.
690 Convert them to canonical char units before returning
691 them. */
692 return Fcons (CANON_X_FROM_PIXEL_X (f, x),
693 CANON_Y_FROM_PIXEL_Y (f, y));
695 case 2: /* In mode line of window. */
696 return Qmode_line;
698 case 3: /* On right border of window. */
699 return Qvertical_line;
701 case 4:
702 return Qheader_line;
704 case 5:
705 return Qleft_bitmap_area;
707 case 6:
708 return Qright_bitmap_area;
710 default:
711 abort ();
716 /* Callback for foreach_window, used in window_from_coordinates.
717 Check if window W contains coordinates specified by USER_DATA which
718 is actually a pointer to a struct check_window_data CW.
720 Check if window W contains coordinates *CW->x and *CW->y. If it
721 does, return W in *CW->window, as Lisp_Object, and return in
722 *CW->part the part of the window under coordinates *X,*Y. Return
723 zero from this function to stop iterating over windows. */
725 struct check_window_data
727 Lisp_Object *window;
728 int *x, *y, *part;
731 static int
732 check_window_containing (w, user_data)
733 struct window *w;
734 void *user_data;
736 struct check_window_data *cw = (struct check_window_data *) user_data;
737 int found;
739 found = coordinates_in_window (w, cw->x, cw->y);
740 if (found)
742 *cw->part = found - 1;
743 XSETWINDOW (*cw->window, w);
746 return !found;
750 /* Find the window containing frame-relative pixel position X/Y and
751 return it as a Lisp_Object. If X, Y is on the window's modeline,
752 set *PART to 1; if it is on the separating line between the window
753 and its right sibling, set it to 2; otherwise set it to 0. If
754 there is no window under X, Y return nil and leave *PART
755 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
757 This function was previously implemented with a loop cycling over
758 windows with Fnext_window, and starting with the frame's selected
759 window. It turned out that this doesn't work with an
760 implementation of next_window using Vwindow_list, because
761 FRAME_SELECTED_WINDOW (F) is not always contained in the window
762 tree of F when this function is called asynchronously from
763 note_mouse_highlight. The original loop didn't terminate in this
764 case. */
766 Lisp_Object
767 window_from_coordinates (f, x, y, part, tool_bar_p)
768 struct frame *f;
769 int x, y;
770 int *part;
771 int tool_bar_p;
773 Lisp_Object window;
774 struct check_window_data cw;
776 window = Qnil;
777 cw.window = &window, cw.x = &x, cw.y = &y; cw.part = part;
778 foreach_window (f, check_window_containing, &cw);
780 /* If not found above, see if it's in the tool bar window, if a tool
781 bar exists. */
782 if (NILP (window)
783 && tool_bar_p
784 && WINDOWP (f->tool_bar_window)
785 && XINT (XWINDOW (f->tool_bar_window)->height) > 0
786 && coordinates_in_window (XWINDOW (f->tool_bar_window), &x, &y))
788 *part = 0;
789 window = f->tool_bar_window;
792 return window;
795 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
796 "Return window containing coordinates X and Y on FRAME.\n\
797 If omitted, FRAME defaults to the currently selected frame.\n\
798 The top left corner of the frame is considered to be row 0,\n\
799 column 0.")
800 (x, y, frame)
801 Lisp_Object x, y, frame;
803 int part;
804 struct frame *f;
806 if (NILP (frame))
807 frame = selected_frame;
808 CHECK_LIVE_FRAME (frame, 2);
809 f = XFRAME (frame);
811 /* Check that arguments are integers or floats. */
812 CHECK_NUMBER_OR_FLOAT (x, 0);
813 CHECK_NUMBER_OR_FLOAT (y, 1);
815 return window_from_coordinates (f,
816 PIXEL_X_FROM_CANON_X (f, x),
817 PIXEL_Y_FROM_CANON_Y (f, y),
818 &part, 0);
821 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
822 "Return current value of point in WINDOW.\n\
823 For a nonselected window, this is the value point would have\n\
824 if that window were selected.\n\
826 Note that, when WINDOW is the selected window and its buffer\n\
827 is also currently selected, the value returned is the same as (point).\n\
828 It would be more strictly correct to return the `top-level' value\n\
829 of point, outside of any save-excursion forms.\n\
830 But that is hard to define.")
831 (window)
832 Lisp_Object window;
834 register struct window *w = decode_window (window);
836 if (w == XWINDOW (selected_window)
837 && current_buffer == XBUFFER (w->buffer))
838 return Fpoint ();
839 return Fmarker_position (w->pointm);
842 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
843 "Return position at which display currently starts in WINDOW.\n\
844 This is updated by redisplay or by calling `set-window-start'.")
845 (window)
846 Lisp_Object window;
848 return Fmarker_position (decode_window (window)->start);
851 /* This is text temporarily removed from the doc string below.
853 This function returns nil if the position is not currently known.\n\
854 That happens when redisplay is preempted and doesn't finish.\n\
855 If in that case you want to compute where the end of the window would\n\
856 have been if redisplay had finished, do this:\n\
857 (save-excursion\n\
858 (goto-char (window-start window))\n\
859 (vertical-motion (1- (window-height window)) window)\n\
860 (point))") */
862 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
863 "Return position at which display currently ends in WINDOW.\n\
864 This is updated by redisplay, when it runs to completion.\n\
865 Simply changing the buffer text or setting `window-start'\n\
866 does not update this value.\n\
867 If UPDATE is non-nil, compute the up-to-date position\n\
868 if it isn't already recorded.")
869 (window, update)
870 Lisp_Object window, update;
872 Lisp_Object value;
873 struct window *w = decode_window (window);
874 Lisp_Object buf;
876 buf = w->buffer;
877 CHECK_BUFFER (buf, 0);
879 #if 0 /* This change broke some things. We should make it later. */
880 /* If we don't know the end position, return nil.
881 The user can compute it with vertical-motion if he wants to.
882 It would be nicer to do it automatically,
883 but that's so slow that it would probably bother people. */
884 if (NILP (w->window_end_valid))
885 return Qnil;
886 #endif
888 if (! NILP (update)
889 && ! (! NILP (w->window_end_valid)
890 && XFASTINT (w->last_modified) >= MODIFF))
892 struct text_pos startp;
893 struct it it;
895 /* In case W->start is out of the range, use something
896 reasonable. This situation occured when loading a file with
897 `-l' containing a call to `rmail' with subsequent other
898 commands. At the end, W->start happened to be BEG, while
899 rmail had already narrowed the buffer. */
900 if (XMARKER (w->start)->charpos < BEGV)
901 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
902 else if (XMARKER (w->start)->charpos > ZV)
903 SET_TEXT_POS (startp, ZV, ZV_BYTE);
904 else
905 SET_TEXT_POS_FROM_MARKER (startp, w->start);
907 /* Cannot use Fvertical_motion because that function doesn't
908 cope with variable-height lines. */
909 start_display (&it, w, startp);
910 move_it_vertically (&it, window_box_height (w));
911 move_it_past_eol (&it);
912 value = make_number (IT_CHARPOS (it));
914 else
915 XSETINT (value, BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
917 return value;
920 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
921 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
922 (window, pos)
923 Lisp_Object window, pos;
925 register struct window *w = decode_window (window);
927 CHECK_NUMBER_COERCE_MARKER (pos, 1);
928 if (w == XWINDOW (selected_window)
929 && XBUFFER (w->buffer) == current_buffer)
930 Fgoto_char (pos);
931 else
932 set_marker_restricted (w->pointm, pos, w->buffer);
934 /* We have to make sure that redisplay updates the window to show
935 the new value of point. */
936 if (!EQ (window, selected_window))
937 ++windows_or_buffers_changed;
939 return pos;
942 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
943 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
944 Optional third arg NOFORCE non-nil inhibits next redisplay\n\
945 from overriding motion of point in order to display at this exact start.")
946 (window, pos, noforce)
947 Lisp_Object window, pos, noforce;
949 register struct window *w = decode_window (window);
951 CHECK_NUMBER_COERCE_MARKER (pos, 1);
952 set_marker_restricted (w->start, pos, w->buffer);
953 /* this is not right, but much easier than doing what is right. */
954 w->start_at_line_beg = Qnil;
955 if (NILP (noforce))
956 w->force_start = Qt;
957 w->update_mode_line = Qt;
958 XSETFASTINT (w->last_modified, 0);
959 XSETFASTINT (w->last_overlay_modified, 0);
960 if (!EQ (window, selected_window))
961 windows_or_buffers_changed++;
963 return pos;
966 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
967 1, 1, 0,
968 "Return WINDOW's dedicated object, usually t or nil.\n\
969 See also `set-window-dedicated-p'.")
970 (window)
971 Lisp_Object window;
973 return decode_window (window)->dedicated;
976 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
977 Sset_window_dedicated_p, 2, 2, 0,
978 "Control whether WINDOW is dedicated to the buffer it displays.\n\
979 If it is dedicated, Emacs will not automatically change\n\
980 which buffer appears in it.\n\
981 The second argument is the new value for the dedication flag;\n\
982 non-nil means yes.")
983 (window, arg)
984 Lisp_Object window, arg;
986 register struct window *w = decode_window (window);
988 if (NILP (arg))
989 w->dedicated = Qnil;
990 else
991 w->dedicated = Qt;
993 return w->dedicated;
996 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
997 0, 1, 0,
998 "Return the display-table that WINDOW is using.")
999 (window)
1000 Lisp_Object window;
1002 return decode_window (window)->display_table;
1005 /* Get the display table for use on window W. This is either W's
1006 display table or W's buffer's display table. Ignore the specified
1007 tables if they are not valid; if no valid table is specified,
1008 return 0. */
1010 struct Lisp_Char_Table *
1011 window_display_table (w)
1012 struct window *w;
1014 struct Lisp_Char_Table *dp = NULL;
1016 if (DISP_TABLE_P (w->display_table))
1017 dp = XCHAR_TABLE (w->display_table);
1018 else if (BUFFERP (w->buffer))
1020 struct buffer *b = XBUFFER (w->buffer);
1022 if (DISP_TABLE_P (b->display_table))
1023 dp = XCHAR_TABLE (b->display_table);
1024 else if (DISP_TABLE_P (Vstandard_display_table))
1025 dp = XCHAR_TABLE (Vstandard_display_table);
1028 return dp;
1031 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
1032 "Set WINDOW's display-table to TABLE.")
1033 (window, table)
1034 register Lisp_Object window, table;
1036 register struct window *w;
1038 w = decode_window (window);
1039 w->display_table = table;
1040 return table;
1043 /* Record info on buffer window w is displaying
1044 when it is about to cease to display that buffer. */
1045 static void
1046 unshow_buffer (w)
1047 register struct window *w;
1049 Lisp_Object buf;
1050 struct buffer *b;
1052 buf = w->buffer;
1053 b = XBUFFER (buf);
1054 if (b != XMARKER (w->pointm)->buffer)
1055 abort ();
1057 #if 0
1058 if (w == XWINDOW (selected_window)
1059 || ! EQ (buf, XWINDOW (selected_window)->buffer))
1060 /* Do this except when the selected window's buffer
1061 is being removed from some other window. */
1062 #endif
1063 /* last_window_start records the start position that this buffer
1064 had in the last window to be disconnected from it.
1065 Now that this statement is unconditional,
1066 it is possible for the buffer to be displayed in the
1067 selected window, while last_window_start reflects another
1068 window which was recently showing the same buffer.
1069 Some people might say that might be a good thing. Let's see. */
1070 b->last_window_start = marker_position (w->start);
1072 /* Point in the selected window's buffer
1073 is actually stored in that buffer, and the window's pointm isn't used.
1074 So don't clobber point in that buffer. */
1075 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1076 /* This line helps to fix Horsley's testbug.el bug. */
1077 && !(WINDOWP (b->last_selected_window)
1078 && w != XWINDOW (b->last_selected_window)
1079 && EQ (buf, XWINDOW (b->last_selected_window)->buffer)))
1080 temp_set_point_both (b,
1081 clip_to_bounds (BUF_BEGV (b),
1082 XMARKER (w->pointm)->charpos,
1083 BUF_ZV (b)),
1084 clip_to_bounds (BUF_BEGV_BYTE (b),
1085 marker_byte_position (w->pointm),
1086 BUF_ZV_BYTE (b)));
1088 if (WINDOWP (b->last_selected_window)
1089 && w == XWINDOW (b->last_selected_window))
1090 b->last_selected_window = Qnil;
1093 /* Put replacement into the window structure in place of old. */
1094 static void
1095 replace_window (old, replacement)
1096 Lisp_Object old, replacement;
1098 register Lisp_Object tem;
1099 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
1101 /* If OLD is its frame's root_window, then replacement is the new
1102 root_window for that frame. */
1104 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
1105 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
1107 p->left = o->left;
1108 p->top = o->top;
1109 p->width = o->width;
1110 p->height = o->height;
1111 p->desired_matrix = p->current_matrix = 0;
1112 p->vscroll = 0;
1113 bzero (&p->cursor, sizeof (p->cursor));
1114 bzero (&p->last_cursor, sizeof (p->last_cursor));
1115 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
1116 p->phys_cursor_type = -1;
1117 p->must_be_updated_p = 0;
1118 p->pseudo_window_p = 0;
1119 XSETFASTINT (p->window_end_vpos, 0);
1120 XSETFASTINT (p->window_end_pos, 0);
1121 p->window_end_valid = Qnil;
1122 p->frozen_window_start_p = 0;
1123 p->orig_top = p->orig_height = Qnil;
1125 p->next = tem = o->next;
1126 if (!NILP (tem))
1127 XWINDOW (tem)->prev = replacement;
1129 p->prev = tem = o->prev;
1130 if (!NILP (tem))
1131 XWINDOW (tem)->next = replacement;
1133 p->parent = tem = o->parent;
1134 if (!NILP (tem))
1136 if (EQ (XWINDOW (tem)->vchild, old))
1137 XWINDOW (tem)->vchild = replacement;
1138 if (EQ (XWINDOW (tem)->hchild, old))
1139 XWINDOW (tem)->hchild = replacement;
1142 /*** Here, if replacement is a vertical combination
1143 and so is its new parent, we should make replacement's
1144 children be children of that parent instead. ***/
1147 DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
1148 "Remove WINDOW from the display. Default is selected window.")
1149 (window)
1150 register Lisp_Object window;
1152 delete_window (window);
1154 if (! NILP (Vwindow_configuration_change_hook)
1155 && ! NILP (Vrun_hooks))
1156 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1158 return Qnil;
1161 void
1162 delete_window (window)
1163 register Lisp_Object window;
1165 register Lisp_Object tem, parent, sib;
1166 register struct window *p;
1167 register struct window *par;
1168 struct frame *f;
1170 /* Because this function is called by other C code on non-leaf
1171 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
1172 so we can't decode_window here. */
1173 if (NILP (window))
1174 window = selected_window;
1175 else
1176 CHECK_WINDOW (window, 0);
1177 p = XWINDOW (window);
1179 /* It's okay to delete an already-deleted window. */
1180 if (NILP (p->buffer)
1181 && NILP (p->hchild)
1182 && NILP (p->vchild))
1183 return;
1185 parent = p->parent;
1186 if (NILP (parent))
1187 error ("Attempt to delete minibuffer or sole ordinary window");
1188 par = XWINDOW (parent);
1190 windows_or_buffers_changed++;
1191 Vwindow_list = Qnil;
1192 f = XFRAME (WINDOW_FRAME (p));
1193 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
1195 /* Are we trying to delete any frame's selected window? */
1197 Lisp_Object pwindow;
1199 /* See if the frame's selected window is either WINDOW
1200 or any subwindow of it, by finding all that window's parents
1201 and comparing each one with WINDOW. */
1202 pwindow = FRAME_SELECTED_WINDOW (f);
1204 while (!NILP (pwindow))
1206 if (EQ (window, pwindow))
1207 break;
1208 pwindow = XWINDOW (pwindow)->parent;
1211 if (EQ (window, pwindow))
1213 Lisp_Object alternative;
1214 alternative = Fnext_window (window, Qlambda, Qnil);
1216 /* If we're about to delete the selected window on the
1217 selected frame, then we should use Fselect_window to select
1218 the new window. On the other hand, if we're about to
1219 delete the selected window on any other frame, we shouldn't do
1220 anything but set the frame's selected_window slot. */
1221 if (EQ (window, selected_window))
1222 Fselect_window (alternative);
1223 else
1224 FRAME_SELECTED_WINDOW (f) = alternative;
1228 tem = p->buffer;
1229 /* tem is null for dummy parent windows
1230 (which have inferiors but not any contents themselves) */
1231 if (!NILP (tem))
1233 unshow_buffer (p);
1234 unchain_marker (p->pointm);
1235 unchain_marker (p->start);
1238 /* Free window glyph matrices. It is sure that they are allocated
1239 again when ADJUST_GLYPHS is called. Block input so that expose
1240 events and other events that access glyph matrices are not
1241 processed while we are changing them. */
1242 BLOCK_INPUT;
1243 free_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)));
1245 tem = p->next;
1246 if (!NILP (tem))
1247 XWINDOW (tem)->prev = p->prev;
1249 tem = p->prev;
1250 if (!NILP (tem))
1251 XWINDOW (tem)->next = p->next;
1253 if (EQ (window, par->hchild))
1254 par->hchild = p->next;
1255 if (EQ (window, par->vchild))
1256 par->vchild = p->next;
1258 /* Find one of our siblings to give our space to. */
1259 sib = p->prev;
1260 if (NILP (sib))
1262 /* If p gives its space to its next sibling, that sibling needs
1263 to have its top/left side pulled back to where p's is.
1264 set_window_{height,width} will re-position the sibling's
1265 children. */
1266 sib = p->next;
1267 XWINDOW (sib)->top = p->top;
1268 XWINDOW (sib)->left = p->left;
1271 /* Stretch that sibling. */
1272 if (!NILP (par->vchild))
1273 set_window_height (sib,
1274 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
1276 if (!NILP (par->hchild))
1277 set_window_width (sib,
1278 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
1281 /* If parent now has only one child,
1282 put the child into the parent's place. */
1283 tem = par->hchild;
1284 if (NILP (tem))
1285 tem = par->vchild;
1286 if (NILP (XWINDOW (tem)->next))
1287 replace_window (parent, tem);
1289 /* Since we may be deleting combination windows, we must make sure that
1290 not only p but all its children have been marked as deleted. */
1291 if (! NILP (p->hchild))
1292 delete_all_subwindows (XWINDOW (p->hchild));
1293 else if (! NILP (p->vchild))
1294 delete_all_subwindows (XWINDOW (p->vchild));
1296 /* Mark this window as deleted. */
1297 p->buffer = p->hchild = p->vchild = Qnil;
1299 /* Adjust glyph matrices. */
1300 adjust_glyphs (f);
1301 UNBLOCK_INPUT;
1306 /***********************************************************************
1307 Window List
1308 ***********************************************************************/
1310 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
1311 pointer. This is a callback function for foreach_window, used in
1312 function window_list. */
1314 static int
1315 add_window_to_list (w, user_data)
1316 struct window *w;
1317 void *user_data;
1319 Lisp_Object *list = (Lisp_Object *) user_data;
1320 Lisp_Object window;
1321 XSETWINDOW (window, w);
1322 *list = Fcons (window, *list);
1323 return 1;
1327 /* Return a list of all windows, for use by next_window. If
1328 Vwindow_list is a list, return that list. Otherwise, build a new
1329 list, cache it in Vwindow_list, and return that. */
1331 static Lisp_Object
1332 window_list ()
1334 if (!CONSP (Vwindow_list))
1336 Lisp_Object tail;
1338 Vwindow_list = Qnil;
1339 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1341 Lisp_Object args[2];
1343 /* We are visiting windows in canonical order, and add
1344 new windows at the front of args[1], which means we
1345 have to reverse this list at the end. */
1346 args[1] = Qnil;
1347 foreach_window (XFRAME (XCAR (tail)), add_window_to_list, &args[1]);
1348 args[0] = Vwindow_list;
1349 args[1] = Fnreverse (args[1]);
1350 Vwindow_list = Fnconc (2, args);
1354 return Vwindow_list;
1358 /* Value is non-zero if WINDOW satisfies the constraints given by
1359 OWINDOW, MINIBUF and ALL_FRAMES.
1361 MINIBUF t means WINDOW may be minibuffer windows.
1362 `lambda' means WINDOW may not be a minibuffer window.
1363 a window means a specific minibuffer window
1365 ALL_FRAMES t means search all frames,
1366 nil means search just current frame,
1367 `visible' means search just visible frames,
1368 0 means search visible and iconified frames,
1369 a window means search the frame that window belongs to,
1370 a frame means consider windows on that frame, only. */
1372 static int
1373 candidate_window_p (window, owindow, minibuf, all_frames)
1374 Lisp_Object window, owindow, minibuf, all_frames;
1376 struct window *w = XWINDOW (window);
1377 struct frame *f = XFRAME (w->frame);
1378 int candidate_p = 1;
1380 if (!BUFFERP (w->buffer))
1381 candidate_p = 0;
1382 else if (MINI_WINDOW_P (w)
1383 && (EQ (minibuf, Qlambda)
1384 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
1386 /* If MINIBUF is `lambda' don't consider any mini-windows.
1387 If it is a window, consider only that one. */
1388 candidate_p = 0;
1390 else if (EQ (all_frames, Qt))
1391 candidate_p = 1;
1392 else if (NILP (all_frames))
1394 xassert (WINDOWP (owindow));
1395 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
1397 else if (EQ (all_frames, Qvisible))
1399 FRAME_SAMPLE_VISIBILITY (f);
1400 candidate_p = FRAME_VISIBLE_P (f);
1402 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
1404 FRAME_SAMPLE_VISIBILITY (f);
1405 candidate_p = FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
1407 else if (WINDOWP (all_frames))
1408 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
1409 || EQ (XWINDOW (all_frames)->frame, w->frame)
1410 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
1411 else if (FRAMEP (all_frames))
1412 candidate_p = EQ (all_frames, w->frame);
1414 return candidate_p;
1418 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
1419 Fwindow_list. See there for the meaning of WINDOW, MINIBUF, and
1420 ALL_FRAMES. */
1422 static void
1423 decode_next_window_args (window, minibuf, all_frames)
1424 Lisp_Object *window, *minibuf, *all_frames;
1426 if (NILP (*window))
1427 *window = selected_window;
1428 else
1429 CHECK_LIVE_WINDOW (*window, 0);
1431 /* MINIBUF nil may or may not include minibuffers. Decide if it
1432 does. */
1433 if (NILP (*minibuf))
1434 *minibuf = minibuf_level ? minibuf_window : Qlambda;
1435 else if (!EQ (*minibuf, Qt))
1436 *minibuf = Qlambda;
1438 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
1439 => count none of them, or a specific minibuffer window (the
1440 active one) to count. */
1442 /* ALL_FRAMES nil doesn't specify which frames to include. */
1443 if (NILP (*all_frames))
1444 *all_frames = (!EQ (*minibuf, Qlambda)
1445 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window)->frame))
1446 : Qnil);
1447 else if (EQ (*all_frames, Qvisible))
1449 else if (XFASTINT (*all_frames) == 0)
1451 else if (FRAMEP (*all_frames))
1453 else if (!EQ (*all_frames, Qt))
1454 *all_frames = Qnil;
1456 /* Now *ALL_FRAMES is t meaning search all frames, nil meaning
1457 search just current frame, `visible' meaning search just visible
1458 frames, 0 meaning search visible and iconified frames, or a
1459 window, meaning search the frame that window belongs to, or a
1460 frame, meaning consider windows on that frame, only. */
1464 /* Return the next or previous window of WINDOW in canonical ordering
1465 of windows. NEXT_P non-zero means return the next window. See the
1466 documentation string of next-window for the meaning of MINIBUF and
1467 ALL_FRAMES. */
1469 static Lisp_Object
1470 next_window (window, minibuf, all_frames, next_p)
1471 Lisp_Object window, minibuf, all_frames;
1472 int next_p;
1474 decode_next_window_args (&window, &minibuf, &all_frames);
1476 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
1477 return the first window on the frame. */
1478 if (FRAMEP (all_frames)
1479 && !EQ (all_frames, XWINDOW (window)->frame))
1480 return Fframe_first_window (all_frames);
1482 if (next_p)
1484 Lisp_Object list;
1486 /* Find WINDOW in the list of all windows. */
1487 list = Fmemq (window, window_list ());
1489 /* Scan forward from WINDOW to the end of the window list. */
1490 if (CONSP (list))
1491 for (list = XCDR (list); CONSP (list); list = XCDR (list))
1492 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1493 break;
1495 /* Scan from the start of the window list up to WINDOW. */
1496 if (!CONSP (list))
1497 for (list = Vwindow_list;
1498 CONSP (list) && !EQ (XCAR (list), window);
1499 list = XCDR (list))
1500 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1501 break;
1503 if (CONSP (list))
1504 window = XCAR (list);
1506 else
1508 Lisp_Object candidate, list;
1510 /* Scan through the list of windows for candidates. If there are
1511 candidate windows in front of WINDOW, the last one of these
1512 is the one we want. If there are candidates following WINDOW
1513 in the list, again the last one of these is the one we want. */
1514 candidate = Qnil;
1515 for (list = window_list (); CONSP (list); list = XCDR (list))
1517 if (EQ (XCAR (list), window))
1519 if (WINDOWP (candidate))
1520 break;
1522 else if (candidate_window_p (XCAR (list), window, minibuf,
1523 all_frames))
1524 candidate = XCAR (list);
1527 if (WINDOWP (candidate))
1528 window = candidate;
1531 return window;
1535 /* This comment supplies the doc string for `next-window',
1536 for make-docfile to see. We cannot put this in the real DEFUN
1537 due to limits in the Unix cpp.
1539 DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
1540 "Return next window after WINDOW in canonical ordering of windows.\n\
1541 If omitted, WINDOW defaults to the selected window.\n\
1543 Optional second arg MINIBUF t means count the minibuffer window even\n\
1544 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1545 it is active. MINIBUF neither t nor nil means not to count the\n\
1546 minibuffer even if it is active.\n\
1548 Several frames may share a single minibuffer; if the minibuffer\n\
1549 counts, all windows on all frames that share that minibuffer count\n\
1550 too. Therefore, `next-window' can be used to iterate through the\n\
1551 set of windows even when the minibuffer is on another frame. If the\n\
1552 minibuffer does not count, only windows from WINDOW's frame count.\n\
1554 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1555 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1556 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1557 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1558 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1559 Anything else means restrict to WINDOW's frame.\n\
1561 If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1562 `next-window' to iterate through the entire cycle of acceptable\n\
1563 windows, eventually ending up back at the window you started with.\n\
1564 `previous-window' traverses the same cycle, in the reverse order.")
1565 (window, minibuf, all_frames) */
1567 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1569 (window, minibuf, all_frames)
1570 Lisp_Object window, minibuf, all_frames;
1572 return next_window (window, minibuf, all_frames, 1);
1576 /* This comment supplies the doc string for `previous-window',
1577 for make-docfile to see. We cannot put this in the real DEFUN
1578 due to limits in the Unix cpp.
1580 DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
1581 "Return the window preceding WINDOW in canonical ordering of windows.\n\
1582 If omitted, WINDOW defaults to the selected window.\n\
1584 Optional second arg MINIBUF t means count the minibuffer window even\n\
1585 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1586 it is active. MINIBUF neither t nor nil means not to count the\n\
1587 minibuffer even if it is active.\n\
1589 Several frames may share a single minibuffer; if the minibuffer\n\
1590 counts, all windows on all frames that share that minibuffer count\n\
1591 too. Therefore, `previous-window' can be used to iterate through\n\
1592 the set of windows even when the minibuffer is on another frame. If\n\
1593 the minibuffer does not count, only windows from WINDOW's frame count\n\
1595 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1596 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1597 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1598 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1599 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1600 Anything else means restrict to WINDOW's frame.\n\
1602 If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1603 `previous-window' to iterate through the entire cycle of acceptable\n\
1604 windows, eventually ending up back at the window you started with.\n\
1605 `next-window' traverses the same cycle, in the reverse order.")
1606 (window, minibuf, all_frames) */
1609 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1611 (window, minibuf, all_frames)
1612 Lisp_Object window, minibuf, all_frames;
1614 return next_window (window, minibuf, all_frames, 0);
1618 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1619 "Select the ARG'th different window on this frame.\n\
1620 All windows on current frame are arranged in a cyclic order.\n\
1621 This command selects the window ARG steps away in that order.\n\
1622 A negative ARG moves in the opposite order. If the optional second\n\
1623 argument ALL_FRAMES is non-nil, cycle through all frames.")
1624 (arg, all_frames)
1625 Lisp_Object arg, all_frames;
1627 Lisp_Object window;
1628 int i;
1630 CHECK_NUMBER (arg, 0);
1631 window = selected_window;
1633 for (i = XINT (arg); i > 0; --i)
1634 window = Fnext_window (window, Qnil, all_frames);
1635 for (; i < 0; ++i)
1636 window = Fprevious_window (window, Qnil, all_frames);
1638 Fselect_window (window);
1639 return Qnil;
1643 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
1644 "Return a list of windows on FRAME, starting with WINDOW.\n\
1645 FRAME nil or omitted means use the selected frame.\n\
1646 WINDOW nil or omitted means use the selected window.\n\
1647 MINIBUF t means include the minibuffer window, even if it isn't active.\n\
1648 MINIBUF nil or omitted means include the minibuffer window only\n\
1649 if it's active.\n\
1650 MINIBUF neither nil nor t means never include the minibuffer window.")
1651 (frame, minibuf, window)
1652 Lisp_Object frame, minibuf, window;
1655 if (NILP (window))
1656 window = selected_window;
1657 if (NILP (frame))
1658 frame = selected_frame;
1660 if (!EQ (frame, XWINDOW (window)->frame))
1661 error ("Window is on a different frame");
1663 return window_list_1 (window, minibuf, frame);
1667 /* Return a list of windows in canonical ordering. Arguments are like
1668 for `next-window'. */
1670 static Lisp_Object
1671 window_list_1 (window, minibuf, all_frames)
1672 Lisp_Object window, minibuf, all_frames;
1674 Lisp_Object tail, list;
1676 decode_next_window_args (&window, &minibuf, &all_frames);
1677 list = Qnil;
1679 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
1680 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
1681 list = Fcons (XCAR (tail), list);
1683 return Fnreverse (list);
1688 /* Look at all windows, performing an operation specified by TYPE
1689 with argument OBJ.
1690 If FRAMES is Qt, look at all frames;
1691 Qnil, look at just the selected frame;
1692 Qvisible, look at visible frames;
1693 a frame, just look at windows on that frame.
1694 If MINI is non-zero, perform the operation on minibuffer windows too.
1697 enum window_loop
1699 WINDOW_LOOP_UNUSED,
1700 GET_BUFFER_WINDOW, /* Arg is buffer */
1701 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1702 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1703 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1704 GET_LARGEST_WINDOW,
1705 UNSHOW_BUFFER, /* Arg is buffer */
1706 CHECK_ALL_WINDOWS
1709 static Lisp_Object
1710 window_loop (type, obj, mini, frames)
1711 enum window_loop type;
1712 Lisp_Object obj, frames;
1713 int mini;
1715 Lisp_Object window, windows, best_window, frame_arg;
1716 struct frame *f;
1717 struct gcpro gcpro1;
1719 /* If we're only looping through windows on a particular frame,
1720 frame points to that frame. If we're looping through windows
1721 on all frames, frame is 0. */
1722 if (FRAMEP (frames))
1723 f = XFRAME (frames);
1724 else if (NILP (frames))
1725 f = SELECTED_FRAME ();
1726 else
1727 f = NULL;
1729 if (f)
1730 frame_arg = Qlambda;
1731 else if (XFASTINT (frames) == 0)
1732 frame_arg = frames;
1733 else if (EQ (frames, Qvisible))
1734 frame_arg = frames;
1735 else
1736 frame_arg = Qt;
1738 /* frame_arg is Qlambda to stick to one frame,
1739 Qvisible to consider all visible frames,
1740 or Qt otherwise. */
1742 /* Pick a window to start with. */
1743 if (WINDOWP (obj))
1744 window = obj;
1745 else if (f)
1746 window = FRAME_SELECTED_WINDOW (f);
1747 else
1748 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
1750 /* Figure out the last window we're going to mess with. Since
1751 Fnext_window, given the same options, is guaranteed to go in a
1752 ring, we can just use Fprevious_window to find the last one.
1754 We can't just wait until we hit the first window again, because
1755 it might be deleted. */
1757 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
1758 GCPRO1 (windows);
1759 best_window = Qnil;
1761 for (; CONSP (windows); windows = CDR (windows))
1763 struct window *w;
1765 window = XCAR (windows);
1766 w = XWINDOW (window);
1768 /* Note that we do not pay attention here to whether the frame
1769 is visible, since Fwindow_list skips non-visible frames if
1770 that is desired, under the control of frame_arg. */
1771 if (!MINI_WINDOW_P (w)
1772 /* For UNSHOW_BUFFER, we must always consider all windows. */
1773 || type == UNSHOW_BUFFER
1774 || (mini && minibuf_level > 0))
1775 switch (type)
1777 case GET_BUFFER_WINDOW:
1778 if (EQ (w->buffer, obj)
1779 /* Don't find any minibuffer window
1780 except the one that is currently in use. */
1781 && (MINI_WINDOW_P (w)
1782 ? EQ (window, minibuf_window)
1783 : 1))
1785 UNGCPRO;
1786 return window;
1788 break;
1790 case GET_LRU_WINDOW:
1791 /* t as arg means consider only full-width windows */
1792 if (!NILP (obj) && !WINDOW_FULL_WIDTH_P (w))
1793 break;
1794 /* Ignore dedicated windows and minibuffers. */
1795 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
1796 break;
1797 if (NILP (best_window)
1798 || (XFASTINT (XWINDOW (best_window)->use_time)
1799 > XFASTINT (w->use_time)))
1800 best_window = window;
1801 break;
1803 case DELETE_OTHER_WINDOWS:
1804 if (!EQ (window, obj))
1805 Fdelete_window (window);
1806 break;
1808 case DELETE_BUFFER_WINDOWS:
1809 if (EQ (w->buffer, obj))
1811 struct frame *f = XFRAME (WINDOW_FRAME (w));
1813 /* If this window is dedicated, and in a frame of its own,
1814 kill the frame. */
1815 if (EQ (window, FRAME_ROOT_WINDOW (f))
1816 && !NILP (w->dedicated)
1817 && other_visible_frames (f))
1819 /* Skip the other windows on this frame.
1820 There might be one, the minibuffer! */
1821 while (CONSP (XCDR (windows))
1822 && EQ (XWINDOW (XCAR (windows))->frame,
1823 XWINDOW (XCAR (XCDR (windows)))->frame))
1824 windows = XCDR (windows);
1826 /* Now we can safely delete the frame. */
1827 Fdelete_frame (w->frame, Qnil);
1829 else if (NILP (w->parent))
1831 /* If we're deleting the buffer displayed in the
1832 only window on the frame, find a new buffer to
1833 display there. */
1834 Lisp_Object buffer;
1835 buffer = Fother_buffer (obj, Qnil, w->frame);
1836 if (NILP (buffer))
1837 buffer = Fget_buffer_create (build_string ("*scratch*"));
1838 Fset_window_buffer (window, buffer);
1839 if (EQ (window, selected_window))
1840 Fset_buffer (w->buffer);
1842 else
1843 Fdelete_window (window);
1845 break;
1847 case GET_LARGEST_WINDOW:
1849 /* Ignore dedicated windows and minibuffers. */
1850 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
1851 break;
1853 if (NILP (best_window))
1854 best_window = window;
1855 else
1857 struct window *b = XWINDOW (best_window);
1858 if (XFASTINT (w->height) * XFASTINT (w->width)
1859 > XFASTINT (b->height) * XFASTINT (b->width))
1860 best_window = window;
1863 break;
1865 case UNSHOW_BUFFER:
1866 if (EQ (w->buffer, obj))
1868 Lisp_Object buffer;
1869 struct frame *f = XFRAME (w->frame);
1871 /* Find another buffer to show in this window. */
1872 buffer = Fother_buffer (obj, Qnil, w->frame);
1873 if (NILP (buffer))
1874 buffer = Fget_buffer_create (build_string ("*scratch*"));
1876 /* If this window is dedicated, and in a frame of its own,
1877 kill the frame. */
1878 if (EQ (window, FRAME_ROOT_WINDOW (f))
1879 && !NILP (w->dedicated)
1880 && other_visible_frames (f))
1882 /* Skip the other windows on this frame.
1883 There might be one, the minibuffer! */
1884 while (CONSP (XCDR (windows))
1885 && EQ (XWINDOW (XCAR (windows))->frame,
1886 XWINDOW (XCAR (XCDR (windows)))->frame))
1887 windows = XCDR (windows);
1889 /* Now we can safely delete the frame. */
1890 Fdelete_frame (w->frame, Qnil);
1892 else
1894 /* Otherwise show a different buffer in the window. */
1895 w->dedicated = Qnil;
1896 Fset_window_buffer (window, buffer);
1897 if (EQ (window, selected_window))
1898 Fset_buffer (w->buffer);
1901 break;
1903 /* Check for a window that has a killed buffer. */
1904 case CHECK_ALL_WINDOWS:
1905 if (! NILP (w->buffer)
1906 && NILP (XBUFFER (w->buffer)->name))
1907 abort ();
1908 break;
1910 case WINDOW_LOOP_UNUSED:
1911 break;
1915 UNGCPRO;
1916 return best_window;
1919 /* Used for debugging. Abort if any window has a dead buffer. */
1921 void
1922 check_all_windows ()
1924 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
1927 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1928 "Return the window least recently selected or used for display.\n\
1929 If optional argument FRAME is `visible', search all visible frames.\n\
1930 If FRAME is 0, search all visible and iconified frames.\n\
1931 If FRAME is t, search all frames.\n\
1932 If FRAME is nil, search only the selected frame.\n\
1933 If FRAME is a frame, search only that frame.")
1934 (frame)
1935 Lisp_Object frame;
1937 register Lisp_Object w;
1938 /* First try for a window that is full-width */
1939 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
1940 if (!NILP (w) && !EQ (w, selected_window))
1941 return w;
1942 /* If none of them, try the rest */
1943 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
1946 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1947 "Return the largest window in area.\n\
1948 If optional argument FRAME is `visible', search all visible frames.\n\
1949 If FRAME is 0, search all visible and iconified frames.\n\
1950 If FRAME is t, search all frames.\n\
1951 If FRAME is nil, search only the selected frame.\n\
1952 If FRAME is a frame, search only that frame.")
1953 (frame)
1954 Lisp_Object frame;
1956 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
1957 frame);
1960 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1961 "Return a window currently displaying BUFFER, or nil if none.\n\
1962 If optional argument FRAME is `visible', search all visible frames.\n\
1963 If optional argument FRAME is 0, search all visible and iconified frames.\n\
1964 If FRAME is t, search all frames.\n\
1965 If FRAME is nil, search only the selected frame.\n\
1966 If FRAME is a frame, search only that frame.")
1967 (buffer, frame)
1968 Lisp_Object buffer, frame;
1970 buffer = Fget_buffer (buffer);
1971 if (BUFFERP (buffer))
1972 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
1973 else
1974 return Qnil;
1977 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1978 0, 1, "",
1979 "Make WINDOW (or the selected window) fill its frame.\n\
1980 Only the frame WINDOW is on is affected.\n\
1981 This function tries to reduce display jumps\n\
1982 by keeping the text previously visible in WINDOW\n\
1983 in the same place on the frame. Doing this depends on\n\
1984 the value of (window-start WINDOW), so if calling this function\n\
1985 in a program gives strange scrolling, make sure the window-start\n\
1986 value is reasonable when this function is called.")
1987 (window)
1988 Lisp_Object window;
1990 struct window *w;
1991 int startpos;
1992 int top;
1994 if (NILP (window))
1995 window = selected_window;
1996 else
1997 CHECK_LIVE_WINDOW (window, 0);
1999 w = XWINDOW (window);
2001 startpos = marker_position (w->start);
2002 top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2004 if (MINI_WINDOW_P (w) && top > 0)
2005 error ("Can't expand minibuffer to full frame");
2007 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
2009 /* Try to minimize scrolling, by setting the window start to the point
2010 will cause the text at the old window start to be at the same place
2011 on the frame. But don't try to do this if the window start is
2012 outside the visible portion (as might happen when the display is
2013 not current, due to typeahead). */
2014 if (startpos >= BUF_BEGV (XBUFFER (w->buffer))
2015 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
2017 struct position pos;
2018 struct buffer *obuf = current_buffer;
2020 Fset_buffer (w->buffer);
2021 /* This computation used to temporarily move point, but that can
2022 have unwanted side effects due to text properties. */
2023 pos = *vmotion (startpos, -top, w);
2025 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
2026 w->start_at_line_beg = ((pos.bytepos == BEGV_BYTE
2027 || FETCH_BYTE (pos.bytepos - 1) == '\n') ? Qt
2028 : Qnil);
2029 /* We need to do this, so that the window-scroll-functions
2030 get called. */
2031 w->optional_new_start = Qt;
2033 set_buffer_internal (obuf);
2036 return Qnil;
2039 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
2040 1, 2, "bDelete windows on (buffer): ",
2041 "Delete all windows showing BUFFER.\n\
2042 Optional second argument FRAME controls which frames are affected.\n\
2043 If optional argument FRAME is `visible', search all visible frames.\n\
2044 If FRAME is 0, search all visible and iconified frames.\n\
2045 If FRAME is nil, search all frames.\n\
2046 If FRAME is t, search only the selected frame.\n\
2047 If FRAME is a frame, search only that frame.")
2048 (buffer, frame)
2049 Lisp_Object buffer, frame;
2051 /* FRAME uses t and nil to mean the opposite of what window_loop
2052 expects. */
2053 if (NILP (frame))
2054 frame = Qt;
2055 else if (EQ (frame, Qt))
2056 frame = Qnil;
2058 if (!NILP (buffer))
2060 buffer = Fget_buffer (buffer);
2061 CHECK_BUFFER (buffer, 0);
2062 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
2065 return Qnil;
2068 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
2069 Sreplace_buffer_in_windows,
2070 1, 1, "bReplace buffer in windows: ",
2071 "Replace BUFFER with some other buffer in all windows showing it.")
2072 (buffer)
2073 Lisp_Object buffer;
2075 if (!NILP (buffer))
2077 buffer = Fget_buffer (buffer);
2078 CHECK_BUFFER (buffer, 0);
2079 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
2081 return Qnil;
2084 /* Replace BUFFER with some other buffer in all windows
2085 of all frames, even those on other keyboards. */
2087 void
2088 replace_buffer_in_all_windows (buffer)
2089 Lisp_Object buffer;
2091 #ifdef MULTI_KBOARD
2092 Lisp_Object tail, frame;
2094 /* A single call to window_loop won't do the job
2095 because it only considers frames on the current keyboard.
2096 So loop manually over frames, and handle each one. */
2097 FOR_EACH_FRAME (tail, frame)
2098 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
2099 #else
2100 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
2101 #endif
2104 /* Set the height of WINDOW and all its inferiors. */
2106 /* The smallest acceptable dimensions for a window. Anything smaller
2107 might crash Emacs. */
2109 #define MIN_SAFE_WINDOW_WIDTH (2)
2110 #define MIN_SAFE_WINDOW_HEIGHT (2)
2112 /* Make sure that window_min_height and window_min_width are
2113 not too small; if they are, set them to safe minima. */
2115 static void
2116 check_min_window_sizes ()
2118 /* Smaller values might permit a crash. */
2119 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
2120 window_min_width = MIN_SAFE_WINDOW_WIDTH;
2121 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
2122 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
2125 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
2126 minimum allowable size. */
2128 void
2129 check_frame_size (frame, rows, cols)
2130 FRAME_PTR frame;
2131 int *rows, *cols;
2133 /* For height, we have to see:
2134 whether the frame has a minibuffer,
2135 whether it wants a mode line, and
2136 whether it has a menu bar. */
2137 int min_height =
2138 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
2139 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
2140 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
2142 if (FRAME_TOP_MARGIN (frame) > 0)
2143 min_height += FRAME_TOP_MARGIN (frame);
2145 if (*rows < min_height)
2146 *rows = min_height;
2147 if (*cols < MIN_SAFE_WINDOW_WIDTH)
2148 *cols = MIN_SAFE_WINDOW_WIDTH;
2152 /* Value is non-zero if window W is fixed-size. WIDTH_P non-zero means
2153 check if W's width can be changed, otherwise check W's height.
2154 CHECK_SIBLINGS_P non-zero means check resizablity of WINDOW's
2155 siblings, too. If none of the siblings is resizable, WINDOW isn't
2156 either. */
2158 static int
2159 window_fixed_size_p (w, width_p, check_siblings_p)
2160 struct window *w;
2161 int width_p, check_siblings_p;
2163 int fixed_p;
2164 struct window *c;
2166 if (!NILP (w->hchild))
2168 c = XWINDOW (w->hchild);
2170 if (width_p)
2172 /* A horiz. combination is fixed-width if all of if its
2173 children are. */
2174 while (c && window_fixed_size_p (c, width_p, 0))
2175 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2176 fixed_p = c == NULL;
2178 else
2180 /* A horiz. combination is fixed-height if one of if its
2181 children is. */
2182 while (c && !window_fixed_size_p (c, width_p, 0))
2183 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2184 fixed_p = c != NULL;
2187 else if (!NILP (w->vchild))
2189 c = XWINDOW (w->vchild);
2191 if (width_p)
2193 /* A vert. combination is fixed-width if one of if its
2194 children is. */
2195 while (c && !window_fixed_size_p (c, width_p, 0))
2196 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2197 fixed_p = c != NULL;
2199 else
2201 /* A vert. combination is fixed-height if all of if its
2202 children are. */
2203 while (c && window_fixed_size_p (c, width_p, 0))
2204 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2205 fixed_p = c == NULL;
2208 else if (BUFFERP (w->buffer))
2210 if (w->height_fixed_p && !width_p)
2211 fixed_p = 1;
2212 else
2214 struct buffer *old = current_buffer;
2215 Lisp_Object val;
2217 current_buffer = XBUFFER (w->buffer);
2218 val = find_symbol_value (Qwindow_size_fixed);
2219 current_buffer = old;
2221 fixed_p = 0;
2222 if (!EQ (val, Qunbound))
2224 fixed_p = !NILP (val);
2226 if (fixed_p
2227 && ((EQ (val, Qheight) && width_p)
2228 || (EQ (val, Qwidth) && !width_p)))
2229 fixed_p = 0;
2233 /* Can't tell if this one is resizable without looking at
2234 siblings. If all siblings are fixed-size this one is too. */
2235 if (!fixed_p && check_siblings_p && WINDOWP (w->parent))
2237 Lisp_Object child;
2239 for (child = w->prev; !NILP (child); child = XWINDOW (child)->prev)
2240 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2241 break;
2243 if (NILP (child))
2244 for (child = w->next; !NILP (child); child = XWINDOW (child)->next)
2245 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2246 break;
2248 if (NILP (child))
2249 fixed_p = 1;
2252 else
2253 fixed_p = 1;
2255 return fixed_p;
2259 /* Return the minimum size of window W, not taking fixed-width windows
2260 into account. WIDTH_P non-zero means return the minimum width,
2261 otherwise return the minimum height. If W is a combination window,
2262 compute the minimum size from the minimum sizes of W's children. */
2264 static int
2265 window_min_size_1 (w, width_p)
2266 struct window *w;
2267 int width_p;
2269 struct window *c;
2270 int size;
2272 if (!NILP (w->hchild))
2274 c = XWINDOW (w->hchild);
2275 size = 0;
2277 if (width_p)
2279 /* The min width of a horizontal combination is
2280 the sum of the min widths of its children. */
2281 while (c)
2283 size += window_min_size_1 (c, width_p);
2284 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2287 else
2289 /* The min height a horizontal combination equals
2290 the maximum of all min height of its children. */
2291 while (c)
2293 int min_size = window_min_size_1 (c, width_p);
2294 size = max (min_size, size);
2295 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2299 else if (!NILP (w->vchild))
2301 c = XWINDOW (w->vchild);
2302 size = 0;
2304 if (width_p)
2306 /* The min width of a vertical combination is
2307 the maximum of the min widths of its children. */
2308 while (c)
2310 int min_size = window_min_size_1 (c, width_p);
2311 size = max (min_size, size);
2312 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2315 else
2317 /* The min height of a vertical combination equals
2318 the sum of the min height of its children. */
2319 while (c)
2321 size += window_min_size_1 (c, width_p);
2322 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2326 else
2328 if (width_p)
2329 size = window_min_width;
2330 else
2332 if (MINI_WINDOW_P (w)
2333 || (!WINDOW_WANTS_MODELINE_P (w)
2334 && !WINDOW_WANTS_HEADER_LINE_P (w)))
2335 size = 1;
2336 else
2337 size = window_min_height;
2341 return size;
2345 /* Return the minimum size of window W, taking fixed-size windows into
2346 account. WIDTH_P non-zero means return the minimum width,
2347 otherwise return the minimum height. IGNORE_FIXED_P non-zero means
2348 ignore if W is fixed-size. Set *FIXED to 1 if W is fixed-size
2349 unless FIXED is null. */
2351 static int
2352 window_min_size (w, width_p, ignore_fixed_p, fixed)
2353 struct window *w;
2354 int width_p, ignore_fixed_p, *fixed;
2356 int size, fixed_p;
2358 if (ignore_fixed_p)
2359 fixed_p = 0;
2360 else
2361 fixed_p = window_fixed_size_p (w, width_p, 1);
2363 if (fixed)
2364 *fixed = fixed_p;
2366 if (fixed_p)
2367 size = width_p ? XFASTINT (w->width) : XFASTINT (w->height);
2368 else
2369 size = window_min_size_1 (w, width_p);
2371 return size;
2375 /* Set WINDOW's height or width to SIZE. WIDTH_P non-zero means set
2376 WINDOW's width. Resize WINDOW's children, if any, so that they
2377 keep their proportionate size relative to WINDOW. Propagate
2378 WINDOW's top or left edge position to children. Delete windows
2379 that become too small unless NODELETE_P is non-zero. */
2381 static void
2382 size_window (window, size, width_p, nodelete_p)
2383 Lisp_Object window;
2384 int size, width_p, nodelete_p;
2386 struct window *w = XWINDOW (window);
2387 struct window *c;
2388 Lisp_Object child, *forward, *sideward;
2389 int old_size, min_size;
2391 check_min_window_sizes ();
2392 size = max (0, size);
2394 /* If the window has been "too small" at one point,
2395 don't delete it for being "too small" in the future.
2396 Preserve it as long as that is at all possible. */
2397 if (width_p)
2399 old_size = XINT (w->width);
2400 min_size = window_min_width;
2402 else
2404 old_size = XINT (w->height);
2405 min_size = window_min_height;
2408 if (old_size < min_size)
2409 w->too_small_ok = Qt;
2411 /* Maybe delete WINDOW if it's too small. */
2412 if (!nodelete_p && !NILP (w->parent))
2414 if (!MINI_WINDOW_P (w) && !NILP (w->too_small_ok))
2415 min_size = width_p ? MIN_SAFE_WINDOW_WIDTH : MIN_SAFE_WINDOW_HEIGHT;
2416 else
2417 min_size = width_p ? window_min_width : window_min_height;
2419 if (size < min_size)
2421 delete_window (window);
2422 return;
2426 /* Set redisplay hints. */
2427 w->last_modified = make_number (0);
2428 w->last_overlay_modified = make_number (0);
2429 windows_or_buffers_changed++;
2430 FRAME_WINDOW_SIZES_CHANGED (XFRAME (w->frame)) = 1;
2432 if (width_p)
2434 sideward = &w->vchild;
2435 forward = &w->hchild;
2436 w->width = make_number (size);
2438 else
2440 sideward = &w->hchild;
2441 forward = &w->vchild;
2442 w->height = make_number (size);
2445 if (!NILP (*sideward))
2447 for (child = *sideward; !NILP (child); child = c->next)
2449 c = XWINDOW (child);
2450 if (width_p)
2451 c->left = w->left;
2452 else
2453 c->top = w->top;
2454 size_window (child, size, width_p, nodelete_p);
2457 else if (!NILP (*forward))
2459 int fixed_size, each, extra, n;
2460 int resize_fixed_p, nfixed;
2461 int last_pos, first_pos, nchildren, total;
2463 /* Determine the fixed-size portion of the this window, and the
2464 number of child windows. */
2465 fixed_size = nchildren = nfixed = total = 0;
2466 for (child = *forward; !NILP (child); child = c->next, ++nchildren)
2468 int child_size;
2470 c = XWINDOW (child);
2471 child_size = width_p ? XINT (c->width) : XINT (c->height);
2472 total += child_size;
2474 if (window_fixed_size_p (c, width_p, 0))
2476 fixed_size += child_size;
2477 ++nfixed;
2481 /* If the new size is smaller than fixed_size, or if there
2482 aren't any resizable windows, allow resizing fixed-size
2483 windows. */
2484 resize_fixed_p = nfixed == nchildren || size < fixed_size;
2486 /* Compute how many lines/columns to add to each child. The
2487 value of extra takes care of rounding errors. */
2488 n = resize_fixed_p ? nchildren : nchildren - nfixed;
2489 each = (size - total) / n;
2490 extra = (size - total) - n * each;
2492 /* Compute new children heights and edge positions. */
2493 first_pos = width_p ? XINT (w->left) : XINT (w->top);
2494 last_pos = first_pos;
2495 for (child = *forward; !NILP (child); child = c->next)
2497 int new_size, old_size;
2499 c = XWINDOW (child);
2500 old_size = width_p ? XFASTINT (c->width) : XFASTINT (c->height);
2501 new_size = old_size;
2503 /* The top or left edge position of this child equals the
2504 bottom or right edge of its predecessor. */
2505 if (width_p)
2506 c->left = make_number (last_pos);
2507 else
2508 c->top = make_number (last_pos);
2510 /* If this child can be resized, do it. */
2511 if (resize_fixed_p || !window_fixed_size_p (c, width_p, 0))
2513 new_size = old_size + each + extra;
2514 extra = 0;
2517 /* Set new height. Note that size_window also propagates
2518 edge positions to children, so it's not a no-op if we
2519 didn't change the child's size. */
2520 size_window (child, new_size, width_p, 1);
2522 /* Remember the bottom/right edge position of this child; it
2523 will be used to set the top/left edge of the next child. */
2524 last_pos += new_size;
2527 /* We should have covered the parent exactly with child windows. */
2528 xassert (size == last_pos - first_pos);
2530 /* Now delete any children that became too small. */
2531 if (!nodelete_p)
2532 for (child = *forward; !NILP (child); child = c->next)
2534 int child_size;
2535 c = XWINDOW (child);
2536 child_size = width_p ? XINT (c->width) : XINT (c->height);
2537 size_window (child, child_size, width_p, 0);
2542 /* Set WINDOW's height to HEIGHT, and recursively change the height of
2543 WINDOW's children. NODELETE non-zero means don't delete windows
2544 that become too small in the process. (The caller should check
2545 later and do so if appropriate.) */
2547 void
2548 set_window_height (window, height, nodelete)
2549 Lisp_Object window;
2550 int height;
2551 int nodelete;
2553 size_window (window, height, 0, nodelete);
2557 /* Set WINDOW's width to WIDTH, and recursively change the width of
2558 WINDOW's children. NODELETE non-zero means don't delete windows
2559 that become too small in the process. (The caller should check
2560 later and do so if appropriate.) */
2562 void
2563 set_window_width (window, width, nodelete)
2564 Lisp_Object window;
2565 int width;
2566 int nodelete;
2568 size_window (window, width, 1, nodelete);
2572 int window_select_count;
2574 Lisp_Object
2575 Fset_window_buffer_unwind (obuf)
2576 Lisp_Object obuf;
2578 Fset_buffer (obuf);
2579 return Qnil;
2583 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
2584 means it's allowed to run hooks. See make_frame for a case where
2585 it's not allowed. */
2587 void
2588 set_window_buffer (window, buffer, run_hooks_p)
2589 Lisp_Object window, buffer;
2590 int run_hooks_p;
2592 struct window *w = XWINDOW (window);
2593 struct buffer *b = XBUFFER (buffer);
2594 int count = specpdl_ptr - specpdl;
2596 w->buffer = buffer;
2598 if (EQ (window, selected_window))
2599 b->last_selected_window = window;
2601 /* Update time stamps of buffer display. */
2602 if (INTEGERP (b->display_count))
2603 XSETINT (b->display_count, XINT (b->display_count) + 1);
2604 b->display_time = Fcurrent_time ();
2606 XSETFASTINT (w->window_end_pos, 0);
2607 XSETFASTINT (w->window_end_vpos, 0);
2608 bzero (&w->last_cursor, sizeof w->last_cursor);
2609 w->window_end_valid = Qnil;
2610 XSETFASTINT (w->hscroll, 0);
2611 XSETFASTINT (w->min_hscroll, 0);
2612 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
2613 set_marker_restricted (w->start,
2614 make_number (b->last_window_start),
2615 buffer);
2616 w->start_at_line_beg = Qnil;
2617 w->force_start = Qnil;
2618 XSETFASTINT (w->last_modified, 0);
2619 XSETFASTINT (w->last_overlay_modified, 0);
2620 windows_or_buffers_changed++;
2622 /* We must select BUFFER for running the window-scroll-functions.
2623 If WINDOW is selected, switch permanently.
2624 Otherwise, switch but go back to the ambient buffer afterward. */
2625 if (EQ (window, selected_window))
2626 Fset_buffer (buffer);
2627 /* We can't check ! NILP (Vwindow_scroll_functions) here
2628 because that might itself be a local variable. */
2629 else if (window_initialized)
2631 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
2632 Fset_buffer (buffer);
2635 /* Set left and right marginal area width from buffer. */
2636 Fset_window_margins (window, b->left_margin_width, b->right_margin_width);
2638 if (run_hooks_p)
2640 if (! NILP (Vwindow_scroll_functions))
2641 run_hook_with_args_2 (Qwindow_scroll_functions, window,
2642 Fmarker_position (w->start));
2644 if (! NILP (Vwindow_configuration_change_hook)
2645 && ! NILP (Vrun_hooks))
2646 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2649 unbind_to (count, Qnil);
2653 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
2654 "Make WINDOW display BUFFER as its contents.\n\
2655 BUFFER can be a buffer or buffer name.")
2656 (window, buffer)
2657 register Lisp_Object window, buffer;
2659 register Lisp_Object tem;
2660 register struct window *w = decode_window (window);
2662 XSETWINDOW (window, w);
2663 buffer = Fget_buffer (buffer);
2664 CHECK_BUFFER (buffer, 1);
2666 if (NILP (XBUFFER (buffer)->name))
2667 error ("Attempt to display deleted buffer");
2669 tem = w->buffer;
2670 if (NILP (tem))
2671 error ("Window is deleted");
2672 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
2673 is first being set up. */
2675 if (!NILP (w->dedicated) && !EQ (tem, buffer))
2676 error ("Window is dedicated to `%s'",
2677 XSTRING (XBUFFER (tem)->name)->data);
2679 unshow_buffer (w);
2682 set_window_buffer (window, buffer, 1);
2683 return Qnil;
2686 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
2687 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
2688 If WINDOW is not already selected, also make WINDOW's buffer current.\n\
2689 Note that the main editor command loop\n\
2690 selects the buffer of the selected window before each command.")
2691 (window)
2692 register Lisp_Object window;
2694 return select_window_1 (window, 1);
2697 /* Note that selected_window can be nil
2698 when this is called from Fset_window_configuration. */
2700 static Lisp_Object
2701 select_window_1 (window, recordflag)
2702 register Lisp_Object window;
2703 int recordflag;
2705 register struct window *w;
2706 register struct window *ow;
2707 struct frame *sf;
2709 CHECK_LIVE_WINDOW (window, 0);
2711 w = XWINDOW (window);
2713 if (NILP (w->buffer))
2714 error ("Trying to select deleted window or non-leaf window");
2716 XSETFASTINT (w->use_time, ++window_select_count);
2717 if (EQ (window, selected_window))
2718 return window;
2720 if (!NILP (selected_window))
2722 ow = XWINDOW (selected_window);
2723 if (! NILP (ow->buffer))
2724 set_marker_both (ow->pointm, ow->buffer,
2725 BUF_PT (XBUFFER (ow->buffer)),
2726 BUF_PT_BYTE (XBUFFER (ow->buffer)));
2729 selected_window = window;
2730 sf = SELECTED_FRAME ();
2731 if (XFRAME (WINDOW_FRAME (w)) != sf)
2733 XFRAME (WINDOW_FRAME (w))->selected_window = window;
2734 /* Use this rather than Fhandle_switch_frame
2735 so that FRAME_FOCUS_FRAME is moved appropriately as we
2736 move around in the state where a minibuffer in a separate
2737 frame is active. */
2738 Fselect_frame (WINDOW_FRAME (w), Qnil);
2740 else
2741 sf->selected_window = window;
2743 if (recordflag)
2744 record_buffer (w->buffer);
2745 Fset_buffer (w->buffer);
2747 XBUFFER (w->buffer)->last_selected_window = window;
2749 /* Go to the point recorded in the window.
2750 This is important when the buffer is in more
2751 than one window. It also matters when
2752 redisplay_window has altered point after scrolling,
2753 because it makes the change only in the window. */
2755 register int new_point = marker_position (w->pointm);
2756 if (new_point < BEGV)
2757 SET_PT (BEGV);
2758 else if (new_point > ZV)
2759 SET_PT (ZV);
2760 else
2761 SET_PT (new_point);
2764 windows_or_buffers_changed++;
2765 return window;
2768 /* Deiconify the frame containing the window WINDOW,
2769 unless it is the selected frame;
2770 then return WINDOW.
2772 The reason for the exception for the selected frame
2773 is that it seems better not to change the selected frames visibility
2774 merely because of displaying a different buffer in it.
2775 The deiconification is useful when a buffer gets shown in
2776 another frame that you were not using lately. */
2778 static Lisp_Object
2779 display_buffer_1 (window)
2780 Lisp_Object window;
2782 Lisp_Object frame = XWINDOW (window)->frame;
2783 FRAME_PTR f = XFRAME (frame);
2785 FRAME_SAMPLE_VISIBILITY (f);
2787 if (!EQ (frame, selected_frame))
2789 if (FRAME_ICONIFIED_P (f))
2790 Fmake_frame_visible (frame);
2791 else if (FRAME_VISIBLE_P (f))
2792 Fraise_frame (frame);
2795 return window;
2798 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
2799 "Returns non-nil if a buffer named BUFFER-NAME would be created specially.\n\
2800 The value is actually t if the frame should be called with default frame\n\
2801 parameters, and a list of frame parameters if they were specified.\n\
2802 See `special-display-buffer-names', and `special-display-regexps'.")
2803 (buffer_name)
2804 Lisp_Object buffer_name;
2806 Lisp_Object tem;
2808 CHECK_STRING (buffer_name, 1);
2810 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
2811 if (!NILP (tem))
2812 return Qt;
2814 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
2815 if (!NILP (tem))
2816 return XCDR (tem);
2818 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
2820 Lisp_Object car = XCAR (tem);
2821 if (STRINGP (car)
2822 && fast_string_match (car, buffer_name) >= 0)
2823 return Qt;
2824 else if (CONSP (car)
2825 && STRINGP (XCAR (car))
2826 && fast_string_match (XCAR (car), buffer_name) >= 0)
2827 return XCDR (car);
2829 return Qnil;
2832 DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
2833 "Returns non-nil if a new buffer named BUFFER-NAME would use the same window.\n\
2834 See `same-window-buffer-names' and `same-window-regexps'.")
2835 (buffer_name)
2836 Lisp_Object buffer_name;
2838 Lisp_Object tem;
2840 CHECK_STRING (buffer_name, 1);
2842 tem = Fmember (buffer_name, Vsame_window_buffer_names);
2843 if (!NILP (tem))
2844 return Qt;
2846 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
2847 if (!NILP (tem))
2848 return Qt;
2850 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
2852 Lisp_Object car = XCAR (tem);
2853 if (STRINGP (car)
2854 && fast_string_match (car, buffer_name) >= 0)
2855 return Qt;
2856 else if (CONSP (car)
2857 && STRINGP (XCAR (car))
2858 && fast_string_match (XCAR (car), buffer_name) >= 0)
2859 return Qt;
2861 return Qnil;
2864 /* Use B so the default is (other-buffer). */
2865 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
2866 "BDisplay buffer: \nP",
2867 "Make BUFFER appear in some window but don't select it.\n\
2868 BUFFER can be a buffer or a buffer name.\n\
2869 If BUFFER is shown already in some window, just use that one,\n\
2870 unless the window is the selected window and the optional second\n\
2871 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
2872 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
2873 Returns the window displaying BUFFER.\n\
2874 If `display-reuse-frames' is non-nil, and another frame is currently\n\
2875 displaying BUFFER, then simply raise that frame.\n\
2877 The variables `special-display-buffer-names', `special-display-regexps',\n\
2878 `same-window-buffer-names', and `same-window-regexps' customize how certain\n\
2879 buffer names are handled.\n\
2881 If optional argument FRAME is `visible', search all visible frames.\n\
2882 If FRAME is 0, search all visible and iconified frames.\n\
2883 If FRAME is t, search all frames.\n\
2884 If FRAME is a frame, search only that frame.\n\
2885 If FRAME is nil, search only the selected frame\n\
2886 (actually the last nonminibuffer frame),\n\
2887 unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,\n\
2888 which means search visible and iconified frames.\n\
2890 If `even-window-heights' is non-nil, window heights will be evened out\n\
2891 if displaying the buffer causes two vertically adjacent windows to be\n\
2892 displayed.")
2893 (buffer, not_this_window, frame)
2894 register Lisp_Object buffer, not_this_window, frame;
2896 register Lisp_Object window, tem, swp;
2897 struct frame *f;
2899 swp = Qnil;
2900 buffer = Fget_buffer (buffer);
2901 CHECK_BUFFER (buffer, 0);
2903 if (!NILP (Vdisplay_buffer_function))
2904 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
2906 if (NILP (not_this_window)
2907 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
2908 return display_buffer_1 (selected_window);
2910 /* See if the user has specified this buffer should appear
2911 in the selected window. */
2912 if (NILP (not_this_window))
2914 swp = Fsame_window_p (XBUFFER (buffer)->name);
2915 if (!NILP (swp) && !no_switch_window (selected_window))
2917 Fswitch_to_buffer (buffer, Qnil);
2918 return display_buffer_1 (selected_window);
2922 /* If the user wants pop-up-frames or display-reuse-frames, then
2923 look for a window showing BUFFER on any visible or iconified frame.
2924 Otherwise search only the current frame. */
2925 if (! NILP (frame))
2926 tem = frame;
2927 else if (pop_up_frames
2928 || display_buffer_reuse_frames
2929 || last_nonminibuf_frame == 0)
2930 XSETFASTINT (tem, 0);
2931 else
2932 XSETFRAME (tem, last_nonminibuf_frame);
2934 window = Fget_buffer_window (buffer, tem);
2935 if (!NILP (window)
2936 && (NILP (not_this_window) || !EQ (window, selected_window)))
2937 return display_buffer_1 (window);
2939 /* Certain buffer names get special handling. */
2940 if (!NILP (Vspecial_display_function) && NILP (swp))
2942 tem = Fspecial_display_p (XBUFFER (buffer)->name);
2943 if (EQ (tem, Qt))
2944 return call1 (Vspecial_display_function, buffer);
2945 if (CONSP (tem))
2946 return call2 (Vspecial_display_function, buffer, tem);
2949 /* If there are no frames open that have more than a minibuffer,
2950 we need to create a new frame. */
2951 if (pop_up_frames || last_nonminibuf_frame == 0)
2953 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
2954 Fset_window_buffer (window, buffer);
2955 return display_buffer_1 (window);
2958 f = SELECTED_FRAME ();
2959 if (pop_up_windows
2960 || FRAME_MINIBUF_ONLY_P (f)
2961 /* If the current frame is a special display frame,
2962 don't try to reuse its windows. */
2963 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (f))->dedicated))
2965 Lisp_Object frames;
2967 frames = Qnil;
2968 if (FRAME_MINIBUF_ONLY_P (f))
2969 XSETFRAME (frames, last_nonminibuf_frame);
2970 /* Don't try to create a window if would get an error */
2971 if (split_height_threshold < window_min_height << 1)
2972 split_height_threshold = window_min_height << 1;
2974 /* Note that both Fget_largest_window and Fget_lru_window
2975 ignore minibuffers and dedicated windows.
2976 This means they can return nil. */
2978 /* If the frame we would try to split cannot be split,
2979 try other frames. */
2980 if (FRAME_NO_SPLIT_P (NILP (frames) ? f : last_nonminibuf_frame))
2982 /* Try visible frames first. */
2983 window = Fget_largest_window (Qvisible);
2984 /* If that didn't work, try iconified frames. */
2985 if (NILP (window))
2986 window = Fget_largest_window (make_number (0));
2987 if (NILP (window))
2988 window = Fget_largest_window (Qt);
2990 else
2991 window = Fget_largest_window (frames);
2993 /* If we got a tall enough full-width window that can be split,
2994 split it. */
2995 if (!NILP (window)
2996 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
2997 && window_height (window) >= split_height_threshold
2998 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
2999 window = Fsplit_window (window, Qnil, Qnil);
3000 else
3002 Lisp_Object upper, lower, other;
3004 window = Fget_lru_window (frames);
3005 /* If the LRU window is selected, and big enough,
3006 and can be split, split it. */
3007 if (!NILP (window)
3008 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3009 && (EQ (window, selected_window)
3010 || EQ (XWINDOW (window)->parent, Qnil))
3011 && window_height (window) >= window_min_height << 1)
3012 window = Fsplit_window (window, Qnil, Qnil);
3013 /* If Fget_lru_window returned nil, try other approaches. */
3015 /* Try visible frames first. */
3016 if (NILP (window))
3017 window = Fget_buffer_window (buffer, Qvisible);
3018 if (NILP (window))
3019 window = Fget_largest_window (Qvisible);
3020 /* If that didn't work, try iconified frames. */
3021 if (NILP (window))
3022 window = Fget_buffer_window (buffer, make_number (0));
3023 if (NILP (window))
3024 window = Fget_largest_window (make_number (0));
3025 /* Try invisible frames. */
3026 if (NILP (window))
3027 window = Fget_buffer_window (buffer, Qt);
3028 if (NILP (window))
3029 window = Fget_largest_window (Qt);
3030 /* As a last resort, make a new frame. */
3031 if (NILP (window))
3032 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3033 /* If window appears above or below another,
3034 even out their heights. */
3035 other = upper = lower = Qnil;
3036 if (!NILP (XWINDOW (window)->prev))
3037 other = upper = XWINDOW (window)->prev, lower = window;
3038 if (!NILP (XWINDOW (window)->next))
3039 other = lower = XWINDOW (window)->next, upper = window;
3040 if (!NILP (other)
3041 && !NILP (Veven_window_heights)
3042 /* Check that OTHER and WINDOW are vertically arrayed. */
3043 && !EQ (XWINDOW (other)->top, XWINDOW (window)->top)
3044 && (XFASTINT (XWINDOW (other)->height)
3045 > XFASTINT (XWINDOW (window)->height)))
3047 int total = (XFASTINT (XWINDOW (other)->height)
3048 + XFASTINT (XWINDOW (window)->height));
3049 enlarge_window (upper,
3050 total / 2 - XFASTINT (XWINDOW (upper)->height),
3055 else
3056 window = Fget_lru_window (Qnil);
3058 Fset_window_buffer (window, buffer);
3059 return display_buffer_1 (window);
3062 void
3063 temp_output_buffer_show (buf)
3064 register Lisp_Object buf;
3066 register struct buffer *old = current_buffer;
3067 register Lisp_Object window;
3068 register struct window *w;
3070 XBUFFER (buf)->directory = current_buffer->directory;
3072 Fset_buffer (buf);
3073 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3074 BEGV = BEG;
3075 ZV = Z;
3076 SET_PT (BEG);
3077 XBUFFER (buf)->prevent_redisplay_optimizations_p = 1;
3078 set_buffer_internal (old);
3080 if (!EQ (Vtemp_buffer_show_function, Qnil))
3081 call1 (Vtemp_buffer_show_function, buf);
3082 else
3084 window = Fdisplay_buffer (buf, Qnil, Qnil);
3086 if (!EQ (XWINDOW (window)->frame, selected_frame))
3087 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3088 Vminibuf_scroll_window = window;
3089 w = XWINDOW (window);
3090 XSETFASTINT (w->hscroll, 0);
3091 XSETFASTINT (w->min_hscroll, 0);
3092 set_marker_restricted_both (w->start, buf, 1, 1);
3093 set_marker_restricted_both (w->pointm, buf, 1, 1);
3095 /* Run temp-buffer-show-hook, with the chosen window selected
3096 and it sbuffer current. */
3097 if (!NILP (Vrun_hooks))
3099 Lisp_Object tem;
3100 tem = Fboundp (Qtemp_buffer_show_hook);
3101 if (!NILP (tem))
3103 tem = Fsymbol_value (Qtemp_buffer_show_hook);
3104 if (!NILP (tem))
3106 int count = specpdl_ptr - specpdl;
3107 Lisp_Object prev_window;
3108 prev_window = selected_window;
3110 /* Select the window that was chosen, for running the hook. */
3111 record_unwind_protect (Fselect_window, prev_window);
3112 select_window_1 (window, 0);
3113 Fset_buffer (w->buffer);
3114 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
3115 select_window_1 (prev_window, 0);
3116 unbind_to (count, Qnil);
3123 static void
3124 make_dummy_parent (window)
3125 Lisp_Object window;
3127 Lisp_Object new;
3128 register struct window *o, *p;
3129 register struct Lisp_Vector *vec;
3130 int i;
3132 o = XWINDOW (window);
3133 vec = allocate_vectorlike ((EMACS_INT)VECSIZE (struct window));
3134 for (i = 0; i < VECSIZE (struct window); ++i)
3135 vec->contents[i] = ((struct Lisp_Vector *)o)->contents[i];
3136 vec->size = VECSIZE (struct window);
3137 p = (struct window *)vec;
3138 XSETWINDOW (new, p);
3140 XSETFASTINT (p->sequence_number, ++sequence_number);
3142 /* Put new into window structure in place of window */
3143 replace_window (window, new);
3145 o->next = Qnil;
3146 o->prev = Qnil;
3147 o->vchild = Qnil;
3148 o->hchild = Qnil;
3149 o->parent = new;
3151 p->start = Qnil;
3152 p->pointm = Qnil;
3153 p->buffer = Qnil;
3156 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
3157 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
3158 WINDOW defaults to selected one and SIZE to half its size.\n\
3159 If optional third arg HORFLAG is non-nil, split side by side\n\
3160 and put SIZE columns in the first of the pair. In that case,\n\
3161 SIZE includes that window's scroll bar, or the divider column to its right.")
3162 (window, size, horflag)
3163 Lisp_Object window, size, horflag;
3165 register Lisp_Object new;
3166 register struct window *o, *p;
3167 FRAME_PTR fo;
3168 register int size_int;
3170 if (NILP (window))
3171 window = selected_window;
3172 else
3173 CHECK_LIVE_WINDOW (window, 0);
3175 o = XWINDOW (window);
3176 fo = XFRAME (WINDOW_FRAME (o));
3178 if (NILP (size))
3180 if (!NILP (horflag))
3181 /* Calculate the size of the left-hand window, by dividing
3182 the usable space in columns by two.
3183 We round up, since the left-hand window may include
3184 a dividing line, while the right-hand may not. */
3185 size_int = (XFASTINT (o->width) + 1) >> 1;
3186 else
3187 size_int = XFASTINT (o->height) >> 1;
3189 else
3191 CHECK_NUMBER (size, 1);
3192 size_int = XINT (size);
3195 if (MINI_WINDOW_P (o))
3196 error ("Attempt to split minibuffer window");
3197 else if (window_fixed_size_p (o, !NILP (horflag), 0))
3198 error ("Attempt to split fixed-size window");
3200 check_min_window_sizes ();
3202 if (NILP (horflag))
3204 if (size_int < window_min_height)
3205 error ("Window height %d too small (after splitting)", size_int);
3206 if (size_int + window_min_height > XFASTINT (o->height))
3207 error ("Window height %d too small (after splitting)",
3208 XFASTINT (o->height) - size_int);
3209 if (NILP (o->parent)
3210 || NILP (XWINDOW (o->parent)->vchild))
3212 make_dummy_parent (window);
3213 new = o->parent;
3214 XWINDOW (new)->vchild = window;
3217 else
3219 if (size_int < window_min_width)
3220 error ("Window width %d too small (after splitting)", size_int);
3222 if (size_int + window_min_width > XFASTINT (o->width))
3223 error ("Window width %d too small (after splitting)",
3224 XFASTINT (o->width) - size_int);
3225 if (NILP (o->parent)
3226 || NILP (XWINDOW (o->parent)->hchild))
3228 make_dummy_parent (window);
3229 new = o->parent;
3230 XWINDOW (new)->hchild = window;
3234 /* Now we know that window's parent is a vertical combination
3235 if we are dividing vertically, or a horizontal combination
3236 if we are making side-by-side windows */
3238 windows_or_buffers_changed++;
3239 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
3240 new = make_window ();
3241 p = XWINDOW (new);
3243 p->frame = o->frame;
3244 p->next = o->next;
3245 if (!NILP (p->next))
3246 XWINDOW (p->next)->prev = new;
3247 p->prev = window;
3248 o->next = new;
3249 p->parent = o->parent;
3250 p->buffer = Qt;
3251 p->window_end_valid = Qnil;
3252 bzero (&p->last_cursor, sizeof p->last_cursor);
3254 /* Apportion the available frame space among the two new windows */
3256 if (!NILP (horflag))
3258 p->height = o->height;
3259 p->top = o->top;
3260 XSETFASTINT (p->width, XFASTINT (o->width) - size_int);
3261 XSETFASTINT (o->width, size_int);
3262 XSETFASTINT (p->left, XFASTINT (o->left) + size_int);
3264 else
3266 p->left = o->left;
3267 p->width = o->width;
3268 XSETFASTINT (p->height, XFASTINT (o->height) - size_int);
3269 XSETFASTINT (o->height, size_int);
3270 XSETFASTINT (p->top, XFASTINT (o->top) + size_int);
3273 /* Adjust glyph matrices. */
3274 adjust_glyphs (fo);
3275 Fset_window_buffer (new, o->buffer);
3276 return new;
3279 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
3280 "Make current window ARG lines bigger.\n\
3281 From program, optional second arg non-nil means grow sideways ARG columns.")
3282 (arg, side)
3283 register Lisp_Object arg, side;
3285 CHECK_NUMBER (arg, 0);
3286 enlarge_window (selected_window, XINT (arg), !NILP (side));
3288 if (! NILP (Vwindow_configuration_change_hook))
3289 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3291 return Qnil;
3294 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
3295 "Make current window ARG lines smaller.\n\
3296 From program, optional second arg non-nil means shrink sideways arg columns.")
3297 (arg, side)
3298 register Lisp_Object arg, side;
3300 CHECK_NUMBER (arg, 0);
3301 enlarge_window (selected_window, -XINT (arg), !NILP (side));
3303 if (! NILP (Vwindow_configuration_change_hook))
3304 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3306 return Qnil;
3310 window_height (window)
3311 Lisp_Object window;
3313 register struct window *p = XWINDOW (window);
3314 return XFASTINT (p->height);
3318 window_width (window)
3319 Lisp_Object window;
3321 register struct window *p = XWINDOW (window);
3322 return XFASTINT (p->width);
3326 #define CURBEG(w) \
3327 *(widthflag ? &(XWINDOW (w)->left) : &(XWINDOW (w)->top))
3329 #define CURSIZE(w) \
3330 *(widthflag ? &(XWINDOW (w)->width) : &(XWINDOW (w)->height))
3333 /* Enlarge selected_window by DELTA. WIDTHFLAG non-zero means
3334 increase its width. Siblings of the selected window are resized to
3335 fullfil the size request. If they become too small in the process,
3336 they will be deleted. */
3338 static void
3339 enlarge_window (window, delta, widthflag)
3340 Lisp_Object window;
3341 int delta, widthflag;
3343 Lisp_Object parent, next, prev;
3344 struct window *p;
3345 Lisp_Object *sizep;
3346 int maximum;
3347 int (*sizefun) P_ ((Lisp_Object))
3348 = widthflag ? window_width : window_height;
3349 void (*setsizefun) P_ ((Lisp_Object, int, int))
3350 = (widthflag ? set_window_width : set_window_height);
3352 /* Check values of window_min_width and window_min_height for
3353 validity. */
3354 check_min_window_sizes ();
3356 /* Give up if this window cannot be resized. */
3357 if (window_fixed_size_p (XWINDOW (window), widthflag, 1))
3358 error ("Window is not resizable");
3360 /* Find the parent of the selected window. */
3361 while (1)
3363 p = XWINDOW (window);
3364 parent = p->parent;
3366 if (NILP (parent))
3368 if (widthflag)
3369 error ("No other window to side of this one");
3370 break;
3373 if (widthflag
3374 ? !NILP (XWINDOW (parent)->hchild)
3375 : !NILP (XWINDOW (parent)->vchild))
3376 break;
3378 window = parent;
3381 sizep = &CURSIZE (window);
3384 register int maxdelta;
3386 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
3387 : !NILP (p->next) ? ((*sizefun) (p->next)
3388 - window_min_size (XWINDOW (p->next),
3389 widthflag, 0, 0))
3390 : !NILP (p->prev) ? ((*sizefun) (p->prev)
3391 - window_min_size (XWINDOW (p->prev),
3392 widthflag, 0, 0))
3393 /* This is a frame with only one window, a minibuffer-only
3394 or a minibufferless frame. */
3395 : (delta = 0));
3397 if (delta > maxdelta)
3398 /* This case traps trying to make the minibuffer
3399 the full frame, or make the only window aside from the
3400 minibuffer the full frame. */
3401 delta = maxdelta;
3404 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), widthflag, 0, 0))
3406 delete_window (window);
3407 return;
3410 if (delta == 0)
3411 return;
3413 /* Find the total we can get from other siblings. */
3414 maximum = 0;
3415 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
3416 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
3417 widthflag, 0, 0);
3418 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
3419 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
3420 widthflag, 0, 0);
3422 /* If we can get it all from them, do so. */
3423 if (delta <= maximum)
3425 Lisp_Object first_unaffected;
3426 Lisp_Object first_affected;
3427 int fixed_p;
3429 next = p->next;
3430 prev = p->prev;
3431 first_affected = window;
3432 /* Look at one sibling at a time,
3433 moving away from this window in both directions alternately,
3434 and take as much as we can get without deleting that sibling. */
3435 while (delta != 0 && (!NILP (next) || !NILP (prev)))
3437 if (! NILP (next))
3439 int this_one = ((*sizefun) (next)
3440 - window_min_size (XWINDOW (next),
3441 widthflag, 0, &fixed_p));
3442 if (!fixed_p)
3444 if (this_one > delta)
3445 this_one = delta;
3447 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
3448 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3450 delta -= this_one;
3453 next = XWINDOW (next)->next;
3456 if (delta == 0)
3457 break;
3459 if (! NILP (prev))
3461 int this_one = ((*sizefun) (prev)
3462 - window_min_size (XWINDOW (prev),
3463 widthflag, 0, &fixed_p));
3464 if (!fixed_p)
3466 if (this_one > delta)
3467 this_one = delta;
3469 first_affected = prev;
3471 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
3472 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3474 delta -= this_one;
3477 prev = XWINDOW (prev)->prev;
3481 xassert (delta == 0);
3483 /* Now recalculate the edge positions of all the windows affected,
3484 based on the new sizes. */
3485 first_unaffected = next;
3486 prev = first_affected;
3487 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
3488 prev = next, next = XWINDOW (next)->next)
3490 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
3491 /* This does not change size of NEXT,
3492 but it propagates the new top edge to its children */
3493 (*setsizefun) (next, (*sizefun) (next), 0);
3496 else
3498 register int delta1;
3499 register int opht = (*sizefun) (parent);
3501 /* If trying to grow this window to or beyond size of the parent,
3502 make delta1 so big that, on shrinking back down,
3503 all the siblings end up with less than one line and are deleted. */
3504 if (opht <= XINT (*sizep) + delta)
3505 delta1 = opht * opht * 2;
3506 else
3508 /* Otherwise, make delta1 just right so that if we add
3509 delta1 lines to this window and to the parent, and then
3510 shrink the parent back to its original size, the new
3511 proportional size of this window will increase by delta.
3513 The function size_window will compute the new height h'
3514 of the window from delta1 as:
3516 e = delta1/n
3517 x = delta1 - delta1/n * n for the 1st resizable child
3518 h' = h + e + x
3520 where n is the number of children that can be resized.
3521 We can ignore x by choosing a delta1 that is a multiple of
3522 n. We want the height of this window to come out as
3524 h' = h + delta
3526 So, delta1 must be
3528 h + e = h + delta
3529 delta1/n = delta
3530 delta1 = n * delta.
3532 The number of children n rquals the number of resizable
3533 children of this window + 1 because we know window itself
3534 is resizable (otherwise we would have signalled an error. */
3536 struct window *w = XWINDOW (window);
3537 Lisp_Object s;
3538 int n = 1;
3540 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
3541 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3542 ++n;
3543 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
3544 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3545 ++n;
3547 delta1 = n * delta;
3550 /* Add delta1 lines or columns to this window, and to the parent,
3551 keeping things consistent while not affecting siblings. */
3552 XSETINT (CURSIZE (parent), opht + delta1);
3553 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
3555 /* Squeeze out delta1 lines or columns from our parent,
3556 shriking this window and siblings proportionately.
3557 This brings parent back to correct size.
3558 Delta1 was calculated so this makes this window the desired size,
3559 taking it all out of the siblings. */
3560 (*setsizefun) (parent, opht, 0);
3563 XSETFASTINT (p->last_modified, 0);
3564 XSETFASTINT (p->last_overlay_modified, 0);
3566 /* Adjust glyph matrices. */
3567 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
3570 #undef CURBEG
3571 #undef CURSIZE
3575 /***********************************************************************
3576 Resizing Mini-Windows
3577 ***********************************************************************/
3579 static void shrink_window_lowest_first P_ ((struct window *, int));
3581 enum save_restore_action
3583 CHECK_ORIG_SIZES,
3584 SAVE_ORIG_SIZES,
3585 RESTORE_ORIG_SIZES
3588 static int save_restore_orig_size P_ ((struct window *,
3589 enum save_restore_action));
3591 /* Shrink windows rooted in window W to HEIGHT. Take the space needed
3592 from lowest windows first. */
3594 static void
3595 shrink_window_lowest_first (w, height)
3596 struct window *w;
3597 int height;
3599 struct window *c;
3600 Lisp_Object child;
3601 int old_height;
3603 xassert (!MINI_WINDOW_P (w));
3605 /* Set redisplay hints. */
3606 XSETFASTINT (w->last_modified, 0);
3607 XSETFASTINT (w->last_overlay_modified, 0);
3608 windows_or_buffers_changed++;
3609 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
3611 old_height = XFASTINT (w->height);
3612 XSETFASTINT (w->height, height);
3614 if (!NILP (w->hchild))
3616 for (child = w->hchild; !NILP (child); child = c->next)
3618 c = XWINDOW (child);
3619 c->top = w->top;
3620 shrink_window_lowest_first (c, height);
3623 else if (!NILP (w->vchild))
3625 Lisp_Object last_child;
3626 int delta = old_height - height;
3627 int last_top;
3629 last_child = Qnil;
3631 /* Find the last child. We are taking space from lowest windows
3632 first, so we iterate over children from the last child
3633 backwards. */
3634 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
3635 last_child = child;
3637 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
3638 for (child = last_child; delta && !NILP (child); child = c->prev)
3640 int this_one;
3642 c = XWINDOW (child);
3643 this_one = XFASTINT (c->height) - MIN_SAFE_WINDOW_HEIGHT;
3645 if (this_one > delta)
3646 this_one = delta;
3648 shrink_window_lowest_first (c, XFASTINT (c->height) - this_one);
3649 delta -= this_one;
3652 /* Compute new positions. */
3653 last_top = XINT (w->top);
3654 for (child = w->vchild; !NILP (child); child = c->next)
3656 c = XWINDOW (child);
3657 c->top = make_number (last_top);
3658 shrink_window_lowest_first (c, XFASTINT (c->height));
3659 last_top += XFASTINT (c->height);
3665 /* Save, restore, or check positions and sizes in the window tree
3666 rooted at W. ACTION says what to do.
3668 If ACTION is CHECK_ORIG_SIZES, check if orig_top and orig_height
3669 members are valid for all windows in the window tree. Value is
3670 non-zero if they are valid.
3672 If ACTION is SAVE_ORIG_SIZES, save members top and height in
3673 orig_top and orig_height for all windows in the tree.
3675 If ACTION is RESTORE_ORIG_SIZES, restore top and height from
3676 values stored in orig_top and orig_height for all windows. */
3678 static int
3679 save_restore_orig_size (w, action)
3680 struct window *w;
3681 enum save_restore_action action;
3683 int success_p = 1;
3685 while (w)
3687 if (!NILP (w->hchild))
3689 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
3690 success_p = 0;
3692 else if (!NILP (w->vchild))
3694 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
3695 success_p = 0;
3698 switch (action)
3700 case CHECK_ORIG_SIZES:
3701 if (!INTEGERP (w->orig_top) || !INTEGERP (w->orig_height))
3702 return 0;
3703 break;
3705 case SAVE_ORIG_SIZES:
3706 w->orig_top = w->top;
3707 w->orig_height = w->height;
3708 XSETFASTINT (w->last_modified, 0);
3709 XSETFASTINT (w->last_overlay_modified, 0);
3710 break;
3712 case RESTORE_ORIG_SIZES:
3713 xassert (INTEGERP (w->orig_top) && INTEGERP (w->orig_height));
3714 w->top = w->orig_top;
3715 w->height = w->orig_height;
3716 w->orig_height = w->orig_top = Qnil;
3717 XSETFASTINT (w->last_modified, 0);
3718 XSETFASTINT (w->last_overlay_modified, 0);
3719 break;
3721 default:
3722 abort ();
3725 w = NILP (w->next) ? NULL : XWINDOW (w->next);
3728 return success_p;
3732 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
3733 without deleting other windows. */
3735 void
3736 grow_mini_window (w, delta)
3737 struct window *w;
3738 int delta;
3740 struct frame *f = XFRAME (w->frame);
3741 struct window *root;
3743 xassert (MINI_WINDOW_P (w));
3744 xassert (delta >= 0);
3746 /* Check values of window_min_width and window_min_height for
3747 validity. */
3748 check_min_window_sizes ();
3750 /* Compute how much we can enlarge the mini-window without deleting
3751 other windows. */
3752 root = XWINDOW (FRAME_ROOT_WINDOW (f));
3753 if (delta)
3755 int min_height = window_min_size (root, 0, 0, 0);
3756 if (XFASTINT (root->height) - delta < min_height)
3757 delta = XFASTINT (root->height) - min_height;
3760 if (delta)
3762 /* Save original window sizes and positions, if not already done. */
3763 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
3764 save_restore_orig_size (root, SAVE_ORIG_SIZES);
3766 /* Shrink other windows. */
3767 shrink_window_lowest_first (root, XFASTINT (root->height) - delta);
3769 /* Grow the mini-window. */
3770 w->top = make_number (XFASTINT (root->top) + XFASTINT (root->height));
3771 w->height = make_number (XFASTINT (w->height) + delta);
3772 XSETFASTINT (w->last_modified, 0);
3773 XSETFASTINT (w->last_overlay_modified, 0);
3775 adjust_glyphs (f);
3780 /* Shrink mini-window W. If there is recorded info about window sizes
3781 before a call to grow_mini_window, restore recorded window sizes.
3782 Otherwise, if the mini-window is higher than 1 line, resize it to 1
3783 line. */
3785 void
3786 shrink_mini_window (w)
3787 struct window *w;
3789 struct frame *f = XFRAME (w->frame);
3790 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
3792 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
3794 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
3795 adjust_glyphs (f);
3796 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3797 windows_or_buffers_changed = 1;
3799 else if (XFASTINT (w->height) > 1)
3801 Lisp_Object window;
3802 XSETWINDOW (window, w);
3803 enlarge_window (window, 1 - XFASTINT (w->height), 0);
3809 /* Mark window cursors off for all windows in the window tree rooted
3810 at W by setting their phys_cursor_on_p flag to zero. Called from
3811 xterm.c, e.g. when a frame is cleared and thereby all cursors on
3812 the frame are cleared. */
3814 void
3815 mark_window_cursors_off (w)
3816 struct window *w;
3818 while (w)
3820 if (!NILP (w->hchild))
3821 mark_window_cursors_off (XWINDOW (w->hchild));
3822 else if (!NILP (w->vchild))
3823 mark_window_cursors_off (XWINDOW (w->vchild));
3824 else
3825 w->phys_cursor_on_p = 0;
3827 w = NILP (w->next) ? 0 : XWINDOW (w->next);
3832 /* Return number of lines of text (not counting mode line) in W. */
3835 window_internal_height (w)
3836 struct window *w;
3838 int ht = XFASTINT (w->height);
3840 if (MINI_WINDOW_P (w))
3841 return ht;
3843 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
3844 || !NILP (w->next) || !NILP (w->prev)
3845 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
3846 return ht - 1;
3848 return ht;
3852 /* Return the number of columns in W.
3853 Don't count columns occupied by scroll bars or the vertical bar
3854 separating W from the sibling to its right. */
3857 window_internal_width (w)
3858 struct window *w;
3860 struct frame *f = XFRAME (WINDOW_FRAME (w));
3861 int width = XINT (w->width);
3863 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3864 /* Scroll bars occupy a few columns. */
3865 width -= FRAME_SCROLL_BAR_COLS (f);
3866 else if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
3867 /* The column of `|' characters separating side-by-side windows
3868 occupies one column only. */
3869 width -= 1;
3871 /* On window-systems, areas to the left and right of the window
3872 are used to display bitmaps there. */
3873 if (FRAME_WINDOW_P (f))
3874 width -= FRAME_FLAGS_AREA_COLS (f);
3876 return width;
3880 /************************************************************************
3881 Window Scrolling
3882 ***********************************************************************/
3884 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
3885 one screen-full, which is defined as the height of the window minus
3886 next_screen_context_lines. If WHOLE is zero, scroll up N lines
3887 instead. Negative values of N mean scroll down. NOERROR non-zero
3888 means don't signal an error if we try to move over BEGV or ZV,
3889 respectively. */
3891 static void
3892 window_scroll (window, n, whole, noerror)
3893 Lisp_Object window;
3894 int n;
3895 int whole;
3896 int noerror;
3898 /* If we must, use the pixel-based version which is much slower than
3899 the line-based one but can handle varying line heights. */
3900 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
3901 window_scroll_pixel_based (window, n, whole, noerror);
3902 else
3903 window_scroll_line_based (window, n, whole, noerror);
3907 /* Implementation of window_scroll that works based on pixel line
3908 heights. See the comment of window_scroll for parameter
3909 descriptions. */
3911 static void
3912 window_scroll_pixel_based (window, n, whole, noerror)
3913 Lisp_Object window;
3914 int n;
3915 int whole;
3916 int noerror;
3918 struct it it;
3919 struct window *w = XWINDOW (window);
3920 struct text_pos start;
3921 Lisp_Object tem;
3922 int this_scroll_margin;
3923 int preserve_y;
3924 /* True if we fiddled the window vscroll field without really scrolling. */
3925 int vscrolled = 0;
3927 SET_TEXT_POS_FROM_MARKER (start, w->start);
3929 /* If PT is not visible in WINDOW, move back one half of
3930 the screen. */
3931 tem = Fpos_visible_in_window_p (make_number (PT), window, Qnil);
3932 if (NILP (tem))
3934 /* Move backward half the height of the window. Performance note:
3935 vmotion used here is about 10% faster, but would give wrong
3936 results for variable height lines. */
3937 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3938 it.current_y = it.last_visible_y;
3939 move_it_vertically (&it, -it.last_visible_y / 2);
3941 /* The function move_iterator_vertically may move over more than
3942 the specified y-distance. If it->w is small, e.g. a
3943 mini-buffer window, we may end up in front of the window's
3944 display area. This is the case when Start displaying at the
3945 start of the line containing PT in this case. */
3946 if (it.current_y <= 0)
3948 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3949 move_it_vertically (&it, 0);
3950 it.current_y = 0;
3953 start = it.current.pos;
3956 /* If scroll_preserve_screen_position is non-zero, we try to set
3957 point in the same window line as it is now, so get that line. */
3958 if (!NILP (Vscroll_preserve_screen_position))
3960 start_display (&it, w, start);
3961 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
3962 preserve_y = it.current_y;
3964 else
3965 preserve_y = -1;
3967 /* Move iterator it from start the specified distance forward or
3968 backward. The result is the new window start. */
3969 start_display (&it, w, start);
3970 if (whole)
3972 int screen_full = (it.last_visible_y
3973 - next_screen_context_lines * CANON_Y_UNIT (it.f));
3974 int direction = n < 0 ? -1 : 1;
3975 int dy = direction * screen_full;
3977 /* Note that move_it_vertically always moves the iterator to the
3978 start of a line. So, if the last line doesn't have a newline,
3979 we would end up at the start of the line ending at ZV. */
3980 if (dy <= 0)
3981 move_it_vertically_backward (&it, -dy);
3982 else if (dy > 0)
3983 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
3984 MOVE_TO_POS | MOVE_TO_Y);
3986 else
3987 move_it_by_lines (&it, n, 1);
3989 /* End if we end up at ZV or BEGV. */
3990 if ((n > 0 && IT_CHARPOS (it) == ZV)
3991 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
3993 if (IT_CHARPOS (it) == ZV)
3995 if (it.current_y + it.max_ascent + it.max_descent
3996 > it.last_visible_y)
3997 /* The last line was only partially visible, make it fully
3998 visible. */
3999 w->vscroll = (it.last_visible_y
4000 - it.current_y + it.max_ascent + it.max_descent);
4001 else if (noerror)
4002 return;
4003 else
4004 Fsignal (Qend_of_buffer, Qnil);
4006 else
4008 if (w->vscroll != 0)
4009 /* The first line was only partially visible, make it fully
4010 visible. */
4011 w->vscroll = 0;
4012 else if (noerror)
4013 return;
4014 else
4015 Fsignal (Qbeginning_of_buffer, Qnil);
4018 /* If control gets here, then we vscrolled. */
4020 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
4022 /* Don't try to change the window start below. */
4023 vscrolled = 1;
4026 if (! vscrolled)
4028 /* Set the window start, and set up the window for redisplay. */
4029 set_marker_restricted (w->start, make_number (IT_CHARPOS (it)),
4030 w->buffer);
4031 w->start_at_line_beg = Fbolp ();
4032 w->update_mode_line = Qt;
4033 XSETFASTINT (w->last_modified, 0);
4034 XSETFASTINT (w->last_overlay_modified, 0);
4035 /* Set force_start so that redisplay_window will run the
4036 window-scroll-functions. */
4037 w->force_start = Qt;
4040 it.current_y = it.vpos = 0;
4042 /* Preserve the screen position if we must. */
4043 if (preserve_y >= 0)
4045 move_it_to (&it, -1, -1, preserve_y, -1, MOVE_TO_Y);
4046 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4048 else
4050 /* Move PT out of scroll margins. */
4051 this_scroll_margin = max (0, scroll_margin);
4052 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
4053 this_scroll_margin *= CANON_Y_UNIT (it.f);
4055 if (n > 0)
4057 /* We moved the window start towards ZV, so PT may be now
4058 in the scroll margin at the top. */
4059 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4060 while (it.current_y < this_scroll_margin)
4061 move_it_by_lines (&it, 1, 1);
4062 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4064 else if (n < 0)
4066 int charpos, bytepos;
4068 /* We moved the window start towards BEGV, so PT may be now
4069 in the scroll margin at the bottom. */
4070 move_it_to (&it, PT, -1,
4071 it.last_visible_y - this_scroll_margin - 1, -1,
4072 MOVE_TO_POS | MOVE_TO_Y);
4074 /* Save our position, in case it's correct. */
4075 charpos = IT_CHARPOS (it);
4076 bytepos = IT_BYTEPOS (it);
4078 /* See if point is on a partially visible line at the end. */
4079 move_it_by_lines (&it, 1, 1);
4080 if (it.current_y > it.last_visible_y)
4081 /* The last line was only partially visible, so back up two
4082 lines to make sure we're on a fully visible line. */
4084 move_it_by_lines (&it, -2, 0);
4085 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4087 else
4088 /* No, the position we saved is OK, so use it. */
4089 SET_PT_BOTH (charpos, bytepos);
4095 /* Implementation of window_scroll that works based on screen lines.
4096 See the comment of window_scroll for parameter descriptions. */
4098 static void
4099 window_scroll_line_based (window, n, whole, noerror)
4100 Lisp_Object window;
4101 int n;
4102 int whole;
4103 int noerror;
4105 register struct window *w = XWINDOW (window);
4106 register int opoint = PT, opoint_byte = PT_BYTE;
4107 register int pos, pos_byte;
4108 register int ht = window_internal_height (w);
4109 register Lisp_Object tem;
4110 int lose;
4111 Lisp_Object bolp;
4112 int startpos;
4113 struct position posit;
4114 int original_vpos;
4116 startpos = marker_position (w->start);
4118 posit = *compute_motion (startpos, 0, 0, 0,
4119 PT, ht, 0,
4120 window_internal_width (w), XINT (w->hscroll),
4121 0, w);
4122 original_vpos = posit.vpos;
4124 XSETFASTINT (tem, PT);
4125 tem = Fpos_visible_in_window_p (tem, window, Qnil);
4127 if (NILP (tem))
4129 Fvertical_motion (make_number (- (ht / 2)), window);
4130 startpos = PT;
4133 SET_PT (startpos);
4134 lose = n < 0 && PT == BEGV;
4135 Fvertical_motion (make_number (n), window);
4136 pos = PT;
4137 pos_byte = PT_BYTE;
4138 bolp = Fbolp ();
4139 SET_PT_BOTH (opoint, opoint_byte);
4141 if (lose)
4143 if (noerror)
4144 return;
4145 else
4146 Fsignal (Qbeginning_of_buffer, Qnil);
4149 if (pos < ZV)
4151 int this_scroll_margin = scroll_margin;
4153 /* Don't use a scroll margin that is negative or too large. */
4154 if (this_scroll_margin < 0)
4155 this_scroll_margin = 0;
4157 if (XINT (w->height) < 4 * scroll_margin)
4158 this_scroll_margin = XINT (w->height) / 4;
4160 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
4161 w->start_at_line_beg = bolp;
4162 w->update_mode_line = Qt;
4163 XSETFASTINT (w->last_modified, 0);
4164 XSETFASTINT (w->last_overlay_modified, 0);
4165 /* Set force_start so that redisplay_window will run
4166 the window-scroll-functions. */
4167 w->force_start = Qt;
4169 if (whole && !NILP (Vscroll_preserve_screen_position))
4171 SET_PT_BOTH (pos, pos_byte);
4172 Fvertical_motion (make_number (original_vpos), window);
4174 /* If we scrolled forward, put point enough lines down
4175 that it is outside the scroll margin. */
4176 else if (n > 0)
4178 int top_margin;
4180 if (this_scroll_margin > 0)
4182 SET_PT_BOTH (pos, pos_byte);
4183 Fvertical_motion (make_number (this_scroll_margin), window);
4184 top_margin = PT;
4186 else
4187 top_margin = pos;
4189 if (top_margin <= opoint)
4190 SET_PT_BOTH (opoint, opoint_byte);
4191 else if (!NILP (Vscroll_preserve_screen_position))
4193 SET_PT_BOTH (pos, pos_byte);
4194 Fvertical_motion (make_number (original_vpos), window);
4196 else
4197 SET_PT (top_margin);
4199 else if (n < 0)
4201 int bottom_margin;
4203 /* If we scrolled backward, put point near the end of the window
4204 but not within the scroll margin. */
4205 SET_PT_BOTH (pos, pos_byte);
4206 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
4207 if (XFASTINT (tem) == ht - this_scroll_margin)
4208 bottom_margin = PT;
4209 else
4210 bottom_margin = PT + 1;
4212 if (bottom_margin > opoint)
4213 SET_PT_BOTH (opoint, opoint_byte);
4214 else
4216 if (!NILP (Vscroll_preserve_screen_position))
4218 SET_PT_BOTH (pos, pos_byte);
4219 Fvertical_motion (make_number (original_vpos), window);
4221 else
4222 Fvertical_motion (make_number (-1), window);
4226 else
4228 if (noerror)
4229 return;
4230 else
4231 Fsignal (Qend_of_buffer, Qnil);
4236 /* Scroll selected_window up or down. If N is nil, scroll a
4237 screen-full which is defined as the height of the window minus
4238 next_screen_context_lines. If N is the symbol `-', scroll.
4239 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4240 up. This is the guts of Fscroll_up and Fscroll_down. */
4242 static void
4243 scroll_command (n, direction)
4244 Lisp_Object n;
4245 int direction;
4247 register int defalt;
4248 int count = specpdl_ptr - specpdl;
4250 xassert (abs (direction) == 1);
4252 /* If selected window's buffer isn't current, make it current for
4253 the moment. But don't screw up if window_scroll gets an error. */
4254 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
4256 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4257 Fset_buffer (XWINDOW (selected_window)->buffer);
4259 /* Make redisplay consider other windows than just selected_window. */
4260 ++windows_or_buffers_changed;
4263 defalt = (window_internal_height (XWINDOW (selected_window))
4264 - next_screen_context_lines);
4265 defalt = direction * (defalt < 1 ? 1 : defalt);
4267 if (NILP (n))
4268 window_scroll (selected_window, defalt, 1, 0);
4269 else if (EQ (n, Qminus))
4270 window_scroll (selected_window, - defalt, 1, 0);
4271 else
4273 n = Fprefix_numeric_value (n);
4274 window_scroll (selected_window, XINT (n) * direction, 0, 0);
4277 unbind_to (count, Qnil);
4280 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
4281 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
4282 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4283 Negative ARG means scroll downward.\n\
4284 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4285 When calling from a program, supply as argument a number, nil, or `-'.")
4286 (arg)
4287 Lisp_Object arg;
4289 scroll_command (arg, 1);
4290 return Qnil;
4293 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
4294 "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\
4295 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4296 Negative ARG means scroll upward.\n\
4297 If ARG is the atom `-', scroll upward by nearly full screen.\n\
4298 When calling from a program, supply as argument a number, nil, or `-'.")
4299 (arg)
4300 Lisp_Object arg;
4302 scroll_command (arg, -1);
4303 return Qnil;
4306 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4307 "Return the other window for \"other window scroll\" commands.\n\
4308 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4309 specifies the window.\n\
4310 If `other-window-scroll-buffer' is non-nil, a window\n\
4311 showing that buffer is used.")
4314 Lisp_Object window;
4316 if (MINI_WINDOW_P (XWINDOW (selected_window))
4317 && !NILP (Vminibuf_scroll_window))
4318 window = Vminibuf_scroll_window;
4319 /* If buffer is specified, scroll that buffer. */
4320 else if (!NILP (Vother_window_scroll_buffer))
4322 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
4323 if (NILP (window))
4324 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
4326 else
4328 /* Nothing specified; look for a neighboring window on the same
4329 frame. */
4330 window = Fnext_window (selected_window, Qnil, Qnil);
4332 if (EQ (window, selected_window))
4333 /* That didn't get us anywhere; look for a window on another
4334 visible frame. */
4336 window = Fnext_window (window, Qnil, Qt);
4337 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4338 && ! EQ (window, selected_window));
4341 CHECK_LIVE_WINDOW (window, 0);
4343 if (EQ (window, selected_window))
4344 error ("There is no other window");
4346 return window;
4349 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4350 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
4351 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4352 The next window is the one below the current one; or the one at the top\n\
4353 if the current one is at the bottom. Negative ARG means scroll downward.\n\
4354 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4355 When calling from a program, supply as argument a number, nil, or `-'.\n\
4357 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4358 specifies the window to scroll.\n\
4359 If `other-window-scroll-buffer' is non-nil, scroll the window\n\
4360 showing that buffer, popping the buffer up if necessary.")
4361 (arg)
4362 register Lisp_Object arg;
4364 register Lisp_Object window;
4365 register int defalt;
4366 register struct window *w;
4367 register int count = specpdl_ptr - specpdl;
4369 window = Fother_window_for_scrolling ();
4371 w = XWINDOW (window);
4372 defalt = window_internal_height (w) - next_screen_context_lines;
4373 if (defalt < 1) defalt = 1;
4375 /* Don't screw up if window_scroll gets an error. */
4376 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4377 ++windows_or_buffers_changed;
4379 Fset_buffer (w->buffer);
4380 SET_PT (marker_position (w->pointm));
4382 if (NILP (arg))
4383 window_scroll (window, defalt, 1, 1);
4384 else if (EQ (arg, Qminus))
4385 window_scroll (window, -defalt, 1, 1);
4386 else
4388 if (CONSP (arg))
4389 arg = Fcar (arg);
4390 CHECK_NUMBER (arg, 0);
4391 window_scroll (window, XINT (arg), 0, 1);
4394 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
4395 unbind_to (count, Qnil);
4397 return Qnil;
4400 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
4401 "Scroll selected window display ARG columns left.\n\
4402 Default for ARG is window width minus 2.")
4403 (arg)
4404 register Lisp_Object arg;
4407 if (NILP (arg))
4408 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
4409 else
4410 arg = Fprefix_numeric_value (arg);
4412 return
4413 Fset_window_hscroll (selected_window,
4414 make_number (XINT (XWINDOW (selected_window)->hscroll)
4415 + XINT (arg)));
4418 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
4419 "Scroll selected window display ARG columns right.\n\
4420 Default for ARG is window width minus 2.")
4421 (arg)
4422 register Lisp_Object arg;
4424 if (NILP (arg))
4425 XSETFASTINT (arg, window_internal_width (XWINDOW (selected_window)) - 2);
4426 else
4427 arg = Fprefix_numeric_value (arg);
4429 return
4430 Fset_window_hscroll (selected_window,
4431 make_number (XINT (XWINDOW (selected_window)->hscroll)
4432 - XINT (arg)));
4435 /* Value is the number of lines actually displayed in window W,
4436 as opposed to its height. */
4438 static int
4439 displayed_window_lines (w)
4440 struct window *w;
4442 struct it it;
4443 struct text_pos start;
4444 int height = window_box_height (w);
4445 struct buffer *old_buffer;
4446 int bottom_y;
4448 if (XBUFFER (w->buffer) != current_buffer)
4450 old_buffer = current_buffer;
4451 set_buffer_internal (XBUFFER (w->buffer));
4453 else
4454 old_buffer = NULL;
4456 SET_TEXT_POS_FROM_MARKER (start, w->start);
4457 start_display (&it, w, start);
4458 move_it_vertically (&it, height);
4460 if (old_buffer)
4461 set_buffer_internal (old_buffer);
4463 bottom_y = it.current_y + it.max_ascent + it.max_descent;
4465 if (bottom_y > it.current_y && bottom_y <= it.last_visible_y)
4466 /* Hit a line without a terminating newline. */
4467 it.vpos++;
4469 /* Add in empty lines at the bottom of the window. */
4470 if (bottom_y < height)
4472 struct frame *f = XFRAME (w->frame);
4473 int rest = height - bottom_y;
4474 int lines = rest / CANON_Y_UNIT (f);
4475 it.vpos += lines;
4478 return it.vpos;
4482 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
4483 "Center point in window and redisplay frame.\n\
4484 With prefix argument ARG, recenter putting point on screen line ARG\n\
4485 relative to the current window. If ARG is negative, it counts up from the\n\
4486 bottom of the window. (ARG should be less than the height of the window.)\n\
4488 If ARG is omitted or nil, erase the entire frame and then\n\
4489 redraw with point in the center of the current window.\n\
4490 Just C-u as prefix means put point in the center of the window\n\
4491 and redisplay normally--don't erase and redraw the frame.")
4492 (arg)
4493 register Lisp_Object arg;
4495 struct window *w = XWINDOW (selected_window);
4496 struct buffer *buf = XBUFFER (w->buffer);
4497 struct buffer *obuf = current_buffer;
4498 int center_p = 0;
4499 int charpos, bytepos;
4501 if (NILP (arg))
4503 int i;
4505 /* Invalidate pixel data calculated for all compositions. */
4506 for (i = 0; i < n_compositions; i++)
4507 composition_table[i]->font = NULL;
4509 Fredraw_frame (w->frame);
4510 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
4511 center_p = 1;
4513 else if (CONSP (arg)) /* Just C-u. */
4514 center_p = 1;
4515 else
4517 arg = Fprefix_numeric_value (arg);
4518 CHECK_NUMBER (arg, 0);
4521 set_buffer_internal (buf);
4523 /* Handle centering on a gfaphical frame specially. Such frames can
4524 have variable-height lines and centering point on the basis of
4525 line counts would lead to strange effects. */
4526 if (center_p && FRAME_WINDOW_P (XFRAME (w->frame)))
4528 struct it it;
4529 struct text_pos pt;
4531 SET_TEXT_POS (pt, PT, PT_BYTE);
4532 start_display (&it, w, pt);
4533 move_it_vertically (&it, - it.last_visible_y / 2);
4534 charpos = IT_CHARPOS (it);
4535 bytepos = IT_BYTEPOS (it);
4537 else
4539 struct position pos;
4541 if (center_p)
4543 int ht = displayed_window_lines (w);
4544 arg = make_number (ht / 2);
4546 else if (XINT (arg) < 0)
4548 int ht = displayed_window_lines (w);
4549 XSETINT (arg, XINT (arg) + ht);
4552 pos = *vmotion (PT, - XINT (arg), w);
4553 charpos = pos.bufpos;
4554 bytepos = pos.bytepos;
4557 /* Set the new window start. */
4558 set_marker_both (w->start, w->buffer, charpos, bytepos);
4559 w->window_end_valid = Qnil;
4560 w->force_start = Qt;
4561 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
4562 w->start_at_line_beg = Qt;
4563 else
4564 w->start_at_line_beg = Qnil;
4566 set_buffer_internal (obuf);
4567 return Qnil;
4571 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
4572 0, 1, 0,
4573 "Return the height in lines of the text display area of WINDOW.\n\
4574 This doesn't include the mode-line (or header-line if any) or any\n\
4575 partial-height lines in the text display area.")
4576 (window)
4577 Lisp_Object window;
4579 struct window *w = decode_window (window);
4580 int pixel_height = window_box_height (w);
4581 int line_height = pixel_height / CANON_Y_UNIT (XFRAME (w->frame));
4582 return make_number (line_height);
4587 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
4588 1, 1, "P",
4589 "Position point relative to window.\n\
4590 With no argument, position point at center of window.\n\
4591 An argument specifies vertical position within the window;\n\
4592 zero means top of window, negative means relative to bottom of window.")
4593 (arg)
4594 Lisp_Object arg;
4596 struct window *w = XWINDOW (selected_window);
4597 int lines, start;
4598 Lisp_Object window;
4600 window = selected_window;
4601 start = marker_position (w->start);
4602 if (start < BEGV || start > ZV)
4604 int height = window_internal_height (w);
4605 Fvertical_motion (make_number (- (height / 2)), window);
4606 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
4607 w->start_at_line_beg = Fbolp ();
4608 w->force_start = Qt;
4610 else
4611 Fgoto_char (w->start);
4613 lines = displayed_window_lines (w);
4614 if (NILP (arg))
4615 XSETFASTINT (arg, lines / 2);
4616 else
4618 arg = Fprefix_numeric_value (arg);
4619 if (XINT (arg) < 0)
4620 XSETINT (arg, XINT (arg) + lines);
4623 if (w->vscroll)
4624 /* Skip past a partially visible first line. */
4625 XSETINT (arg, XINT (arg) + 1);
4627 return Fvertical_motion (arg, window);
4632 /***********************************************************************
4633 Window Configuration
4634 ***********************************************************************/
4636 struct save_window_data
4638 EMACS_INT size_from_Lisp_Vector_struct;
4639 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4640 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
4641 Lisp_Object frame_tool_bar_lines;
4642 Lisp_Object selected_frame;
4643 Lisp_Object current_window;
4644 Lisp_Object current_buffer;
4645 Lisp_Object minibuf_scroll_window;
4646 Lisp_Object root_window;
4647 Lisp_Object focus_frame;
4648 /* Record the values of window-min-width and window-min-height
4649 so that window sizes remain consistent with them. */
4650 Lisp_Object min_width, min_height;
4651 /* A vector, each of whose elements is a struct saved_window
4652 for one window. */
4653 Lisp_Object saved_windows;
4656 /* This is saved as a Lisp_Vector */
4657 struct saved_window
4659 /* these first two must agree with struct Lisp_Vector in lisp.h */
4660 EMACS_INT size_from_Lisp_Vector_struct;
4661 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4663 Lisp_Object window;
4664 Lisp_Object buffer, start, pointm, mark;
4665 Lisp_Object left, top, width, height, hscroll, min_hscroll;
4666 Lisp_Object parent, prev;
4667 Lisp_Object start_at_line_beg;
4668 Lisp_Object display_table;
4669 Lisp_Object orig_top, orig_height;
4672 #define SAVED_WINDOW_VECTOR_SIZE 17 /* Arg to Fmake_vector */
4674 #define SAVED_WINDOW_N(swv,n) \
4675 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
4677 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
4678 "Return t if OBJECT is a window-configuration object.")
4679 (object)
4680 Lisp_Object object;
4682 if (WINDOW_CONFIGURATIONP (object))
4683 return Qt;
4684 return Qnil;
4687 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
4688 "Return the frame that CONFIG, a window-configuration object, is about.")
4689 (config)
4690 Lisp_Object config;
4692 register struct save_window_data *data;
4693 struct Lisp_Vector *saved_windows;
4695 if (! WINDOW_CONFIGURATIONP (config))
4696 wrong_type_argument (Qwindow_configuration_p, config);
4698 data = (struct save_window_data *) XVECTOR (config);
4699 saved_windows = XVECTOR (data->saved_windows);
4700 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4703 DEFUN ("set-window-configuration", Fset_window_configuration,
4704 Sset_window_configuration, 1, 1, 0,
4705 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
4706 CONFIGURATION must be a value previously returned\n\
4707 by `current-window-configuration' (which see).\n\
4708 If CONFIGURATION was made from a frame that is now deleted,\n\
4709 only frame-independent values can be restored. In this case,\n\
4710 the return value is nil. Otherwise the value is t.")
4711 (configuration)
4712 Lisp_Object configuration;
4714 register struct save_window_data *data;
4715 struct Lisp_Vector *saved_windows;
4716 Lisp_Object new_current_buffer;
4717 Lisp_Object frame;
4718 FRAME_PTR f;
4719 int old_point = -1;
4721 while (!WINDOW_CONFIGURATIONP (configuration))
4722 wrong_type_argument (Qwindow_configuration_p, configuration);
4724 data = (struct save_window_data *) XVECTOR (configuration);
4725 saved_windows = XVECTOR (data->saved_windows);
4727 new_current_buffer = data->current_buffer;
4728 if (NILP (XBUFFER (new_current_buffer)->name))
4729 new_current_buffer = Qnil;
4730 else
4732 if (XBUFFER (new_current_buffer) == current_buffer)
4733 old_point = PT;
4736 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4737 f = XFRAME (frame);
4739 /* If f is a dead frame, don't bother rebuilding its window tree.
4740 However, there is other stuff we should still try to do below. */
4741 if (FRAME_LIVE_P (f))
4743 register struct window *w;
4744 register struct saved_window *p;
4745 struct window *root_window;
4746 struct window **leaf_windows;
4747 int n_leaf_windows;
4748 int k, i, n;
4750 /* If the frame has been resized since this window configuration was
4751 made, we change the frame to the size specified in the
4752 configuration, restore the configuration, and then resize it
4753 back. We keep track of the prevailing height in these variables. */
4754 int previous_frame_height = FRAME_HEIGHT (f);
4755 int previous_frame_width = FRAME_WIDTH (f);
4756 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
4757 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
4759 /* The mouse highlighting code could get screwed up
4760 if it runs during this. */
4761 BLOCK_INPUT;
4763 if (XFASTINT (data->frame_height) != previous_frame_height
4764 || XFASTINT (data->frame_width) != previous_frame_width)
4765 change_frame_size (f, XFASTINT (data->frame_height),
4766 XFASTINT (data->frame_width), 0, 0, 0);
4767 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4768 if (XFASTINT (data->frame_menu_bar_lines)
4769 != previous_frame_menu_bar_lines)
4770 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
4771 #ifdef HAVE_WINDOW_SYSTEM
4772 if (XFASTINT (data->frame_tool_bar_lines)
4773 != previous_frame_tool_bar_lines)
4774 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
4775 #endif
4776 #endif
4778 /* "Swap out" point from the selected window
4779 into its buffer. We do this now, before
4780 restoring the window contents, and prevent it from
4781 being done later on when we select a new window. */
4782 if (! NILP (XWINDOW (selected_window)->buffer))
4784 w = XWINDOW (selected_window);
4785 set_marker_both (w->pointm,
4786 w->buffer,
4787 BUF_PT (XBUFFER (w->buffer)),
4788 BUF_PT_BYTE (XBUFFER (w->buffer)));
4791 windows_or_buffers_changed++;
4792 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4794 /* Problem: Freeing all matrices and later allocating them again
4795 is a serious redisplay flickering problem. What we would
4796 really like to do is to free only those matrices not reused
4797 below. */
4798 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
4799 leaf_windows
4800 = (struct window **) alloca (count_windows (root_window)
4801 * sizeof (struct window *));
4802 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
4804 /* Temporarily avoid any problems with windows that are smaller
4805 than they are supposed to be. */
4806 window_min_height = 1;
4807 window_min_width = 1;
4809 /* Kludge Alert!
4810 Mark all windows now on frame as "deleted".
4811 Restoring the new configuration "undeletes" any that are in it.
4813 Save their current buffers in their height fields, since we may
4814 need it later, if a buffer saved in the configuration is now
4815 dead. */
4816 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
4818 for (k = 0; k < saved_windows->size; k++)
4820 p = SAVED_WINDOW_N (saved_windows, k);
4821 w = XWINDOW (p->window);
4822 w->next = Qnil;
4824 if (!NILP (p->parent))
4825 w->parent = SAVED_WINDOW_N (saved_windows,
4826 XFASTINT (p->parent))->window;
4827 else
4828 w->parent = Qnil;
4830 if (!NILP (p->prev))
4832 w->prev = SAVED_WINDOW_N (saved_windows,
4833 XFASTINT (p->prev))->window;
4834 XWINDOW (w->prev)->next = p->window;
4836 else
4838 w->prev = Qnil;
4839 if (!NILP (w->parent))
4841 if (EQ (p->width, XWINDOW (w->parent)->width))
4843 XWINDOW (w->parent)->vchild = p->window;
4844 XWINDOW (w->parent)->hchild = Qnil;
4846 else
4848 XWINDOW (w->parent)->hchild = p->window;
4849 XWINDOW (w->parent)->vchild = Qnil;
4854 /* If we squirreled away the buffer in the window's height,
4855 restore it now. */
4856 if (BUFFERP (w->height))
4857 w->buffer = w->height;
4858 w->left = p->left;
4859 w->top = p->top;
4860 w->width = p->width;
4861 w->height = p->height;
4862 w->hscroll = p->hscroll;
4863 w->min_hscroll = p->min_hscroll;
4864 w->display_table = p->display_table;
4865 w->orig_top = p->orig_top;
4866 w->orig_height = p->orig_height;
4867 XSETFASTINT (w->last_modified, 0);
4868 XSETFASTINT (w->last_overlay_modified, 0);
4870 /* Reinstall the saved buffer and pointers into it. */
4871 if (NILP (p->buffer))
4872 w->buffer = p->buffer;
4873 else
4875 if (!NILP (XBUFFER (p->buffer)->name))
4876 /* If saved buffer is alive, install it. */
4878 w->buffer = p->buffer;
4879 w->start_at_line_beg = p->start_at_line_beg;
4880 set_marker_restricted (w->start, p->start, w->buffer);
4881 set_marker_restricted (w->pointm, p->pointm, w->buffer);
4882 Fset_marker (XBUFFER (w->buffer)->mark,
4883 p->mark, w->buffer);
4885 /* As documented in Fcurrent_window_configuration, don't
4886 save the location of point in the buffer which was current
4887 when the window configuration was recorded. */
4888 if (!EQ (p->buffer, new_current_buffer)
4889 && XBUFFER (p->buffer) == current_buffer)
4890 Fgoto_char (w->pointm);
4892 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
4893 /* Else unless window has a live buffer, get one. */
4895 w->buffer = Fcdr (Fcar (Vbuffer_alist));
4896 /* This will set the markers to beginning of visible
4897 range. */
4898 set_marker_restricted (w->start, make_number (0), w->buffer);
4899 set_marker_restricted (w->pointm, make_number (0),w->buffer);
4900 w->start_at_line_beg = Qt;
4902 else
4903 /* Keeping window's old buffer; make sure the markers
4904 are real. */
4906 /* Set window markers at start of visible range. */
4907 if (XMARKER (w->start)->buffer == 0)
4908 set_marker_restricted (w->start, make_number (0),
4909 w->buffer);
4910 if (XMARKER (w->pointm)->buffer == 0)
4911 set_marker_restricted_both (w->pointm, w->buffer,
4912 BUF_PT (XBUFFER (w->buffer)),
4913 BUF_PT_BYTE (XBUFFER (w->buffer)));
4914 w->start_at_line_beg = Qt;
4919 FRAME_ROOT_WINDOW (f) = data->root_window;
4920 /* Prevent "swapping out point" in the old selected window
4921 using the buffer that has been restored into it.
4922 That swapping out has already been done,
4923 near the beginning of this function. */
4924 selected_window = Qnil;
4925 Fselect_window (data->current_window);
4926 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
4927 = selected_window;
4929 if (NILP (data->focus_frame)
4930 || (FRAMEP (data->focus_frame)
4931 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
4932 Fredirect_frame_focus (frame, data->focus_frame);
4934 #if 0 /* I don't understand why this is needed, and it causes problems
4935 when the frame's old selected window has been deleted. */
4936 if (f != selected_frame && FRAME_WINDOW_P (f))
4937 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
4938 Qnil, 0);
4939 #endif
4941 /* Set the screen height to the value it had before this function. */
4942 if (previous_frame_height != FRAME_HEIGHT (f)
4943 || previous_frame_width != FRAME_WIDTH (f))
4944 change_frame_size (f, previous_frame_height, previous_frame_width,
4945 0, 0, 0);
4946 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4947 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
4948 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
4949 make_number (0));
4950 #ifdef HAVE_WINDOW_SYSTEM
4951 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
4952 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
4953 make_number (0));
4954 #endif
4955 #endif
4957 /* Now, free glyph matrices in windows that were not reused. */
4958 for (i = n = 0; i < n_leaf_windows; ++i)
4960 if (NILP (leaf_windows[i]->buffer))
4962 /* Assert it's not reused as a combination. */
4963 xassert (NILP (leaf_windows[i]->hchild)
4964 && NILP (leaf_windows[i]->vchild));
4965 free_window_matrices (leaf_windows[i]);
4967 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
4968 ++n;
4971 /* If more than one window shows the new and old current buffer,
4972 don't try to preserve point in that buffer. */
4973 if (old_point > 0 && n > 1)
4974 old_point = -1;
4976 adjust_glyphs (f);
4978 UNBLOCK_INPUT;
4980 /* Fselect_window will have made f the selected frame, so we
4981 reselect the proper frame here. Fhandle_switch_frame will change the
4982 selected window too, but that doesn't make the call to
4983 Fselect_window above totally superfluous; it still sets f's
4984 selected window. */
4985 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
4986 do_switch_frame (data->selected_frame, Qnil, 0);
4988 if (! NILP (Vwindow_configuration_change_hook)
4989 && ! NILP (Vrun_hooks))
4990 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4993 if (!NILP (new_current_buffer))
4995 Fset_buffer (new_current_buffer);
4997 /* If the buffer that is current now is the same
4998 that was current before setting the window configuration,
4999 don't alter its PT. */
5000 if (old_point >= 0)
5001 SET_PT (old_point);
5004 /* Restore the minimum heights recorded in the configuration. */
5005 window_min_height = XINT (data->min_height);
5006 window_min_width = XINT (data->min_width);
5008 Vminibuf_scroll_window = data->minibuf_scroll_window;
5010 return (FRAME_LIVE_P (f) ? Qt : Qnil);
5013 /* Mark all windows now on frame as deleted
5014 by setting their buffers to nil. */
5016 void
5017 delete_all_subwindows (w)
5018 register struct window *w;
5020 if (!NILP (w->next))
5021 delete_all_subwindows (XWINDOW (w->next));
5022 if (!NILP (w->vchild))
5023 delete_all_subwindows (XWINDOW (w->vchild));
5024 if (!NILP (w->hchild))
5025 delete_all_subwindows (XWINDOW (w->hchild));
5027 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
5029 if (!NILP (w->buffer))
5030 unshow_buffer (w);
5032 /* We set all three of these fields to nil, to make sure that we can
5033 distinguish this dead window from any live window. Live leaf
5034 windows will have buffer set, and combination windows will have
5035 vchild or hchild set. */
5036 w->buffer = Qnil;
5037 w->vchild = Qnil;
5038 w->hchild = Qnil;
5040 Vwindow_list = Qnil;
5043 static int
5044 count_windows (window)
5045 register struct window *window;
5047 register int count = 1;
5048 if (!NILP (window->next))
5049 count += count_windows (XWINDOW (window->next));
5050 if (!NILP (window->vchild))
5051 count += count_windows (XWINDOW (window->vchild));
5052 if (!NILP (window->hchild))
5053 count += count_windows (XWINDOW (window->hchild));
5054 return count;
5058 /* Fill vector FLAT with leaf windows under W, starting at index I.
5059 Value is last index + 1. */
5061 static int
5062 get_leaf_windows (w, flat, i)
5063 struct window *w;
5064 struct window **flat;
5065 int i;
5067 while (w)
5069 if (!NILP (w->hchild))
5070 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5071 else if (!NILP (w->vchild))
5072 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
5073 else
5074 flat[i++] = w;
5076 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5079 return i;
5083 /* Return a pointer to the glyph W's physical cursor is on. Value is
5084 null if W's current matrix is invalid, so that no meaningfull glyph
5085 can be returned. */
5087 struct glyph *
5088 get_phys_cursor_glyph (w)
5089 struct window *w;
5091 struct glyph_row *row;
5092 struct glyph *glyph;
5094 if (w->phys_cursor.vpos >= 0
5095 && w->phys_cursor.vpos < w->current_matrix->nrows
5096 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
5097 row->enabled_p)
5098 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
5099 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
5100 else
5101 glyph = NULL;
5103 return glyph;
5107 static int
5108 save_window_save (window, vector, i)
5109 Lisp_Object window;
5110 struct Lisp_Vector *vector;
5111 int i;
5113 register struct saved_window *p;
5114 register struct window *w;
5115 register Lisp_Object tem;
5117 for (;!NILP (window); window = w->next)
5119 p = SAVED_WINDOW_N (vector, i);
5120 w = XWINDOW (window);
5122 XSETFASTINT (w->temslot, i++);
5123 p->window = window;
5124 p->buffer = w->buffer;
5125 p->left = w->left;
5126 p->top = w->top;
5127 p->width = w->width;
5128 p->height = w->height;
5129 p->hscroll = w->hscroll;
5130 p->min_hscroll = w->min_hscroll;
5131 p->display_table = w->display_table;
5132 p->orig_top = w->orig_top;
5133 p->orig_height = w->orig_height;
5134 if (!NILP (w->buffer))
5136 /* Save w's value of point in the window configuration.
5137 If w is the selected window, then get the value of point
5138 from the buffer; pointm is garbage in the selected window. */
5139 if (EQ (window, selected_window))
5141 p->pointm = Fmake_marker ();
5142 set_marker_both (p->pointm, w->buffer,
5143 BUF_PT (XBUFFER (w->buffer)),
5144 BUF_PT_BYTE (XBUFFER (w->buffer)));
5146 else
5147 p->pointm = Fcopy_marker (w->pointm, Qnil);
5149 p->start = Fcopy_marker (w->start, Qnil);
5150 p->start_at_line_beg = w->start_at_line_beg;
5152 tem = XBUFFER (w->buffer)->mark;
5153 p->mark = Fcopy_marker (tem, Qnil);
5155 else
5157 p->pointm = Qnil;
5158 p->start = Qnil;
5159 p->mark = Qnil;
5160 p->start_at_line_beg = Qnil;
5163 if (NILP (w->parent))
5164 p->parent = Qnil;
5165 else
5166 p->parent = XWINDOW (w->parent)->temslot;
5168 if (NILP (w->prev))
5169 p->prev = Qnil;
5170 else
5171 p->prev = XWINDOW (w->prev)->temslot;
5173 if (!NILP (w->vchild))
5174 i = save_window_save (w->vchild, vector, i);
5175 if (!NILP (w->hchild))
5176 i = save_window_save (w->hchild, vector, i);
5179 return i;
5182 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
5183 Scurrent_window_configuration, 0, 1, 0,
5184 "Return an object representing the current window configuration of FRAME.\n\
5185 If FRAME is nil or omitted, use the selected frame.\n\
5186 This describes the number of windows, their sizes and current buffers,\n\
5187 and for each displayed buffer, where display starts, and the positions of\n\
5188 point and mark. An exception is made for point in the current buffer:\n\
5189 its value is -not- saved.\n\
5190 This also records the currently selected frame, and FRAME's focus\n\
5191 redirection (see `redirect-frame-focus').")
5192 (frame)
5193 Lisp_Object frame;
5195 register Lisp_Object tem;
5196 register int n_windows;
5197 register struct save_window_data *data;
5198 register struct Lisp_Vector *vec;
5199 register int i;
5200 FRAME_PTR f;
5202 if (NILP (frame))
5203 frame = selected_frame;
5204 CHECK_LIVE_FRAME (frame, 0);
5205 f = XFRAME (frame);
5207 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
5208 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
5209 for (i = 0; i < VECSIZE (struct save_window_data); i++)
5210 vec->contents[i] = Qnil;
5211 vec->size = VECSIZE (struct save_window_data);
5212 data = (struct save_window_data *)vec;
5214 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
5215 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
5216 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
5217 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
5218 data->selected_frame = selected_frame;
5219 data->current_window = FRAME_SELECTED_WINDOW (f);
5220 XSETBUFFER (data->current_buffer, current_buffer);
5221 data->minibuf_scroll_window = Vminibuf_scroll_window;
5222 data->root_window = FRAME_ROOT_WINDOW (f);
5223 data->focus_frame = FRAME_FOCUS_FRAME (f);
5224 XSETINT (data->min_height, window_min_height);
5225 XSETINT (data->min_width, window_min_width);
5226 tem = Fmake_vector (make_number (n_windows), Qnil);
5227 data->saved_windows = tem;
5228 for (i = 0; i < n_windows; i++)
5229 XVECTOR (tem)->contents[i]
5230 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
5231 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
5232 XSETWINDOW_CONFIGURATION (tem, data);
5233 return (tem);
5236 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
5237 0, UNEVALLED, 0,
5238 "Execute body, preserving window sizes and contents.\n\
5239 Restore which buffer appears in which window, where display starts,\n\
5240 and the value of point and mark for each window.\n\
5241 Also restore the choice of selected window.\n\
5242 Also restore which buffer is current.\n\
5243 Does not restore the value of point in current buffer.")
5244 (args)
5245 Lisp_Object args;
5247 register Lisp_Object val;
5248 register int count = specpdl_ptr - specpdl;
5250 record_unwind_protect (Fset_window_configuration,
5251 Fcurrent_window_configuration (Qnil));
5252 val = Fprogn (args);
5253 return unbind_to (count, val);
5257 /***********************************************************************
5258 Marginal Areas
5259 ***********************************************************************/
5261 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
5262 2, 3, 0,
5263 "Set width of marginal areas of window WINDOW.\n\
5264 If window is nil, set margins of the currently selected window.\n\
5265 First parameter LEFT-WIDTH specifies the number of character\n\
5266 cells to reserve for the left marginal area. Second parameter\n\
5267 RIGHT-WIDTH does the same for the right marginal area.\n\
5268 A nil width parameter means no margin.")
5269 (window, left, right)
5270 Lisp_Object window, left, right;
5272 struct window *w = decode_window (window);
5274 if (!NILP (left))
5275 CHECK_NUMBER_OR_FLOAT (left, 1);
5276 if (!NILP (right))
5277 CHECK_NUMBER_OR_FLOAT (right, 2);
5279 /* Check widths < 0 and translate a zero width to nil.
5280 Margins that are too wide have to be checked elsewhere. */
5281 if ((INTEGERP (left) && XINT (left) < 0)
5282 || (FLOATP (left) && XFLOAT_DATA (left) <= 0))
5283 XSETFASTINT (left, 0);
5284 if (INTEGERP (left) && XFASTINT (left) == 0)
5285 left = Qnil;
5287 if ((INTEGERP (right) && XINT (right) < 0)
5288 || (FLOATP (right) && XFLOAT_DATA (right) <= 0))
5289 XSETFASTINT (right, 0);
5290 if (INTEGERP (right) && XFASTINT (right) == 0)
5291 right = Qnil;
5293 w->left_margin_width = left;
5294 w->right_margin_width = right;
5296 ++windows_or_buffers_changed;
5297 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
5298 return Qnil;
5302 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
5303 0, 1, 0,
5304 "Get width of marginal areas of window WINDOW.\n\
5305 If WINDOW is omitted or nil, use the currently selected window.\n\
5306 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).\n\
5307 If a marginal area does not exist, its width will be returned\n\
5308 as nil.")
5309 (window)
5310 Lisp_Object window;
5312 struct window *w = decode_window (window);
5313 return Fcons (w->left_margin_width, w->right_margin_width);
5318 /***********************************************************************
5319 Smooth scrolling
5320 ***********************************************************************/
5322 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 1, 0,
5323 "Return the amount by which WINDOW is scrolled vertically.\n\
5324 Use the selected window if WINDOW is nil or omitted.\n\
5325 Value is a multiple of the canonical character height of WINDOW.")
5326 (window)
5327 Lisp_Object window;
5329 Lisp_Object result;
5330 struct frame *f;
5331 struct window *w;
5333 if (NILP (window))
5334 window = selected_window;
5335 else
5336 CHECK_WINDOW (window, 0);
5337 w = XWINDOW (window);
5338 f = XFRAME (w->frame);
5340 if (FRAME_WINDOW_P (f))
5341 result = CANON_Y_FROM_PIXEL_Y (f, -w->vscroll);
5342 else
5343 result = make_number (0);
5344 return result;
5348 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
5349 2, 2, 0,
5350 "Set amount by which WINDOW should be scrolled vertically to VSCROLL.\n\
5351 WINDOW nil or omitted means use the selected window. VSCROLL is a\n\
5352 non-negative multiple of the canonical character height of WINDOW.")
5353 (window, vscroll)
5354 Lisp_Object window, vscroll;
5356 struct window *w;
5357 struct frame *f;
5359 if (NILP (window))
5360 window = selected_window;
5361 else
5362 CHECK_WINDOW (window, 0);
5363 CHECK_NUMBER_OR_FLOAT (vscroll, 1);
5365 w = XWINDOW (window);
5366 f = XFRAME (w->frame);
5368 if (FRAME_WINDOW_P (f))
5370 int old_dy = w->vscroll;
5372 w->vscroll = - CANON_Y_UNIT (f) * XFLOATINT (vscroll);
5373 w->vscroll = min (w->vscroll, 0);
5375 /* Adjust glyph matrix of the frame if the virtual display
5376 area becomes larger than before. */
5377 if (w->vscroll < 0 && w->vscroll < old_dy)
5378 adjust_glyphs (f);
5380 /* Prevent redisplay shortcuts. */
5381 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
5384 return Fwindow_vscroll (window);
5388 /* Call FN for all leaf windows on frame F. FN is called with the
5389 first argument being a pointer to the leaf window, and with
5390 additional argument USER_DATA. Stops when FN returns 0. */
5392 void
5393 foreach_window (f, fn, user_data)
5394 struct frame *f;
5395 int (* fn) P_ ((struct window *, void *));
5396 void *user_data;
5398 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
5402 /* Helper function for foreach_window. Call FN for all leaf windows
5403 reachable from W. FN is called with the first argument being a
5404 pointer to the leaf window, and with additional argument USER_DATA.
5405 Stop when FN returns 0. Value is 0 if stopped by FN. */
5407 static int
5408 foreach_window_1 (w, fn, user_data)
5409 struct window *w;
5410 int (* fn) P_ ((struct window *, void *));
5411 void *user_data;
5413 int cont;
5415 for (cont = 1; w && cont;)
5417 if (!NILP (w->hchild))
5418 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
5419 else if (!NILP (w->vchild))
5420 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
5421 else
5422 cont = fn (w, user_data);
5424 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5427 return cont;
5431 /* Freeze or unfreeze the window start of W if unless it is a
5432 mini-window or the selected window. FREEZE_P non-null means freeze
5433 the window start. */
5435 static int
5436 freeze_window_start (w, freeze_p)
5437 struct window *w;
5438 void *freeze_p;
5440 if (w == XWINDOW (selected_window)
5441 || MINI_WINDOW_P (w)
5442 || (MINI_WINDOW_P (XWINDOW (selected_window))
5443 && ! NILP (Vminibuf_scroll_window)
5444 && w == XWINDOW (Vminibuf_scroll_window)))
5445 freeze_p = NULL;
5447 w->frozen_window_start_p = freeze_p != NULL;
5448 return 1;
5452 /* Freeze or unfreeze the window starts of all leaf windows on frame
5453 F, except the selected window and a mini-window. FREEZE_P non-zero
5454 means freeze the window start. */
5456 void
5457 freeze_window_starts (f, freeze_p)
5458 struct frame *f;
5459 int freeze_p;
5461 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
5465 /***********************************************************************
5466 Initialization
5467 ***********************************************************************/
5469 /* Return 1 if window configurations C1 and C2
5470 describe the same state of affairs. This is used by Fequal. */
5473 compare_window_configurations (c1, c2, ignore_positions)
5474 Lisp_Object c1, c2;
5475 int ignore_positions;
5477 register struct save_window_data *d1, *d2;
5478 struct Lisp_Vector *sw1, *sw2;
5479 int i;
5481 if (!WINDOW_CONFIGURATIONP (c1))
5482 wrong_type_argument (Qwindow_configuration_p, c1);
5483 if (!WINDOW_CONFIGURATIONP (c2))
5484 wrong_type_argument (Qwindow_configuration_p, c2);
5486 d1 = (struct save_window_data *) XVECTOR (c1);
5487 d2 = (struct save_window_data *) XVECTOR (c2);
5488 sw1 = XVECTOR (d1->saved_windows);
5489 sw2 = XVECTOR (d2->saved_windows);
5491 if (! EQ (d1->frame_width, d2->frame_width))
5492 return 0;
5493 if (! EQ (d1->frame_height, d2->frame_height))
5494 return 0;
5495 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
5496 return 0;
5497 if (! EQ (d1->selected_frame, d2->selected_frame))
5498 return 0;
5499 /* Don't compare the current_window field directly.
5500 Instead see w1_is_current and w2_is_current, below. */
5501 if (! EQ (d1->current_buffer, d2->current_buffer))
5502 return 0;
5503 if (! ignore_positions)
5504 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
5505 return 0;
5506 /* Don't compare the root_window field.
5507 We don't require the two configurations
5508 to use the same window object,
5509 and the two root windows must be equivalent
5510 if everything else compares equal. */
5511 if (! EQ (d1->focus_frame, d2->focus_frame))
5512 return 0;
5513 if (! EQ (d1->min_width, d2->min_width))
5514 return 0;
5515 if (! EQ (d1->min_height, d2->min_height))
5516 return 0;
5518 /* Verify that the two confis have the same number of windows. */
5519 if (sw1->size != sw2->size)
5520 return 0;
5522 for (i = 0; i < sw1->size; i++)
5524 struct saved_window *p1, *p2;
5525 int w1_is_current, w2_is_current;
5527 p1 = SAVED_WINDOW_N (sw1, i);
5528 p2 = SAVED_WINDOW_N (sw2, i);
5530 /* Verify that the current windows in the two
5531 configurations correspond to each other. */
5532 w1_is_current = EQ (d1->current_window, p1->window);
5533 w2_is_current = EQ (d2->current_window, p2->window);
5535 if (w1_is_current != w2_is_current)
5536 return 0;
5538 /* Verify that the corresponding windows do match. */
5539 if (! EQ (p1->buffer, p2->buffer))
5540 return 0;
5541 if (! EQ (p1->left, p2->left))
5542 return 0;
5543 if (! EQ (p1->top, p2->top))
5544 return 0;
5545 if (! EQ (p1->width, p2->width))
5546 return 0;
5547 if (! EQ (p1->height, p2->height))
5548 return 0;
5549 if (! EQ (p1->display_table, p2->display_table))
5550 return 0;
5551 if (! EQ (p1->parent, p2->parent))
5552 return 0;
5553 if (! EQ (p1->prev, p2->prev))
5554 return 0;
5555 if (! ignore_positions)
5557 if (! EQ (p1->hscroll, p2->hscroll))
5558 return 0;
5559 if (!EQ (p1->min_hscroll, p2->min_hscroll))
5560 return 0;
5561 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
5562 return 0;
5563 if (NILP (Fequal (p1->start, p2->start)))
5564 return 0;
5565 if (NILP (Fequal (p1->pointm, p2->pointm)))
5566 return 0;
5567 if (NILP (Fequal (p1->mark, p2->mark)))
5568 return 0;
5572 return 1;
5575 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
5576 Scompare_window_configurations, 2, 2, 0,
5577 "Compare two window configurations as regards the structure of windows.\n\
5578 This function ignores details such as the values of point and mark\n\
5579 and scrolling positions.")
5580 (x, y)
5581 Lisp_Object x, y;
5583 if (compare_window_configurations (x, y, 1))
5584 return Qt;
5585 return Qnil;
5588 void
5589 init_window_once ()
5591 struct frame *f = make_terminal_frame ();
5592 XSETFRAME (selected_frame, f);
5593 Vterminal_frame = selected_frame;
5594 minibuf_window = f->minibuffer_window;
5595 selected_window = f->selected_window;
5596 last_nonminibuf_frame = f;
5598 window_initialized = 1;
5601 void
5602 init_window ()
5604 Vwindow_list = Qnil;
5607 void
5608 syms_of_window ()
5610 Qleft_bitmap_area = intern ("left-bitmap-area");
5611 staticpro (&Qleft_bitmap_area);
5612 Qright_bitmap_area = intern ("right-bitmap-area");
5613 staticpro (&Qright_bitmap_area);
5615 Qwindow_size_fixed = intern ("window-size-fixed");
5616 staticpro (&Qwindow_size_fixed);
5618 staticpro (&Qwindow_configuration_change_hook);
5619 Qwindow_configuration_change_hook
5620 = intern ("window-configuration-change-hook");
5622 Qwindowp = intern ("windowp");
5623 staticpro (&Qwindowp);
5625 Qwindow_configuration_p = intern ("window-configuration-p");
5626 staticpro (&Qwindow_configuration_p);
5628 Qwindow_live_p = intern ("window-live-p");
5629 staticpro (&Qwindow_live_p);
5631 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
5632 staticpro (&Qtemp_buffer_show_hook);
5634 staticpro (&Vwindow_list);
5636 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
5637 "Non-nil means call as function to display a help buffer.\n\
5638 The function is called with one argument, the buffer to be displayed.\n\
5639 Used by `with-output-to-temp-buffer'.\n\
5640 If this function is used, then it must do the entire job of showing\n\
5641 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
5642 Vtemp_buffer_show_function = Qnil;
5644 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
5645 "If non-nil, function to call to handle `display-buffer'.\n\
5646 It will receive two args, the buffer and a flag which if non-nil means\n\
5647 that the currently selected window is not acceptable.\n\
5648 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
5649 work using this function.");
5650 Vdisplay_buffer_function = Qnil;
5652 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
5653 "*If non-nil, `display-buffer' should even the window heights.\n\
5654 If nil, `display-buffer' will leave the window configuration alone.");
5655 Veven_window_heights = Qt;
5657 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
5658 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
5659 Vminibuf_scroll_window = Qnil;
5661 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
5662 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
5663 Vother_window_scroll_buffer = Qnil;
5665 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
5666 "*Non-nil means `display-buffer' should make a separate frame.");
5667 pop_up_frames = 0;
5669 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
5670 "*Non-nil means `display-buffer' should reuse frames.\n\
5671 If the buffer in question is already displayed in a frame, raise that frame.");
5672 display_buffer_reuse_frames = 0;
5674 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
5675 "Function to call to handle automatic new frame creation.\n\
5676 It is called with no arguments and should return a newly created frame.\n\
5678 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
5679 where `pop-up-frame-alist' would hold the default frame parameters.");
5680 Vpop_up_frame_function = Qnil;
5682 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
5683 "*List of buffer names that should have their own special frames.\n\
5684 Displaying a buffer whose name is in this list makes a special frame for it\n\
5685 using `special-display-function'. See also `special-display-regexps'.\n\
5687 An element of the list can be a list instead of just a string.\n\
5688 There are two ways to use a list as an element:\n\
5689 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
5690 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5691 In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
5692 followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
5693 All this is done by the function found in `special-display-function'.\n\
5695 If this variable appears \"not to work\", because you add a name to it\n\
5696 but that buffer still appears in the selected window, look at the\n\
5697 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5698 Those variables take precedence over this one.");
5699 Vspecial_display_buffer_names = Qnil;
5701 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
5702 "*List of regexps saying which buffers should have their own special frames.\n\
5703 If a buffer name matches one of these regexps, it gets its own frame.\n\
5704 Displaying a buffer whose name is in this list makes a special frame for it\n\
5705 using `special-display-function'.\n\
5707 An element of the list can be a list instead of just a string.\n\
5708 There are two ways to use a list as an element:\n\
5709 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
5710 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5711 In the latter case, FUNCTION is called with the buffer as first argument,\n\
5712 followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
5713 All this is done by the function found in `special-display-function'.\n\
5715 If this variable appears \"not to work\", because you add a regexp to it\n\
5716 but the matching buffers still appear in the selected window, look at the\n\
5717 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5718 Those variables take precedence over this one.");
5719 Vspecial_display_regexps = Qnil;
5721 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
5722 "Function to call to make a new frame for a special buffer.\n\
5723 It is called with two arguments, the buffer and optional buffer specific\n\
5724 data, and should return a window displaying that buffer.\n\
5725 The default value makes a separate frame for the buffer,\n\
5726 using `special-display-frame-alist' to specify the frame parameters.\n\
5728 A buffer is special if its is listed in `special-display-buffer-names'\n\
5729 or matches a regexp in `special-display-regexps'.");
5730 Vspecial_display_function = Qnil;
5732 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
5733 "*List of buffer names that should appear in the selected window.\n\
5734 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
5735 switches to it in the selected window, rather than making it appear\n\
5736 in some other window.\n\
5738 An element of the list can be a cons cell instead of just a string.\n\
5739 Then the car must be a string, which specifies the buffer name.\n\
5740 This is for compatibility with `special-display-buffer-names';\n\
5741 the cdr of the cons cell is ignored.\n\
5743 See also `same-window-regexps'.");
5744 Vsame_window_buffer_names = Qnil;
5746 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
5747 "*List of regexps saying which buffers should appear in the selected window.\n\
5748 If a buffer name matches one of these regexps, then displaying it\n\
5749 using `display-buffer' or `pop-to-buffer' switches to it\n\
5750 in the selected window, rather than making it appear in some other window.\n\
5752 An element of the list can be a cons cell instead of just a string.\n\
5753 Then the car must be a string, which specifies the buffer name.\n\
5754 This is for compatibility with `special-display-buffer-names';\n\
5755 the cdr of the cons cell is ignored.\n\
5757 See also `same-window-buffer-names'.");
5758 Vsame_window_regexps = Qnil;
5760 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
5761 "*Non-nil means display-buffer should make new windows.");
5762 pop_up_windows = 1;
5764 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
5765 "*Number of lines of continuity when scrolling by screenfuls.");
5766 next_screen_context_lines = 2;
5768 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
5769 "*display-buffer would prefer to split the largest window if this large.\n\
5770 If there is only one window, it is split regardless of this value.");
5771 split_height_threshold = 500;
5773 DEFVAR_INT ("window-min-height", &window_min_height,
5774 "*Delete any window less than this tall (including its mode line).");
5775 window_min_height = 4;
5777 DEFVAR_INT ("window-min-width", &window_min_width,
5778 "*Delete any window less than this wide.");
5779 window_min_width = 10;
5781 DEFVAR_LISP ("scroll-preserve-screen-position",
5782 &Vscroll_preserve_screen_position,
5783 "*Nonzero means scroll commands move point to keep its screen line unchanged.");
5784 Vscroll_preserve_screen_position = Qnil;
5786 DEFVAR_LISP ("window-configuration-change-hook",
5787 &Vwindow_configuration_change_hook,
5788 "Functions to call when window configuration changes.\n\
5789 The selected frame is the one whose configuration has changed.");
5790 Vwindow_configuration_change_hook = Qnil;
5792 defsubr (&Sselected_window);
5793 defsubr (&Sminibuffer_window);
5794 defsubr (&Swindow_minibuffer_p);
5795 defsubr (&Swindowp);
5796 defsubr (&Swindow_live_p);
5797 defsubr (&Spos_visible_in_window_p);
5798 defsubr (&Swindow_buffer);
5799 defsubr (&Swindow_height);
5800 defsubr (&Swindow_width);
5801 defsubr (&Swindow_hscroll);
5802 defsubr (&Sset_window_hscroll);
5803 defsubr (&Swindow_redisplay_end_trigger);
5804 defsubr (&Sset_window_redisplay_end_trigger);
5805 defsubr (&Swindow_edges);
5806 defsubr (&Scoordinates_in_window_p);
5807 defsubr (&Swindow_at);
5808 defsubr (&Swindow_point);
5809 defsubr (&Swindow_start);
5810 defsubr (&Swindow_end);
5811 defsubr (&Sset_window_point);
5812 defsubr (&Sset_window_start);
5813 defsubr (&Swindow_dedicated_p);
5814 defsubr (&Sset_window_dedicated_p);
5815 defsubr (&Swindow_display_table);
5816 defsubr (&Sset_window_display_table);
5817 defsubr (&Snext_window);
5818 defsubr (&Sprevious_window);
5819 defsubr (&Sother_window);
5820 defsubr (&Sget_lru_window);
5821 defsubr (&Sget_largest_window);
5822 defsubr (&Sget_buffer_window);
5823 defsubr (&Sdelete_other_windows);
5824 defsubr (&Sdelete_windows_on);
5825 defsubr (&Sreplace_buffer_in_windows);
5826 defsubr (&Sdelete_window);
5827 defsubr (&Sset_window_buffer);
5828 defsubr (&Sselect_window);
5829 defsubr (&Sspecial_display_p);
5830 defsubr (&Ssame_window_p);
5831 defsubr (&Sdisplay_buffer);
5832 defsubr (&Ssplit_window);
5833 defsubr (&Senlarge_window);
5834 defsubr (&Sshrink_window);
5835 defsubr (&Sscroll_up);
5836 defsubr (&Sscroll_down);
5837 defsubr (&Sscroll_left);
5838 defsubr (&Sscroll_right);
5839 defsubr (&Sother_window_for_scrolling);
5840 defsubr (&Sscroll_other_window);
5841 defsubr (&Srecenter);
5842 defsubr (&Swindow_text_height);
5843 defsubr (&Smove_to_window_line);
5844 defsubr (&Swindow_configuration_p);
5845 defsubr (&Swindow_configuration_frame);
5846 defsubr (&Sset_window_configuration);
5847 defsubr (&Scurrent_window_configuration);
5848 defsubr (&Ssave_window_excursion);
5849 defsubr (&Sset_window_margins);
5850 defsubr (&Swindow_margins);
5851 defsubr (&Swindow_vscroll);
5852 defsubr (&Sset_window_vscroll);
5853 defsubr (&Scompare_window_configurations);
5854 defsubr (&Swindow_list);
5857 void
5858 keys_of_window ()
5860 initial_define_key (control_x_map, '1', "delete-other-windows");
5861 initial_define_key (control_x_map, '2', "split-window");
5862 initial_define_key (control_x_map, '0', "delete-window");
5863 initial_define_key (control_x_map, 'o', "other-window");
5864 initial_define_key (control_x_map, '^', "enlarge-window");
5865 initial_define_key (control_x_map, '<', "scroll-left");
5866 initial_define_key (control_x_map, '>', "scroll-right");
5868 initial_define_key (global_map, Ctl ('V'), "scroll-up");
5869 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
5870 initial_define_key (meta_map, 'v', "scroll-down");
5872 initial_define_key (global_map, Ctl('L'), "recenter");
5873 initial_define_key (meta_map, 'r', "move-to-window-line");