(uninstall): Ignore exit code of `rm'.
[emacs.git] / src / window.c
blob696da1767bdf1ce71db16557e3265c76a9306494
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985,86,87,93,94,95,96,97,1998,2000, 2001
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs; see the file COPYING. If not, write to
20 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
23 #include <config.h>
24 #include "lisp.h"
25 #include "buffer.h"
26 #include "keyboard.h"
27 #include "frame.h"
28 #include "window.h"
29 #include "commands.h"
30 #include "indent.h"
31 #include "termchar.h"
32 #include "disptab.h"
33 #include "dispextern.h"
34 #include "blockinput.h"
35 #include "intervals.h"
37 #ifdef HAVE_X_WINDOWS
38 #include "xterm.h"
39 #endif /* HAVE_X_WINDOWS */
40 #ifdef WINDOWSNT
41 #include "w32term.h"
42 #endif
43 #ifdef MSDOS
44 #include "msdos.h"
45 #endif
46 #ifdef macintosh
47 #include "macterm.h"
48 #endif
50 #ifndef max
51 #define max(a, b) ((a) < (b) ? (b) : (a))
52 #endif
54 /* Values returned from coordinates_in_window. */
56 enum window_part
58 ON_NOTHING,
59 ON_TEXT,
60 ON_MODE_LINE,
61 ON_VERTICAL_BORDER,
62 ON_HEADER_LINE,
63 ON_LEFT_FRINGE,
64 ON_RIGHT_FRINGE
68 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
69 Lisp_Object Qwindow_size_fixed, Qleft_fringe, Qright_fringe;
70 extern Lisp_Object Qheight, Qwidth;
72 static struct window *decode_window P_ ((Lisp_Object));
73 static Lisp_Object select_window_1 P_ ((Lisp_Object, int));
74 static int count_windows P_ ((struct window *));
75 static int get_leaf_windows P_ ((struct window *, struct window **, int));
76 static void window_scroll P_ ((Lisp_Object, int, int, int));
77 static void window_scroll_pixel_based P_ ((Lisp_Object, int, int, int));
78 static void window_scroll_line_based P_ ((Lisp_Object, int, int, int));
79 static int window_min_size_1 P_ ((struct window *, int));
80 static int window_min_size P_ ((struct window *, int, int, int *));
81 static void size_window P_ ((Lisp_Object, int, int, int));
82 static int freeze_window_start P_ ((struct window *, void *));
83 static int window_fixed_size_p P_ ((struct window *, int, int));
84 static void enlarge_window P_ ((Lisp_Object, int, int));
85 static Lisp_Object window_list P_ ((void));
86 static int add_window_to_list P_ ((struct window *, void *));
87 static int candidate_window_p P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
88 Lisp_Object));
89 static Lisp_Object next_window P_ ((Lisp_Object, Lisp_Object,
90 Lisp_Object, int));
91 static void decode_next_window_args P_ ((Lisp_Object *, Lisp_Object *,
92 Lisp_Object *));
93 static int foreach_window_1 P_ ((struct window *,
94 int (* fn) (struct window *, void *),
95 void *));
96 static Lisp_Object window_list_1 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
98 /* The value of `window-size-fixed'. */
100 int window_size_fixed;
102 /* This is the window in which the terminal's cursor should
103 be left when nothing is being done with it. This must
104 always be a leaf window, and its buffer is selected by
105 the top level editing loop at the end of each command.
107 This value is always the same as
108 FRAME_SELECTED_WINDOW (selected_frame). */
110 Lisp_Object selected_window;
112 /* A list of all windows for use by next_window and Fwindow_list.
113 Functions creating or deleting windows should invalidate this cache
114 by setting it to nil. */
116 Lisp_Object Vwindow_list;
118 /* The mini-buffer window of the selected frame.
119 Note that you cannot test for mini-bufferness of an arbitrary window
120 by comparing against this; but you can test for mini-bufferness of
121 the selected window. */
123 Lisp_Object minibuf_window;
125 /* Non-nil means it is the window for C-M-v to scroll
126 when the mini-buffer is selected. */
128 Lisp_Object Vminibuf_scroll_window;
130 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
132 Lisp_Object Vother_window_scroll_buffer;
134 /* Non-nil means it's function to call to display temp buffers. */
136 Lisp_Object Vtemp_buffer_show_function;
138 /* If a window gets smaller than either of these, it is removed. */
140 int window_min_height;
141 int window_min_width;
143 /* Nonzero implies Fdisplay_buffer should create windows. */
145 int pop_up_windows;
147 /* Nonzero implies make new frames for Fdisplay_buffer. */
149 int pop_up_frames;
151 /* Nonzero means reuse existing frames for displaying buffers. */
153 int display_buffer_reuse_frames;
155 /* Non-nil means use this function instead of default */
157 Lisp_Object Vpop_up_frame_function;
159 /* Function to call to handle Fdisplay_buffer. */
161 Lisp_Object Vdisplay_buffer_function;
163 /* Non-nil means that Fdisplay_buffer should even the heights of windows. */
165 Lisp_Object Veven_window_heights;
167 /* List of buffer *names* for buffers that should have their own frames. */
169 Lisp_Object Vspecial_display_buffer_names;
171 /* List of regexps for buffer names that should have their own frames. */
173 Lisp_Object Vspecial_display_regexps;
175 /* Function to pop up a special frame. */
177 Lisp_Object Vspecial_display_function;
179 /* List of buffer *names* for buffers to appear in selected window. */
181 Lisp_Object Vsame_window_buffer_names;
183 /* List of regexps for buffer names to appear in selected window. */
185 Lisp_Object Vsame_window_regexps;
187 /* Hook run at end of temp_output_buffer_show. */
189 Lisp_Object Qtemp_buffer_show_hook;
191 /* Fdisplay_buffer always splits the largest window
192 if that window is more than this high. */
194 int split_height_threshold;
196 /* Number of lines of continuity in scrolling by screenfuls. */
198 int next_screen_context_lines;
200 /* Incremented for each window created. */
202 static int sequence_number;
204 /* Nonzero after init_window_once has finished. */
206 static int window_initialized;
208 /* Hook to run when window config changes. */
210 Lisp_Object Qwindow_configuration_change_hook;
211 Lisp_Object Vwindow_configuration_change_hook;
213 /* Nonzero means scroll commands try to put point
214 at the same screen height as previously. */
216 Lisp_Object Vscroll_preserve_screen_position;
218 #if 0 /* This isn't used anywhere. */
219 /* Nonzero means we can split a frame even if it is "unsplittable". */
220 static int inhibit_frame_unsplittable;
221 #endif /* 0 */
223 #define min(a, b) ((a) < (b) ? (a) : (b))
225 extern int scroll_margin;
227 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
229 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
230 "Returns t if OBJECT is a window.")
231 (object)
232 Lisp_Object object;
234 return WINDOWP (object) ? Qt : Qnil;
237 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
238 "Returns t if OBJECT is a window which is currently visible.")
239 (object)
240 Lisp_Object object;
242 return WINDOW_LIVE_P (object) ? Qt : Qnil;
245 Lisp_Object
246 make_window ()
248 Lisp_Object val;
249 register struct window *p;
250 register struct Lisp_Vector *vec;
251 int i;
253 vec = allocate_vectorlike ((EMACS_INT) VECSIZE (struct window));
254 for (i = 0; i < VECSIZE (struct window); i++)
255 vec->contents[i] = Qnil;
256 vec->size = VECSIZE (struct window);
257 p = (struct window *) vec;
258 XSETFASTINT (p->sequence_number, ++sequence_number);
259 XSETFASTINT (p->left, 0);
260 XSETFASTINT (p->top, 0);
261 XSETFASTINT (p->height, 0);
262 XSETFASTINT (p->width, 0);
263 XSETFASTINT (p->hscroll, 0);
264 XSETFASTINT (p->min_hscroll, 0);
265 p->orig_top = p->orig_height = Qnil;
266 p->start = Fmake_marker ();
267 p->pointm = Fmake_marker ();
268 XSETFASTINT (p->use_time, 0);
269 p->frame = Qnil;
270 p->display_table = Qnil;
271 p->dedicated = Qnil;
272 p->pseudo_window_p = 0;
273 bzero (&p->cursor, sizeof (p->cursor));
274 bzero (&p->last_cursor, sizeof (p->last_cursor));
275 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
276 p->desired_matrix = p->current_matrix = 0;
277 p->phys_cursor_type = -1;
278 p->must_be_updated_p = 0;
279 XSETFASTINT (p->window_end_vpos, 0);
280 XSETFASTINT (p->window_end_pos, 0);
281 p->window_end_valid = Qnil;
282 p->vscroll = 0;
283 XSETWINDOW (val, p);
284 XSETFASTINT (p->last_point, 0);
285 p->frozen_window_start_p = 0;
287 Vwindow_list = Qnil;
288 return val;
291 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
292 "Return the window that the cursor now appears in and commands apply to.")
295 return selected_window;
298 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
299 "Return the window used now for minibuffers.\n\
300 If the optional argument FRAME is specified, return the minibuffer window\n\
301 used by that frame.")
302 (frame)
303 Lisp_Object frame;
305 if (NILP (frame))
306 frame = selected_frame;
307 CHECK_LIVE_FRAME (frame, 0);
308 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
311 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
312 "Returns non-nil if WINDOW is a minibuffer window.")
313 (window)
314 Lisp_Object window;
316 struct window *w = decode_window (window);
317 return MINI_WINDOW_P (w) ? Qt : Qnil;
321 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
322 Spos_visible_in_window_p, 0, 3, 0,
323 "Return t if position POS is currently on the frame in WINDOW.\n\
324 Return nil if that position is scrolled vertically out of view.\n\
325 If a character is only partially visible, nil is returned, unless the\n\
326 optional argument PARTIALLY is non-nil.\n\
327 POS defaults to point in WINDOW; WINDOW defaults to the selected window.")
328 (pos, window, partially)
329 Lisp_Object pos, window, partially;
331 register struct window *w;
332 register int posint;
333 register struct buffer *buf;
334 struct text_pos top;
335 Lisp_Object in_window;
336 int fully_p;
338 w = decode_window (window);
339 buf = XBUFFER (w->buffer);
340 SET_TEXT_POS_FROM_MARKER (top, w->start);
342 if (!NILP (pos))
344 CHECK_NUMBER_COERCE_MARKER (pos, 0);
345 posint = XINT (pos);
347 else if (w == XWINDOW (selected_window))
348 posint = PT;
349 else
350 posint = XMARKER (w->pointm)->charpos;
352 /* If position is above window start, it's not visible. */
353 if (posint < CHARPOS (top))
354 in_window = Qnil;
355 else if (XFASTINT (w->last_modified) >= BUF_MODIFF (buf)
356 && XFASTINT (w->last_overlay_modified) >= BUF_OVERLAY_MODIFF (buf)
357 && posint < BUF_Z (buf) - XFASTINT (w->window_end_pos))
359 /* If frame is up-to-date, and POSINT is < window end pos, use
360 that info. This doesn't work for POSINT == end pos, because
361 the window end pos is actually the position _after_ the last
362 char in the window. */
363 if (NILP (partially))
365 pos_visible_p (w, posint, &fully_p, NILP (partially));
366 in_window = fully_p ? Qt : Qnil;
368 else
369 in_window = Qt;
371 else if (posint > BUF_ZV (buf))
372 in_window = Qnil;
373 else if (CHARPOS (top) < BUF_BEGV (buf) || CHARPOS (top) > BUF_ZV (buf))
374 /* If window start is out of range, do something reasonable. */
375 in_window = Qnil;
376 else
378 if (pos_visible_p (w, posint, &fully_p, NILP (partially)))
379 in_window = !NILP (partially) || fully_p ? Qt : Qnil;
380 else
381 in_window = Qnil;
384 return in_window;
388 static struct window *
389 decode_window (window)
390 register Lisp_Object window;
392 if (NILP (window))
393 return XWINDOW (selected_window);
395 CHECK_LIVE_WINDOW (window, 0);
396 return XWINDOW (window);
399 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
400 "Return the buffer that WINDOW is displaying.")
401 (window)
402 Lisp_Object window;
404 return decode_window (window)->buffer;
407 DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
408 "Return the number of lines in WINDOW (including its mode line).")
409 (window)
410 Lisp_Object window;
412 return decode_window (window)->height;
415 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
416 "Return the number of display columns in WINDOW.\n\
417 This is the width that is usable columns available for text in WINDOW.\n\
418 If you want to find out how many columns WINDOW takes up,\n\
419 use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))).")
420 (window)
421 Lisp_Object window;
423 return make_number (window_internal_width (decode_window (window)));
426 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
427 "Return the number of columns by which WINDOW is scrolled from left margin.")
428 (window)
429 Lisp_Object window;
431 return decode_window (window)->hscroll;
434 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
435 "Set number of columns WINDOW is scrolled from left margin to NCOL.\n\
436 NCOL should be zero or positive.")
437 (window, ncol)
438 Lisp_Object window, ncol;
440 struct window *w = decode_window (window);
441 int hscroll;
443 CHECK_NUMBER (ncol, 1);
444 hscroll = max (0, XINT (ncol));
446 /* Prevent redisplay shortcuts when changing the hscroll. */
447 if (XINT (w->hscroll) != hscroll)
448 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
450 w->hscroll = make_number (hscroll);
451 return ncol;
454 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
455 Swindow_redisplay_end_trigger, 0, 1, 0,
456 "Return WINDOW's redisplay end trigger value.\n\
457 See `set-window-redisplay-end-trigger' for more information.")
458 (window)
459 Lisp_Object window;
461 return decode_window (window)->redisplay_end_trigger;
464 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
465 Sset_window_redisplay_end_trigger, 2, 2, 0,
466 "Set WINDOW's redisplay end trigger value to VALUE.\n\
467 VALUE should be a buffer position (typically a marker) or nil.\n\
468 If it is a buffer position, then if redisplay in WINDOW reaches a position\n\
469 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called\n\
470 with two arguments: WINDOW, and the end trigger value.\n\
471 Afterwards the end-trigger value is reset to nil.")
472 (window, value)
473 register Lisp_Object window, value;
475 register struct window *w;
477 w = decode_window (window);
478 w->redisplay_end_trigger = value;
479 return value;
482 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
483 "Return a list of the edge coordinates of WINDOW.\n\
484 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.\n\
485 RIGHT is one more than the rightmost column used by WINDOW,\n\
486 and BOTTOM is one more than the bottommost row used by WINDOW\n\
487 and its mode-line.")
488 (window)
489 Lisp_Object window;
491 register struct window *w = decode_window (window);
493 return Fcons (w->left, Fcons (w->top,
494 Fcons (make_number (WINDOW_RIGHT_EDGE (w)),
495 Fcons (make_number (XFASTINT (w->top)
496 + XFASTINT (w->height)),
497 Qnil))));
500 /* Test if the character at column *X, row *Y is within window W.
501 If it is not, return 0;
502 if it is in the window's text area,
503 set *x and *y to its location relative to the upper left corner
504 of the window, and
505 return 1;
506 if it is on the window's modeline, return 2;
507 if it is on the border between the window and its right sibling,
508 return 3.
509 if it is on the window's top line, return 4;
510 if it is in the bitmap area to the left/right of the window,
511 return 5 or 6, and convert *X and *Y to window-relative corrdinates.
513 X and Y are frame relative pixel coordinates. */
515 static enum window_part
516 coordinates_in_window (w, x, y)
517 register struct window *w;
518 register int *x, *y;
520 /* Let's make this a global enum later, instead of using numbers
521 everywhere. */
522 struct frame *f = XFRAME (WINDOW_FRAME (w));
523 int left_x, right_x, top_y, bottom_y;
524 int flags_area_width = FRAME_LEFT_FLAGS_AREA_WIDTH (f);
525 enum window_part part;
526 int ux = CANON_X_UNIT (f), uy = CANON_Y_UNIT (f);
527 int x0 = XFASTINT (w->left) * ux;
528 int x1 = x0 + XFASTINT (w->width) * ux;
530 if (*x < x0 || *x >= x1)
531 return ON_NOTHING;
533 /* In what's below, we subtract 1 when computing right_x because we
534 want the rightmost pixel, which is given by left_pixel+width-1. */
535 if (w->pseudo_window_p)
537 left_x = 0;
538 right_x = XFASTINT (w->width) * CANON_X_UNIT (f) - 1;
539 top_y = WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w);
540 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
542 else
544 left_x = (WINDOW_DISPLAY_LEFT_EDGE_PIXEL_X (w)
545 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
546 right_x = WINDOW_DISPLAY_RIGHT_EDGE_PIXEL_X (w) - 1;
547 top_y = (WINDOW_DISPLAY_TOP_EDGE_PIXEL_Y (w)
548 - FRAME_INTERNAL_BORDER_WIDTH_SAFE (f));
549 bottom_y = WINDOW_DISPLAY_BOTTOM_EDGE_PIXEL_Y (w);
552 /* On the mode line or header line? If it's near the start of
553 the mode or header line of window that's has a horizontal
554 sibling, say it's on the vertical line. That's to be able
555 to resize windows horizontally in case we're using toolkit
556 scroll bars. */
558 if (WINDOW_WANTS_MODELINE_P (w)
559 && *y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w)
560 && *y < bottom_y)
562 /* We're somewhere on the mode line. We consider the place
563 between mode lines of horizontally adjacent mode lines
564 as the vertical border. If scroll bars on the left,
565 return the right window. */
566 part = ON_MODE_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 else if (WINDOW_WANTS_HEADER_LINE_P (w)
577 && *y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
578 && *y >= top_y)
580 part = ON_HEADER_LINE;
582 if (FRAME_HAS_VERTICAL_SCROLL_BARS_ON_LEFT (f))
584 if (abs (*x - x0) < ux / 2)
585 part = ON_VERTICAL_BORDER;
587 else if (!WINDOW_RIGHTMOST_P (w) && abs (*x - x1) < ux / 2)
588 part = ON_VERTICAL_BORDER;
590 /* Outside anything interesting? */
591 else if (*y < top_y
592 || *y >= bottom_y
593 || *x < (left_x
594 - flags_area_width
595 - FRAME_LEFT_SCROLL_BAR_WIDTH (f) * ux)
596 || *x > (right_x
597 + flags_area_width
598 + FRAME_RIGHT_SCROLL_BAR_WIDTH (f) * ux))
600 part = ON_NOTHING;
602 else if (FRAME_WINDOW_P (f))
604 if (!w->pseudo_window_p
605 && !FRAME_HAS_VERTICAL_SCROLL_BARS (f)
606 && !WINDOW_RIGHTMOST_P (w)
607 && (abs (*x - right_x - flags_area_width) < ux / 2))
609 part = ON_VERTICAL_BORDER;
611 else if (*x < left_x || *x > right_x)
613 /* Other lines than the mode line don't include flags areas and
614 scroll bars on the left. */
616 /* Convert X and Y to window-relative pixel coordinates. */
617 *x -= left_x;
618 *y -= top_y;
619 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
621 else
623 *x -= left_x;
624 *y -= top_y;
625 part = ON_TEXT;
628 else
630 /* Need to say "*x > right_x" rather than >=, since on character
631 terminals, the vertical line's x coordinate is right_x. */
632 if (*x < left_x || *x > right_x)
634 /* Other lines than the mode line don't include flags areas and
635 scroll bars on the left. */
637 /* Convert X and Y to window-relative pixel coordinates. */
638 *x -= left_x;
639 *y -= top_y;
640 part = *x < left_x ? ON_LEFT_FRINGE : ON_RIGHT_FRINGE;
642 /* Here, too, "*x > right_x" is because of character terminals. */
643 else if (!w->pseudo_window_p
644 && !WINDOW_RIGHTMOST_P (w)
645 && *x > right_x - ux)
647 /* On the border on the right side of the window? Assume that
648 this area begins at RIGHT_X minus a canonical char width. */
649 part = ON_VERTICAL_BORDER;
651 else
653 /* Convert X and Y to window-relative pixel coordinates. */
654 *x -= left_x;
655 *y -= top_y;
656 part = ON_TEXT;
660 return part;
664 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
665 Scoordinates_in_window_p, 2, 2, 0,
666 "Return non-nil if COORDINATES are in WINDOW.\n\
667 COORDINATES is a cons of the form (X . Y), X and Y being distances\n\
668 measured in characters from the upper-left corner of the frame.\n\
669 \(0 . 0) denotes the character in the upper left corner of the\n\
670 frame.\n\
671 If COORDINATES are in the text portion of WINDOW,\n\
672 the coordinates relative to the window are returned.\n\
673 If they are in the mode line of WINDOW, `mode-line' is returned.\n\
674 If they are in the top mode line of WINDOW, `header-line' is returned.\n\
675 If they are in the fringe to the left of the window,\n\
676 `left-fringe' is returned, if they are in the area on the right of\n\
677 the window, `right-fringe' is returned.\n\
678 If they are on the border between WINDOW and its right sibling,\n\
679 `vertical-line' is returned.")
680 (coordinates, window)
681 register Lisp_Object coordinates, window;
683 struct window *w;
684 struct frame *f;
685 int x, y;
686 Lisp_Object lx, ly;
688 CHECK_LIVE_WINDOW (window, 0);
689 w = XWINDOW (window);
690 f = XFRAME (w->frame);
691 CHECK_CONS (coordinates, 1);
692 lx = Fcar (coordinates);
693 ly = Fcdr (coordinates);
694 CHECK_NUMBER_OR_FLOAT (lx, 1);
695 CHECK_NUMBER_OR_FLOAT (ly, 1);
696 x = PIXEL_X_FROM_CANON_X (f, lx);
697 y = PIXEL_Y_FROM_CANON_Y (f, ly);
699 switch (coordinates_in_window (w, &x, &y))
701 case ON_NOTHING:
702 return Qnil;
704 case ON_TEXT:
705 /* X and Y are now window relative pixel coordinates. Convert
706 them to canonical char units before returning them. */
707 return Fcons (CANON_X_FROM_PIXEL_X (f, x),
708 CANON_Y_FROM_PIXEL_Y (f, y));
710 case ON_MODE_LINE:
711 return Qmode_line;
713 case ON_VERTICAL_BORDER:
714 return Qvertical_line;
716 case ON_HEADER_LINE:
717 return Qheader_line;
719 case ON_LEFT_FRINGE:
720 return Qleft_fringe;
722 case ON_RIGHT_FRINGE:
723 return Qright_fringe;
725 default:
726 abort ();
731 /* Callback for foreach_window, used in window_from_coordinates.
732 Check if window W contains coordinates specified by USER_DATA which
733 is actually a pointer to a struct check_window_data CW.
735 Check if window W contains coordinates *CW->x and *CW->y. If it
736 does, return W in *CW->window, as Lisp_Object, and return in
737 *CW->part the part of the window under coordinates *X,*Y. Return
738 zero from this function to stop iterating over windows. */
740 struct check_window_data
742 Lisp_Object *window;
743 int *x, *y, *part;
746 static int
747 check_window_containing (w, user_data)
748 struct window *w;
749 void *user_data;
751 struct check_window_data *cw = (struct check_window_data *) user_data;
752 enum window_part found;
753 int continue_p = 1;
755 found = coordinates_in_window (w, cw->x, cw->y);
756 if (found != ON_NOTHING)
758 *cw->part = found - 1;
759 XSETWINDOW (*cw->window, w);
760 continue_p = 0;
763 return continue_p;
767 /* Find the window containing frame-relative pixel position X/Y and
768 return it as a Lisp_Object. If X, Y is on the window's modeline,
769 set *PART to 1; if it is on the separating line between the window
770 and its right sibling, set it to 2; otherwise set it to 0. If
771 there is no window under X, Y return nil and leave *PART
772 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
774 This function was previously implemented with a loop cycling over
775 windows with Fnext_window, and starting with the frame's selected
776 window. It turned out that this doesn't work with an
777 implementation of next_window using Vwindow_list, because
778 FRAME_SELECTED_WINDOW (F) is not always contained in the window
779 tree of F when this function is called asynchronously from
780 note_mouse_highlight. The original loop didn't terminate in this
781 case. */
783 Lisp_Object
784 window_from_coordinates (f, x, y, part, tool_bar_p)
785 struct frame *f;
786 int x, y;
787 int *part;
788 int tool_bar_p;
790 Lisp_Object window;
791 struct check_window_data cw;
793 window = Qnil;
794 cw.window = &window, cw.x = &x, cw.y = &y; cw.part = part;
795 foreach_window (f, check_window_containing, &cw);
797 /* If not found above, see if it's in the tool bar window, if a tool
798 bar exists. */
799 if (NILP (window)
800 && tool_bar_p
801 && WINDOWP (f->tool_bar_window)
802 && XINT (XWINDOW (f->tool_bar_window)->height) > 0
803 && (coordinates_in_window (XWINDOW (f->tool_bar_window), &x, &y)
804 != ON_NOTHING))
806 *part = 0;
807 window = f->tool_bar_window;
810 return window;
813 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
814 "Return window containing coordinates X and Y on FRAME.\n\
815 If omitted, FRAME defaults to the currently selected frame.\n\
816 The top left corner of the frame is considered to be row 0,\n\
817 column 0.")
818 (x, y, frame)
819 Lisp_Object x, y, frame;
821 int part;
822 struct frame *f;
824 if (NILP (frame))
825 frame = selected_frame;
826 CHECK_LIVE_FRAME (frame, 2);
827 f = XFRAME (frame);
829 /* Check that arguments are integers or floats. */
830 CHECK_NUMBER_OR_FLOAT (x, 0);
831 CHECK_NUMBER_OR_FLOAT (y, 1);
833 return window_from_coordinates (f,
834 PIXEL_X_FROM_CANON_X (f, x),
835 PIXEL_Y_FROM_CANON_Y (f, y),
836 &part, 0);
839 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
840 "Return current value of point in WINDOW.\n\
841 For a nonselected window, this is the value point would have\n\
842 if that window were selected.\n\
844 Note that, when WINDOW is the selected window and its buffer\n\
845 is also currently selected, the value returned is the same as (point).\n\
846 It would be more strictly correct to return the `top-level' value\n\
847 of point, outside of any save-excursion forms.\n\
848 But that is hard to define.")
849 (window)
850 Lisp_Object window;
852 register struct window *w = decode_window (window);
854 if (w == XWINDOW (selected_window)
855 && current_buffer == XBUFFER (w->buffer))
856 return Fpoint ();
857 return Fmarker_position (w->pointm);
860 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
861 "Return position at which display currently starts in WINDOW.\n\
862 This is updated by redisplay or by calling `set-window-start'.")
863 (window)
864 Lisp_Object window;
866 return Fmarker_position (decode_window (window)->start);
869 /* This is text temporarily removed from the doc string below.
871 This function returns nil if the position is not currently known.\n\
872 That happens when redisplay is preempted and doesn't finish.\n\
873 If in that case you want to compute where the end of the window would\n\
874 have been if redisplay had finished, do this:\n\
875 (save-excursion\n\
876 (goto-char (window-start window))\n\
877 (vertical-motion (1- (window-height window)) window)\n\
878 (point))") */
880 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
881 "Return position at which display currently ends in WINDOW.\n\
882 This is updated by redisplay, when it runs to completion.\n\
883 Simply changing the buffer text or setting `window-start'\n\
884 does not update this value.\n\
885 If UPDATE is non-nil, compute the up-to-date position\n\
886 if it isn't already recorded.")
887 (window, update)
888 Lisp_Object window, update;
890 Lisp_Object value;
891 struct window *w = decode_window (window);
892 Lisp_Object buf;
894 buf = w->buffer;
895 CHECK_BUFFER (buf, 0);
897 #if 0 /* This change broke some things. We should make it later. */
898 /* If we don't know the end position, return nil.
899 The user can compute it with vertical-motion if he wants to.
900 It would be nicer to do it automatically,
901 but that's so slow that it would probably bother people. */
902 if (NILP (w->window_end_valid))
903 return Qnil;
904 #endif
906 if (! NILP (update)
907 && ! (! NILP (w->window_end_valid)
908 && XFASTINT (w->last_modified) >= MODIFF))
910 struct text_pos startp;
911 struct it it;
913 /* In case W->start is out of the range, use something
914 reasonable. This situation occured when loading a file with
915 `-l' containing a call to `rmail' with subsequent other
916 commands. At the end, W->start happened to be BEG, while
917 rmail had already narrowed the buffer. */
918 if (XMARKER (w->start)->charpos < BEGV)
919 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
920 else if (XMARKER (w->start)->charpos > ZV)
921 SET_TEXT_POS (startp, ZV, ZV_BYTE);
922 else
923 SET_TEXT_POS_FROM_MARKER (startp, w->start);
925 /* Cannot use Fvertical_motion because that function doesn't
926 cope with variable-height lines. */
927 start_display (&it, w, startp);
928 move_it_vertically (&it, window_box_height (w));
929 move_it_past_eol (&it);
930 value = make_number (IT_CHARPOS (it));
932 else
933 XSETINT (value, BUF_Z (XBUFFER (buf)) - XFASTINT (w->window_end_pos));
935 return value;
938 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
939 "Make point value in WINDOW be at position POS in WINDOW's buffer.")
940 (window, pos)
941 Lisp_Object window, pos;
943 register struct window *w = decode_window (window);
945 CHECK_NUMBER_COERCE_MARKER (pos, 1);
946 if (w == XWINDOW (selected_window)
947 && XBUFFER (w->buffer) == current_buffer)
948 Fgoto_char (pos);
949 else
950 set_marker_restricted (w->pointm, pos, w->buffer);
952 /* We have to make sure that redisplay updates the window to show
953 the new value of point. */
954 if (!EQ (window, selected_window))
955 ++windows_or_buffers_changed;
957 return pos;
960 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
961 "Make display in WINDOW start at position POS in WINDOW's buffer.\n\
962 Optional third arg NOFORCE non-nil inhibits next redisplay\n\
963 from overriding motion of point in order to display at this exact start.")
964 (window, pos, noforce)
965 Lisp_Object window, pos, noforce;
967 register struct window *w = decode_window (window);
969 CHECK_NUMBER_COERCE_MARKER (pos, 1);
970 set_marker_restricted (w->start, pos, w->buffer);
971 /* this is not right, but much easier than doing what is right. */
972 w->start_at_line_beg = Qnil;
973 if (NILP (noforce))
974 w->force_start = Qt;
975 w->update_mode_line = Qt;
976 XSETFASTINT (w->last_modified, 0);
977 XSETFASTINT (w->last_overlay_modified, 0);
978 if (!EQ (window, selected_window))
979 windows_or_buffers_changed++;
981 return pos;
984 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
985 1, 1, 0,
986 "Return WINDOW's dedicated object, usually t or nil.\n\
987 See also `set-window-dedicated-p'.")
988 (window)
989 Lisp_Object window;
991 return decode_window (window)->dedicated;
994 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
995 Sset_window_dedicated_p, 2, 2, 0,
996 "Control whether WINDOW is dedicated to the buffer it displays.\n\
997 If it is dedicated, Emacs will not automatically change\n\
998 which buffer appears in it.\n\
999 The second argument is the new value for the dedication flag;\n\
1000 non-nil means yes.")
1001 (window, arg)
1002 Lisp_Object window, arg;
1004 register struct window *w = decode_window (window);
1006 if (NILP (arg))
1007 w->dedicated = Qnil;
1008 else
1009 w->dedicated = Qt;
1011 return w->dedicated;
1014 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
1015 0, 1, 0,
1016 "Return the display-table that WINDOW is using.")
1017 (window)
1018 Lisp_Object window;
1020 return decode_window (window)->display_table;
1023 /* Get the display table for use on window W. This is either W's
1024 display table or W's buffer's display table. Ignore the specified
1025 tables if they are not valid; if no valid table is specified,
1026 return 0. */
1028 struct Lisp_Char_Table *
1029 window_display_table (w)
1030 struct window *w;
1032 struct Lisp_Char_Table *dp = NULL;
1034 if (DISP_TABLE_P (w->display_table))
1035 dp = XCHAR_TABLE (w->display_table);
1036 else if (BUFFERP (w->buffer))
1038 struct buffer *b = XBUFFER (w->buffer);
1040 if (DISP_TABLE_P (b->display_table))
1041 dp = XCHAR_TABLE (b->display_table);
1042 else if (DISP_TABLE_P (Vstandard_display_table))
1043 dp = XCHAR_TABLE (Vstandard_display_table);
1046 return dp;
1049 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
1050 "Set WINDOW's display-table to TABLE.")
1051 (window, table)
1052 register Lisp_Object window, table;
1054 register struct window *w;
1056 w = decode_window (window);
1057 w->display_table = table;
1058 return table;
1061 /* Record info on buffer window w is displaying
1062 when it is about to cease to display that buffer. */
1063 static void
1064 unshow_buffer (w)
1065 register struct window *w;
1067 Lisp_Object buf;
1068 struct buffer *b;
1070 buf = w->buffer;
1071 b = XBUFFER (buf);
1072 if (b != XMARKER (w->pointm)->buffer)
1073 abort ();
1075 #if 0
1076 if (w == XWINDOW (selected_window)
1077 || ! EQ (buf, XWINDOW (selected_window)->buffer))
1078 /* Do this except when the selected window's buffer
1079 is being removed from some other window. */
1080 #endif
1081 /* last_window_start records the start position that this buffer
1082 had in the last window to be disconnected from it.
1083 Now that this statement is unconditional,
1084 it is possible for the buffer to be displayed in the
1085 selected window, while last_window_start reflects another
1086 window which was recently showing the same buffer.
1087 Some people might say that might be a good thing. Let's see. */
1088 b->last_window_start = marker_position (w->start);
1090 /* Point in the selected window's buffer
1091 is actually stored in that buffer, and the window's pointm isn't used.
1092 So don't clobber point in that buffer. */
1093 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1094 /* This line helps to fix Horsley's testbug.el bug. */
1095 && !(WINDOWP (b->last_selected_window)
1096 && w != XWINDOW (b->last_selected_window)
1097 && EQ (buf, XWINDOW (b->last_selected_window)->buffer)))
1098 temp_set_point_both (b,
1099 clip_to_bounds (BUF_BEGV (b),
1100 XMARKER (w->pointm)->charpos,
1101 BUF_ZV (b)),
1102 clip_to_bounds (BUF_BEGV_BYTE (b),
1103 marker_byte_position (w->pointm),
1104 BUF_ZV_BYTE (b)));
1106 if (WINDOWP (b->last_selected_window)
1107 && w == XWINDOW (b->last_selected_window))
1108 b->last_selected_window = Qnil;
1111 /* Put replacement into the window structure in place of old. */
1112 static void
1113 replace_window (old, replacement)
1114 Lisp_Object old, replacement;
1116 register Lisp_Object tem;
1117 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
1119 /* If OLD is its frame's root_window, then replacement is the new
1120 root_window for that frame. */
1122 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
1123 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
1125 p->left = o->left;
1126 p->top = o->top;
1127 p->width = o->width;
1128 p->height = o->height;
1129 p->desired_matrix = p->current_matrix = 0;
1130 p->vscroll = 0;
1131 bzero (&p->cursor, sizeof (p->cursor));
1132 bzero (&p->last_cursor, sizeof (p->last_cursor));
1133 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
1134 p->phys_cursor_type = -1;
1135 p->must_be_updated_p = 0;
1136 p->pseudo_window_p = 0;
1137 XSETFASTINT (p->window_end_vpos, 0);
1138 XSETFASTINT (p->window_end_pos, 0);
1139 p->window_end_valid = Qnil;
1140 p->frozen_window_start_p = 0;
1141 p->orig_top = p->orig_height = Qnil;
1143 p->next = tem = o->next;
1144 if (!NILP (tem))
1145 XWINDOW (tem)->prev = replacement;
1147 p->prev = tem = o->prev;
1148 if (!NILP (tem))
1149 XWINDOW (tem)->next = replacement;
1151 p->parent = tem = o->parent;
1152 if (!NILP (tem))
1154 if (EQ (XWINDOW (tem)->vchild, old))
1155 XWINDOW (tem)->vchild = replacement;
1156 if (EQ (XWINDOW (tem)->hchild, old))
1157 XWINDOW (tem)->hchild = replacement;
1160 /*** Here, if replacement is a vertical combination
1161 and so is its new parent, we should make replacement's
1162 children be children of that parent instead. ***/
1165 DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
1166 "Remove WINDOW from the display. Default is selected window.")
1167 (window)
1168 register Lisp_Object window;
1170 delete_window (window);
1172 if (! NILP (Vwindow_configuration_change_hook)
1173 && ! NILP (Vrun_hooks))
1174 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1176 return Qnil;
1179 void
1180 delete_window (window)
1181 register Lisp_Object window;
1183 register Lisp_Object tem, parent, sib;
1184 register struct window *p;
1185 register struct window *par;
1186 struct frame *f;
1188 /* Because this function is called by other C code on non-leaf
1189 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
1190 so we can't decode_window here. */
1191 if (NILP (window))
1192 window = selected_window;
1193 else
1194 CHECK_WINDOW (window, 0);
1195 p = XWINDOW (window);
1197 /* It's okay to delete an already-deleted window. */
1198 if (NILP (p->buffer)
1199 && NILP (p->hchild)
1200 && NILP (p->vchild))
1201 return;
1203 parent = p->parent;
1204 if (NILP (parent))
1205 error ("Attempt to delete minibuffer or sole ordinary window");
1206 par = XWINDOW (parent);
1208 windows_or_buffers_changed++;
1209 Vwindow_list = Qnil;
1210 f = XFRAME (WINDOW_FRAME (p));
1211 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
1213 /* Are we trying to delete any frame's selected window? */
1215 Lisp_Object pwindow;
1217 /* See if the frame's selected window is either WINDOW
1218 or any subwindow of it, by finding all that window's parents
1219 and comparing each one with WINDOW. */
1220 pwindow = FRAME_SELECTED_WINDOW (f);
1222 while (!NILP (pwindow))
1224 if (EQ (window, pwindow))
1225 break;
1226 pwindow = XWINDOW (pwindow)->parent;
1229 if (EQ (window, pwindow))
1231 Lisp_Object alternative;
1232 alternative = Fnext_window (window, Qlambda, Qnil);
1234 /* If we're about to delete the selected window on the
1235 selected frame, then we should use Fselect_window to select
1236 the new window. On the other hand, if we're about to
1237 delete the selected window on any other frame, we shouldn't do
1238 anything but set the frame's selected_window slot. */
1239 if (EQ (window, selected_window))
1240 Fselect_window (alternative);
1241 else
1242 FRAME_SELECTED_WINDOW (f) = alternative;
1246 tem = p->buffer;
1247 /* tem is null for dummy parent windows
1248 (which have inferiors but not any contents themselves) */
1249 if (!NILP (tem))
1251 unshow_buffer (p);
1252 unchain_marker (p->pointm);
1253 unchain_marker (p->start);
1256 /* Free window glyph matrices. It is sure that they are allocated
1257 again when ADJUST_GLYPHS is called. Block input so that expose
1258 events and other events that access glyph matrices are not
1259 processed while we are changing them. */
1260 BLOCK_INPUT;
1261 free_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)));
1263 tem = p->next;
1264 if (!NILP (tem))
1265 XWINDOW (tem)->prev = p->prev;
1267 tem = p->prev;
1268 if (!NILP (tem))
1269 XWINDOW (tem)->next = p->next;
1271 if (EQ (window, par->hchild))
1272 par->hchild = p->next;
1273 if (EQ (window, par->vchild))
1274 par->vchild = p->next;
1276 /* Find one of our siblings to give our space to. */
1277 sib = p->prev;
1278 if (NILP (sib))
1280 /* If p gives its space to its next sibling, that sibling needs
1281 to have its top/left side pulled back to where p's is.
1282 set_window_{height,width} will re-position the sibling's
1283 children. */
1284 sib = p->next;
1285 XWINDOW (sib)->top = p->top;
1286 XWINDOW (sib)->left = p->left;
1289 /* Stretch that sibling. */
1290 if (!NILP (par->vchild))
1291 set_window_height (sib,
1292 XFASTINT (XWINDOW (sib)->height) + XFASTINT (p->height),
1294 if (!NILP (par->hchild))
1295 set_window_width (sib,
1296 XFASTINT (XWINDOW (sib)->width) + XFASTINT (p->width),
1299 /* If parent now has only one child,
1300 put the child into the parent's place. */
1301 tem = par->hchild;
1302 if (NILP (tem))
1303 tem = par->vchild;
1304 if (NILP (XWINDOW (tem)->next))
1305 replace_window (parent, tem);
1307 /* Since we may be deleting combination windows, we must make sure that
1308 not only p but all its children have been marked as deleted. */
1309 if (! NILP (p->hchild))
1310 delete_all_subwindows (XWINDOW (p->hchild));
1311 else if (! NILP (p->vchild))
1312 delete_all_subwindows (XWINDOW (p->vchild));
1314 /* Mark this window as deleted. */
1315 p->buffer = p->hchild = p->vchild = Qnil;
1317 /* Adjust glyph matrices. */
1318 adjust_glyphs (f);
1319 UNBLOCK_INPUT;
1324 /***********************************************************************
1325 Window List
1326 ***********************************************************************/
1328 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
1329 pointer. This is a callback function for foreach_window, used in
1330 function window_list. */
1332 static int
1333 add_window_to_list (w, user_data)
1334 struct window *w;
1335 void *user_data;
1337 Lisp_Object *list = (Lisp_Object *) user_data;
1338 Lisp_Object window;
1339 XSETWINDOW (window, w);
1340 *list = Fcons (window, *list);
1341 return 1;
1345 /* Return a list of all windows, for use by next_window. If
1346 Vwindow_list is a list, return that list. Otherwise, build a new
1347 list, cache it in Vwindow_list, and return that. */
1349 static Lisp_Object
1350 window_list ()
1352 if (!CONSP (Vwindow_list))
1354 Lisp_Object tail;
1356 Vwindow_list = Qnil;
1357 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1359 Lisp_Object args[2];
1361 /* We are visiting windows in canonical order, and add
1362 new windows at the front of args[1], which means we
1363 have to reverse this list at the end. */
1364 args[1] = Qnil;
1365 foreach_window (XFRAME (XCAR (tail)), add_window_to_list, &args[1]);
1366 args[0] = Vwindow_list;
1367 args[1] = Fnreverse (args[1]);
1368 Vwindow_list = Fnconc (2, args);
1372 return Vwindow_list;
1376 /* Value is non-zero if WINDOW satisfies the constraints given by
1377 OWINDOW, MINIBUF and ALL_FRAMES.
1379 MINIBUF t means WINDOW may be minibuffer windows.
1380 `lambda' means WINDOW may not be a minibuffer window.
1381 a window means a specific minibuffer window
1383 ALL_FRAMES t means search all frames,
1384 nil means search just current frame,
1385 `visible' means search just visible frames,
1386 0 means search visible and iconified frames,
1387 a window means search the frame that window belongs to,
1388 a frame means consider windows on that frame, only. */
1390 static int
1391 candidate_window_p (window, owindow, minibuf, all_frames)
1392 Lisp_Object window, owindow, minibuf, all_frames;
1394 struct window *w = XWINDOW (window);
1395 struct frame *f = XFRAME (w->frame);
1396 int candidate_p = 1;
1398 if (!BUFFERP (w->buffer))
1399 candidate_p = 0;
1400 else if (MINI_WINDOW_P (w)
1401 && (EQ (minibuf, Qlambda)
1402 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
1404 /* If MINIBUF is `lambda' don't consider any mini-windows.
1405 If it is a window, consider only that one. */
1406 candidate_p = 0;
1408 else if (EQ (all_frames, Qt))
1409 candidate_p = 1;
1410 else if (NILP (all_frames))
1412 xassert (WINDOWP (owindow));
1413 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
1415 else if (EQ (all_frames, Qvisible))
1417 FRAME_SAMPLE_VISIBILITY (f);
1418 candidate_p = FRAME_VISIBLE_P (f);
1420 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
1422 FRAME_SAMPLE_VISIBILITY (f);
1423 candidate_p = FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
1425 else if (WINDOWP (all_frames))
1426 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
1427 || EQ (XWINDOW (all_frames)->frame, w->frame)
1428 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
1429 else if (FRAMEP (all_frames))
1430 candidate_p = EQ (all_frames, w->frame);
1432 return candidate_p;
1436 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
1437 Fwindow_list. See there for the meaning of WINDOW, MINIBUF, and
1438 ALL_FRAMES. */
1440 static void
1441 decode_next_window_args (window, minibuf, all_frames)
1442 Lisp_Object *window, *minibuf, *all_frames;
1444 if (NILP (*window))
1445 *window = selected_window;
1446 else
1447 CHECK_LIVE_WINDOW (*window, 0);
1449 /* MINIBUF nil may or may not include minibuffers. Decide if it
1450 does. */
1451 if (NILP (*minibuf))
1452 *minibuf = minibuf_level ? minibuf_window : Qlambda;
1453 else if (!EQ (*minibuf, Qt))
1454 *minibuf = Qlambda;
1456 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
1457 => count none of them, or a specific minibuffer window (the
1458 active one) to count. */
1460 /* ALL_FRAMES nil doesn't specify which frames to include. */
1461 if (NILP (*all_frames))
1462 *all_frames = (!EQ (*minibuf, Qlambda)
1463 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window)->frame))
1464 : Qnil);
1465 else if (EQ (*all_frames, Qvisible))
1467 else if (XFASTINT (*all_frames) == 0)
1469 else if (FRAMEP (*all_frames))
1471 else if (!EQ (*all_frames, Qt))
1472 *all_frames = Qnil;
1474 /* Now *ALL_FRAMES is t meaning search all frames, nil meaning
1475 search just current frame, `visible' meaning search just visible
1476 frames, 0 meaning search visible and iconified frames, or a
1477 window, meaning search the frame that window belongs to, or a
1478 frame, meaning consider windows on that frame, only. */
1482 /* Return the next or previous window of WINDOW in canonical ordering
1483 of windows. NEXT_P non-zero means return the next window. See the
1484 documentation string of next-window for the meaning of MINIBUF and
1485 ALL_FRAMES. */
1487 static Lisp_Object
1488 next_window (window, minibuf, all_frames, next_p)
1489 Lisp_Object window, minibuf, all_frames;
1490 int next_p;
1492 decode_next_window_args (&window, &minibuf, &all_frames);
1494 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
1495 return the first window on the frame. */
1496 if (FRAMEP (all_frames)
1497 && !EQ (all_frames, XWINDOW (window)->frame))
1498 return Fframe_first_window (all_frames);
1500 if (next_p)
1502 Lisp_Object list;
1504 /* Find WINDOW in the list of all windows. */
1505 list = Fmemq (window, window_list ());
1507 /* Scan forward from WINDOW to the end of the window list. */
1508 if (CONSP (list))
1509 for (list = XCDR (list); CONSP (list); list = XCDR (list))
1510 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1511 break;
1513 /* Scan from the start of the window list up to WINDOW. */
1514 if (!CONSP (list))
1515 for (list = Vwindow_list;
1516 CONSP (list) && !EQ (XCAR (list), window);
1517 list = XCDR (list))
1518 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1519 break;
1521 if (CONSP (list))
1522 window = XCAR (list);
1524 else
1526 Lisp_Object candidate, list;
1528 /* Scan through the list of windows for candidates. If there are
1529 candidate windows in front of WINDOW, the last one of these
1530 is the one we want. If there are candidates following WINDOW
1531 in the list, again the last one of these is the one we want. */
1532 candidate = Qnil;
1533 for (list = window_list (); CONSP (list); list = XCDR (list))
1535 if (EQ (XCAR (list), window))
1537 if (WINDOWP (candidate))
1538 break;
1540 else if (candidate_window_p (XCAR (list), window, minibuf,
1541 all_frames))
1542 candidate = XCAR (list);
1545 if (WINDOWP (candidate))
1546 window = candidate;
1549 return window;
1553 /* This comment supplies the doc string for `next-window',
1554 for make-docfile to see. We cannot put this in the real DEFUN
1555 due to limits in the Unix cpp.
1557 DEFUN ("next-window", Ffoo, Sfoo, 0, 3, 0,
1558 "Return next window after WINDOW in canonical ordering of windows.\n\
1559 If omitted, WINDOW defaults to the selected window.\n\
1561 Optional second arg MINIBUF t means count the minibuffer window even\n\
1562 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1563 it is active. MINIBUF neither t nor nil means not to count the\n\
1564 minibuffer even if it is active.\n\
1566 Several frames may share a single minibuffer; if the minibuffer\n\
1567 counts, all windows on all frames that share that minibuffer count\n\
1568 too. Therefore, `next-window' can be used to iterate through the\n\
1569 set of windows even when the minibuffer is on another frame. If the\n\
1570 minibuffer does not count, only windows from WINDOW's frame count.\n\
1572 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1573 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1574 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1575 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1576 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1577 Anything else means restrict to WINDOW's frame.\n\
1579 If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1580 `next-window' to iterate through the entire cycle of acceptable\n\
1581 windows, eventually ending up back at the window you started with.\n\
1582 `previous-window' traverses the same cycle, in the reverse order.")
1583 (window, minibuf, all_frames) */
1585 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1587 (window, minibuf, all_frames)
1588 Lisp_Object window, minibuf, all_frames;
1590 return next_window (window, minibuf, all_frames, 1);
1594 /* This comment supplies the doc string for `previous-window',
1595 for make-docfile to see. We cannot put this in the real DEFUN
1596 due to limits in the Unix cpp.
1598 DEFUN ("previous-window", Ffoo, Sfoo, 0, 3, 0,
1599 "Return the window preceding WINDOW in canonical ordering of windows.\n\
1600 If omitted, WINDOW defaults to the selected window.\n\
1602 Optional second arg MINIBUF t means count the minibuffer window even\n\
1603 if not active. MINIBUF nil or omitted means count the minibuffer iff\n\
1604 it is active. MINIBUF neither t nor nil means not to count the\n\
1605 minibuffer even if it is active.\n\
1607 Several frames may share a single minibuffer; if the minibuffer\n\
1608 counts, all windows on all frames that share that minibuffer count\n\
1609 too. Therefore, `previous-window' can be used to iterate through\n\
1610 the set of windows even when the minibuffer is on another frame. If\n\
1611 the minibuffer does not count, only windows from WINDOW's frame count\n\
1613 Optional third arg ALL-FRAMES t means include windows on all frames.\n\
1614 ALL-FRAMES nil or omitted means cycle within the frames as specified\n\
1615 above. ALL-FRAMES = `visible' means include windows on all visible frames.\n\
1616 ALL-FRAMES = 0 means include windows on all visible and iconified frames.\n\
1617 If ALL-FRAMES is a frame, restrict search to windows on that frame.\n\
1618 Anything else means restrict to WINDOW's frame.\n\
1620 If you use consistent values for MINIBUF and ALL-FRAMES, you can use\n\
1621 `previous-window' to iterate through the entire cycle of acceptable\n\
1622 windows, eventually ending up back at the window you started with.\n\
1623 `next-window' traverses the same cycle, in the reverse order.")
1624 (window, minibuf, all_frames) */
1627 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1629 (window, minibuf, all_frames)
1630 Lisp_Object window, minibuf, all_frames;
1632 return next_window (window, minibuf, all_frames, 0);
1636 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1637 "Select the ARG'th different window on this frame.\n\
1638 All windows on current frame are arranged in a cyclic order.\n\
1639 This command selects the window ARG steps away in that order.\n\
1640 A negative ARG moves in the opposite order. If the optional second\n\
1641 argument ALL_FRAMES is non-nil, cycle through all frames.")
1642 (arg, all_frames)
1643 Lisp_Object arg, all_frames;
1645 Lisp_Object window;
1646 int i;
1648 CHECK_NUMBER (arg, 0);
1649 window = selected_window;
1651 for (i = XINT (arg); i > 0; --i)
1652 window = Fnext_window (window, Qnil, all_frames);
1653 for (; i < 0; ++i)
1654 window = Fprevious_window (window, Qnil, all_frames);
1656 Fselect_window (window);
1657 return Qnil;
1661 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
1662 "Return a list of windows on FRAME, starting with WINDOW.\n\
1663 FRAME nil or omitted means use the selected frame.\n\
1664 WINDOW nil or omitted means use the selected window.\n\
1665 MINIBUF t means include the minibuffer window, even if it isn't active.\n\
1666 MINIBUF nil or omitted means include the minibuffer window only\n\
1667 if it's active.\n\
1668 MINIBUF neither nil nor t means never include the minibuffer window.")
1669 (frame, minibuf, window)
1670 Lisp_Object frame, minibuf, window;
1673 if (NILP (window))
1674 window = selected_window;
1675 if (NILP (frame))
1676 frame = selected_frame;
1678 if (!EQ (frame, XWINDOW (window)->frame))
1679 error ("Window is on a different frame");
1681 return window_list_1 (window, minibuf, frame);
1685 /* Return a list of windows in canonical ordering. Arguments are like
1686 for `next-window'. */
1688 static Lisp_Object
1689 window_list_1 (window, minibuf, all_frames)
1690 Lisp_Object window, minibuf, all_frames;
1692 Lisp_Object tail, list;
1694 decode_next_window_args (&window, &minibuf, &all_frames);
1695 list = Qnil;
1697 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
1698 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
1699 list = Fcons (XCAR (tail), list);
1701 return Fnreverse (list);
1706 /* Look at all windows, performing an operation specified by TYPE
1707 with argument OBJ.
1708 If FRAMES is Qt, look at all frames;
1709 Qnil, look at just the selected frame;
1710 Qvisible, look at visible frames;
1711 a frame, just look at windows on that frame.
1712 If MINI is non-zero, perform the operation on minibuffer windows too. */
1714 enum window_loop
1716 WINDOW_LOOP_UNUSED,
1717 GET_BUFFER_WINDOW, /* Arg is buffer */
1718 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
1719 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
1720 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
1721 GET_LARGEST_WINDOW,
1722 UNSHOW_BUFFER, /* Arg is buffer */
1723 CHECK_ALL_WINDOWS
1726 static Lisp_Object
1727 window_loop (type, obj, mini, frames)
1728 enum window_loop type;
1729 Lisp_Object obj, frames;
1730 int mini;
1732 Lisp_Object window, windows, best_window, frame_arg;
1733 struct frame *f;
1734 struct gcpro gcpro1;
1736 /* If we're only looping through windows on a particular frame,
1737 frame points to that frame. If we're looping through windows
1738 on all frames, frame is 0. */
1739 if (FRAMEP (frames))
1740 f = XFRAME (frames);
1741 else if (NILP (frames))
1742 f = SELECTED_FRAME ();
1743 else
1744 f = NULL;
1746 if (f)
1747 frame_arg = Qlambda;
1748 else if (XFASTINT (frames) == 0)
1749 frame_arg = frames;
1750 else if (EQ (frames, Qvisible))
1751 frame_arg = frames;
1752 else
1753 frame_arg = Qt;
1755 /* frame_arg is Qlambda to stick to one frame,
1756 Qvisible to consider all visible frames,
1757 or Qt otherwise. */
1759 /* Pick a window to start with. */
1760 if (WINDOWP (obj))
1761 window = obj;
1762 else if (f)
1763 window = FRAME_SELECTED_WINDOW (f);
1764 else
1765 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
1767 /* Figure out the last window we're going to mess with. Since
1768 Fnext_window, given the same options, is guaranteed to go in a
1769 ring, we can just use Fprevious_window to find the last one.
1771 We can't just wait until we hit the first window again, because
1772 it might be deleted. */
1774 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
1775 GCPRO1 (windows);
1776 best_window = Qnil;
1778 for (; CONSP (windows); windows = CDR (windows))
1780 struct window *w;
1782 window = XCAR (windows);
1783 w = XWINDOW (window);
1785 /* Note that we do not pay attention here to whether the frame
1786 is visible, since Fwindow_list skips non-visible frames if
1787 that is desired, under the control of frame_arg. */
1788 if (!MINI_WINDOW_P (w)
1789 /* For UNSHOW_BUFFER, we must always consider all windows. */
1790 || type == UNSHOW_BUFFER
1791 || (mini && minibuf_level > 0))
1792 switch (type)
1794 case GET_BUFFER_WINDOW:
1795 if (EQ (w->buffer, obj)
1796 /* Don't find any minibuffer window
1797 except the one that is currently in use. */
1798 && (MINI_WINDOW_P (w)
1799 ? EQ (window, minibuf_window)
1800 : 1))
1802 UNGCPRO;
1803 return window;
1805 break;
1807 case GET_LRU_WINDOW:
1808 /* t as arg means consider only full-width windows */
1809 if (!NILP (obj) && !WINDOW_FULL_WIDTH_P (w))
1810 break;
1811 /* Ignore dedicated windows and minibuffers. */
1812 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
1813 break;
1814 if (NILP (best_window)
1815 || (XFASTINT (XWINDOW (best_window)->use_time)
1816 > XFASTINT (w->use_time)))
1817 best_window = window;
1818 break;
1820 case DELETE_OTHER_WINDOWS:
1821 if (!EQ (window, obj))
1822 Fdelete_window (window);
1823 break;
1825 case DELETE_BUFFER_WINDOWS:
1826 if (EQ (w->buffer, obj))
1828 struct frame *f = XFRAME (WINDOW_FRAME (w));
1830 /* If this window is dedicated, and in a frame of its own,
1831 kill the frame. */
1832 if (EQ (window, FRAME_ROOT_WINDOW (f))
1833 && !NILP (w->dedicated)
1834 && other_visible_frames (f))
1836 /* Skip the other windows on this frame.
1837 There might be one, the minibuffer! */
1838 while (CONSP (XCDR (windows))
1839 && EQ (XWINDOW (XCAR (windows))->frame,
1840 XWINDOW (XCAR (XCDR (windows)))->frame))
1841 windows = XCDR (windows);
1843 /* Now we can safely delete the frame. */
1844 Fdelete_frame (w->frame, Qnil);
1846 else if (NILP (w->parent))
1848 /* If we're deleting the buffer displayed in the
1849 only window on the frame, find a new buffer to
1850 display there. */
1851 Lisp_Object buffer;
1852 buffer = Fother_buffer (obj, Qnil, w->frame);
1853 if (NILP (buffer))
1854 buffer = Fget_buffer_create (build_string ("*scratch*"));
1855 Fset_window_buffer (window, buffer);
1856 if (EQ (window, selected_window))
1857 Fset_buffer (w->buffer);
1859 else
1860 Fdelete_window (window);
1862 break;
1864 case GET_LARGEST_WINDOW:
1866 /* Ignore dedicated windows and minibuffers. */
1867 if (MINI_WINDOW_P (w) || !NILP (w->dedicated))
1868 break;
1870 if (NILP (best_window))
1871 best_window = window;
1872 else
1874 struct window *b = XWINDOW (best_window);
1875 if (XFASTINT (w->height) * XFASTINT (w->width)
1876 > XFASTINT (b->height) * XFASTINT (b->width))
1877 best_window = window;
1880 break;
1882 case UNSHOW_BUFFER:
1883 if (EQ (w->buffer, obj))
1885 Lisp_Object buffer;
1886 struct frame *f = XFRAME (w->frame);
1888 /* Find another buffer to show in this window. */
1889 buffer = Fother_buffer (obj, Qnil, w->frame);
1890 if (NILP (buffer))
1891 buffer = Fget_buffer_create (build_string ("*scratch*"));
1893 /* If this window is dedicated, and in a frame of its own,
1894 kill the frame. */
1895 if (EQ (window, FRAME_ROOT_WINDOW (f))
1896 && !NILP (w->dedicated)
1897 && other_visible_frames (f))
1899 /* Skip the other windows on this frame.
1900 There might be one, the minibuffer! */
1901 while (CONSP (XCDR (windows))
1902 && EQ (XWINDOW (XCAR (windows))->frame,
1903 XWINDOW (XCAR (XCDR (windows)))->frame))
1904 windows = XCDR (windows);
1906 /* Now we can safely delete the frame. */
1907 Fdelete_frame (w->frame, Qnil);
1909 else
1911 /* Otherwise show a different buffer in the window. */
1912 w->dedicated = Qnil;
1913 Fset_window_buffer (window, buffer);
1914 if (EQ (window, selected_window))
1915 Fset_buffer (w->buffer);
1918 break;
1920 /* Check for a window that has a killed buffer. */
1921 case CHECK_ALL_WINDOWS:
1922 if (! NILP (w->buffer)
1923 && NILP (XBUFFER (w->buffer)->name))
1924 abort ();
1925 break;
1927 case WINDOW_LOOP_UNUSED:
1928 break;
1932 UNGCPRO;
1933 return best_window;
1936 /* Used for debugging. Abort if any window has a dead buffer. */
1938 void
1939 check_all_windows ()
1941 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
1944 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 1, 0,
1945 "Return the window least recently selected or used for display.\n\
1946 If optional argument FRAME is `visible', search all visible frames.\n\
1947 If FRAME is 0, search all visible and iconified frames.\n\
1948 If FRAME is t, search all frames.\n\
1949 If FRAME is nil, search only the selected frame.\n\
1950 If FRAME is a frame, search only that frame.")
1951 (frame)
1952 Lisp_Object frame;
1954 register Lisp_Object w;
1955 /* First try for a window that is full-width */
1956 w = window_loop (GET_LRU_WINDOW, Qt, 0, frame);
1957 if (!NILP (w) && !EQ (w, selected_window))
1958 return w;
1959 /* If none of them, try the rest */
1960 return window_loop (GET_LRU_WINDOW, Qnil, 0, frame);
1963 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 1, 0,
1964 "Return the largest window in area.\n\
1965 If optional argument FRAME is `visible', search all visible frames.\n\
1966 If FRAME is 0, search all visible and iconified frames.\n\
1967 If FRAME is t, search all frames.\n\
1968 If FRAME is nil, search only the selected frame.\n\
1969 If FRAME is a frame, search only that frame.")
1970 (frame)
1971 Lisp_Object frame;
1973 return window_loop (GET_LARGEST_WINDOW, Qnil, 0,
1974 frame);
1977 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
1978 "Return a window currently displaying BUFFER, or nil if none.\n\
1979 If optional argument FRAME is `visible', search all visible frames.\n\
1980 If optional argument FRAME is 0, search all visible and iconified frames.\n\
1981 If FRAME is t, search all frames.\n\
1982 If FRAME is nil, search only the selected frame.\n\
1983 If FRAME is a frame, search only that frame.")
1984 (buffer, frame)
1985 Lisp_Object buffer, frame;
1987 buffer = Fget_buffer (buffer);
1988 if (BUFFERP (buffer))
1989 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
1990 else
1991 return Qnil;
1994 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
1995 0, 1, "",
1996 "Make WINDOW (or the selected window) fill its frame.\n\
1997 Only the frame WINDOW is on is affected.\n\
1998 This function tries to reduce display jumps\n\
1999 by keeping the text previously visible in WINDOW\n\
2000 in the same place on the frame. Doing this depends on\n\
2001 the value of (window-start WINDOW), so if calling this function\n\
2002 in a program gives strange scrolling, make sure the window-start\n\
2003 value is reasonable when this function is called.")
2004 (window)
2005 Lisp_Object window;
2007 struct window *w;
2008 int startpos;
2009 int top, new_top;
2011 if (NILP (window))
2012 window = selected_window;
2013 else
2014 CHECK_LIVE_WINDOW (window, 0);
2015 w = XWINDOW (window);
2017 startpos = marker_position (w->start);
2018 top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2020 if (MINI_WINDOW_P (w) && top > 0)
2021 error ("Can't expand minibuffer to full frame");
2023 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
2025 /* Try to minimize scrolling, by setting the window start to the point
2026 will cause the text at the old window start to be at the same place
2027 on the frame. But don't try to do this if the window start is
2028 outside the visible portion (as might happen when the display is
2029 not current, due to typeahead). */
2030 new_top = XFASTINT (w->top) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2031 if (new_top != top
2032 && startpos >= BUF_BEGV (XBUFFER (w->buffer))
2033 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
2035 struct position pos;
2036 struct buffer *obuf = current_buffer;
2038 Fset_buffer (w->buffer);
2039 /* This computation used to temporarily move point, but that can
2040 have unwanted side effects due to text properties. */
2041 pos = *vmotion (startpos, -top, w);
2043 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
2044 w->window_end_valid = Qnil;
2045 w->start_at_line_beg = ((pos.bytepos == BEGV_BYTE
2046 || FETCH_BYTE (pos.bytepos - 1) == '\n') ? Qt
2047 : Qnil);
2048 /* We need to do this, so that the window-scroll-functions
2049 get called. */
2050 w->optional_new_start = Qt;
2052 set_buffer_internal (obuf);
2055 return Qnil;
2058 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
2059 1, 2, "bDelete windows on (buffer): ",
2060 "Delete all windows showing BUFFER.\n\
2061 Optional second argument FRAME controls which frames are affected.\n\
2062 If optional argument FRAME is `visible', search all visible frames.\n\
2063 If FRAME is 0, search all visible and iconified frames.\n\
2064 If FRAME is nil, search all frames.\n\
2065 If FRAME is t, search only the selected frame.\n\
2066 If FRAME is a frame, search only that frame.")
2067 (buffer, frame)
2068 Lisp_Object buffer, frame;
2070 /* FRAME uses t and nil to mean the opposite of what window_loop
2071 expects. */
2072 if (NILP (frame))
2073 frame = Qt;
2074 else if (EQ (frame, Qt))
2075 frame = Qnil;
2077 if (!NILP (buffer))
2079 buffer = Fget_buffer (buffer);
2080 CHECK_BUFFER (buffer, 0);
2081 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
2084 return Qnil;
2087 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
2088 Sreplace_buffer_in_windows,
2089 1, 1, "bReplace buffer in windows: ",
2090 "Replace BUFFER with some other buffer in all windows showing it.")
2091 (buffer)
2092 Lisp_Object buffer;
2094 if (!NILP (buffer))
2096 buffer = Fget_buffer (buffer);
2097 CHECK_BUFFER (buffer, 0);
2098 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
2100 return Qnil;
2103 /* Replace BUFFER with some other buffer in all windows
2104 of all frames, even those on other keyboards. */
2106 void
2107 replace_buffer_in_all_windows (buffer)
2108 Lisp_Object buffer;
2110 #ifdef MULTI_KBOARD
2111 Lisp_Object tail, frame;
2113 /* A single call to window_loop won't do the job
2114 because it only considers frames on the current keyboard.
2115 So loop manually over frames, and handle each one. */
2116 FOR_EACH_FRAME (tail, frame)
2117 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
2118 #else
2119 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
2120 #endif
2123 /* Set the height of WINDOW and all its inferiors. */
2125 /* The smallest acceptable dimensions for a window. Anything smaller
2126 might crash Emacs. */
2128 #define MIN_SAFE_WINDOW_WIDTH (2)
2129 #define MIN_SAFE_WINDOW_HEIGHT (2)
2131 /* Make sure that window_min_height and window_min_width are
2132 not too small; if they are, set them to safe minima. */
2134 static void
2135 check_min_window_sizes ()
2137 /* Smaller values might permit a crash. */
2138 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
2139 window_min_width = MIN_SAFE_WINDOW_WIDTH;
2140 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
2141 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
2144 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
2145 minimum allowable size. */
2147 void
2148 check_frame_size (frame, rows, cols)
2149 FRAME_PTR frame;
2150 int *rows, *cols;
2152 /* For height, we have to see:
2153 whether the frame has a minibuffer,
2154 whether it wants a mode line, and
2155 whether it has a menu bar. */
2156 int min_height =
2157 (FRAME_MINIBUF_ONLY_P (frame) ? MIN_SAFE_WINDOW_HEIGHT - 1
2158 : (! FRAME_HAS_MINIBUF_P (frame)) ? MIN_SAFE_WINDOW_HEIGHT
2159 : 2 * MIN_SAFE_WINDOW_HEIGHT - 1);
2161 if (FRAME_TOP_MARGIN (frame) > 0)
2162 min_height += FRAME_TOP_MARGIN (frame);
2164 if (*rows < min_height)
2165 *rows = min_height;
2166 if (*cols < MIN_SAFE_WINDOW_WIDTH)
2167 *cols = MIN_SAFE_WINDOW_WIDTH;
2171 /* Value is non-zero if window W is fixed-size. WIDTH_P non-zero means
2172 check if W's width can be changed, otherwise check W's height.
2173 CHECK_SIBLINGS_P non-zero means check resizablity of WINDOW's
2174 siblings, too. If none of the siblings is resizable, WINDOW isn't
2175 either. */
2177 static int
2178 window_fixed_size_p (w, width_p, check_siblings_p)
2179 struct window *w;
2180 int width_p, check_siblings_p;
2182 int fixed_p;
2183 struct window *c;
2185 if (!NILP (w->hchild))
2187 c = XWINDOW (w->hchild);
2189 if (width_p)
2191 /* A horiz. combination is fixed-width if all of if its
2192 children are. */
2193 while (c && window_fixed_size_p (c, width_p, 0))
2194 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2195 fixed_p = c == NULL;
2197 else
2199 /* A horiz. combination is fixed-height if one of if its
2200 children is. */
2201 while (c && !window_fixed_size_p (c, width_p, 0))
2202 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2203 fixed_p = c != NULL;
2206 else if (!NILP (w->vchild))
2208 c = XWINDOW (w->vchild);
2210 if (width_p)
2212 /* A vert. combination is fixed-width if one of if its
2213 children is. */
2214 while (c && !window_fixed_size_p (c, width_p, 0))
2215 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2216 fixed_p = c != NULL;
2218 else
2220 /* A vert. combination is fixed-height if all of if its
2221 children are. */
2222 while (c && window_fixed_size_p (c, width_p, 0))
2223 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2224 fixed_p = c == NULL;
2227 else if (BUFFERP (w->buffer))
2229 if (w->height_fixed_p && !width_p)
2230 fixed_p = 1;
2231 else
2233 struct buffer *old = current_buffer;
2234 Lisp_Object val;
2236 current_buffer = XBUFFER (w->buffer);
2237 val = find_symbol_value (Qwindow_size_fixed);
2238 current_buffer = old;
2240 fixed_p = 0;
2241 if (!EQ (val, Qunbound))
2243 fixed_p = !NILP (val);
2245 if (fixed_p
2246 && ((EQ (val, Qheight) && width_p)
2247 || (EQ (val, Qwidth) && !width_p)))
2248 fixed_p = 0;
2252 /* Can't tell if this one is resizable without looking at
2253 siblings. If all siblings are fixed-size this one is too. */
2254 if (!fixed_p && check_siblings_p && WINDOWP (w->parent))
2256 Lisp_Object child;
2258 for (child = w->prev; !NILP (child); child = XWINDOW (child)->prev)
2259 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2260 break;
2262 if (NILP (child))
2263 for (child = w->next; !NILP (child); child = XWINDOW (child)->next)
2264 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2265 break;
2267 if (NILP (child))
2268 fixed_p = 1;
2271 else
2272 fixed_p = 1;
2274 return fixed_p;
2278 /* Return the minimum size of window W, not taking fixed-width windows
2279 into account. WIDTH_P non-zero means return the minimum width,
2280 otherwise return the minimum height. If W is a combination window,
2281 compute the minimum size from the minimum sizes of W's children. */
2283 static int
2284 window_min_size_1 (w, width_p)
2285 struct window *w;
2286 int width_p;
2288 struct window *c;
2289 int size;
2291 if (!NILP (w->hchild))
2293 c = XWINDOW (w->hchild);
2294 size = 0;
2296 if (width_p)
2298 /* The min width of a horizontal combination is
2299 the sum of the min widths of its children. */
2300 while (c)
2302 size += window_min_size_1 (c, width_p);
2303 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2306 else
2308 /* The min height a horizontal combination equals
2309 the maximum of all min height of its children. */
2310 while (c)
2312 int min_size = window_min_size_1 (c, width_p);
2313 size = max (min_size, size);
2314 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2318 else if (!NILP (w->vchild))
2320 c = XWINDOW (w->vchild);
2321 size = 0;
2323 if (width_p)
2325 /* The min width of a vertical combination is
2326 the maximum of the min widths of its children. */
2327 while (c)
2329 int min_size = window_min_size_1 (c, width_p);
2330 size = max (min_size, size);
2331 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2334 else
2336 /* The min height of a vertical combination equals
2337 the sum of the min height of its children. */
2338 while (c)
2340 size += window_min_size_1 (c, width_p);
2341 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2345 else
2347 if (width_p)
2348 size = window_min_width;
2349 else
2351 if (MINI_WINDOW_P (w)
2352 || (!WINDOW_WANTS_MODELINE_P (w)
2353 && !WINDOW_WANTS_HEADER_LINE_P (w)))
2354 size = 1;
2355 else
2356 size = window_min_height;
2360 return size;
2364 /* Return the minimum size of window W, taking fixed-size windows into
2365 account. WIDTH_P non-zero means return the minimum width,
2366 otherwise return the minimum height. IGNORE_FIXED_P non-zero means
2367 ignore if W is fixed-size. Set *FIXED to 1 if W is fixed-size
2368 unless FIXED is null. */
2370 static int
2371 window_min_size (w, width_p, ignore_fixed_p, fixed)
2372 struct window *w;
2373 int width_p, ignore_fixed_p, *fixed;
2375 int size, fixed_p;
2377 if (ignore_fixed_p)
2378 fixed_p = 0;
2379 else
2380 fixed_p = window_fixed_size_p (w, width_p, 1);
2382 if (fixed)
2383 *fixed = fixed_p;
2385 if (fixed_p)
2386 size = width_p ? XFASTINT (w->width) : XFASTINT (w->height);
2387 else
2388 size = window_min_size_1 (w, width_p);
2390 return size;
2394 /* Set WINDOW's height or width to SIZE. WIDTH_P non-zero means set
2395 WINDOW's width. Resize WINDOW's children, if any, so that they
2396 keep their proportionate size relative to WINDOW. Propagate
2397 WINDOW's top or left edge position to children. Delete windows
2398 that become too small unless NODELETE_P is non-zero. */
2400 static void
2401 size_window (window, size, width_p, nodelete_p)
2402 Lisp_Object window;
2403 int size, width_p, nodelete_p;
2405 struct window *w = XWINDOW (window);
2406 struct window *c;
2407 Lisp_Object child, *forward, *sideward;
2408 int old_size, min_size;
2410 check_min_window_sizes ();
2411 size = max (0, size);
2413 /* If the window has been "too small" at one point,
2414 don't delete it for being "too small" in the future.
2415 Preserve it as long as that is at all possible. */
2416 if (width_p)
2418 old_size = XINT (w->width);
2419 min_size = window_min_width;
2421 else
2423 old_size = XINT (w->height);
2424 min_size = window_min_height;
2427 if (old_size < min_size)
2428 w->too_small_ok = Qt;
2430 /* Maybe delete WINDOW if it's too small. */
2431 if (!nodelete_p && !NILP (w->parent))
2433 if (!MINI_WINDOW_P (w) && !NILP (w->too_small_ok))
2434 min_size = width_p ? MIN_SAFE_WINDOW_WIDTH : MIN_SAFE_WINDOW_HEIGHT;
2435 else
2436 min_size = width_p ? window_min_width : window_min_height;
2438 if (size < min_size)
2440 delete_window (window);
2441 return;
2445 /* Set redisplay hints. */
2446 w->last_modified = make_number (0);
2447 w->last_overlay_modified = make_number (0);
2448 windows_or_buffers_changed++;
2449 FRAME_WINDOW_SIZES_CHANGED (XFRAME (w->frame)) = 1;
2451 if (width_p)
2453 sideward = &w->vchild;
2454 forward = &w->hchild;
2455 w->width = make_number (size);
2457 else
2459 sideward = &w->hchild;
2460 forward = &w->vchild;
2461 w->height = make_number (size);
2462 w->orig_height = Qnil;
2465 if (!NILP (*sideward))
2467 for (child = *sideward; !NILP (child); child = c->next)
2469 c = XWINDOW (child);
2470 if (width_p)
2471 c->left = w->left;
2472 else
2473 c->top = w->top;
2474 size_window (child, size, width_p, nodelete_p);
2477 else if (!NILP (*forward))
2479 int fixed_size, each, extra, n;
2480 int resize_fixed_p, nfixed;
2481 int last_pos, first_pos, nchildren, total;
2483 /* Determine the fixed-size portion of the this window, and the
2484 number of child windows. */
2485 fixed_size = nchildren = nfixed = total = 0;
2486 for (child = *forward; !NILP (child); child = c->next, ++nchildren)
2488 int child_size;
2490 c = XWINDOW (child);
2491 child_size = width_p ? XINT (c->width) : XINT (c->height);
2492 total += child_size;
2494 if (window_fixed_size_p (c, width_p, 0))
2496 fixed_size += child_size;
2497 ++nfixed;
2501 /* If the new size is smaller than fixed_size, or if there
2502 aren't any resizable windows, allow resizing fixed-size
2503 windows. */
2504 resize_fixed_p = nfixed == nchildren || size < fixed_size;
2506 /* Compute how many lines/columns to add to each child. The
2507 value of extra takes care of rounding errors. */
2508 n = resize_fixed_p ? nchildren : nchildren - nfixed;
2509 each = (size - total) / n;
2510 extra = (size - total) - n * each;
2512 /* Compute new children heights and edge positions. */
2513 first_pos = width_p ? XINT (w->left) : XINT (w->top);
2514 last_pos = first_pos;
2515 for (child = *forward; !NILP (child); child = c->next)
2517 int new_size, old_size;
2519 c = XWINDOW (child);
2520 old_size = width_p ? XFASTINT (c->width) : XFASTINT (c->height);
2521 new_size = old_size;
2523 /* The top or left edge position of this child equals the
2524 bottom or right edge of its predecessor. */
2525 if (width_p)
2526 c->left = make_number (last_pos);
2527 else
2528 c->top = make_number (last_pos);
2530 /* If this child can be resized, do it. */
2531 if (resize_fixed_p || !window_fixed_size_p (c, width_p, 0))
2533 new_size = old_size + each + extra;
2534 extra = 0;
2537 /* Set new height. Note that size_window also propagates
2538 edge positions to children, so it's not a no-op if we
2539 didn't change the child's size. */
2540 size_window (child, new_size, width_p, 1);
2542 /* Remember the bottom/right edge position of this child; it
2543 will be used to set the top/left edge of the next child. */
2544 last_pos += new_size;
2547 /* We should have covered the parent exactly with child windows. */
2548 xassert (size == last_pos - first_pos);
2550 /* Now delete any children that became too small. */
2551 if (!nodelete_p)
2552 for (child = *forward; !NILP (child); child = c->next)
2554 int child_size;
2555 c = XWINDOW (child);
2556 child_size = width_p ? XINT (c->width) : XINT (c->height);
2557 size_window (child, child_size, width_p, 0);
2562 /* Set WINDOW's height to HEIGHT, and recursively change the height of
2563 WINDOW's children. NODELETE non-zero means don't delete windows
2564 that become too small in the process. (The caller should check
2565 later and do so if appropriate.) */
2567 void
2568 set_window_height (window, height, nodelete)
2569 Lisp_Object window;
2570 int height;
2571 int nodelete;
2573 size_window (window, height, 0, nodelete);
2577 /* Set WINDOW's width to WIDTH, and recursively change the width of
2578 WINDOW's children. NODELETE non-zero means don't delete windows
2579 that become too small in the process. (The caller should check
2580 later and do so if appropriate.) */
2582 void
2583 set_window_width (window, width, nodelete)
2584 Lisp_Object window;
2585 int width;
2586 int nodelete;
2588 size_window (window, width, 1, nodelete);
2592 int window_select_count;
2594 Lisp_Object
2595 Fset_window_buffer_unwind (obuf)
2596 Lisp_Object obuf;
2598 Fset_buffer (obuf);
2599 return Qnil;
2603 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
2604 means it's allowed to run hooks. See make_frame for a case where
2605 it's not allowed. */
2607 void
2608 set_window_buffer (window, buffer, run_hooks_p)
2609 Lisp_Object window, buffer;
2610 int run_hooks_p;
2612 struct window *w = XWINDOW (window);
2613 struct buffer *b = XBUFFER (buffer);
2614 int count = specpdl_ptr - specpdl;
2616 w->buffer = buffer;
2618 if (EQ (window, selected_window))
2619 b->last_selected_window = window;
2621 /* Update time stamps of buffer display. */
2622 if (INTEGERP (b->display_count))
2623 XSETINT (b->display_count, XINT (b->display_count) + 1);
2624 b->display_time = Fcurrent_time ();
2626 XSETFASTINT (w->window_end_pos, 0);
2627 XSETFASTINT (w->window_end_vpos, 0);
2628 bzero (&w->last_cursor, sizeof w->last_cursor);
2629 w->window_end_valid = Qnil;
2630 XSETFASTINT (w->hscroll, 0);
2631 XSETFASTINT (w->min_hscroll, 0);
2632 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
2633 set_marker_restricted (w->start,
2634 make_number (b->last_window_start),
2635 buffer);
2636 w->start_at_line_beg = Qnil;
2637 w->force_start = Qnil;
2638 XSETFASTINT (w->last_modified, 0);
2639 XSETFASTINT (w->last_overlay_modified, 0);
2640 windows_or_buffers_changed++;
2642 /* We must select BUFFER for running the window-scroll-functions.
2643 If WINDOW is selected, switch permanently.
2644 Otherwise, switch but go back to the ambient buffer afterward. */
2645 if (EQ (window, selected_window))
2646 Fset_buffer (buffer);
2647 /* We can't check ! NILP (Vwindow_scroll_functions) here
2648 because that might itself be a local variable. */
2649 else if (window_initialized)
2651 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
2652 Fset_buffer (buffer);
2655 /* Set left and right marginal area width from buffer. */
2656 Fset_window_margins (window, b->left_margin_width, b->right_margin_width);
2658 if (run_hooks_p)
2660 if (! NILP (Vwindow_scroll_functions))
2661 run_hook_with_args_2 (Qwindow_scroll_functions, window,
2662 Fmarker_position (w->start));
2664 if (! NILP (Vwindow_configuration_change_hook)
2665 && ! NILP (Vrun_hooks))
2666 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
2669 unbind_to (count, Qnil);
2673 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 2, 0,
2674 "Make WINDOW display BUFFER as its contents.\n\
2675 BUFFER can be a buffer or buffer name.")
2676 (window, buffer)
2677 register Lisp_Object window, buffer;
2679 register Lisp_Object tem;
2680 register struct window *w = decode_window (window);
2682 XSETWINDOW (window, w);
2683 buffer = Fget_buffer (buffer);
2684 CHECK_BUFFER (buffer, 1);
2686 if (NILP (XBUFFER (buffer)->name))
2687 error ("Attempt to display deleted buffer");
2689 tem = w->buffer;
2690 if (NILP (tem))
2691 error ("Window is deleted");
2692 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
2693 is first being set up. */
2695 if (!NILP (w->dedicated) && !EQ (tem, buffer))
2696 error ("Window is dedicated to `%s'",
2697 XSTRING (XBUFFER (tem)->name)->data);
2699 unshow_buffer (w);
2702 set_window_buffer (window, buffer, 1);
2703 return Qnil;
2706 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 1, 0,
2707 "Select WINDOW. Most editing will apply to WINDOW's buffer.\n\
2708 If WINDOW is not already selected, also make WINDOW's buffer current.\n\
2709 Note that the main editor command loop\n\
2710 selects the buffer of the selected window before each command.")
2711 (window)
2712 register Lisp_Object window;
2714 return select_window_1 (window, 1);
2717 /* Note that selected_window can be nil
2718 when this is called from Fset_window_configuration. */
2720 static Lisp_Object
2721 select_window_1 (window, recordflag)
2722 register Lisp_Object window;
2723 int recordflag;
2725 register struct window *w;
2726 register struct window *ow;
2727 struct frame *sf;
2729 CHECK_LIVE_WINDOW (window, 0);
2731 w = XWINDOW (window);
2733 if (NILP (w->buffer))
2734 error ("Trying to select deleted window or non-leaf window");
2736 XSETFASTINT (w->use_time, ++window_select_count);
2737 if (EQ (window, selected_window))
2738 return window;
2740 if (!NILP (selected_window))
2742 ow = XWINDOW (selected_window);
2743 if (! NILP (ow->buffer))
2744 set_marker_both (ow->pointm, ow->buffer,
2745 BUF_PT (XBUFFER (ow->buffer)),
2746 BUF_PT_BYTE (XBUFFER (ow->buffer)));
2749 selected_window = window;
2750 sf = SELECTED_FRAME ();
2751 if (XFRAME (WINDOW_FRAME (w)) != sf)
2753 XFRAME (WINDOW_FRAME (w))->selected_window = window;
2754 /* Use this rather than Fhandle_switch_frame
2755 so that FRAME_FOCUS_FRAME is moved appropriately as we
2756 move around in the state where a minibuffer in a separate
2757 frame is active. */
2758 Fselect_frame (WINDOW_FRAME (w), Qnil);
2760 else
2761 sf->selected_window = window;
2763 if (recordflag)
2764 record_buffer (w->buffer);
2765 Fset_buffer (w->buffer);
2767 XBUFFER (w->buffer)->last_selected_window = window;
2769 /* Go to the point recorded in the window.
2770 This is important when the buffer is in more
2771 than one window. It also matters when
2772 redisplay_window has altered point after scrolling,
2773 because it makes the change only in the window. */
2775 register int new_point = marker_position (w->pointm);
2776 if (new_point < BEGV)
2777 SET_PT (BEGV);
2778 else if (new_point > ZV)
2779 SET_PT (ZV);
2780 else
2781 SET_PT (new_point);
2784 windows_or_buffers_changed++;
2785 return window;
2788 /* Deiconify the frame containing the window WINDOW,
2789 unless it is the selected frame;
2790 then return WINDOW.
2792 The reason for the exception for the selected frame
2793 is that it seems better not to change the selected frames visibility
2794 merely because of displaying a different buffer in it.
2795 The deiconification is useful when a buffer gets shown in
2796 another frame that you were not using lately. */
2798 static Lisp_Object
2799 display_buffer_1 (window)
2800 Lisp_Object window;
2802 Lisp_Object frame = XWINDOW (window)->frame;
2803 FRAME_PTR f = XFRAME (frame);
2805 FRAME_SAMPLE_VISIBILITY (f);
2807 if (!EQ (frame, selected_frame))
2809 if (FRAME_ICONIFIED_P (f))
2810 Fmake_frame_visible (frame);
2811 else if (FRAME_VISIBLE_P (f))
2812 Fraise_frame (frame);
2815 return window;
2818 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
2819 "Returns non-nil if a buffer named BUFFER-NAME would be created specially.\n\
2820 The value is actually t if the frame should be called with default frame\n\
2821 parameters, and a list of frame parameters if they were specified.\n\
2822 See `special-display-buffer-names', and `special-display-regexps'.")
2823 (buffer_name)
2824 Lisp_Object buffer_name;
2826 Lisp_Object tem;
2828 CHECK_STRING (buffer_name, 1);
2830 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
2831 if (!NILP (tem))
2832 return Qt;
2834 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
2835 if (!NILP (tem))
2836 return XCDR (tem);
2838 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
2840 Lisp_Object car = XCAR (tem);
2841 if (STRINGP (car)
2842 && fast_string_match (car, buffer_name) >= 0)
2843 return Qt;
2844 else if (CONSP (car)
2845 && STRINGP (XCAR (car))
2846 && fast_string_match (XCAR (car), buffer_name) >= 0)
2847 return XCDR (car);
2849 return Qnil;
2852 DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
2853 "Returns non-nil if a new buffer named BUFFER-NAME would use the same window.\n\
2854 See `same-window-buffer-names' and `same-window-regexps'.")
2855 (buffer_name)
2856 Lisp_Object buffer_name;
2858 Lisp_Object tem;
2860 CHECK_STRING (buffer_name, 1);
2862 tem = Fmember (buffer_name, Vsame_window_buffer_names);
2863 if (!NILP (tem))
2864 return Qt;
2866 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
2867 if (!NILP (tem))
2868 return Qt;
2870 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
2872 Lisp_Object car = XCAR (tem);
2873 if (STRINGP (car)
2874 && fast_string_match (car, buffer_name) >= 0)
2875 return Qt;
2876 else if (CONSP (car)
2877 && STRINGP (XCAR (car))
2878 && fast_string_match (XCAR (car), buffer_name) >= 0)
2879 return Qt;
2881 return Qnil;
2884 /* Use B so the default is (other-buffer). */
2885 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
2886 "BDisplay buffer: \nP",
2887 "Make BUFFER appear in some window but don't select it.\n\
2888 BUFFER can be a buffer or a buffer name.\n\
2889 If BUFFER is shown already in some window, just use that one,\n\
2890 unless the window is the selected window and the optional second\n\
2891 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).\n\
2892 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.\n\
2893 Returns the window displaying BUFFER.\n\
2894 If `display-reuse-frames' is non-nil, and another frame is currently\n\
2895 displaying BUFFER, then simply raise that frame.\n\
2897 The variables `special-display-buffer-names', `special-display-regexps',\n\
2898 `same-window-buffer-names', and `same-window-regexps' customize how certain\n\
2899 buffer names are handled.\n\
2901 If optional argument FRAME is `visible', search all visible frames.\n\
2902 If FRAME is 0, search all visible and iconified frames.\n\
2903 If FRAME is t, search all frames.\n\
2904 If FRAME is a frame, search only that frame.\n\
2905 If FRAME is nil, search only the selected frame\n\
2906 (actually the last nonminibuffer frame),\n\
2907 unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,\n\
2908 which means search visible and iconified frames.\n\
2910 If `even-window-heights' is non-nil, window heights will be evened out\n\
2911 if displaying the buffer causes two vertically adjacent windows to be\n\
2912 displayed.")
2913 (buffer, not_this_window, frame)
2914 register Lisp_Object buffer, not_this_window, frame;
2916 register Lisp_Object window, tem, swp;
2917 struct frame *f;
2919 swp = Qnil;
2920 buffer = Fget_buffer (buffer);
2921 CHECK_BUFFER (buffer, 0);
2923 if (!NILP (Vdisplay_buffer_function))
2924 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
2926 if (NILP (not_this_window)
2927 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
2928 return display_buffer_1 (selected_window);
2930 /* See if the user has specified this buffer should appear
2931 in the selected window. */
2932 if (NILP (not_this_window))
2934 swp = Fsame_window_p (XBUFFER (buffer)->name);
2935 if (!NILP (swp) && !no_switch_window (selected_window))
2937 Fswitch_to_buffer (buffer, Qnil);
2938 return display_buffer_1 (selected_window);
2942 /* If the user wants pop-up-frames or display-reuse-frames, then
2943 look for a window showing BUFFER on any visible or iconified frame.
2944 Otherwise search only the current frame. */
2945 if (! NILP (frame))
2946 tem = frame;
2947 else if (pop_up_frames
2948 || display_buffer_reuse_frames
2949 || last_nonminibuf_frame == 0)
2950 XSETFASTINT (tem, 0);
2951 else
2952 XSETFRAME (tem, last_nonminibuf_frame);
2954 window = Fget_buffer_window (buffer, tem);
2955 if (!NILP (window)
2956 && (NILP (not_this_window) || !EQ (window, selected_window)))
2957 return display_buffer_1 (window);
2959 /* Certain buffer names get special handling. */
2960 if (!NILP (Vspecial_display_function) && NILP (swp))
2962 tem = Fspecial_display_p (XBUFFER (buffer)->name);
2963 if (EQ (tem, Qt))
2964 return call1 (Vspecial_display_function, buffer);
2965 if (CONSP (tem))
2966 return call2 (Vspecial_display_function, buffer, tem);
2969 /* If there are no frames open that have more than a minibuffer,
2970 we need to create a new frame. */
2971 if (pop_up_frames || last_nonminibuf_frame == 0)
2973 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
2974 Fset_window_buffer (window, buffer);
2975 return display_buffer_1 (window);
2978 f = SELECTED_FRAME ();
2979 if (pop_up_windows
2980 || FRAME_MINIBUF_ONLY_P (f)
2981 /* If the current frame is a special display frame,
2982 don't try to reuse its windows. */
2983 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (f))->dedicated))
2985 Lisp_Object frames;
2987 frames = Qnil;
2988 if (FRAME_MINIBUF_ONLY_P (f))
2989 XSETFRAME (frames, last_nonminibuf_frame);
2990 /* Don't try to create a window if would get an error */
2991 if (split_height_threshold < window_min_height << 1)
2992 split_height_threshold = window_min_height << 1;
2994 /* Note that both Fget_largest_window and Fget_lru_window
2995 ignore minibuffers and dedicated windows.
2996 This means they can return nil. */
2998 /* If the frame we would try to split cannot be split,
2999 try other frames. */
3000 if (FRAME_NO_SPLIT_P (NILP (frames) ? f : last_nonminibuf_frame))
3002 /* Try visible frames first. */
3003 window = Fget_largest_window (Qvisible);
3004 /* If that didn't work, try iconified frames. */
3005 if (NILP (window))
3006 window = Fget_largest_window (make_number (0));
3007 if (NILP (window))
3008 window = Fget_largest_window (Qt);
3010 else
3011 window = Fget_largest_window (frames);
3013 /* If we got a tall enough full-width window that can be split,
3014 split it. */
3015 if (!NILP (window)
3016 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3017 && window_height (window) >= split_height_threshold
3018 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
3019 window = Fsplit_window (window, Qnil, Qnil);
3020 else
3022 Lisp_Object upper, lower, other;
3024 window = Fget_lru_window (frames);
3025 /* If the LRU window is selected, and big enough,
3026 and can be split, split it. */
3027 if (!NILP (window)
3028 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3029 && (EQ (window, selected_window)
3030 || EQ (XWINDOW (window)->parent, Qnil))
3031 && window_height (window) >= window_min_height << 1)
3032 window = Fsplit_window (window, Qnil, Qnil);
3033 /* If Fget_lru_window returned nil, try other approaches. */
3035 /* Try visible frames first. */
3036 if (NILP (window))
3037 window = Fget_buffer_window (buffer, Qvisible);
3038 if (NILP (window))
3039 window = Fget_largest_window (Qvisible);
3040 /* If that didn't work, try iconified frames. */
3041 if (NILP (window))
3042 window = Fget_buffer_window (buffer, make_number (0));
3043 if (NILP (window))
3044 window = Fget_largest_window (make_number (0));
3045 /* Try invisible frames. */
3046 if (NILP (window))
3047 window = Fget_buffer_window (buffer, Qt);
3048 if (NILP (window))
3049 window = Fget_largest_window (Qt);
3050 /* As a last resort, make a new frame. */
3051 if (NILP (window))
3052 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3053 /* If window appears above or below another,
3054 even out their heights. */
3055 other = upper = lower = Qnil;
3056 if (!NILP (XWINDOW (window)->prev))
3057 other = upper = XWINDOW (window)->prev, lower = window;
3058 if (!NILP (XWINDOW (window)->next))
3059 other = lower = XWINDOW (window)->next, upper = window;
3060 if (!NILP (other)
3061 && !NILP (Veven_window_heights)
3062 /* Check that OTHER and WINDOW are vertically arrayed. */
3063 && !EQ (XWINDOW (other)->top, XWINDOW (window)->top)
3064 && (XFASTINT (XWINDOW (other)->height)
3065 > XFASTINT (XWINDOW (window)->height)))
3067 int total = (XFASTINT (XWINDOW (other)->height)
3068 + XFASTINT (XWINDOW (window)->height));
3069 enlarge_window (upper,
3070 total / 2 - XFASTINT (XWINDOW (upper)->height),
3075 else
3076 window = Fget_lru_window (Qnil);
3078 Fset_window_buffer (window, buffer);
3079 return display_buffer_1 (window);
3082 void
3083 temp_output_buffer_show (buf)
3084 register Lisp_Object buf;
3086 register struct buffer *old = current_buffer;
3087 register Lisp_Object window;
3088 register struct window *w;
3090 XBUFFER (buf)->directory = current_buffer->directory;
3092 Fset_buffer (buf);
3093 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3094 BEGV = BEG;
3095 ZV = Z;
3096 SET_PT (BEG);
3097 XBUFFER (buf)->prevent_redisplay_optimizations_p = 1;
3098 set_buffer_internal (old);
3100 if (!EQ (Vtemp_buffer_show_function, Qnil))
3101 call1 (Vtemp_buffer_show_function, buf);
3102 else
3104 window = Fdisplay_buffer (buf, Qnil, Qnil);
3106 if (!EQ (XWINDOW (window)->frame, selected_frame))
3107 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3108 Vminibuf_scroll_window = window;
3109 w = XWINDOW (window);
3110 XSETFASTINT (w->hscroll, 0);
3111 XSETFASTINT (w->min_hscroll, 0);
3112 set_marker_restricted_both (w->start, buf, 1, 1);
3113 set_marker_restricted_both (w->pointm, buf, 1, 1);
3115 /* Run temp-buffer-show-hook, with the chosen window selected
3116 and it sbuffer current. */
3117 if (!NILP (Vrun_hooks))
3119 Lisp_Object tem;
3120 tem = Fboundp (Qtemp_buffer_show_hook);
3121 if (!NILP (tem))
3123 tem = Fsymbol_value (Qtemp_buffer_show_hook);
3124 if (!NILP (tem))
3126 int count = specpdl_ptr - specpdl;
3127 Lisp_Object prev_window;
3128 prev_window = selected_window;
3130 /* Select the window that was chosen, for running the hook. */
3131 record_unwind_protect (Fselect_window, prev_window);
3132 select_window_1 (window, 0);
3133 Fset_buffer (w->buffer);
3134 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
3135 select_window_1 (prev_window, 0);
3136 unbind_to (count, Qnil);
3143 static void
3144 make_dummy_parent (window)
3145 Lisp_Object window;
3147 Lisp_Object new;
3148 register struct window *o, *p;
3149 register struct Lisp_Vector *vec;
3150 int i;
3152 o = XWINDOW (window);
3153 vec = allocate_vectorlike ((EMACS_INT)VECSIZE (struct window));
3154 for (i = 0; i < VECSIZE (struct window); ++i)
3155 vec->contents[i] = ((struct Lisp_Vector *)o)->contents[i];
3156 vec->size = VECSIZE (struct window);
3157 p = (struct window *)vec;
3158 XSETWINDOW (new, p);
3160 XSETFASTINT (p->sequence_number, ++sequence_number);
3162 /* Put new into window structure in place of window */
3163 replace_window (window, new);
3165 o->next = Qnil;
3166 o->prev = Qnil;
3167 o->vchild = Qnil;
3168 o->hchild = Qnil;
3169 o->parent = new;
3171 p->start = Qnil;
3172 p->pointm = Qnil;
3173 p->buffer = Qnil;
3176 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
3177 "Split WINDOW, putting SIZE lines in the first of the pair.\n\
3178 WINDOW defaults to selected one and SIZE to half its size.\n\
3179 If optional third arg HORFLAG is non-nil, split side by side\n\
3180 and put SIZE columns in the first of the pair. In that case,\n\
3181 SIZE includes that window's scroll bar, or the divider column to its right.")
3182 (window, size, horflag)
3183 Lisp_Object window, size, horflag;
3185 register Lisp_Object new;
3186 register struct window *o, *p;
3187 FRAME_PTR fo;
3188 register int size_int;
3190 if (NILP (window))
3191 window = selected_window;
3192 else
3193 CHECK_LIVE_WINDOW (window, 0);
3195 o = XWINDOW (window);
3196 fo = XFRAME (WINDOW_FRAME (o));
3198 if (NILP (size))
3200 if (!NILP (horflag))
3201 /* Calculate the size of the left-hand window, by dividing
3202 the usable space in columns by two.
3203 We round up, since the left-hand window may include
3204 a dividing line, while the right-hand may not. */
3205 size_int = (XFASTINT (o->width) + 1) >> 1;
3206 else
3207 size_int = XFASTINT (o->height) >> 1;
3209 else
3211 CHECK_NUMBER (size, 1);
3212 size_int = XINT (size);
3215 if (MINI_WINDOW_P (o))
3216 error ("Attempt to split minibuffer window");
3217 else if (window_fixed_size_p (o, !NILP (horflag), 0))
3218 error ("Attempt to split fixed-size window");
3220 check_min_window_sizes ();
3222 if (NILP (horflag))
3224 if (size_int < window_min_height)
3225 error ("Window height %d too small (after splitting)", size_int);
3226 if (size_int + window_min_height > XFASTINT (o->height))
3227 error ("Window height %d too small (after splitting)",
3228 XFASTINT (o->height) - size_int);
3229 if (NILP (o->parent)
3230 || NILP (XWINDOW (o->parent)->vchild))
3232 make_dummy_parent (window);
3233 new = o->parent;
3234 XWINDOW (new)->vchild = window;
3237 else
3239 if (size_int < window_min_width)
3240 error ("Window width %d too small (after splitting)", size_int);
3242 if (size_int + window_min_width > XFASTINT (o->width))
3243 error ("Window width %d too small (after splitting)",
3244 XFASTINT (o->width) - size_int);
3245 if (NILP (o->parent)
3246 || NILP (XWINDOW (o->parent)->hchild))
3248 make_dummy_parent (window);
3249 new = o->parent;
3250 XWINDOW (new)->hchild = window;
3254 /* Now we know that window's parent is a vertical combination
3255 if we are dividing vertically, or a horizontal combination
3256 if we are making side-by-side windows */
3258 windows_or_buffers_changed++;
3259 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
3260 new = make_window ();
3261 p = XWINDOW (new);
3263 p->frame = o->frame;
3264 p->next = o->next;
3265 if (!NILP (p->next))
3266 XWINDOW (p->next)->prev = new;
3267 p->prev = window;
3268 o->next = new;
3269 p->parent = o->parent;
3270 p->buffer = Qt;
3271 p->window_end_valid = Qnil;
3272 bzero (&p->last_cursor, sizeof p->last_cursor);
3274 /* Apportion the available frame space among the two new windows */
3276 if (!NILP (horflag))
3278 p->height = o->height;
3279 p->top = o->top;
3280 XSETFASTINT (p->width, XFASTINT (o->width) - size_int);
3281 XSETFASTINT (o->width, size_int);
3282 XSETFASTINT (p->left, XFASTINT (o->left) + size_int);
3284 else
3286 p->left = o->left;
3287 p->width = o->width;
3288 XSETFASTINT (p->height, XFASTINT (o->height) - size_int);
3289 XSETFASTINT (o->height, size_int);
3290 XSETFASTINT (p->top, XFASTINT (o->top) + size_int);
3293 /* Adjust glyph matrices. */
3294 adjust_glyphs (fo);
3295 Fset_window_buffer (new, o->buffer);
3296 return new;
3299 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
3300 "Make current window ARG lines bigger.\n\
3301 From program, optional second arg non-nil means grow sideways ARG columns.\n\
3302 Interactively, if an argument is not given, make the window one line bigger.")
3303 (arg, side)
3304 register Lisp_Object arg, side;
3306 CHECK_NUMBER (arg, 0);
3307 enlarge_window (selected_window, XINT (arg), !NILP (side));
3309 if (! NILP (Vwindow_configuration_change_hook))
3310 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3312 return Qnil;
3315 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
3316 "Make current window ARG lines smaller.\n\
3317 From program, optional second arg non-nil means shrink sideways arg columns.\n\
3318 Interactively, if an argument is not given, make the window one line smaller.")
3319 (arg, side)
3320 register Lisp_Object arg, side;
3322 CHECK_NUMBER (arg, 0);
3323 enlarge_window (selected_window, -XINT (arg), !NILP (side));
3325 if (! NILP (Vwindow_configuration_change_hook))
3326 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3328 return Qnil;
3332 window_height (window)
3333 Lisp_Object window;
3335 register struct window *p = XWINDOW (window);
3336 return XFASTINT (p->height);
3340 window_width (window)
3341 Lisp_Object window;
3343 register struct window *p = XWINDOW (window);
3344 return XFASTINT (p->width);
3348 #define CURBEG(w) \
3349 *(widthflag ? &(XWINDOW (w)->left) : &(XWINDOW (w)->top))
3351 #define CURSIZE(w) \
3352 *(widthflag ? &(XWINDOW (w)->width) : &(XWINDOW (w)->height))
3355 /* Enlarge selected_window by DELTA. WIDTHFLAG non-zero means
3356 increase its width. Siblings of the selected window are resized to
3357 fullfil the size request. If they become too small in the process,
3358 they will be deleted. */
3360 static void
3361 enlarge_window (window, delta, widthflag)
3362 Lisp_Object window;
3363 int delta, widthflag;
3365 Lisp_Object parent, next, prev;
3366 struct window *p;
3367 Lisp_Object *sizep;
3368 int maximum;
3369 int (*sizefun) P_ ((Lisp_Object))
3370 = widthflag ? window_width : window_height;
3371 void (*setsizefun) P_ ((Lisp_Object, int, int))
3372 = (widthflag ? set_window_width : set_window_height);
3374 /* Check values of window_min_width and window_min_height for
3375 validity. */
3376 check_min_window_sizes ();
3378 /* Give up if this window cannot be resized. */
3379 if (window_fixed_size_p (XWINDOW (window), widthflag, 1))
3380 error ("Window is not resizable");
3382 /* Find the parent of the selected window. */
3383 while (1)
3385 p = XWINDOW (window);
3386 parent = p->parent;
3388 if (NILP (parent))
3390 if (widthflag)
3391 error ("No other window to side of this one");
3392 break;
3395 if (widthflag
3396 ? !NILP (XWINDOW (parent)->hchild)
3397 : !NILP (XWINDOW (parent)->vchild))
3398 break;
3400 window = parent;
3403 sizep = &CURSIZE (window);
3406 register int maxdelta;
3408 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
3409 : !NILP (p->next) ? ((*sizefun) (p->next)
3410 - window_min_size (XWINDOW (p->next),
3411 widthflag, 0, 0))
3412 : !NILP (p->prev) ? ((*sizefun) (p->prev)
3413 - window_min_size (XWINDOW (p->prev),
3414 widthflag, 0, 0))
3415 /* This is a frame with only one window, a minibuffer-only
3416 or a minibufferless frame. */
3417 : (delta = 0));
3419 if (delta > maxdelta)
3420 /* This case traps trying to make the minibuffer
3421 the full frame, or make the only window aside from the
3422 minibuffer the full frame. */
3423 delta = maxdelta;
3426 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), widthflag, 0, 0))
3428 delete_window (window);
3429 return;
3432 if (delta == 0)
3433 return;
3435 /* Find the total we can get from other siblings. */
3436 maximum = 0;
3437 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
3438 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
3439 widthflag, 0, 0);
3440 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
3441 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
3442 widthflag, 0, 0);
3444 /* If we can get it all from them, do so. */
3445 if (delta <= maximum)
3447 Lisp_Object first_unaffected;
3448 Lisp_Object first_affected;
3449 int fixed_p;
3451 next = p->next;
3452 prev = p->prev;
3453 first_affected = window;
3454 /* Look at one sibling at a time,
3455 moving away from this window in both directions alternately,
3456 and take as much as we can get without deleting that sibling. */
3457 while (delta != 0 && (!NILP (next) || !NILP (prev)))
3459 if (! NILP (next))
3461 int this_one = ((*sizefun) (next)
3462 - window_min_size (XWINDOW (next),
3463 widthflag, 0, &fixed_p));
3464 if (!fixed_p)
3466 if (this_one > delta)
3467 this_one = delta;
3469 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
3470 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3472 delta -= this_one;
3475 next = XWINDOW (next)->next;
3478 if (delta == 0)
3479 break;
3481 if (! NILP (prev))
3483 int this_one = ((*sizefun) (prev)
3484 - window_min_size (XWINDOW (prev),
3485 widthflag, 0, &fixed_p));
3486 if (!fixed_p)
3488 if (this_one > delta)
3489 this_one = delta;
3491 first_affected = prev;
3493 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
3494 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3496 delta -= this_one;
3499 prev = XWINDOW (prev)->prev;
3503 xassert (delta == 0);
3505 /* Now recalculate the edge positions of all the windows affected,
3506 based on the new sizes. */
3507 first_unaffected = next;
3508 prev = first_affected;
3509 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
3510 prev = next, next = XWINDOW (next)->next)
3512 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
3513 /* This does not change size of NEXT,
3514 but it propagates the new top edge to its children */
3515 (*setsizefun) (next, (*sizefun) (next), 0);
3518 else
3520 register int delta1;
3521 register int opht = (*sizefun) (parent);
3523 /* If trying to grow this window to or beyond size of the parent,
3524 make delta1 so big that, on shrinking back down,
3525 all the siblings end up with less than one line and are deleted. */
3526 if (opht <= XINT (*sizep) + delta)
3527 delta1 = opht * opht * 2;
3528 else
3530 /* Otherwise, make delta1 just right so that if we add
3531 delta1 lines to this window and to the parent, and then
3532 shrink the parent back to its original size, the new
3533 proportional size of this window will increase by delta.
3535 The function size_window will compute the new height h'
3536 of the window from delta1 as:
3538 e = delta1/n
3539 x = delta1 - delta1/n * n for the 1st resizable child
3540 h' = h + e + x
3542 where n is the number of children that can be resized.
3543 We can ignore x by choosing a delta1 that is a multiple of
3544 n. We want the height of this window to come out as
3546 h' = h + delta
3548 So, delta1 must be
3550 h + e = h + delta
3551 delta1/n = delta
3552 delta1 = n * delta.
3554 The number of children n rquals the number of resizable
3555 children of this window + 1 because we know window itself
3556 is resizable (otherwise we would have signalled an error. */
3558 struct window *w = XWINDOW (window);
3559 Lisp_Object s;
3560 int n = 1;
3562 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
3563 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3564 ++n;
3565 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
3566 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3567 ++n;
3569 delta1 = n * delta;
3572 /* Add delta1 lines or columns to this window, and to the parent,
3573 keeping things consistent while not affecting siblings. */
3574 XSETINT (CURSIZE (parent), opht + delta1);
3575 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
3577 /* Squeeze out delta1 lines or columns from our parent,
3578 shriking this window and siblings proportionately.
3579 This brings parent back to correct size.
3580 Delta1 was calculated so this makes this window the desired size,
3581 taking it all out of the siblings. */
3582 (*setsizefun) (parent, opht, 0);
3585 XSETFASTINT (p->last_modified, 0);
3586 XSETFASTINT (p->last_overlay_modified, 0);
3588 /* Adjust glyph matrices. */
3589 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
3592 #undef CURBEG
3593 #undef CURSIZE
3597 /***********************************************************************
3598 Resizing Mini-Windows
3599 ***********************************************************************/
3601 static void shrink_window_lowest_first P_ ((struct window *, int));
3603 enum save_restore_action
3605 CHECK_ORIG_SIZES,
3606 SAVE_ORIG_SIZES,
3607 RESTORE_ORIG_SIZES
3610 static int save_restore_orig_size P_ ((struct window *,
3611 enum save_restore_action));
3613 /* Shrink windows rooted in window W to HEIGHT. Take the space needed
3614 from lowest windows first. */
3616 static void
3617 shrink_window_lowest_first (w, height)
3618 struct window *w;
3619 int height;
3621 struct window *c;
3622 Lisp_Object child;
3623 int old_height;
3625 xassert (!MINI_WINDOW_P (w));
3627 /* Set redisplay hints. */
3628 XSETFASTINT (w->last_modified, 0);
3629 XSETFASTINT (w->last_overlay_modified, 0);
3630 windows_or_buffers_changed++;
3631 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
3633 old_height = XFASTINT (w->height);
3634 XSETFASTINT (w->height, height);
3636 if (!NILP (w->hchild))
3638 for (child = w->hchild; !NILP (child); child = c->next)
3640 c = XWINDOW (child);
3641 c->top = w->top;
3642 shrink_window_lowest_first (c, height);
3645 else if (!NILP (w->vchild))
3647 Lisp_Object last_child;
3648 int delta = old_height - height;
3649 int last_top;
3651 last_child = Qnil;
3653 /* Find the last child. We are taking space from lowest windows
3654 first, so we iterate over children from the last child
3655 backwards. */
3656 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
3657 last_child = child;
3659 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
3660 for (child = last_child; delta && !NILP (child); child = c->prev)
3662 int this_one;
3664 c = XWINDOW (child);
3665 this_one = XFASTINT (c->height) - MIN_SAFE_WINDOW_HEIGHT;
3667 if (this_one > delta)
3668 this_one = delta;
3670 shrink_window_lowest_first (c, XFASTINT (c->height) - this_one);
3671 delta -= this_one;
3674 /* Compute new positions. */
3675 last_top = XINT (w->top);
3676 for (child = w->vchild; !NILP (child); child = c->next)
3678 c = XWINDOW (child);
3679 c->top = make_number (last_top);
3680 shrink_window_lowest_first (c, XFASTINT (c->height));
3681 last_top += XFASTINT (c->height);
3687 /* Save, restore, or check positions and sizes in the window tree
3688 rooted at W. ACTION says what to do.
3690 If ACTION is CHECK_ORIG_SIZES, check if orig_top and orig_height
3691 members are valid for all windows in the window tree. Value is
3692 non-zero if they are valid.
3694 If ACTION is SAVE_ORIG_SIZES, save members top and height in
3695 orig_top and orig_height for all windows in the tree.
3697 If ACTION is RESTORE_ORIG_SIZES, restore top and height from
3698 values stored in orig_top and orig_height for all windows. */
3700 static int
3701 save_restore_orig_size (w, action)
3702 struct window *w;
3703 enum save_restore_action action;
3705 int success_p = 1;
3707 while (w)
3709 if (!NILP (w->hchild))
3711 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
3712 success_p = 0;
3714 else if (!NILP (w->vchild))
3716 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
3717 success_p = 0;
3720 switch (action)
3722 case CHECK_ORIG_SIZES:
3723 if (!INTEGERP (w->orig_top) || !INTEGERP (w->orig_height))
3724 return 0;
3725 break;
3727 case SAVE_ORIG_SIZES:
3728 w->orig_top = w->top;
3729 w->orig_height = w->height;
3730 XSETFASTINT (w->last_modified, 0);
3731 XSETFASTINT (w->last_overlay_modified, 0);
3732 break;
3734 case RESTORE_ORIG_SIZES:
3735 xassert (INTEGERP (w->orig_top) && INTEGERP (w->orig_height));
3736 w->top = w->orig_top;
3737 w->height = w->orig_height;
3738 w->orig_height = w->orig_top = Qnil;
3739 XSETFASTINT (w->last_modified, 0);
3740 XSETFASTINT (w->last_overlay_modified, 0);
3741 break;
3743 default:
3744 abort ();
3747 w = NILP (w->next) ? NULL : XWINDOW (w->next);
3750 return success_p;
3754 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
3755 without deleting other windows. */
3757 void
3758 grow_mini_window (w, delta)
3759 struct window *w;
3760 int delta;
3762 struct frame *f = XFRAME (w->frame);
3763 struct window *root;
3765 xassert (MINI_WINDOW_P (w));
3766 xassert (delta >= 0);
3768 /* Check values of window_min_width and window_min_height for
3769 validity. */
3770 check_min_window_sizes ();
3772 /* Compute how much we can enlarge the mini-window without deleting
3773 other windows. */
3774 root = XWINDOW (FRAME_ROOT_WINDOW (f));
3775 if (delta)
3777 int min_height = window_min_size (root, 0, 0, 0);
3778 if (XFASTINT (root->height) - delta < min_height)
3779 delta = XFASTINT (root->height) - min_height;
3782 if (delta)
3784 /* Save original window sizes and positions, if not already done. */
3785 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
3786 save_restore_orig_size (root, SAVE_ORIG_SIZES);
3788 /* Shrink other windows. */
3789 shrink_window_lowest_first (root, XFASTINT (root->height) - delta);
3791 /* Grow the mini-window. */
3792 w->top = make_number (XFASTINT (root->top) + XFASTINT (root->height));
3793 w->height = make_number (XFASTINT (w->height) + delta);
3794 XSETFASTINT (w->last_modified, 0);
3795 XSETFASTINT (w->last_overlay_modified, 0);
3797 adjust_glyphs (f);
3802 /* Shrink mini-window W. If there is recorded info about window sizes
3803 before a call to grow_mini_window, restore recorded window sizes.
3804 Otherwise, if the mini-window is higher than 1 line, resize it to 1
3805 line. */
3807 void
3808 shrink_mini_window (w)
3809 struct window *w;
3811 struct frame *f = XFRAME (w->frame);
3812 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
3814 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
3816 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
3817 adjust_glyphs (f);
3818 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3819 windows_or_buffers_changed = 1;
3821 else if (XFASTINT (w->height) > 1)
3823 /* Distribute the additional lines of the mini-window
3824 among the other windows. */
3825 Lisp_Object window;
3826 XSETWINDOW (window, w);
3827 enlarge_window (window, 1 - XFASTINT (w->height), 0);
3833 /* Mark window cursors off for all windows in the window tree rooted
3834 at W by setting their phys_cursor_on_p flag to zero. Called from
3835 xterm.c, e.g. when a frame is cleared and thereby all cursors on
3836 the frame are cleared. */
3838 void
3839 mark_window_cursors_off (w)
3840 struct window *w;
3842 while (w)
3844 if (!NILP (w->hchild))
3845 mark_window_cursors_off (XWINDOW (w->hchild));
3846 else if (!NILP (w->vchild))
3847 mark_window_cursors_off (XWINDOW (w->vchild));
3848 else
3849 w->phys_cursor_on_p = 0;
3851 w = NILP (w->next) ? 0 : XWINDOW (w->next);
3856 /* Return number of lines of text (not counting mode line) in W. */
3859 window_internal_height (w)
3860 struct window *w;
3862 int ht = XFASTINT (w->height);
3864 if (MINI_WINDOW_P (w))
3865 return ht;
3867 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
3868 || !NILP (w->next) || !NILP (w->prev)
3869 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
3870 return ht - 1;
3872 return ht;
3876 /* Return the number of columns in W.
3877 Don't count columns occupied by scroll bars or the vertical bar
3878 separating W from the sibling to its right. */
3881 window_internal_width (w)
3882 struct window *w;
3884 struct frame *f = XFRAME (WINDOW_FRAME (w));
3885 int width = XINT (w->width);
3887 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3888 /* Scroll bars occupy a few columns. */
3889 width -= FRAME_SCROLL_BAR_COLS (f);
3890 else if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
3891 /* The column of `|' characters separating side-by-side windows
3892 occupies one column only. */
3893 width -= 1;
3895 /* On window-systems, areas to the left and right of the window
3896 are used to display bitmaps there. */
3897 if (FRAME_WINDOW_P (f))
3898 width -= FRAME_FLAGS_AREA_COLS (f);
3900 return width;
3904 /************************************************************************
3905 Window Scrolling
3906 ***********************************************************************/
3908 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
3909 one screen-full, which is defined as the height of the window minus
3910 next_screen_context_lines. If WHOLE is zero, scroll up N lines
3911 instead. Negative values of N mean scroll down. NOERROR non-zero
3912 means don't signal an error if we try to move over BEGV or ZV,
3913 respectively. */
3915 static void
3916 window_scroll (window, n, whole, noerror)
3917 Lisp_Object window;
3918 int n;
3919 int whole;
3920 int noerror;
3922 /* If we must, use the pixel-based version which is much slower than
3923 the line-based one but can handle varying line heights. */
3924 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
3925 window_scroll_pixel_based (window, n, whole, noerror);
3926 else
3927 window_scroll_line_based (window, n, whole, noerror);
3931 /* Implementation of window_scroll that works based on pixel line
3932 heights. See the comment of window_scroll for parameter
3933 descriptions. */
3935 static void
3936 window_scroll_pixel_based (window, n, whole, noerror)
3937 Lisp_Object window;
3938 int n;
3939 int whole;
3940 int noerror;
3942 struct it it;
3943 struct window *w = XWINDOW (window);
3944 struct text_pos start;
3945 Lisp_Object tem;
3946 int this_scroll_margin;
3947 int preserve_y;
3948 /* True if we fiddled the window vscroll field without really scrolling. */
3949 int vscrolled = 0;
3951 SET_TEXT_POS_FROM_MARKER (start, w->start);
3953 /* If PT is not visible in WINDOW, move back one half of
3954 the screen. */
3955 tem = Fpos_visible_in_window_p (make_number (PT), window, Qnil);
3956 if (NILP (tem))
3958 /* Move backward half the height of the window. Performance note:
3959 vmotion used here is about 10% faster, but would give wrong
3960 results for variable height lines. */
3961 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3962 it.current_y = it.last_visible_y;
3963 move_it_vertically (&it, -it.last_visible_y / 2);
3965 /* The function move_iterator_vertically may move over more than
3966 the specified y-distance. If it->w is small, e.g. a
3967 mini-buffer window, we may end up in front of the window's
3968 display area. This is the case when Start displaying at the
3969 start of the line containing PT in this case. */
3970 if (it.current_y <= 0)
3972 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3973 move_it_vertically (&it, 0);
3974 it.current_y = 0;
3977 start = it.current.pos;
3980 /* If scroll_preserve_screen_position is non-zero, we try to set
3981 point in the same window line as it is now, so get that line. */
3982 if (!NILP (Vscroll_preserve_screen_position))
3984 start_display (&it, w, start);
3985 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
3986 preserve_y = it.current_y;
3988 else
3989 preserve_y = -1;
3991 /* Move iterator it from start the specified distance forward or
3992 backward. The result is the new window start. */
3993 start_display (&it, w, start);
3994 if (whole)
3996 int screen_full = (it.last_visible_y
3997 - next_screen_context_lines * CANON_Y_UNIT (it.f));
3998 int direction = n < 0 ? -1 : 1;
3999 int dy = direction * screen_full;
4001 /* Note that move_it_vertically always moves the iterator to the
4002 start of a line. So, if the last line doesn't have a newline,
4003 we would end up at the start of the line ending at ZV. */
4004 if (dy <= 0)
4005 move_it_vertically_backward (&it, -dy);
4006 else if (dy > 0)
4007 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4008 MOVE_TO_POS | MOVE_TO_Y);
4010 else
4011 move_it_by_lines (&it, n, 1);
4013 /* End if we end up at ZV or BEGV. */
4014 if ((n > 0 && IT_CHARPOS (it) == ZV)
4015 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4017 if (IT_CHARPOS (it) == ZV)
4019 if (it.current_y + it.max_ascent + it.max_descent
4020 > it.last_visible_y)
4022 /* The last line was only partially visible, make it fully
4023 visible. */
4024 w->vscroll = (it.last_visible_y
4025 - it.current_y + it.max_ascent + it.max_descent);
4026 adjust_glyphs (it.f);
4028 else if (noerror)
4029 return;
4030 else
4031 Fsignal (Qend_of_buffer, Qnil);
4033 else
4035 if (w->vscroll != 0)
4036 /* The first line was only partially visible, make it fully
4037 visible. */
4038 w->vscroll = 0;
4039 else if (noerror)
4040 return;
4041 else
4042 Fsignal (Qbeginning_of_buffer, Qnil);
4045 /* If control gets here, then we vscrolled. */
4047 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
4049 /* Don't try to change the window start below. */
4050 vscrolled = 1;
4053 if (! vscrolled)
4055 /* Set the window start, and set up the window for redisplay. */
4056 set_marker_restricted (w->start, make_number (IT_CHARPOS (it)),
4057 w->buffer);
4058 w->start_at_line_beg = Fbolp ();
4059 w->update_mode_line = Qt;
4060 XSETFASTINT (w->last_modified, 0);
4061 XSETFASTINT (w->last_overlay_modified, 0);
4062 /* Set force_start so that redisplay_window will run the
4063 window-scroll-functions. */
4064 w->force_start = Qt;
4067 it.current_y = it.vpos = 0;
4069 /* Preserve the screen position if we must. */
4070 if (preserve_y >= 0)
4072 move_it_to (&it, -1, -1, preserve_y, -1, MOVE_TO_Y);
4073 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4075 else
4077 /* Move PT out of scroll margins. */
4078 this_scroll_margin = max (0, scroll_margin);
4079 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
4080 this_scroll_margin *= CANON_Y_UNIT (it.f);
4082 if (n > 0)
4084 /* We moved the window start towards ZV, so PT may be now
4085 in the scroll margin at the top. */
4086 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4087 while (it.current_y < this_scroll_margin)
4088 move_it_by_lines (&it, 1, 1);
4089 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4091 else if (n < 0)
4093 int charpos, bytepos;
4095 /* We moved the window start towards BEGV, so PT may be now
4096 in the scroll margin at the bottom. */
4097 move_it_to (&it, PT, -1,
4098 it.last_visible_y - this_scroll_margin - 1, -1,
4099 MOVE_TO_POS | MOVE_TO_Y);
4101 /* Save our position, in case it's correct. */
4102 charpos = IT_CHARPOS (it);
4103 bytepos = IT_BYTEPOS (it);
4105 /* See if point is on a partially visible line at the end. */
4106 move_it_by_lines (&it, 1, 1);
4107 if (it.current_y > it.last_visible_y)
4108 /* The last line was only partially visible, so back up two
4109 lines to make sure we're on a fully visible line. */
4111 move_it_by_lines (&it, -2, 0);
4112 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4114 else
4115 /* No, the position we saved is OK, so use it. */
4116 SET_PT_BOTH (charpos, bytepos);
4122 /* Implementation of window_scroll that works based on screen lines.
4123 See the comment of window_scroll for parameter descriptions. */
4125 static void
4126 window_scroll_line_based (window, n, whole, noerror)
4127 Lisp_Object window;
4128 int n;
4129 int whole;
4130 int noerror;
4132 register struct window *w = XWINDOW (window);
4133 register int opoint = PT, opoint_byte = PT_BYTE;
4134 register int pos, pos_byte;
4135 register int ht = window_internal_height (w);
4136 register Lisp_Object tem;
4137 int lose;
4138 Lisp_Object bolp;
4139 int startpos;
4140 struct position posit;
4141 int original_vpos;
4143 startpos = marker_position (w->start);
4145 posit = *compute_motion (startpos, 0, 0, 0,
4146 PT, ht, 0,
4147 window_internal_width (w), XINT (w->hscroll),
4148 0, w);
4149 original_vpos = posit.vpos;
4151 XSETFASTINT (tem, PT);
4152 tem = Fpos_visible_in_window_p (tem, window, Qnil);
4154 if (NILP (tem))
4156 Fvertical_motion (make_number (- (ht / 2)), window);
4157 startpos = PT;
4160 SET_PT (startpos);
4161 lose = n < 0 && PT == BEGV;
4162 Fvertical_motion (make_number (n), window);
4163 pos = PT;
4164 pos_byte = PT_BYTE;
4165 bolp = Fbolp ();
4166 SET_PT_BOTH (opoint, opoint_byte);
4168 if (lose)
4170 if (noerror)
4171 return;
4172 else
4173 Fsignal (Qbeginning_of_buffer, Qnil);
4176 if (pos < ZV)
4178 int this_scroll_margin = scroll_margin;
4180 /* Don't use a scroll margin that is negative or too large. */
4181 if (this_scroll_margin < 0)
4182 this_scroll_margin = 0;
4184 if (XINT (w->height) < 4 * scroll_margin)
4185 this_scroll_margin = XINT (w->height) / 4;
4187 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
4188 w->start_at_line_beg = bolp;
4189 w->update_mode_line = Qt;
4190 XSETFASTINT (w->last_modified, 0);
4191 XSETFASTINT (w->last_overlay_modified, 0);
4192 /* Set force_start so that redisplay_window will run
4193 the window-scroll-functions. */
4194 w->force_start = Qt;
4196 if (whole && !NILP (Vscroll_preserve_screen_position))
4198 SET_PT_BOTH (pos, pos_byte);
4199 Fvertical_motion (make_number (original_vpos), window);
4201 /* If we scrolled forward, put point enough lines down
4202 that it is outside the scroll margin. */
4203 else if (n > 0)
4205 int top_margin;
4207 if (this_scroll_margin > 0)
4209 SET_PT_BOTH (pos, pos_byte);
4210 Fvertical_motion (make_number (this_scroll_margin), window);
4211 top_margin = PT;
4213 else
4214 top_margin = pos;
4216 if (top_margin <= opoint)
4217 SET_PT_BOTH (opoint, opoint_byte);
4218 else if (!NILP (Vscroll_preserve_screen_position))
4220 SET_PT_BOTH (pos, pos_byte);
4221 Fvertical_motion (make_number (original_vpos), window);
4223 else
4224 SET_PT (top_margin);
4226 else if (n < 0)
4228 int bottom_margin;
4230 /* If we scrolled backward, put point near the end of the window
4231 but not within the scroll margin. */
4232 SET_PT_BOTH (pos, pos_byte);
4233 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
4234 if (XFASTINT (tem) == ht - this_scroll_margin)
4235 bottom_margin = PT;
4236 else
4237 bottom_margin = PT + 1;
4239 if (bottom_margin > opoint)
4240 SET_PT_BOTH (opoint, opoint_byte);
4241 else
4243 if (!NILP (Vscroll_preserve_screen_position))
4245 SET_PT_BOTH (pos, pos_byte);
4246 Fvertical_motion (make_number (original_vpos), window);
4248 else
4249 Fvertical_motion (make_number (-1), window);
4253 else
4255 if (noerror)
4256 return;
4257 else
4258 Fsignal (Qend_of_buffer, Qnil);
4263 /* Scroll selected_window up or down. If N is nil, scroll a
4264 screen-full which is defined as the height of the window minus
4265 next_screen_context_lines. If N is the symbol `-', scroll.
4266 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4267 up. This is the guts of Fscroll_up and Fscroll_down. */
4269 static void
4270 scroll_command (n, direction)
4271 Lisp_Object n;
4272 int direction;
4274 register int defalt;
4275 int count = specpdl_ptr - specpdl;
4277 xassert (abs (direction) == 1);
4279 /* If selected window's buffer isn't current, make it current for
4280 the moment. But don't screw up if window_scroll gets an error. */
4281 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
4283 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4284 Fset_buffer (XWINDOW (selected_window)->buffer);
4286 /* Make redisplay consider other windows than just selected_window. */
4287 ++windows_or_buffers_changed;
4290 defalt = (window_internal_height (XWINDOW (selected_window))
4291 - next_screen_context_lines);
4292 defalt = direction * (defalt < 1 ? 1 : defalt);
4294 if (NILP (n))
4295 window_scroll (selected_window, defalt, 1, 0);
4296 else if (EQ (n, Qminus))
4297 window_scroll (selected_window, - defalt, 1, 0);
4298 else
4300 n = Fprefix_numeric_value (n);
4301 window_scroll (selected_window, XINT (n) * direction, 0, 0);
4304 unbind_to (count, Qnil);
4307 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
4308 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
4309 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4310 Negative ARG means scroll downward.\n\
4311 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4312 When calling from a program, supply as argument a number, nil, or `-'.")
4313 (arg)
4314 Lisp_Object arg;
4316 scroll_command (arg, 1);
4317 return Qnil;
4320 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
4321 "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\
4322 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4323 Negative ARG means scroll upward.\n\
4324 If ARG is the atom `-', scroll upward by nearly full screen.\n\
4325 When calling from a program, supply as argument a number, nil, or `-'.")
4326 (arg)
4327 Lisp_Object arg;
4329 scroll_command (arg, -1);
4330 return Qnil;
4333 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4334 "Return the other window for \"other window scroll\" commands.\n\
4335 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4336 specifies the window.\n\
4337 If `other-window-scroll-buffer' is non-nil, a window\n\
4338 showing that buffer is used.")
4341 Lisp_Object window;
4343 if (MINI_WINDOW_P (XWINDOW (selected_window))
4344 && !NILP (Vminibuf_scroll_window))
4345 window = Vminibuf_scroll_window;
4346 /* If buffer is specified, scroll that buffer. */
4347 else if (!NILP (Vother_window_scroll_buffer))
4349 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
4350 if (NILP (window))
4351 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
4353 else
4355 /* Nothing specified; look for a neighboring window on the same
4356 frame. */
4357 window = Fnext_window (selected_window, Qnil, Qnil);
4359 if (EQ (window, selected_window))
4360 /* That didn't get us anywhere; look for a window on another
4361 visible frame. */
4363 window = Fnext_window (window, Qnil, Qt);
4364 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4365 && ! EQ (window, selected_window));
4368 CHECK_LIVE_WINDOW (window, 0);
4370 if (EQ (window, selected_window))
4371 error ("There is no other window");
4373 return window;
4376 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4377 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
4378 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4379 The next window is the one below the current one; or the one at the top\n\
4380 if the current one is at the bottom. Negative ARG means scroll downward.\n\
4381 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4382 When calling from a program, supply as argument a number, nil, or `-'.\n\
4384 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4385 specifies the window to scroll.\n\
4386 If `other-window-scroll-buffer' is non-nil, scroll the window\n\
4387 showing that buffer, popping the buffer up if necessary.")
4388 (arg)
4389 register Lisp_Object arg;
4391 register Lisp_Object window;
4392 register int defalt;
4393 register struct window *w;
4394 register int count = specpdl_ptr - specpdl;
4396 window = Fother_window_for_scrolling ();
4398 w = XWINDOW (window);
4399 defalt = window_internal_height (w) - next_screen_context_lines;
4400 if (defalt < 1) defalt = 1;
4402 /* Don't screw up if window_scroll gets an error. */
4403 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4404 ++windows_or_buffers_changed;
4406 Fset_buffer (w->buffer);
4407 SET_PT (marker_position (w->pointm));
4409 if (NILP (arg))
4410 window_scroll (window, defalt, 1, 1);
4411 else if (EQ (arg, Qminus))
4412 window_scroll (window, -defalt, 1, 1);
4413 else
4415 if (CONSP (arg))
4416 arg = Fcar (arg);
4417 CHECK_NUMBER (arg, 0);
4418 window_scroll (window, XINT (arg), 0, 1);
4421 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
4422 unbind_to (count, Qnil);
4424 return Qnil;
4427 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
4428 "Scroll selected window display ARG columns left.\n\
4429 Default for ARG is window width minus 2.")
4430 (arg)
4431 register Lisp_Object arg;
4433 Lisp_Object result;
4434 int hscroll;
4435 struct window *w = XWINDOW (selected_window);
4437 if (NILP (arg))
4438 XSETFASTINT (arg, window_internal_width (w) - 2);
4439 else
4440 arg = Fprefix_numeric_value (arg);
4442 hscroll = XINT (w->hscroll) + XINT (arg);
4443 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4445 if (interactive_p (0))
4446 w->min_hscroll = w->hscroll;
4448 return result;
4451 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
4452 "Scroll selected window display ARG columns right.\n\
4453 Default for ARG is window width minus 2.")
4454 (arg)
4455 register Lisp_Object arg;
4457 Lisp_Object result;
4458 int hscroll;
4459 struct window *w = XWINDOW (selected_window);
4461 if (NILP (arg))
4462 XSETFASTINT (arg, window_internal_width (w) - 2);
4463 else
4464 arg = Fprefix_numeric_value (arg);
4466 hscroll = XINT (w->hscroll) - XINT (arg);
4467 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4469 if (interactive_p (0))
4470 w->min_hscroll = w->hscroll;
4472 return result;
4475 /* Value is the number of lines actually displayed in window W,
4476 as opposed to its height. */
4478 static int
4479 displayed_window_lines (w)
4480 struct window *w;
4482 struct it it;
4483 struct text_pos start;
4484 int height = window_box_height (w);
4485 struct buffer *old_buffer;
4486 int bottom_y;
4488 if (XBUFFER (w->buffer) != current_buffer)
4490 old_buffer = current_buffer;
4491 set_buffer_internal (XBUFFER (w->buffer));
4493 else
4494 old_buffer = NULL;
4496 SET_TEXT_POS_FROM_MARKER (start, w->start);
4497 start_display (&it, w, start);
4498 move_it_vertically (&it, height);
4500 if (old_buffer)
4501 set_buffer_internal (old_buffer);
4503 bottom_y = it.current_y + it.max_ascent + it.max_descent;
4505 if (bottom_y > it.current_y && bottom_y <= it.last_visible_y)
4506 /* Hit a line without a terminating newline. */
4507 it.vpos++;
4509 /* Add in empty lines at the bottom of the window. */
4510 if (bottom_y < height)
4512 struct frame *f = XFRAME (w->frame);
4513 int rest = height - bottom_y;
4514 int lines = rest / CANON_Y_UNIT (f);
4515 it.vpos += lines;
4518 return it.vpos;
4522 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
4523 "Center point in window and redisplay frame.\n\
4524 With prefix argument ARG, recenter putting point on screen line ARG\n\
4525 relative to the current window. If ARG is negative, it counts up from the\n\
4526 bottom of the window. (ARG should be less than the height of the window.)\n\
4528 If ARG is omitted or nil, erase the entire frame and then\n\
4529 redraw with point in the center of the current window.\n\
4530 Just C-u as prefix means put point in the center of the window\n\
4531 and redisplay normally--don't erase and redraw the frame.")
4532 (arg)
4533 register Lisp_Object arg;
4535 struct window *w = XWINDOW (selected_window);
4536 struct buffer *buf = XBUFFER (w->buffer);
4537 struct buffer *obuf = current_buffer;
4538 int center_p = 0;
4539 int charpos, bytepos;
4541 if (NILP (arg))
4543 int i;
4545 /* Invalidate pixel data calculated for all compositions. */
4546 for (i = 0; i < n_compositions; i++)
4547 composition_table[i]->font = NULL;
4549 Fredraw_frame (w->frame);
4550 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
4551 center_p = 1;
4553 else if (CONSP (arg)) /* Just C-u. */
4554 center_p = 1;
4555 else
4557 arg = Fprefix_numeric_value (arg);
4558 CHECK_NUMBER (arg, 0);
4561 set_buffer_internal (buf);
4563 /* Handle centering on a gfaphical frame specially. Such frames can
4564 have variable-height lines and centering point on the basis of
4565 line counts would lead to strange effects. */
4566 if (center_p && FRAME_WINDOW_P (XFRAME (w->frame)))
4568 struct it it;
4569 struct text_pos pt;
4571 SET_TEXT_POS (pt, PT, PT_BYTE);
4572 start_display (&it, w, pt);
4573 move_it_vertically (&it, - it.last_visible_y / 2);
4574 charpos = IT_CHARPOS (it);
4575 bytepos = IT_BYTEPOS (it);
4577 else
4579 struct position pos;
4581 if (center_p)
4583 int ht = displayed_window_lines (w);
4584 arg = make_number (ht / 2);
4586 else if (XINT (arg) < 0)
4588 int ht = displayed_window_lines (w);
4589 XSETINT (arg, XINT (arg) + ht);
4592 pos = *vmotion (PT, - XINT (arg), w);
4593 charpos = pos.bufpos;
4594 bytepos = pos.bytepos;
4597 /* Set the new window start. */
4598 set_marker_both (w->start, w->buffer, charpos, bytepos);
4599 w->window_end_valid = Qnil;
4600 w->force_start = Qt;
4601 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
4602 w->start_at_line_beg = Qt;
4603 else
4604 w->start_at_line_beg = Qnil;
4606 set_buffer_internal (obuf);
4607 return Qnil;
4611 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
4612 0, 1, 0,
4613 "Return the height in lines of the text display area of WINDOW.\n\
4614 This doesn't include the mode-line (or header-line if any) or any\n\
4615 partial-height lines in the text display area.")
4616 (window)
4617 Lisp_Object window;
4619 struct window *w = decode_window (window);
4620 int pixel_height = window_box_height (w);
4621 int line_height = pixel_height / CANON_Y_UNIT (XFRAME (w->frame));
4622 return make_number (line_height);
4627 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
4628 1, 1, "P",
4629 "Position point relative to window.\n\
4630 With no argument, position point at center of window.\n\
4631 An argument specifies vertical position within the window;\n\
4632 zero means top of window, negative means relative to bottom of window.")
4633 (arg)
4634 Lisp_Object arg;
4636 struct window *w = XWINDOW (selected_window);
4637 int lines, start;
4638 Lisp_Object window;
4640 window = selected_window;
4641 start = marker_position (w->start);
4642 if (start < BEGV || start > ZV)
4644 int height = window_internal_height (w);
4645 Fvertical_motion (make_number (- (height / 2)), window);
4646 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
4647 w->start_at_line_beg = Fbolp ();
4648 w->force_start = Qt;
4650 else
4651 Fgoto_char (w->start);
4653 lines = displayed_window_lines (w);
4654 if (NILP (arg))
4655 XSETFASTINT (arg, lines / 2);
4656 else
4658 arg = Fprefix_numeric_value (arg);
4659 if (XINT (arg) < 0)
4660 XSETINT (arg, XINT (arg) + lines);
4663 if (w->vscroll)
4664 /* Skip past a partially visible first line. */
4665 XSETINT (arg, XINT (arg) + 1);
4667 return Fvertical_motion (arg, window);
4672 /***********************************************************************
4673 Window Configuration
4674 ***********************************************************************/
4676 struct save_window_data
4678 EMACS_INT size_from_Lisp_Vector_struct;
4679 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4680 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
4681 Lisp_Object frame_tool_bar_lines;
4682 Lisp_Object selected_frame;
4683 Lisp_Object current_window;
4684 Lisp_Object current_buffer;
4685 Lisp_Object minibuf_scroll_window;
4686 Lisp_Object root_window;
4687 Lisp_Object focus_frame;
4688 /* Record the values of window-min-width and window-min-height
4689 so that window sizes remain consistent with them. */
4690 Lisp_Object min_width, min_height;
4691 /* A vector, each of whose elements is a struct saved_window
4692 for one window. */
4693 Lisp_Object saved_windows;
4696 /* This is saved as a Lisp_Vector */
4697 struct saved_window
4699 /* these first two must agree with struct Lisp_Vector in lisp.h */
4700 EMACS_INT size_from_Lisp_Vector_struct;
4701 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4703 Lisp_Object window;
4704 Lisp_Object buffer, start, pointm, mark;
4705 Lisp_Object left, top, width, height, hscroll, min_hscroll;
4706 Lisp_Object parent, prev;
4707 Lisp_Object start_at_line_beg;
4708 Lisp_Object display_table;
4709 Lisp_Object orig_top, orig_height;
4712 #define SAVED_WINDOW_VECTOR_SIZE 17 /* Arg to Fmake_vector */
4714 #define SAVED_WINDOW_N(swv,n) \
4715 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
4717 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
4718 "Return t if OBJECT is a window-configuration object.")
4719 (object)
4720 Lisp_Object object;
4722 if (WINDOW_CONFIGURATIONP (object))
4723 return Qt;
4724 return Qnil;
4727 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
4728 "Return the frame that CONFIG, a window-configuration object, is about.")
4729 (config)
4730 Lisp_Object config;
4732 register struct save_window_data *data;
4733 struct Lisp_Vector *saved_windows;
4735 if (! WINDOW_CONFIGURATIONP (config))
4736 wrong_type_argument (Qwindow_configuration_p, config);
4738 data = (struct save_window_data *) XVECTOR (config);
4739 saved_windows = XVECTOR (data->saved_windows);
4740 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4743 DEFUN ("set-window-configuration", Fset_window_configuration,
4744 Sset_window_configuration, 1, 1, 0,
4745 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
4746 CONFIGURATION must be a value previously returned\n\
4747 by `current-window-configuration' (which see).\n\
4748 If CONFIGURATION was made from a frame that is now deleted,\n\
4749 only frame-independent values can be restored. In this case,\n\
4750 the return value is nil. Otherwise the value is t.")
4751 (configuration)
4752 Lisp_Object configuration;
4754 register struct save_window_data *data;
4755 struct Lisp_Vector *saved_windows;
4756 Lisp_Object new_current_buffer;
4757 Lisp_Object frame;
4758 FRAME_PTR f;
4759 int old_point = -1;
4761 while (!WINDOW_CONFIGURATIONP (configuration))
4762 wrong_type_argument (Qwindow_configuration_p, configuration);
4764 data = (struct save_window_data *) XVECTOR (configuration);
4765 saved_windows = XVECTOR (data->saved_windows);
4767 new_current_buffer = data->current_buffer;
4768 if (NILP (XBUFFER (new_current_buffer)->name))
4769 new_current_buffer = Qnil;
4770 else
4772 if (XBUFFER (new_current_buffer) == current_buffer)
4773 old_point = PT;
4776 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4777 f = XFRAME (frame);
4779 /* If f is a dead frame, don't bother rebuilding its window tree.
4780 However, there is other stuff we should still try to do below. */
4781 if (FRAME_LIVE_P (f))
4783 register struct window *w;
4784 register struct saved_window *p;
4785 struct window *root_window;
4786 struct window **leaf_windows;
4787 int n_leaf_windows;
4788 int k, i, n;
4790 /* If the frame has been resized since this window configuration was
4791 made, we change the frame to the size specified in the
4792 configuration, restore the configuration, and then resize it
4793 back. We keep track of the prevailing height in these variables. */
4794 int previous_frame_height = FRAME_HEIGHT (f);
4795 int previous_frame_width = FRAME_WIDTH (f);
4796 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
4797 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
4799 /* The mouse highlighting code could get screwed up
4800 if it runs during this. */
4801 BLOCK_INPUT;
4803 if (XFASTINT (data->frame_height) != previous_frame_height
4804 || XFASTINT (data->frame_width) != previous_frame_width)
4805 change_frame_size (f, XFASTINT (data->frame_height),
4806 XFASTINT (data->frame_width), 0, 0, 0);
4807 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4808 if (XFASTINT (data->frame_menu_bar_lines)
4809 != previous_frame_menu_bar_lines)
4810 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
4811 #ifdef HAVE_WINDOW_SYSTEM
4812 if (XFASTINT (data->frame_tool_bar_lines)
4813 != previous_frame_tool_bar_lines)
4814 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
4815 #endif
4816 #endif
4818 /* "Swap out" point from the selected window
4819 into its buffer. We do this now, before
4820 restoring the window contents, and prevent it from
4821 being done later on when we select a new window. */
4822 if (! NILP (XWINDOW (selected_window)->buffer))
4824 w = XWINDOW (selected_window);
4825 set_marker_both (w->pointm,
4826 w->buffer,
4827 BUF_PT (XBUFFER (w->buffer)),
4828 BUF_PT_BYTE (XBUFFER (w->buffer)));
4831 windows_or_buffers_changed++;
4832 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4834 /* Problem: Freeing all matrices and later allocating them again
4835 is a serious redisplay flickering problem. What we would
4836 really like to do is to free only those matrices not reused
4837 below. */
4838 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
4839 leaf_windows
4840 = (struct window **) alloca (count_windows (root_window)
4841 * sizeof (struct window *));
4842 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
4844 /* Temporarily avoid any problems with windows that are smaller
4845 than they are supposed to be. */
4846 window_min_height = 1;
4847 window_min_width = 1;
4849 /* Kludge Alert!
4850 Mark all windows now on frame as "deleted".
4851 Restoring the new configuration "undeletes" any that are in it.
4853 Save their current buffers in their height fields, since we may
4854 need it later, if a buffer saved in the configuration is now
4855 dead. */
4856 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
4858 for (k = 0; k < saved_windows->size; k++)
4860 p = SAVED_WINDOW_N (saved_windows, k);
4861 w = XWINDOW (p->window);
4862 w->next = Qnil;
4864 if (!NILP (p->parent))
4865 w->parent = SAVED_WINDOW_N (saved_windows,
4866 XFASTINT (p->parent))->window;
4867 else
4868 w->parent = Qnil;
4870 if (!NILP (p->prev))
4872 w->prev = SAVED_WINDOW_N (saved_windows,
4873 XFASTINT (p->prev))->window;
4874 XWINDOW (w->prev)->next = p->window;
4876 else
4878 w->prev = Qnil;
4879 if (!NILP (w->parent))
4881 if (EQ (p->width, XWINDOW (w->parent)->width))
4883 XWINDOW (w->parent)->vchild = p->window;
4884 XWINDOW (w->parent)->hchild = Qnil;
4886 else
4888 XWINDOW (w->parent)->hchild = p->window;
4889 XWINDOW (w->parent)->vchild = Qnil;
4894 /* If we squirreled away the buffer in the window's height,
4895 restore it now. */
4896 if (BUFFERP (w->height))
4897 w->buffer = w->height;
4898 w->left = p->left;
4899 w->top = p->top;
4900 w->width = p->width;
4901 w->height = p->height;
4902 w->hscroll = p->hscroll;
4903 w->min_hscroll = p->min_hscroll;
4904 w->display_table = p->display_table;
4905 w->orig_top = p->orig_top;
4906 w->orig_height = p->orig_height;
4907 XSETFASTINT (w->last_modified, 0);
4908 XSETFASTINT (w->last_overlay_modified, 0);
4910 /* Reinstall the saved buffer and pointers into it. */
4911 if (NILP (p->buffer))
4912 w->buffer = p->buffer;
4913 else
4915 if (!NILP (XBUFFER (p->buffer)->name))
4916 /* If saved buffer is alive, install it. */
4918 w->buffer = p->buffer;
4919 w->start_at_line_beg = p->start_at_line_beg;
4920 set_marker_restricted (w->start, p->start, w->buffer);
4921 set_marker_restricted (w->pointm, p->pointm, w->buffer);
4922 Fset_marker (XBUFFER (w->buffer)->mark,
4923 p->mark, w->buffer);
4925 /* As documented in Fcurrent_window_configuration, don't
4926 save the location of point in the buffer which was current
4927 when the window configuration was recorded. */
4928 if (!EQ (p->buffer, new_current_buffer)
4929 && XBUFFER (p->buffer) == current_buffer)
4930 Fgoto_char (w->pointm);
4932 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
4933 /* Else unless window has a live buffer, get one. */
4935 w->buffer = Fcdr (Fcar (Vbuffer_alist));
4936 /* This will set the markers to beginning of visible
4937 range. */
4938 set_marker_restricted (w->start, make_number (0), w->buffer);
4939 set_marker_restricted (w->pointm, make_number (0),w->buffer);
4940 w->start_at_line_beg = Qt;
4942 else
4943 /* Keeping window's old buffer; make sure the markers
4944 are real. */
4946 /* Set window markers at start of visible range. */
4947 if (XMARKER (w->start)->buffer == 0)
4948 set_marker_restricted (w->start, make_number (0),
4949 w->buffer);
4950 if (XMARKER (w->pointm)->buffer == 0)
4951 set_marker_restricted_both (w->pointm, w->buffer,
4952 BUF_PT (XBUFFER (w->buffer)),
4953 BUF_PT_BYTE (XBUFFER (w->buffer)));
4954 w->start_at_line_beg = Qt;
4959 FRAME_ROOT_WINDOW (f) = data->root_window;
4960 /* Prevent "swapping out point" in the old selected window
4961 using the buffer that has been restored into it.
4962 That swapping out has already been done,
4963 near the beginning of this function. */
4964 selected_window = Qnil;
4965 Fselect_window (data->current_window);
4966 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
4967 = selected_window;
4969 if (NILP (data->focus_frame)
4970 || (FRAMEP (data->focus_frame)
4971 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
4972 Fredirect_frame_focus (frame, data->focus_frame);
4974 #if 0 /* I don't understand why this is needed, and it causes problems
4975 when the frame's old selected window has been deleted. */
4976 if (f != selected_frame && FRAME_WINDOW_P (f))
4977 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
4978 Qnil, 0);
4979 #endif
4981 /* Set the screen height to the value it had before this function. */
4982 if (previous_frame_height != FRAME_HEIGHT (f)
4983 || previous_frame_width != FRAME_WIDTH (f))
4984 change_frame_size (f, previous_frame_height, previous_frame_width,
4985 0, 0, 0);
4986 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4987 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
4988 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
4989 make_number (0));
4990 #ifdef HAVE_WINDOW_SYSTEM
4991 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
4992 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
4993 make_number (0));
4994 #endif
4995 #endif
4997 /* Now, free glyph matrices in windows that were not reused. */
4998 for (i = n = 0; i < n_leaf_windows; ++i)
5000 if (NILP (leaf_windows[i]->buffer))
5002 /* Assert it's not reused as a combination. */
5003 xassert (NILP (leaf_windows[i]->hchild)
5004 && NILP (leaf_windows[i]->vchild));
5005 free_window_matrices (leaf_windows[i]);
5007 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
5008 ++n;
5011 /* If more than one window shows the new and old current buffer,
5012 don't try to preserve point in that buffer. */
5013 if (old_point > 0 && n > 1)
5014 old_point = -1;
5016 adjust_glyphs (f);
5018 UNBLOCK_INPUT;
5020 /* Fselect_window will have made f the selected frame, so we
5021 reselect the proper frame here. Fhandle_switch_frame will change the
5022 selected window too, but that doesn't make the call to
5023 Fselect_window above totally superfluous; it still sets f's
5024 selected window. */
5025 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
5026 do_switch_frame (data->selected_frame, Qnil, 0);
5028 if (! NILP (Vwindow_configuration_change_hook)
5029 && ! NILP (Vrun_hooks))
5030 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
5033 if (!NILP (new_current_buffer))
5035 Fset_buffer (new_current_buffer);
5037 /* If the buffer that is current now is the same
5038 that was current before setting the window configuration,
5039 don't alter its PT. */
5040 if (old_point >= 0)
5041 SET_PT (old_point);
5044 /* Restore the minimum heights recorded in the configuration. */
5045 window_min_height = XINT (data->min_height);
5046 window_min_width = XINT (data->min_width);
5048 Vminibuf_scroll_window = data->minibuf_scroll_window;
5050 return (FRAME_LIVE_P (f) ? Qt : Qnil);
5053 /* Mark all windows now on frame as deleted
5054 by setting their buffers to nil. */
5056 void
5057 delete_all_subwindows (w)
5058 register struct window *w;
5060 if (!NILP (w->next))
5061 delete_all_subwindows (XWINDOW (w->next));
5062 if (!NILP (w->vchild))
5063 delete_all_subwindows (XWINDOW (w->vchild));
5064 if (!NILP (w->hchild))
5065 delete_all_subwindows (XWINDOW (w->hchild));
5067 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
5069 if (!NILP (w->buffer))
5070 unshow_buffer (w);
5072 /* We set all three of these fields to nil, to make sure that we can
5073 distinguish this dead window from any live window. Live leaf
5074 windows will have buffer set, and combination windows will have
5075 vchild or hchild set. */
5076 w->buffer = Qnil;
5077 w->vchild = Qnil;
5078 w->hchild = Qnil;
5080 Vwindow_list = Qnil;
5083 static int
5084 count_windows (window)
5085 register struct window *window;
5087 register int count = 1;
5088 if (!NILP (window->next))
5089 count += count_windows (XWINDOW (window->next));
5090 if (!NILP (window->vchild))
5091 count += count_windows (XWINDOW (window->vchild));
5092 if (!NILP (window->hchild))
5093 count += count_windows (XWINDOW (window->hchild));
5094 return count;
5098 /* Fill vector FLAT with leaf windows under W, starting at index I.
5099 Value is last index + 1. */
5101 static int
5102 get_leaf_windows (w, flat, i)
5103 struct window *w;
5104 struct window **flat;
5105 int i;
5107 while (w)
5109 if (!NILP (w->hchild))
5110 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5111 else if (!NILP (w->vchild))
5112 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
5113 else
5114 flat[i++] = w;
5116 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5119 return i;
5123 /* Return a pointer to the glyph W's physical cursor is on. Value is
5124 null if W's current matrix is invalid, so that no meaningfull glyph
5125 can be returned. */
5127 struct glyph *
5128 get_phys_cursor_glyph (w)
5129 struct window *w;
5131 struct glyph_row *row;
5132 struct glyph *glyph;
5134 if (w->phys_cursor.vpos >= 0
5135 && w->phys_cursor.vpos < w->current_matrix->nrows
5136 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
5137 row->enabled_p)
5138 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
5139 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
5140 else
5141 glyph = NULL;
5143 return glyph;
5147 static int
5148 save_window_save (window, vector, i)
5149 Lisp_Object window;
5150 struct Lisp_Vector *vector;
5151 int i;
5153 register struct saved_window *p;
5154 register struct window *w;
5155 register Lisp_Object tem;
5157 for (;!NILP (window); window = w->next)
5159 p = SAVED_WINDOW_N (vector, i);
5160 w = XWINDOW (window);
5162 XSETFASTINT (w->temslot, i++);
5163 p->window = window;
5164 p->buffer = w->buffer;
5165 p->left = w->left;
5166 p->top = w->top;
5167 p->width = w->width;
5168 p->height = w->height;
5169 p->hscroll = w->hscroll;
5170 p->min_hscroll = w->min_hscroll;
5171 p->display_table = w->display_table;
5172 p->orig_top = w->orig_top;
5173 p->orig_height = w->orig_height;
5174 if (!NILP (w->buffer))
5176 /* Save w's value of point in the window configuration.
5177 If w is the selected window, then get the value of point
5178 from the buffer; pointm is garbage in the selected window. */
5179 if (EQ (window, selected_window))
5181 p->pointm = Fmake_marker ();
5182 set_marker_both (p->pointm, w->buffer,
5183 BUF_PT (XBUFFER (w->buffer)),
5184 BUF_PT_BYTE (XBUFFER (w->buffer)));
5186 else
5187 p->pointm = Fcopy_marker (w->pointm, Qnil);
5189 p->start = Fcopy_marker (w->start, Qnil);
5190 p->start_at_line_beg = w->start_at_line_beg;
5192 tem = XBUFFER (w->buffer)->mark;
5193 p->mark = Fcopy_marker (tem, Qnil);
5195 else
5197 p->pointm = Qnil;
5198 p->start = Qnil;
5199 p->mark = Qnil;
5200 p->start_at_line_beg = Qnil;
5203 if (NILP (w->parent))
5204 p->parent = Qnil;
5205 else
5206 p->parent = XWINDOW (w->parent)->temslot;
5208 if (NILP (w->prev))
5209 p->prev = Qnil;
5210 else
5211 p->prev = XWINDOW (w->prev)->temslot;
5213 if (!NILP (w->vchild))
5214 i = save_window_save (w->vchild, vector, i);
5215 if (!NILP (w->hchild))
5216 i = save_window_save (w->hchild, vector, i);
5219 return i;
5222 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
5223 Scurrent_window_configuration, 0, 1, 0,
5224 "Return an object representing the current window configuration of FRAME.\n\
5225 If FRAME is nil or omitted, use the selected frame.\n\
5226 This describes the number of windows, their sizes and current buffers,\n\
5227 and for each displayed buffer, where display starts, and the positions of\n\
5228 point and mark. An exception is made for point in the current buffer:\n\
5229 its value is -not- saved.\n\
5230 This also records the currently selected frame, and FRAME's focus\n\
5231 redirection (see `redirect-frame-focus').")
5232 (frame)
5233 Lisp_Object frame;
5235 register Lisp_Object tem;
5236 register int n_windows;
5237 register struct save_window_data *data;
5238 register struct Lisp_Vector *vec;
5239 register int i;
5240 FRAME_PTR f;
5242 if (NILP (frame))
5243 frame = selected_frame;
5244 CHECK_LIVE_FRAME (frame, 0);
5245 f = XFRAME (frame);
5247 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
5248 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
5249 for (i = 0; i < VECSIZE (struct save_window_data); i++)
5250 vec->contents[i] = Qnil;
5251 vec->size = VECSIZE (struct save_window_data);
5252 data = (struct save_window_data *)vec;
5254 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
5255 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
5256 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
5257 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
5258 data->selected_frame = selected_frame;
5259 data->current_window = FRAME_SELECTED_WINDOW (f);
5260 XSETBUFFER (data->current_buffer, current_buffer);
5261 data->minibuf_scroll_window = Vminibuf_scroll_window;
5262 data->root_window = FRAME_ROOT_WINDOW (f);
5263 data->focus_frame = FRAME_FOCUS_FRAME (f);
5264 XSETINT (data->min_height, window_min_height);
5265 XSETINT (data->min_width, window_min_width);
5266 tem = Fmake_vector (make_number (n_windows), Qnil);
5267 data->saved_windows = tem;
5268 for (i = 0; i < n_windows; i++)
5269 XVECTOR (tem)->contents[i]
5270 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
5271 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
5272 XSETWINDOW_CONFIGURATION (tem, data);
5273 return (tem);
5276 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
5277 0, UNEVALLED, 0,
5278 "Execute body, preserving window sizes and contents.\n\
5279 Restore which buffer appears in which window, where display starts,\n\
5280 and the value of point and mark for each window.\n\
5281 Also restore the choice of selected window.\n\
5282 Also restore which buffer is current.\n\
5283 Does not restore the value of point in current buffer.")
5284 (args)
5285 Lisp_Object args;
5287 register Lisp_Object val;
5288 register int count = specpdl_ptr - specpdl;
5290 record_unwind_protect (Fset_window_configuration,
5291 Fcurrent_window_configuration (Qnil));
5292 val = Fprogn (args);
5293 return unbind_to (count, val);
5297 /***********************************************************************
5298 Marginal Areas
5299 ***********************************************************************/
5301 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
5302 2, 3, 0,
5303 "Set width of marginal areas of window WINDOW.\n\
5304 If window is nil, set margins of the currently selected window.\n\
5305 First parameter LEFT-WIDTH specifies the number of character\n\
5306 cells to reserve for the left marginal area. Second parameter\n\
5307 RIGHT-WIDTH does the same for the right marginal area.\n\
5308 A nil width parameter means no margin.")
5309 (window, left, right)
5310 Lisp_Object window, left, right;
5312 struct window *w = decode_window (window);
5314 if (!NILP (left))
5315 CHECK_NUMBER_OR_FLOAT (left, 1);
5316 if (!NILP (right))
5317 CHECK_NUMBER_OR_FLOAT (right, 2);
5319 /* Check widths < 0 and translate a zero width to nil.
5320 Margins that are too wide have to be checked elsewhere. */
5321 if ((INTEGERP (left) && XINT (left) < 0)
5322 || (FLOATP (left) && XFLOAT_DATA (left) <= 0))
5323 XSETFASTINT (left, 0);
5324 if (INTEGERP (left) && XFASTINT (left) == 0)
5325 left = Qnil;
5327 if ((INTEGERP (right) && XINT (right) < 0)
5328 || (FLOATP (right) && XFLOAT_DATA (right) <= 0))
5329 XSETFASTINT (right, 0);
5330 if (INTEGERP (right) && XFASTINT (right) == 0)
5331 right = Qnil;
5333 w->left_margin_width = left;
5334 w->right_margin_width = right;
5336 ++windows_or_buffers_changed;
5337 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
5338 return Qnil;
5342 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
5343 0, 1, 0,
5344 "Get width of marginal areas of window WINDOW.\n\
5345 If WINDOW is omitted or nil, use the currently selected window.\n\
5346 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).\n\
5347 If a marginal area does not exist, its width will be returned\n\
5348 as nil.")
5349 (window)
5350 Lisp_Object window;
5352 struct window *w = decode_window (window);
5353 return Fcons (w->left_margin_width, w->right_margin_width);
5358 /***********************************************************************
5359 Smooth scrolling
5360 ***********************************************************************/
5362 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 1, 0,
5363 "Return the amount by which WINDOW is scrolled vertically.\n\
5364 Use the selected window if WINDOW is nil or omitted.\n\
5365 Value is a multiple of the canonical character height of WINDOW.")
5366 (window)
5367 Lisp_Object window;
5369 Lisp_Object result;
5370 struct frame *f;
5371 struct window *w;
5373 if (NILP (window))
5374 window = selected_window;
5375 else
5376 CHECK_WINDOW (window, 0);
5377 w = XWINDOW (window);
5378 f = XFRAME (w->frame);
5380 if (FRAME_WINDOW_P (f))
5381 result = CANON_Y_FROM_PIXEL_Y (f, -w->vscroll);
5382 else
5383 result = make_number (0);
5384 return result;
5388 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
5389 2, 2, 0,
5390 "Set amount by which WINDOW should be scrolled vertically to VSCROLL.\n\
5391 WINDOW nil or omitted means use the selected window. VSCROLL is a\n\
5392 non-negative multiple of the canonical character height of WINDOW.")
5393 (window, vscroll)
5394 Lisp_Object window, vscroll;
5396 struct window *w;
5397 struct frame *f;
5399 if (NILP (window))
5400 window = selected_window;
5401 else
5402 CHECK_WINDOW (window, 0);
5403 CHECK_NUMBER_OR_FLOAT (vscroll, 1);
5405 w = XWINDOW (window);
5406 f = XFRAME (w->frame);
5408 if (FRAME_WINDOW_P (f))
5410 int old_dy = w->vscroll;
5412 w->vscroll = - CANON_Y_UNIT (f) * XFLOATINT (vscroll);
5413 w->vscroll = min (w->vscroll, 0);
5415 /* Adjust glyph matrix of the frame if the virtual display
5416 area becomes larger than before. */
5417 if (w->vscroll < 0 && w->vscroll < old_dy)
5418 adjust_glyphs (f);
5420 /* Prevent redisplay shortcuts. */
5421 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
5424 return Fwindow_vscroll (window);
5428 /* Call FN for all leaf windows on frame F. FN is called with the
5429 first argument being a pointer to the leaf window, and with
5430 additional argument USER_DATA. Stops when FN returns 0. */
5432 void
5433 foreach_window (f, fn, user_data)
5434 struct frame *f;
5435 int (* fn) P_ ((struct window *, void *));
5436 void *user_data;
5438 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
5442 /* Helper function for foreach_window. Call FN for all leaf windows
5443 reachable from W. FN is called with the first argument being a
5444 pointer to the leaf window, and with additional argument USER_DATA.
5445 Stop when FN returns 0. Value is 0 if stopped by FN. */
5447 static int
5448 foreach_window_1 (w, fn, user_data)
5449 struct window *w;
5450 int (* fn) P_ ((struct window *, void *));
5451 void *user_data;
5453 int cont;
5455 for (cont = 1; w && cont;)
5457 if (!NILP (w->hchild))
5458 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
5459 else if (!NILP (w->vchild))
5460 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
5461 else
5462 cont = fn (w, user_data);
5464 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5467 return cont;
5471 /* Freeze or unfreeze the window start of W if unless it is a
5472 mini-window or the selected window. FREEZE_P non-null means freeze
5473 the window start. */
5475 static int
5476 freeze_window_start (w, freeze_p)
5477 struct window *w;
5478 void *freeze_p;
5480 if (w == XWINDOW (selected_window)
5481 || MINI_WINDOW_P (w)
5482 || (MINI_WINDOW_P (XWINDOW (selected_window))
5483 && ! NILP (Vminibuf_scroll_window)
5484 && w == XWINDOW (Vminibuf_scroll_window)))
5485 freeze_p = NULL;
5487 w->frozen_window_start_p = freeze_p != NULL;
5488 return 1;
5492 /* Freeze or unfreeze the window starts of all leaf windows on frame
5493 F, except the selected window and a mini-window. FREEZE_P non-zero
5494 means freeze the window start. */
5496 void
5497 freeze_window_starts (f, freeze_p)
5498 struct frame *f;
5499 int freeze_p;
5501 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
5505 /***********************************************************************
5506 Initialization
5507 ***********************************************************************/
5509 /* Return 1 if window configurations C1 and C2
5510 describe the same state of affairs. This is used by Fequal. */
5513 compare_window_configurations (c1, c2, ignore_positions)
5514 Lisp_Object c1, c2;
5515 int ignore_positions;
5517 register struct save_window_data *d1, *d2;
5518 struct Lisp_Vector *sw1, *sw2;
5519 int i;
5521 if (!WINDOW_CONFIGURATIONP (c1))
5522 wrong_type_argument (Qwindow_configuration_p, c1);
5523 if (!WINDOW_CONFIGURATIONP (c2))
5524 wrong_type_argument (Qwindow_configuration_p, c2);
5526 d1 = (struct save_window_data *) XVECTOR (c1);
5527 d2 = (struct save_window_data *) XVECTOR (c2);
5528 sw1 = XVECTOR (d1->saved_windows);
5529 sw2 = XVECTOR (d2->saved_windows);
5531 if (! EQ (d1->frame_width, d2->frame_width))
5532 return 0;
5533 if (! EQ (d1->frame_height, d2->frame_height))
5534 return 0;
5535 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
5536 return 0;
5537 if (! EQ (d1->selected_frame, d2->selected_frame))
5538 return 0;
5539 /* Don't compare the current_window field directly.
5540 Instead see w1_is_current and w2_is_current, below. */
5541 if (! EQ (d1->current_buffer, d2->current_buffer))
5542 return 0;
5543 if (! ignore_positions)
5544 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
5545 return 0;
5546 /* Don't compare the root_window field.
5547 We don't require the two configurations
5548 to use the same window object,
5549 and the two root windows must be equivalent
5550 if everything else compares equal. */
5551 if (! EQ (d1->focus_frame, d2->focus_frame))
5552 return 0;
5553 if (! EQ (d1->min_width, d2->min_width))
5554 return 0;
5555 if (! EQ (d1->min_height, d2->min_height))
5556 return 0;
5558 /* Verify that the two confis have the same number of windows. */
5559 if (sw1->size != sw2->size)
5560 return 0;
5562 for (i = 0; i < sw1->size; i++)
5564 struct saved_window *p1, *p2;
5565 int w1_is_current, w2_is_current;
5567 p1 = SAVED_WINDOW_N (sw1, i);
5568 p2 = SAVED_WINDOW_N (sw2, i);
5570 /* Verify that the current windows in the two
5571 configurations correspond to each other. */
5572 w1_is_current = EQ (d1->current_window, p1->window);
5573 w2_is_current = EQ (d2->current_window, p2->window);
5575 if (w1_is_current != w2_is_current)
5576 return 0;
5578 /* Verify that the corresponding windows do match. */
5579 if (! EQ (p1->buffer, p2->buffer))
5580 return 0;
5581 if (! EQ (p1->left, p2->left))
5582 return 0;
5583 if (! EQ (p1->top, p2->top))
5584 return 0;
5585 if (! EQ (p1->width, p2->width))
5586 return 0;
5587 if (! EQ (p1->height, p2->height))
5588 return 0;
5589 if (! EQ (p1->display_table, p2->display_table))
5590 return 0;
5591 if (! EQ (p1->parent, p2->parent))
5592 return 0;
5593 if (! EQ (p1->prev, p2->prev))
5594 return 0;
5595 if (! ignore_positions)
5597 if (! EQ (p1->hscroll, p2->hscroll))
5598 return 0;
5599 if (!EQ (p1->min_hscroll, p2->min_hscroll))
5600 return 0;
5601 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
5602 return 0;
5603 if (NILP (Fequal (p1->start, p2->start)))
5604 return 0;
5605 if (NILP (Fequal (p1->pointm, p2->pointm)))
5606 return 0;
5607 if (NILP (Fequal (p1->mark, p2->mark)))
5608 return 0;
5612 return 1;
5615 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
5616 Scompare_window_configurations, 2, 2, 0,
5617 "Compare two window configurations as regards the structure of windows.\n\
5618 This function ignores details such as the values of point and mark\n\
5619 and scrolling positions.")
5620 (x, y)
5621 Lisp_Object x, y;
5623 if (compare_window_configurations (x, y, 1))
5624 return Qt;
5625 return Qnil;
5628 void
5629 init_window_once ()
5631 struct frame *f = make_terminal_frame ();
5632 XSETFRAME (selected_frame, f);
5633 Vterminal_frame = selected_frame;
5634 minibuf_window = f->minibuffer_window;
5635 selected_window = f->selected_window;
5636 last_nonminibuf_frame = f;
5638 window_initialized = 1;
5641 void
5642 init_window ()
5644 Vwindow_list = Qnil;
5647 void
5648 syms_of_window ()
5650 Qleft_fringe = intern ("left-fringe");
5651 staticpro (&Qleft_fringe);
5652 Qright_fringe = intern ("right-fringe");
5653 staticpro (&Qright_fringe);
5655 Qwindow_size_fixed = intern ("window-size-fixed");
5656 staticpro (&Qwindow_size_fixed);
5658 staticpro (&Qwindow_configuration_change_hook);
5659 Qwindow_configuration_change_hook
5660 = intern ("window-configuration-change-hook");
5662 Qwindowp = intern ("windowp");
5663 staticpro (&Qwindowp);
5665 Qwindow_configuration_p = intern ("window-configuration-p");
5666 staticpro (&Qwindow_configuration_p);
5668 Qwindow_live_p = intern ("window-live-p");
5669 staticpro (&Qwindow_live_p);
5671 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
5672 staticpro (&Qtemp_buffer_show_hook);
5674 staticpro (&Vwindow_list);
5676 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
5677 "Non-nil means call as function to display a help buffer.\n\
5678 The function is called with one argument, the buffer to be displayed.\n\
5679 Used by `with-output-to-temp-buffer'.\n\
5680 If this function is used, then it must do the entire job of showing\n\
5681 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
5682 Vtemp_buffer_show_function = Qnil;
5684 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
5685 "If non-nil, function to call to handle `display-buffer'.\n\
5686 It will receive two args, the buffer and a flag which if non-nil means\n\
5687 that the currently selected window is not acceptable.\n\
5688 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
5689 work using this function.");
5690 Vdisplay_buffer_function = Qnil;
5692 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
5693 "*If non-nil, `display-buffer' should even the window heights.\n\
5694 If nil, `display-buffer' will leave the window configuration alone.");
5695 Veven_window_heights = Qt;
5697 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
5698 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
5699 Vminibuf_scroll_window = Qnil;
5701 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
5702 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
5703 Vother_window_scroll_buffer = Qnil;
5705 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
5706 "*Non-nil means `display-buffer' should make a separate frame.");
5707 pop_up_frames = 0;
5709 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
5710 "*Non-nil means `display-buffer' should reuse frames.\n\
5711 If the buffer in question is already displayed in a frame, raise that frame.");
5712 display_buffer_reuse_frames = 0;
5714 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
5715 "Function to call to handle automatic new frame creation.\n\
5716 It is called with no arguments and should return a newly created frame.\n\
5718 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
5719 where `pop-up-frame-alist' would hold the default frame parameters.");
5720 Vpop_up_frame_function = Qnil;
5722 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
5723 "*List of buffer names that should have their own special frames.\n\
5724 Displaying a buffer whose name is in this list makes a special frame for it\n\
5725 using `special-display-function'. See also `special-display-regexps'.\n\
5727 An element of the list can be a list instead of just a string.\n\
5728 There are two ways to use a list as an element:\n\
5729 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
5730 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5731 In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
5732 followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
5733 All this is done by the function found in `special-display-function'.\n\
5735 If this variable appears \"not to work\", because you add a name to it\n\
5736 but that buffer still appears in the selected window, look at the\n\
5737 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5738 Those variables take precedence over this one.");
5739 Vspecial_display_buffer_names = Qnil;
5741 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
5742 "*List of regexps saying which buffers should have their own special frames.\n\
5743 If a buffer name matches one of these regexps, it gets its own frame.\n\
5744 Displaying a buffer whose name is in this list makes a special frame for it\n\
5745 using `special-display-function'.\n\
5747 An element of the list can be a list instead of just a string.\n\
5748 There are two ways to use a list as an element:\n\
5749 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
5750 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5751 In the latter case, FUNCTION is called with the buffer as first argument,\n\
5752 followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
5753 All this is done by the function found in `special-display-function'.\n\
5755 If this variable appears \"not to work\", because you add a regexp to it\n\
5756 but the matching buffers still appear in the selected window, look at the\n\
5757 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5758 Those variables take precedence over this one.");
5759 Vspecial_display_regexps = Qnil;
5761 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
5762 "Function to call to make a new frame for a special buffer.\n\
5763 It is called with two arguments, the buffer and optional buffer specific\n\
5764 data, and should return a window displaying that buffer.\n\
5765 The default value makes a separate frame for the buffer,\n\
5766 using `special-display-frame-alist' to specify the frame parameters.\n\
5768 A buffer is special if its is listed in `special-display-buffer-names'\n\
5769 or matches a regexp in `special-display-regexps'.");
5770 Vspecial_display_function = Qnil;
5772 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
5773 "*List of buffer names that should appear in the selected window.\n\
5774 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
5775 switches to it in the selected window, rather than making it appear\n\
5776 in some other window.\n\
5778 An element of the list can be a cons cell instead of just a string.\n\
5779 Then the car must be a string, which specifies the buffer name.\n\
5780 This is for compatibility with `special-display-buffer-names';\n\
5781 the cdr of the cons cell is ignored.\n\
5783 See also `same-window-regexps'.");
5784 Vsame_window_buffer_names = Qnil;
5786 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
5787 "*List of regexps saying which buffers should appear in the selected window.\n\
5788 If a buffer name matches one of these regexps, then displaying it\n\
5789 using `display-buffer' or `pop-to-buffer' switches to it\n\
5790 in the selected window, rather than making it appear in some other window.\n\
5792 An element of the list can be a cons cell instead of just a string.\n\
5793 Then the car must be a string, which specifies the buffer name.\n\
5794 This is for compatibility with `special-display-buffer-names';\n\
5795 the cdr of the cons cell is ignored.\n\
5797 See also `same-window-buffer-names'.");
5798 Vsame_window_regexps = Qnil;
5800 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
5801 "*Non-nil means display-buffer should make new windows.");
5802 pop_up_windows = 1;
5804 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
5805 "*Number of lines of continuity when scrolling by screenfuls.");
5806 next_screen_context_lines = 2;
5808 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
5809 "*display-buffer would prefer to split the largest window if this large.\n\
5810 If there is only one window, it is split regardless of this value.");
5811 split_height_threshold = 500;
5813 DEFVAR_INT ("window-min-height", &window_min_height,
5814 "*Delete any window less than this tall (including its mode line).");
5815 window_min_height = 4;
5817 DEFVAR_INT ("window-min-width", &window_min_width,
5818 "*Delete any window less than this wide.");
5819 window_min_width = 10;
5821 DEFVAR_LISP ("scroll-preserve-screen-position",
5822 &Vscroll_preserve_screen_position,
5823 "*Non-nil means scroll commands move point to keep its screen line unchanged.");
5824 Vscroll_preserve_screen_position = Qnil;
5826 DEFVAR_LISP ("window-configuration-change-hook",
5827 &Vwindow_configuration_change_hook,
5828 "Functions to call when window configuration changes.\n\
5829 The selected frame is the one whose configuration has changed.");
5830 Vwindow_configuration_change_hook = Qnil;
5832 DEFVAR_BOOL ("window-size-fixed", &window_size_fixed,
5833 "Non-nil in a buffer means windows displaying the buffer are fixed-size.\n\
5834 Emacs won't change the size of any window displaying that buffer,\n\
5835 unless you explicitly change the size, or Emacs has no other choice.\n\
5836 This variable automatically becomes buffer-local when set.");
5837 Fmake_variable_buffer_local (Qwindow_size_fixed);
5838 window_size_fixed = 0;
5840 defsubr (&Sselected_window);
5841 defsubr (&Sminibuffer_window);
5842 defsubr (&Swindow_minibuffer_p);
5843 defsubr (&Swindowp);
5844 defsubr (&Swindow_live_p);
5845 defsubr (&Spos_visible_in_window_p);
5846 defsubr (&Swindow_buffer);
5847 defsubr (&Swindow_height);
5848 defsubr (&Swindow_width);
5849 defsubr (&Swindow_hscroll);
5850 defsubr (&Sset_window_hscroll);
5851 defsubr (&Swindow_redisplay_end_trigger);
5852 defsubr (&Sset_window_redisplay_end_trigger);
5853 defsubr (&Swindow_edges);
5854 defsubr (&Scoordinates_in_window_p);
5855 defsubr (&Swindow_at);
5856 defsubr (&Swindow_point);
5857 defsubr (&Swindow_start);
5858 defsubr (&Swindow_end);
5859 defsubr (&Sset_window_point);
5860 defsubr (&Sset_window_start);
5861 defsubr (&Swindow_dedicated_p);
5862 defsubr (&Sset_window_dedicated_p);
5863 defsubr (&Swindow_display_table);
5864 defsubr (&Sset_window_display_table);
5865 defsubr (&Snext_window);
5866 defsubr (&Sprevious_window);
5867 defsubr (&Sother_window);
5868 defsubr (&Sget_lru_window);
5869 defsubr (&Sget_largest_window);
5870 defsubr (&Sget_buffer_window);
5871 defsubr (&Sdelete_other_windows);
5872 defsubr (&Sdelete_windows_on);
5873 defsubr (&Sreplace_buffer_in_windows);
5874 defsubr (&Sdelete_window);
5875 defsubr (&Sset_window_buffer);
5876 defsubr (&Sselect_window);
5877 defsubr (&Sspecial_display_p);
5878 defsubr (&Ssame_window_p);
5879 defsubr (&Sdisplay_buffer);
5880 defsubr (&Ssplit_window);
5881 defsubr (&Senlarge_window);
5882 defsubr (&Sshrink_window);
5883 defsubr (&Sscroll_up);
5884 defsubr (&Sscroll_down);
5885 defsubr (&Sscroll_left);
5886 defsubr (&Sscroll_right);
5887 defsubr (&Sother_window_for_scrolling);
5888 defsubr (&Sscroll_other_window);
5889 defsubr (&Srecenter);
5890 defsubr (&Swindow_text_height);
5891 defsubr (&Smove_to_window_line);
5892 defsubr (&Swindow_configuration_p);
5893 defsubr (&Swindow_configuration_frame);
5894 defsubr (&Sset_window_configuration);
5895 defsubr (&Scurrent_window_configuration);
5896 defsubr (&Ssave_window_excursion);
5897 defsubr (&Sset_window_margins);
5898 defsubr (&Swindow_margins);
5899 defsubr (&Swindow_vscroll);
5900 defsubr (&Sset_window_vscroll);
5901 defsubr (&Scompare_window_configurations);
5902 defsubr (&Swindow_list);
5905 void
5906 keys_of_window ()
5908 initial_define_key (control_x_map, '1', "delete-other-windows");
5909 initial_define_key (control_x_map, '2', "split-window");
5910 initial_define_key (control_x_map, '0', "delete-window");
5911 initial_define_key (control_x_map, 'o', "other-window");
5912 initial_define_key (control_x_map, '^', "enlarge-window");
5913 initial_define_key (control_x_map, '<', "scroll-left");
5914 initial_define_key (control_x_map, '>', "scroll-right");
5916 initial_define_key (global_map, Ctl ('V'), "scroll-up");
5917 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
5918 initial_define_key (meta_map, 'v', "scroll-down");
5920 initial_define_key (global_map, Ctl('L'), "recenter");
5921 initial_define_key (meta_map, 'r', "move-to-window-line");