(MISC): Augment.
[emacs.git] / src / window.c
blob848cc6512ec8b283a3ca6b9acdbd748cbe68ac59
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.")
3302 (arg, side)
3303 register Lisp_Object arg, side;
3305 CHECK_NUMBER (arg, 0);
3306 enlarge_window (selected_window, XINT (arg), !NILP (side));
3308 if (! NILP (Vwindow_configuration_change_hook))
3309 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3311 return Qnil;
3314 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
3315 "Make current window ARG lines smaller.\n\
3316 From program, optional second arg non-nil means shrink sideways arg columns.")
3317 (arg, side)
3318 register Lisp_Object arg, side;
3320 CHECK_NUMBER (arg, 0);
3321 enlarge_window (selected_window, -XINT (arg), !NILP (side));
3323 if (! NILP (Vwindow_configuration_change_hook))
3324 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3326 return Qnil;
3330 window_height (window)
3331 Lisp_Object window;
3333 register struct window *p = XWINDOW (window);
3334 return XFASTINT (p->height);
3338 window_width (window)
3339 Lisp_Object window;
3341 register struct window *p = XWINDOW (window);
3342 return XFASTINT (p->width);
3346 #define CURBEG(w) \
3347 *(widthflag ? &(XWINDOW (w)->left) : &(XWINDOW (w)->top))
3349 #define CURSIZE(w) \
3350 *(widthflag ? &(XWINDOW (w)->width) : &(XWINDOW (w)->height))
3353 /* Enlarge selected_window by DELTA. WIDTHFLAG non-zero means
3354 increase its width. Siblings of the selected window are resized to
3355 fullfil the size request. If they become too small in the process,
3356 they will be deleted. */
3358 static void
3359 enlarge_window (window, delta, widthflag)
3360 Lisp_Object window;
3361 int delta, widthflag;
3363 Lisp_Object parent, next, prev;
3364 struct window *p;
3365 Lisp_Object *sizep;
3366 int maximum;
3367 int (*sizefun) P_ ((Lisp_Object))
3368 = widthflag ? window_width : window_height;
3369 void (*setsizefun) P_ ((Lisp_Object, int, int))
3370 = (widthflag ? set_window_width : set_window_height);
3372 /* Check values of window_min_width and window_min_height for
3373 validity. */
3374 check_min_window_sizes ();
3376 /* Give up if this window cannot be resized. */
3377 if (window_fixed_size_p (XWINDOW (window), widthflag, 1))
3378 error ("Window is not resizable");
3380 /* Find the parent of the selected window. */
3381 while (1)
3383 p = XWINDOW (window);
3384 parent = p->parent;
3386 if (NILP (parent))
3388 if (widthflag)
3389 error ("No other window to side of this one");
3390 break;
3393 if (widthflag
3394 ? !NILP (XWINDOW (parent)->hchild)
3395 : !NILP (XWINDOW (parent)->vchild))
3396 break;
3398 window = parent;
3401 sizep = &CURSIZE (window);
3404 register int maxdelta;
3406 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
3407 : !NILP (p->next) ? ((*sizefun) (p->next)
3408 - window_min_size (XWINDOW (p->next),
3409 widthflag, 0, 0))
3410 : !NILP (p->prev) ? ((*sizefun) (p->prev)
3411 - window_min_size (XWINDOW (p->prev),
3412 widthflag, 0, 0))
3413 /* This is a frame with only one window, a minibuffer-only
3414 or a minibufferless frame. */
3415 : (delta = 0));
3417 if (delta > maxdelta)
3418 /* This case traps trying to make the minibuffer
3419 the full frame, or make the only window aside from the
3420 minibuffer the full frame. */
3421 delta = maxdelta;
3424 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), widthflag, 0, 0))
3426 delete_window (window);
3427 return;
3430 if (delta == 0)
3431 return;
3433 /* Find the total we can get from other siblings. */
3434 maximum = 0;
3435 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
3436 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
3437 widthflag, 0, 0);
3438 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
3439 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
3440 widthflag, 0, 0);
3442 /* If we can get it all from them, do so. */
3443 if (delta <= maximum)
3445 Lisp_Object first_unaffected;
3446 Lisp_Object first_affected;
3447 int fixed_p;
3449 next = p->next;
3450 prev = p->prev;
3451 first_affected = window;
3452 /* Look at one sibling at a time,
3453 moving away from this window in both directions alternately,
3454 and take as much as we can get without deleting that sibling. */
3455 while (delta != 0 && (!NILP (next) || !NILP (prev)))
3457 if (! NILP (next))
3459 int this_one = ((*sizefun) (next)
3460 - window_min_size (XWINDOW (next),
3461 widthflag, 0, &fixed_p));
3462 if (!fixed_p)
3464 if (this_one > delta)
3465 this_one = delta;
3467 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
3468 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3470 delta -= this_one;
3473 next = XWINDOW (next)->next;
3476 if (delta == 0)
3477 break;
3479 if (! NILP (prev))
3481 int this_one = ((*sizefun) (prev)
3482 - window_min_size (XWINDOW (prev),
3483 widthflag, 0, &fixed_p));
3484 if (!fixed_p)
3486 if (this_one > delta)
3487 this_one = delta;
3489 first_affected = prev;
3491 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
3492 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
3494 delta -= this_one;
3497 prev = XWINDOW (prev)->prev;
3501 xassert (delta == 0);
3503 /* Now recalculate the edge positions of all the windows affected,
3504 based on the new sizes. */
3505 first_unaffected = next;
3506 prev = first_affected;
3507 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
3508 prev = next, next = XWINDOW (next)->next)
3510 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
3511 /* This does not change size of NEXT,
3512 but it propagates the new top edge to its children */
3513 (*setsizefun) (next, (*sizefun) (next), 0);
3516 else
3518 register int delta1;
3519 register int opht = (*sizefun) (parent);
3521 /* If trying to grow this window to or beyond size of the parent,
3522 make delta1 so big that, on shrinking back down,
3523 all the siblings end up with less than one line and are deleted. */
3524 if (opht <= XINT (*sizep) + delta)
3525 delta1 = opht * opht * 2;
3526 else
3528 /* Otherwise, make delta1 just right so that if we add
3529 delta1 lines to this window and to the parent, and then
3530 shrink the parent back to its original size, the new
3531 proportional size of this window will increase by delta.
3533 The function size_window will compute the new height h'
3534 of the window from delta1 as:
3536 e = delta1/n
3537 x = delta1 - delta1/n * n for the 1st resizable child
3538 h' = h + e + x
3540 where n is the number of children that can be resized.
3541 We can ignore x by choosing a delta1 that is a multiple of
3542 n. We want the height of this window to come out as
3544 h' = h + delta
3546 So, delta1 must be
3548 h + e = h + delta
3549 delta1/n = delta
3550 delta1 = n * delta.
3552 The number of children n rquals the number of resizable
3553 children of this window + 1 because we know window itself
3554 is resizable (otherwise we would have signalled an error. */
3556 struct window *w = XWINDOW (window);
3557 Lisp_Object s;
3558 int n = 1;
3560 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
3561 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3562 ++n;
3563 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
3564 if (!window_fixed_size_p (XWINDOW (s), widthflag, 0))
3565 ++n;
3567 delta1 = n * delta;
3570 /* Add delta1 lines or columns to this window, and to the parent,
3571 keeping things consistent while not affecting siblings. */
3572 XSETINT (CURSIZE (parent), opht + delta1);
3573 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
3575 /* Squeeze out delta1 lines or columns from our parent,
3576 shriking this window and siblings proportionately.
3577 This brings parent back to correct size.
3578 Delta1 was calculated so this makes this window the desired size,
3579 taking it all out of the siblings. */
3580 (*setsizefun) (parent, opht, 0);
3583 XSETFASTINT (p->last_modified, 0);
3584 XSETFASTINT (p->last_overlay_modified, 0);
3586 /* Adjust glyph matrices. */
3587 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
3590 #undef CURBEG
3591 #undef CURSIZE
3595 /***********************************************************************
3596 Resizing Mini-Windows
3597 ***********************************************************************/
3599 static void shrink_window_lowest_first P_ ((struct window *, int));
3601 enum save_restore_action
3603 CHECK_ORIG_SIZES,
3604 SAVE_ORIG_SIZES,
3605 RESTORE_ORIG_SIZES
3608 static int save_restore_orig_size P_ ((struct window *,
3609 enum save_restore_action));
3611 /* Shrink windows rooted in window W to HEIGHT. Take the space needed
3612 from lowest windows first. */
3614 static void
3615 shrink_window_lowest_first (w, height)
3616 struct window *w;
3617 int height;
3619 struct window *c;
3620 Lisp_Object child;
3621 int old_height;
3623 xassert (!MINI_WINDOW_P (w));
3625 /* Set redisplay hints. */
3626 XSETFASTINT (w->last_modified, 0);
3627 XSETFASTINT (w->last_overlay_modified, 0);
3628 windows_or_buffers_changed++;
3629 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
3631 old_height = XFASTINT (w->height);
3632 XSETFASTINT (w->height, height);
3634 if (!NILP (w->hchild))
3636 for (child = w->hchild; !NILP (child); child = c->next)
3638 c = XWINDOW (child);
3639 c->top = w->top;
3640 shrink_window_lowest_first (c, height);
3643 else if (!NILP (w->vchild))
3645 Lisp_Object last_child;
3646 int delta = old_height - height;
3647 int last_top;
3649 last_child = Qnil;
3651 /* Find the last child. We are taking space from lowest windows
3652 first, so we iterate over children from the last child
3653 backwards. */
3654 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
3655 last_child = child;
3657 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
3658 for (child = last_child; delta && !NILP (child); child = c->prev)
3660 int this_one;
3662 c = XWINDOW (child);
3663 this_one = XFASTINT (c->height) - MIN_SAFE_WINDOW_HEIGHT;
3665 if (this_one > delta)
3666 this_one = delta;
3668 shrink_window_lowest_first (c, XFASTINT (c->height) - this_one);
3669 delta -= this_one;
3672 /* Compute new positions. */
3673 last_top = XINT (w->top);
3674 for (child = w->vchild; !NILP (child); child = c->next)
3676 c = XWINDOW (child);
3677 c->top = make_number (last_top);
3678 shrink_window_lowest_first (c, XFASTINT (c->height));
3679 last_top += XFASTINT (c->height);
3685 /* Save, restore, or check positions and sizes in the window tree
3686 rooted at W. ACTION says what to do.
3688 If ACTION is CHECK_ORIG_SIZES, check if orig_top and orig_height
3689 members are valid for all windows in the window tree. Value is
3690 non-zero if they are valid.
3692 If ACTION is SAVE_ORIG_SIZES, save members top and height in
3693 orig_top and orig_height for all windows in the tree.
3695 If ACTION is RESTORE_ORIG_SIZES, restore top and height from
3696 values stored in orig_top and orig_height for all windows. */
3698 static int
3699 save_restore_orig_size (w, action)
3700 struct window *w;
3701 enum save_restore_action action;
3703 int success_p = 1;
3705 while (w)
3707 if (!NILP (w->hchild))
3709 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
3710 success_p = 0;
3712 else if (!NILP (w->vchild))
3714 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
3715 success_p = 0;
3718 switch (action)
3720 case CHECK_ORIG_SIZES:
3721 if (!INTEGERP (w->orig_top) || !INTEGERP (w->orig_height))
3722 return 0;
3723 break;
3725 case SAVE_ORIG_SIZES:
3726 w->orig_top = w->top;
3727 w->orig_height = w->height;
3728 XSETFASTINT (w->last_modified, 0);
3729 XSETFASTINT (w->last_overlay_modified, 0);
3730 break;
3732 case RESTORE_ORIG_SIZES:
3733 xassert (INTEGERP (w->orig_top) && INTEGERP (w->orig_height));
3734 w->top = w->orig_top;
3735 w->height = w->orig_height;
3736 w->orig_height = w->orig_top = Qnil;
3737 XSETFASTINT (w->last_modified, 0);
3738 XSETFASTINT (w->last_overlay_modified, 0);
3739 break;
3741 default:
3742 abort ();
3745 w = NILP (w->next) ? NULL : XWINDOW (w->next);
3748 return success_p;
3752 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
3753 without deleting other windows. */
3755 void
3756 grow_mini_window (w, delta)
3757 struct window *w;
3758 int delta;
3760 struct frame *f = XFRAME (w->frame);
3761 struct window *root;
3763 xassert (MINI_WINDOW_P (w));
3764 xassert (delta >= 0);
3766 /* Check values of window_min_width and window_min_height for
3767 validity. */
3768 check_min_window_sizes ();
3770 /* Compute how much we can enlarge the mini-window without deleting
3771 other windows. */
3772 root = XWINDOW (FRAME_ROOT_WINDOW (f));
3773 if (delta)
3775 int min_height = window_min_size (root, 0, 0, 0);
3776 if (XFASTINT (root->height) - delta < min_height)
3777 delta = XFASTINT (root->height) - min_height;
3780 if (delta)
3782 /* Save original window sizes and positions, if not already done. */
3783 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
3784 save_restore_orig_size (root, SAVE_ORIG_SIZES);
3786 /* Shrink other windows. */
3787 shrink_window_lowest_first (root, XFASTINT (root->height) - delta);
3789 /* Grow the mini-window. */
3790 w->top = make_number (XFASTINT (root->top) + XFASTINT (root->height));
3791 w->height = make_number (XFASTINT (w->height) + delta);
3792 XSETFASTINT (w->last_modified, 0);
3793 XSETFASTINT (w->last_overlay_modified, 0);
3795 adjust_glyphs (f);
3800 /* Shrink mini-window W. If there is recorded info about window sizes
3801 before a call to grow_mini_window, restore recorded window sizes.
3802 Otherwise, if the mini-window is higher than 1 line, resize it to 1
3803 line. */
3805 void
3806 shrink_mini_window (w)
3807 struct window *w;
3809 struct frame *f = XFRAME (w->frame);
3810 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
3812 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
3814 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
3815 adjust_glyphs (f);
3816 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3817 windows_or_buffers_changed = 1;
3819 else if (XFASTINT (w->height) > 1)
3821 /* Distribute the additional lines of the mini-window
3822 among the other windows. */
3823 Lisp_Object window;
3824 XSETWINDOW (window, w);
3825 enlarge_window (window, 1 - XFASTINT (w->height), 0);
3831 /* Mark window cursors off for all windows in the window tree rooted
3832 at W by setting their phys_cursor_on_p flag to zero. Called from
3833 xterm.c, e.g. when a frame is cleared and thereby all cursors on
3834 the frame are cleared. */
3836 void
3837 mark_window_cursors_off (w)
3838 struct window *w;
3840 while (w)
3842 if (!NILP (w->hchild))
3843 mark_window_cursors_off (XWINDOW (w->hchild));
3844 else if (!NILP (w->vchild))
3845 mark_window_cursors_off (XWINDOW (w->vchild));
3846 else
3847 w->phys_cursor_on_p = 0;
3849 w = NILP (w->next) ? 0 : XWINDOW (w->next);
3854 /* Return number of lines of text (not counting mode line) in W. */
3857 window_internal_height (w)
3858 struct window *w;
3860 int ht = XFASTINT (w->height);
3862 if (MINI_WINDOW_P (w))
3863 return ht;
3865 if (!NILP (w->parent) || !NILP (w->vchild) || !NILP (w->hchild)
3866 || !NILP (w->next) || !NILP (w->prev)
3867 || FRAME_WANTS_MODELINE_P (XFRAME (WINDOW_FRAME (w))))
3868 return ht - 1;
3870 return ht;
3874 /* Return the number of columns in W.
3875 Don't count columns occupied by scroll bars or the vertical bar
3876 separating W from the sibling to its right. */
3879 window_internal_width (w)
3880 struct window *w;
3882 struct frame *f = XFRAME (WINDOW_FRAME (w));
3883 int width = XINT (w->width);
3885 if (FRAME_HAS_VERTICAL_SCROLL_BARS (f))
3886 /* Scroll bars occupy a few columns. */
3887 width -= FRAME_SCROLL_BAR_COLS (f);
3888 else if (!WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
3889 /* The column of `|' characters separating side-by-side windows
3890 occupies one column only. */
3891 width -= 1;
3893 /* On window-systems, areas to the left and right of the window
3894 are used to display bitmaps there. */
3895 if (FRAME_WINDOW_P (f))
3896 width -= FRAME_FLAGS_AREA_COLS (f);
3898 return width;
3902 /************************************************************************
3903 Window Scrolling
3904 ***********************************************************************/
3906 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
3907 one screen-full, which is defined as the height of the window minus
3908 next_screen_context_lines. If WHOLE is zero, scroll up N lines
3909 instead. Negative values of N mean scroll down. NOERROR non-zero
3910 means don't signal an error if we try to move over BEGV or ZV,
3911 respectively. */
3913 static void
3914 window_scroll (window, n, whole, noerror)
3915 Lisp_Object window;
3916 int n;
3917 int whole;
3918 int noerror;
3920 /* If we must, use the pixel-based version which is much slower than
3921 the line-based one but can handle varying line heights. */
3922 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
3923 window_scroll_pixel_based (window, n, whole, noerror);
3924 else
3925 window_scroll_line_based (window, n, whole, noerror);
3929 /* Implementation of window_scroll that works based on pixel line
3930 heights. See the comment of window_scroll for parameter
3931 descriptions. */
3933 static void
3934 window_scroll_pixel_based (window, n, whole, noerror)
3935 Lisp_Object window;
3936 int n;
3937 int whole;
3938 int noerror;
3940 struct it it;
3941 struct window *w = XWINDOW (window);
3942 struct text_pos start;
3943 Lisp_Object tem;
3944 int this_scroll_margin;
3945 int preserve_y;
3946 /* True if we fiddled the window vscroll field without really scrolling. */
3947 int vscrolled = 0;
3949 SET_TEXT_POS_FROM_MARKER (start, w->start);
3951 /* If PT is not visible in WINDOW, move back one half of
3952 the screen. */
3953 tem = Fpos_visible_in_window_p (make_number (PT), window, Qnil);
3954 if (NILP (tem))
3956 /* Move backward half the height of the window. Performance note:
3957 vmotion used here is about 10% faster, but would give wrong
3958 results for variable height lines. */
3959 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3960 it.current_y = it.last_visible_y;
3961 move_it_vertically (&it, -it.last_visible_y / 2);
3963 /* The function move_iterator_vertically may move over more than
3964 the specified y-distance. If it->w is small, e.g. a
3965 mini-buffer window, we may end up in front of the window's
3966 display area. This is the case when Start displaying at the
3967 start of the line containing PT in this case. */
3968 if (it.current_y <= 0)
3970 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
3971 move_it_vertically (&it, 0);
3972 it.current_y = 0;
3975 start = it.current.pos;
3978 /* If scroll_preserve_screen_position is non-zero, we try to set
3979 point in the same window line as it is now, so get that line. */
3980 if (!NILP (Vscroll_preserve_screen_position))
3982 start_display (&it, w, start);
3983 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
3984 preserve_y = it.current_y;
3986 else
3987 preserve_y = -1;
3989 /* Move iterator it from start the specified distance forward or
3990 backward. The result is the new window start. */
3991 start_display (&it, w, start);
3992 if (whole)
3994 int screen_full = (it.last_visible_y
3995 - next_screen_context_lines * CANON_Y_UNIT (it.f));
3996 int direction = n < 0 ? -1 : 1;
3997 int dy = direction * screen_full;
3999 /* Note that move_it_vertically always moves the iterator to the
4000 start of a line. So, if the last line doesn't have a newline,
4001 we would end up at the start of the line ending at ZV. */
4002 if (dy <= 0)
4003 move_it_vertically_backward (&it, -dy);
4004 else if (dy > 0)
4005 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4006 MOVE_TO_POS | MOVE_TO_Y);
4008 else
4009 move_it_by_lines (&it, n, 1);
4011 /* End if we end up at ZV or BEGV. */
4012 if ((n > 0 && IT_CHARPOS (it) == ZV)
4013 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4015 if (IT_CHARPOS (it) == ZV)
4017 if (it.current_y + it.max_ascent + it.max_descent
4018 > it.last_visible_y)
4020 /* The last line was only partially visible, make it fully
4021 visible. */
4022 w->vscroll = (it.last_visible_y
4023 - it.current_y + it.max_ascent + it.max_descent);
4024 adjust_glyphs (it.f);
4026 else if (noerror)
4027 return;
4028 else
4029 Fsignal (Qend_of_buffer, Qnil);
4031 else
4033 if (w->vscroll != 0)
4034 /* The first line was only partially visible, make it fully
4035 visible. */
4036 w->vscroll = 0;
4037 else if (noerror)
4038 return;
4039 else
4040 Fsignal (Qbeginning_of_buffer, Qnil);
4043 /* If control gets here, then we vscrolled. */
4045 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
4047 /* Don't try to change the window start below. */
4048 vscrolled = 1;
4051 if (! vscrolled)
4053 /* Set the window start, and set up the window for redisplay. */
4054 set_marker_restricted (w->start, make_number (IT_CHARPOS (it)),
4055 w->buffer);
4056 w->start_at_line_beg = Fbolp ();
4057 w->update_mode_line = Qt;
4058 XSETFASTINT (w->last_modified, 0);
4059 XSETFASTINT (w->last_overlay_modified, 0);
4060 /* Set force_start so that redisplay_window will run the
4061 window-scroll-functions. */
4062 w->force_start = Qt;
4065 it.current_y = it.vpos = 0;
4067 /* Preserve the screen position if we must. */
4068 if (preserve_y >= 0)
4070 move_it_to (&it, -1, -1, preserve_y, -1, MOVE_TO_Y);
4071 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4073 else
4075 /* Move PT out of scroll margins. */
4076 this_scroll_margin = max (0, scroll_margin);
4077 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->height) / 4);
4078 this_scroll_margin *= CANON_Y_UNIT (it.f);
4080 if (n > 0)
4082 /* We moved the window start towards ZV, so PT may be now
4083 in the scroll margin at the top. */
4084 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4085 while (it.current_y < this_scroll_margin)
4086 move_it_by_lines (&it, 1, 1);
4087 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4089 else if (n < 0)
4091 int charpos, bytepos;
4093 /* We moved the window start towards BEGV, so PT may be now
4094 in the scroll margin at the bottom. */
4095 move_it_to (&it, PT, -1,
4096 it.last_visible_y - this_scroll_margin - 1, -1,
4097 MOVE_TO_POS | MOVE_TO_Y);
4099 /* Save our position, in case it's correct. */
4100 charpos = IT_CHARPOS (it);
4101 bytepos = IT_BYTEPOS (it);
4103 /* See if point is on a partially visible line at the end. */
4104 move_it_by_lines (&it, 1, 1);
4105 if (it.current_y > it.last_visible_y)
4106 /* The last line was only partially visible, so back up two
4107 lines to make sure we're on a fully visible line. */
4109 move_it_by_lines (&it, -2, 0);
4110 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4112 else
4113 /* No, the position we saved is OK, so use it. */
4114 SET_PT_BOTH (charpos, bytepos);
4120 /* Implementation of window_scroll that works based on screen lines.
4121 See the comment of window_scroll for parameter descriptions. */
4123 static void
4124 window_scroll_line_based (window, n, whole, noerror)
4125 Lisp_Object window;
4126 int n;
4127 int whole;
4128 int noerror;
4130 register struct window *w = XWINDOW (window);
4131 register int opoint = PT, opoint_byte = PT_BYTE;
4132 register int pos, pos_byte;
4133 register int ht = window_internal_height (w);
4134 register Lisp_Object tem;
4135 int lose;
4136 Lisp_Object bolp;
4137 int startpos;
4138 struct position posit;
4139 int original_vpos;
4141 startpos = marker_position (w->start);
4143 posit = *compute_motion (startpos, 0, 0, 0,
4144 PT, ht, 0,
4145 window_internal_width (w), XINT (w->hscroll),
4146 0, w);
4147 original_vpos = posit.vpos;
4149 XSETFASTINT (tem, PT);
4150 tem = Fpos_visible_in_window_p (tem, window, Qnil);
4152 if (NILP (tem))
4154 Fvertical_motion (make_number (- (ht / 2)), window);
4155 startpos = PT;
4158 SET_PT (startpos);
4159 lose = n < 0 && PT == BEGV;
4160 Fvertical_motion (make_number (n), window);
4161 pos = PT;
4162 pos_byte = PT_BYTE;
4163 bolp = Fbolp ();
4164 SET_PT_BOTH (opoint, opoint_byte);
4166 if (lose)
4168 if (noerror)
4169 return;
4170 else
4171 Fsignal (Qbeginning_of_buffer, Qnil);
4174 if (pos < ZV)
4176 int this_scroll_margin = scroll_margin;
4178 /* Don't use a scroll margin that is negative or too large. */
4179 if (this_scroll_margin < 0)
4180 this_scroll_margin = 0;
4182 if (XINT (w->height) < 4 * scroll_margin)
4183 this_scroll_margin = XINT (w->height) / 4;
4185 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
4186 w->start_at_line_beg = bolp;
4187 w->update_mode_line = Qt;
4188 XSETFASTINT (w->last_modified, 0);
4189 XSETFASTINT (w->last_overlay_modified, 0);
4190 /* Set force_start so that redisplay_window will run
4191 the window-scroll-functions. */
4192 w->force_start = Qt;
4194 if (whole && !NILP (Vscroll_preserve_screen_position))
4196 SET_PT_BOTH (pos, pos_byte);
4197 Fvertical_motion (make_number (original_vpos), window);
4199 /* If we scrolled forward, put point enough lines down
4200 that it is outside the scroll margin. */
4201 else if (n > 0)
4203 int top_margin;
4205 if (this_scroll_margin > 0)
4207 SET_PT_BOTH (pos, pos_byte);
4208 Fvertical_motion (make_number (this_scroll_margin), window);
4209 top_margin = PT;
4211 else
4212 top_margin = pos;
4214 if (top_margin <= opoint)
4215 SET_PT_BOTH (opoint, opoint_byte);
4216 else if (!NILP (Vscroll_preserve_screen_position))
4218 SET_PT_BOTH (pos, pos_byte);
4219 Fvertical_motion (make_number (original_vpos), window);
4221 else
4222 SET_PT (top_margin);
4224 else if (n < 0)
4226 int bottom_margin;
4228 /* If we scrolled backward, put point near the end of the window
4229 but not within the scroll margin. */
4230 SET_PT_BOTH (pos, pos_byte);
4231 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
4232 if (XFASTINT (tem) == ht - this_scroll_margin)
4233 bottom_margin = PT;
4234 else
4235 bottom_margin = PT + 1;
4237 if (bottom_margin > opoint)
4238 SET_PT_BOTH (opoint, opoint_byte);
4239 else
4241 if (!NILP (Vscroll_preserve_screen_position))
4243 SET_PT_BOTH (pos, pos_byte);
4244 Fvertical_motion (make_number (original_vpos), window);
4246 else
4247 Fvertical_motion (make_number (-1), window);
4251 else
4253 if (noerror)
4254 return;
4255 else
4256 Fsignal (Qend_of_buffer, Qnil);
4261 /* Scroll selected_window up or down. If N is nil, scroll a
4262 screen-full which is defined as the height of the window minus
4263 next_screen_context_lines. If N is the symbol `-', scroll.
4264 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4265 up. This is the guts of Fscroll_up and Fscroll_down. */
4267 static void
4268 scroll_command (n, direction)
4269 Lisp_Object n;
4270 int direction;
4272 register int defalt;
4273 int count = specpdl_ptr - specpdl;
4275 xassert (abs (direction) == 1);
4277 /* If selected window's buffer isn't current, make it current for
4278 the moment. But don't screw up if window_scroll gets an error. */
4279 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
4281 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4282 Fset_buffer (XWINDOW (selected_window)->buffer);
4284 /* Make redisplay consider other windows than just selected_window. */
4285 ++windows_or_buffers_changed;
4288 defalt = (window_internal_height (XWINDOW (selected_window))
4289 - next_screen_context_lines);
4290 defalt = direction * (defalt < 1 ? 1 : defalt);
4292 if (NILP (n))
4293 window_scroll (selected_window, defalt, 1, 0);
4294 else if (EQ (n, Qminus))
4295 window_scroll (selected_window, - defalt, 1, 0);
4296 else
4298 n = Fprefix_numeric_value (n);
4299 window_scroll (selected_window, XINT (n) * direction, 0, 0);
4302 unbind_to (count, Qnil);
4305 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
4306 "Scroll text of current window upward ARG lines; or near full screen if no ARG.\n\
4307 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4308 Negative ARG means scroll downward.\n\
4309 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4310 When calling from a program, supply as argument a number, nil, or `-'.")
4311 (arg)
4312 Lisp_Object arg;
4314 scroll_command (arg, 1);
4315 return Qnil;
4318 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
4319 "Scroll text of current window down ARG lines; or near full screen if no ARG.\n\
4320 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4321 Negative ARG means scroll upward.\n\
4322 If ARG is the atom `-', scroll upward by nearly full screen.\n\
4323 When calling from a program, supply as argument a number, nil, or `-'.")
4324 (arg)
4325 Lisp_Object arg;
4327 scroll_command (arg, -1);
4328 return Qnil;
4331 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4332 "Return the other window for \"other window scroll\" commands.\n\
4333 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4334 specifies the window.\n\
4335 If `other-window-scroll-buffer' is non-nil, a window\n\
4336 showing that buffer is used.")
4339 Lisp_Object window;
4341 if (MINI_WINDOW_P (XWINDOW (selected_window))
4342 && !NILP (Vminibuf_scroll_window))
4343 window = Vminibuf_scroll_window;
4344 /* If buffer is specified, scroll that buffer. */
4345 else if (!NILP (Vother_window_scroll_buffer))
4347 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
4348 if (NILP (window))
4349 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
4351 else
4353 /* Nothing specified; look for a neighboring window on the same
4354 frame. */
4355 window = Fnext_window (selected_window, Qnil, Qnil);
4357 if (EQ (window, selected_window))
4358 /* That didn't get us anywhere; look for a window on another
4359 visible frame. */
4361 window = Fnext_window (window, Qnil, Qt);
4362 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4363 && ! EQ (window, selected_window));
4366 CHECK_LIVE_WINDOW (window, 0);
4368 if (EQ (window, selected_window))
4369 error ("There is no other window");
4371 return window;
4374 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4375 "Scroll next window upward ARG lines; or near full screen if no ARG.\n\
4376 A near full screen is `next-screen-context-lines' less than a full screen.\n\
4377 The next window is the one below the current one; or the one at the top\n\
4378 if the current one is at the bottom. Negative ARG means scroll downward.\n\
4379 If ARG is the atom `-', scroll downward by nearly full screen.\n\
4380 When calling from a program, supply as argument a number, nil, or `-'.\n\
4382 If in the minibuffer, `minibuffer-scroll-window' if non-nil\n\
4383 specifies the window to scroll.\n\
4384 If `other-window-scroll-buffer' is non-nil, scroll the window\n\
4385 showing that buffer, popping the buffer up if necessary.")
4386 (arg)
4387 register Lisp_Object arg;
4389 register Lisp_Object window;
4390 register int defalt;
4391 register struct window *w;
4392 register int count = specpdl_ptr - specpdl;
4394 window = Fother_window_for_scrolling ();
4396 w = XWINDOW (window);
4397 defalt = window_internal_height (w) - next_screen_context_lines;
4398 if (defalt < 1) defalt = 1;
4400 /* Don't screw up if window_scroll gets an error. */
4401 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4402 ++windows_or_buffers_changed;
4404 Fset_buffer (w->buffer);
4405 SET_PT (marker_position (w->pointm));
4407 if (NILP (arg))
4408 window_scroll (window, defalt, 1, 1);
4409 else if (EQ (arg, Qminus))
4410 window_scroll (window, -defalt, 1, 1);
4411 else
4413 if (CONSP (arg))
4414 arg = Fcar (arg);
4415 CHECK_NUMBER (arg, 0);
4416 window_scroll (window, XINT (arg), 0, 1);
4419 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
4420 unbind_to (count, Qnil);
4422 return Qnil;
4425 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 1, "P",
4426 "Scroll selected window display ARG columns left.\n\
4427 Default for ARG is window width minus 2.")
4428 (arg)
4429 register Lisp_Object arg;
4431 Lisp_Object result;
4432 int hscroll;
4433 struct window *w = XWINDOW (selected_window);
4435 if (NILP (arg))
4436 XSETFASTINT (arg, window_internal_width (w) - 2);
4437 else
4438 arg = Fprefix_numeric_value (arg);
4440 hscroll = XINT (w->hscroll) + XINT (arg);
4441 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4443 if (interactive_p (0))
4444 w->min_hscroll = w->hscroll;
4446 return result;
4449 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 1, "P",
4450 "Scroll selected window display ARG columns right.\n\
4451 Default for ARG is window width minus 2.")
4452 (arg)
4453 register Lisp_Object arg;
4455 Lisp_Object result;
4456 int hscroll;
4457 struct window *w = XWINDOW (selected_window);
4459 if (NILP (arg))
4460 XSETFASTINT (arg, window_internal_width (w) - 2);
4461 else
4462 arg = Fprefix_numeric_value (arg);
4464 hscroll = XINT (w->hscroll) - XINT (arg);
4465 result = Fset_window_hscroll (selected_window, make_number (hscroll));
4467 if (interactive_p (0))
4468 w->min_hscroll = w->hscroll;
4470 return result;
4473 /* Value is the number of lines actually displayed in window W,
4474 as opposed to its height. */
4476 static int
4477 displayed_window_lines (w)
4478 struct window *w;
4480 struct it it;
4481 struct text_pos start;
4482 int height = window_box_height (w);
4483 struct buffer *old_buffer;
4484 int bottom_y;
4486 if (XBUFFER (w->buffer) != current_buffer)
4488 old_buffer = current_buffer;
4489 set_buffer_internal (XBUFFER (w->buffer));
4491 else
4492 old_buffer = NULL;
4494 SET_TEXT_POS_FROM_MARKER (start, w->start);
4495 start_display (&it, w, start);
4496 move_it_vertically (&it, height);
4498 if (old_buffer)
4499 set_buffer_internal (old_buffer);
4501 bottom_y = it.current_y + it.max_ascent + it.max_descent;
4503 if (bottom_y > it.current_y && bottom_y <= it.last_visible_y)
4504 /* Hit a line without a terminating newline. */
4505 it.vpos++;
4507 /* Add in empty lines at the bottom of the window. */
4508 if (bottom_y < height)
4510 struct frame *f = XFRAME (w->frame);
4511 int rest = height - bottom_y;
4512 int lines = rest / CANON_Y_UNIT (f);
4513 it.vpos += lines;
4516 return it.vpos;
4520 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
4521 "Center point in window and redisplay frame.\n\
4522 With prefix argument ARG, recenter putting point on screen line ARG\n\
4523 relative to the current window. If ARG is negative, it counts up from the\n\
4524 bottom of the window. (ARG should be less than the height of the window.)\n\
4526 If ARG is omitted or nil, erase the entire frame and then\n\
4527 redraw with point in the center of the current window.\n\
4528 Just C-u as prefix means put point in the center of the window\n\
4529 and redisplay normally--don't erase and redraw the frame.")
4530 (arg)
4531 register Lisp_Object arg;
4533 struct window *w = XWINDOW (selected_window);
4534 struct buffer *buf = XBUFFER (w->buffer);
4535 struct buffer *obuf = current_buffer;
4536 int center_p = 0;
4537 int charpos, bytepos;
4539 if (NILP (arg))
4541 int i;
4543 /* Invalidate pixel data calculated for all compositions. */
4544 for (i = 0; i < n_compositions; i++)
4545 composition_table[i]->font = NULL;
4547 Fredraw_frame (w->frame);
4548 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
4549 center_p = 1;
4551 else if (CONSP (arg)) /* Just C-u. */
4552 center_p = 1;
4553 else
4555 arg = Fprefix_numeric_value (arg);
4556 CHECK_NUMBER (arg, 0);
4559 set_buffer_internal (buf);
4561 /* Handle centering on a gfaphical frame specially. Such frames can
4562 have variable-height lines and centering point on the basis of
4563 line counts would lead to strange effects. */
4564 if (center_p && FRAME_WINDOW_P (XFRAME (w->frame)))
4566 struct it it;
4567 struct text_pos pt;
4569 SET_TEXT_POS (pt, PT, PT_BYTE);
4570 start_display (&it, w, pt);
4571 move_it_vertically (&it, - it.last_visible_y / 2);
4572 charpos = IT_CHARPOS (it);
4573 bytepos = IT_BYTEPOS (it);
4575 else
4577 struct position pos;
4579 if (center_p)
4581 int ht = displayed_window_lines (w);
4582 arg = make_number (ht / 2);
4584 else if (XINT (arg) < 0)
4586 int ht = displayed_window_lines (w);
4587 XSETINT (arg, XINT (arg) + ht);
4590 pos = *vmotion (PT, - XINT (arg), w);
4591 charpos = pos.bufpos;
4592 bytepos = pos.bytepos;
4595 /* Set the new window start. */
4596 set_marker_both (w->start, w->buffer, charpos, bytepos);
4597 w->window_end_valid = Qnil;
4598 w->force_start = Qt;
4599 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
4600 w->start_at_line_beg = Qt;
4601 else
4602 w->start_at_line_beg = Qnil;
4604 set_buffer_internal (obuf);
4605 return Qnil;
4609 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
4610 0, 1, 0,
4611 "Return the height in lines of the text display area of WINDOW.\n\
4612 This doesn't include the mode-line (or header-line if any) or any\n\
4613 partial-height lines in the text display area.")
4614 (window)
4615 Lisp_Object window;
4617 struct window *w = decode_window (window);
4618 int pixel_height = window_box_height (w);
4619 int line_height = pixel_height / CANON_Y_UNIT (XFRAME (w->frame));
4620 return make_number (line_height);
4625 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
4626 1, 1, "P",
4627 "Position point relative to window.\n\
4628 With no argument, position point at center of window.\n\
4629 An argument specifies vertical position within the window;\n\
4630 zero means top of window, negative means relative to bottom of window.")
4631 (arg)
4632 Lisp_Object arg;
4634 struct window *w = XWINDOW (selected_window);
4635 int lines, start;
4636 Lisp_Object window;
4638 window = selected_window;
4639 start = marker_position (w->start);
4640 if (start < BEGV || start > ZV)
4642 int height = window_internal_height (w);
4643 Fvertical_motion (make_number (- (height / 2)), window);
4644 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
4645 w->start_at_line_beg = Fbolp ();
4646 w->force_start = Qt;
4648 else
4649 Fgoto_char (w->start);
4651 lines = displayed_window_lines (w);
4652 if (NILP (arg))
4653 XSETFASTINT (arg, lines / 2);
4654 else
4656 arg = Fprefix_numeric_value (arg);
4657 if (XINT (arg) < 0)
4658 XSETINT (arg, XINT (arg) + lines);
4661 if (w->vscroll)
4662 /* Skip past a partially visible first line. */
4663 XSETINT (arg, XINT (arg) + 1);
4665 return Fvertical_motion (arg, window);
4670 /***********************************************************************
4671 Window Configuration
4672 ***********************************************************************/
4674 struct save_window_data
4676 EMACS_INT size_from_Lisp_Vector_struct;
4677 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4678 Lisp_Object frame_width, frame_height, frame_menu_bar_lines;
4679 Lisp_Object frame_tool_bar_lines;
4680 Lisp_Object selected_frame;
4681 Lisp_Object current_window;
4682 Lisp_Object current_buffer;
4683 Lisp_Object minibuf_scroll_window;
4684 Lisp_Object root_window;
4685 Lisp_Object focus_frame;
4686 /* Record the values of window-min-width and window-min-height
4687 so that window sizes remain consistent with them. */
4688 Lisp_Object min_width, min_height;
4689 /* A vector, each of whose elements is a struct saved_window
4690 for one window. */
4691 Lisp_Object saved_windows;
4694 /* This is saved as a Lisp_Vector */
4695 struct saved_window
4697 /* these first two must agree with struct Lisp_Vector in lisp.h */
4698 EMACS_INT size_from_Lisp_Vector_struct;
4699 struct Lisp_Vector *next_from_Lisp_Vector_struct;
4701 Lisp_Object window;
4702 Lisp_Object buffer, start, pointm, mark;
4703 Lisp_Object left, top, width, height, hscroll, min_hscroll;
4704 Lisp_Object parent, prev;
4705 Lisp_Object start_at_line_beg;
4706 Lisp_Object display_table;
4707 Lisp_Object orig_top, orig_height;
4710 #define SAVED_WINDOW_VECTOR_SIZE 17 /* Arg to Fmake_vector */
4712 #define SAVED_WINDOW_N(swv,n) \
4713 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
4715 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
4716 "Return t if OBJECT is a window-configuration object.")
4717 (object)
4718 Lisp_Object object;
4720 if (WINDOW_CONFIGURATIONP (object))
4721 return Qt;
4722 return Qnil;
4725 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
4726 "Return the frame that CONFIG, a window-configuration object, is about.")
4727 (config)
4728 Lisp_Object config;
4730 register struct save_window_data *data;
4731 struct Lisp_Vector *saved_windows;
4733 if (! WINDOW_CONFIGURATIONP (config))
4734 wrong_type_argument (Qwindow_configuration_p, config);
4736 data = (struct save_window_data *) XVECTOR (config);
4737 saved_windows = XVECTOR (data->saved_windows);
4738 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4741 DEFUN ("set-window-configuration", Fset_window_configuration,
4742 Sset_window_configuration, 1, 1, 0,
4743 "Set the configuration of windows and buffers as specified by CONFIGURATION.\n\
4744 CONFIGURATION must be a value previously returned\n\
4745 by `current-window-configuration' (which see).\n\
4746 If CONFIGURATION was made from a frame that is now deleted,\n\
4747 only frame-independent values can be restored. In this case,\n\
4748 the return value is nil. Otherwise the value is t.")
4749 (configuration)
4750 Lisp_Object configuration;
4752 register struct save_window_data *data;
4753 struct Lisp_Vector *saved_windows;
4754 Lisp_Object new_current_buffer;
4755 Lisp_Object frame;
4756 FRAME_PTR f;
4757 int old_point = -1;
4759 while (!WINDOW_CONFIGURATIONP (configuration))
4760 wrong_type_argument (Qwindow_configuration_p, configuration);
4762 data = (struct save_window_data *) XVECTOR (configuration);
4763 saved_windows = XVECTOR (data->saved_windows);
4765 new_current_buffer = data->current_buffer;
4766 if (NILP (XBUFFER (new_current_buffer)->name))
4767 new_current_buffer = Qnil;
4768 else
4770 if (XBUFFER (new_current_buffer) == current_buffer)
4771 old_point = PT;
4774 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
4775 f = XFRAME (frame);
4777 /* If f is a dead frame, don't bother rebuilding its window tree.
4778 However, there is other stuff we should still try to do below. */
4779 if (FRAME_LIVE_P (f))
4781 register struct window *w;
4782 register struct saved_window *p;
4783 struct window *root_window;
4784 struct window **leaf_windows;
4785 int n_leaf_windows;
4786 int k, i, n;
4788 /* If the frame has been resized since this window configuration was
4789 made, we change the frame to the size specified in the
4790 configuration, restore the configuration, and then resize it
4791 back. We keep track of the prevailing height in these variables. */
4792 int previous_frame_height = FRAME_HEIGHT (f);
4793 int previous_frame_width = FRAME_WIDTH (f);
4794 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
4795 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
4797 /* The mouse highlighting code could get screwed up
4798 if it runs during this. */
4799 BLOCK_INPUT;
4801 if (XFASTINT (data->frame_height) != previous_frame_height
4802 || XFASTINT (data->frame_width) != previous_frame_width)
4803 change_frame_size (f, XFASTINT (data->frame_height),
4804 XFASTINT (data->frame_width), 0, 0, 0);
4805 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4806 if (XFASTINT (data->frame_menu_bar_lines)
4807 != previous_frame_menu_bar_lines)
4808 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
4809 #ifdef HAVE_WINDOW_SYSTEM
4810 if (XFASTINT (data->frame_tool_bar_lines)
4811 != previous_frame_tool_bar_lines)
4812 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
4813 #endif
4814 #endif
4816 /* "Swap out" point from the selected window
4817 into its buffer. We do this now, before
4818 restoring the window contents, and prevent it from
4819 being done later on when we select a new window. */
4820 if (! NILP (XWINDOW (selected_window)->buffer))
4822 w = XWINDOW (selected_window);
4823 set_marker_both (w->pointm,
4824 w->buffer,
4825 BUF_PT (XBUFFER (w->buffer)),
4826 BUF_PT_BYTE (XBUFFER (w->buffer)));
4829 windows_or_buffers_changed++;
4830 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4832 /* Problem: Freeing all matrices and later allocating them again
4833 is a serious redisplay flickering problem. What we would
4834 really like to do is to free only those matrices not reused
4835 below. */
4836 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
4837 leaf_windows
4838 = (struct window **) alloca (count_windows (root_window)
4839 * sizeof (struct window *));
4840 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
4842 /* Temporarily avoid any problems with windows that are smaller
4843 than they are supposed to be. */
4844 window_min_height = 1;
4845 window_min_width = 1;
4847 /* Kludge Alert!
4848 Mark all windows now on frame as "deleted".
4849 Restoring the new configuration "undeletes" any that are in it.
4851 Save their current buffers in their height fields, since we may
4852 need it later, if a buffer saved in the configuration is now
4853 dead. */
4854 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
4856 for (k = 0; k < saved_windows->size; k++)
4858 p = SAVED_WINDOW_N (saved_windows, k);
4859 w = XWINDOW (p->window);
4860 w->next = Qnil;
4862 if (!NILP (p->parent))
4863 w->parent = SAVED_WINDOW_N (saved_windows,
4864 XFASTINT (p->parent))->window;
4865 else
4866 w->parent = Qnil;
4868 if (!NILP (p->prev))
4870 w->prev = SAVED_WINDOW_N (saved_windows,
4871 XFASTINT (p->prev))->window;
4872 XWINDOW (w->prev)->next = p->window;
4874 else
4876 w->prev = Qnil;
4877 if (!NILP (w->parent))
4879 if (EQ (p->width, XWINDOW (w->parent)->width))
4881 XWINDOW (w->parent)->vchild = p->window;
4882 XWINDOW (w->parent)->hchild = Qnil;
4884 else
4886 XWINDOW (w->parent)->hchild = p->window;
4887 XWINDOW (w->parent)->vchild = Qnil;
4892 /* If we squirreled away the buffer in the window's height,
4893 restore it now. */
4894 if (BUFFERP (w->height))
4895 w->buffer = w->height;
4896 w->left = p->left;
4897 w->top = p->top;
4898 w->width = p->width;
4899 w->height = p->height;
4900 w->hscroll = p->hscroll;
4901 w->min_hscroll = p->min_hscroll;
4902 w->display_table = p->display_table;
4903 w->orig_top = p->orig_top;
4904 w->orig_height = p->orig_height;
4905 XSETFASTINT (w->last_modified, 0);
4906 XSETFASTINT (w->last_overlay_modified, 0);
4908 /* Reinstall the saved buffer and pointers into it. */
4909 if (NILP (p->buffer))
4910 w->buffer = p->buffer;
4911 else
4913 if (!NILP (XBUFFER (p->buffer)->name))
4914 /* If saved buffer is alive, install it. */
4916 w->buffer = p->buffer;
4917 w->start_at_line_beg = p->start_at_line_beg;
4918 set_marker_restricted (w->start, p->start, w->buffer);
4919 set_marker_restricted (w->pointm, p->pointm, w->buffer);
4920 Fset_marker (XBUFFER (w->buffer)->mark,
4921 p->mark, w->buffer);
4923 /* As documented in Fcurrent_window_configuration, don't
4924 save the location of point in the buffer which was current
4925 when the window configuration was recorded. */
4926 if (!EQ (p->buffer, new_current_buffer)
4927 && XBUFFER (p->buffer) == current_buffer)
4928 Fgoto_char (w->pointm);
4930 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
4931 /* Else unless window has a live buffer, get one. */
4933 w->buffer = Fcdr (Fcar (Vbuffer_alist));
4934 /* This will set the markers to beginning of visible
4935 range. */
4936 set_marker_restricted (w->start, make_number (0), w->buffer);
4937 set_marker_restricted (w->pointm, make_number (0),w->buffer);
4938 w->start_at_line_beg = Qt;
4940 else
4941 /* Keeping window's old buffer; make sure the markers
4942 are real. */
4944 /* Set window markers at start of visible range. */
4945 if (XMARKER (w->start)->buffer == 0)
4946 set_marker_restricted (w->start, make_number (0),
4947 w->buffer);
4948 if (XMARKER (w->pointm)->buffer == 0)
4949 set_marker_restricted_both (w->pointm, w->buffer,
4950 BUF_PT (XBUFFER (w->buffer)),
4951 BUF_PT_BYTE (XBUFFER (w->buffer)));
4952 w->start_at_line_beg = Qt;
4957 FRAME_ROOT_WINDOW (f) = data->root_window;
4958 /* Prevent "swapping out point" in the old selected window
4959 using the buffer that has been restored into it.
4960 That swapping out has already been done,
4961 near the beginning of this function. */
4962 selected_window = Qnil;
4963 Fselect_window (data->current_window);
4964 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
4965 = selected_window;
4967 if (NILP (data->focus_frame)
4968 || (FRAMEP (data->focus_frame)
4969 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
4970 Fredirect_frame_focus (frame, data->focus_frame);
4972 #if 0 /* I don't understand why this is needed, and it causes problems
4973 when the frame's old selected window has been deleted. */
4974 if (f != selected_frame && FRAME_WINDOW_P (f))
4975 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
4976 Qnil, 0);
4977 #endif
4979 /* Set the screen height to the value it had before this function. */
4980 if (previous_frame_height != FRAME_HEIGHT (f)
4981 || previous_frame_width != FRAME_WIDTH (f))
4982 change_frame_size (f, previous_frame_height, previous_frame_width,
4983 0, 0, 0);
4984 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
4985 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
4986 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
4987 make_number (0));
4988 #ifdef HAVE_WINDOW_SYSTEM
4989 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
4990 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
4991 make_number (0));
4992 #endif
4993 #endif
4995 /* Now, free glyph matrices in windows that were not reused. */
4996 for (i = n = 0; i < n_leaf_windows; ++i)
4998 if (NILP (leaf_windows[i]->buffer))
5000 /* Assert it's not reused as a combination. */
5001 xassert (NILP (leaf_windows[i]->hchild)
5002 && NILP (leaf_windows[i]->vchild));
5003 free_window_matrices (leaf_windows[i]);
5005 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
5006 ++n;
5009 /* If more than one window shows the new and old current buffer,
5010 don't try to preserve point in that buffer. */
5011 if (old_point > 0 && n > 1)
5012 old_point = -1;
5014 adjust_glyphs (f);
5016 UNBLOCK_INPUT;
5018 /* Fselect_window will have made f the selected frame, so we
5019 reselect the proper frame here. Fhandle_switch_frame will change the
5020 selected window too, but that doesn't make the call to
5021 Fselect_window above totally superfluous; it still sets f's
5022 selected window. */
5023 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
5024 do_switch_frame (data->selected_frame, Qnil, 0);
5026 if (! NILP (Vwindow_configuration_change_hook)
5027 && ! NILP (Vrun_hooks))
5028 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
5031 if (!NILP (new_current_buffer))
5033 Fset_buffer (new_current_buffer);
5035 /* If the buffer that is current now is the same
5036 that was current before setting the window configuration,
5037 don't alter its PT. */
5038 if (old_point >= 0)
5039 SET_PT (old_point);
5042 /* Restore the minimum heights recorded in the configuration. */
5043 window_min_height = XINT (data->min_height);
5044 window_min_width = XINT (data->min_width);
5046 Vminibuf_scroll_window = data->minibuf_scroll_window;
5048 return (FRAME_LIVE_P (f) ? Qt : Qnil);
5051 /* Mark all windows now on frame as deleted
5052 by setting their buffers to nil. */
5054 void
5055 delete_all_subwindows (w)
5056 register struct window *w;
5058 if (!NILP (w->next))
5059 delete_all_subwindows (XWINDOW (w->next));
5060 if (!NILP (w->vchild))
5061 delete_all_subwindows (XWINDOW (w->vchild));
5062 if (!NILP (w->hchild))
5063 delete_all_subwindows (XWINDOW (w->hchild));
5065 w->height = w->buffer; /* See Fset_window_configuration for excuse. */
5067 if (!NILP (w->buffer))
5068 unshow_buffer (w);
5070 /* We set all three of these fields to nil, to make sure that we can
5071 distinguish this dead window from any live window. Live leaf
5072 windows will have buffer set, and combination windows will have
5073 vchild or hchild set. */
5074 w->buffer = Qnil;
5075 w->vchild = Qnil;
5076 w->hchild = Qnil;
5078 Vwindow_list = Qnil;
5081 static int
5082 count_windows (window)
5083 register struct window *window;
5085 register int count = 1;
5086 if (!NILP (window->next))
5087 count += count_windows (XWINDOW (window->next));
5088 if (!NILP (window->vchild))
5089 count += count_windows (XWINDOW (window->vchild));
5090 if (!NILP (window->hchild))
5091 count += count_windows (XWINDOW (window->hchild));
5092 return count;
5096 /* Fill vector FLAT with leaf windows under W, starting at index I.
5097 Value is last index + 1. */
5099 static int
5100 get_leaf_windows (w, flat, i)
5101 struct window *w;
5102 struct window **flat;
5103 int i;
5105 while (w)
5107 if (!NILP (w->hchild))
5108 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5109 else if (!NILP (w->vchild))
5110 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
5111 else
5112 flat[i++] = w;
5114 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5117 return i;
5121 /* Return a pointer to the glyph W's physical cursor is on. Value is
5122 null if W's current matrix is invalid, so that no meaningfull glyph
5123 can be returned. */
5125 struct glyph *
5126 get_phys_cursor_glyph (w)
5127 struct window *w;
5129 struct glyph_row *row;
5130 struct glyph *glyph;
5132 if (w->phys_cursor.vpos >= 0
5133 && w->phys_cursor.vpos < w->current_matrix->nrows
5134 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
5135 row->enabled_p)
5136 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
5137 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
5138 else
5139 glyph = NULL;
5141 return glyph;
5145 static int
5146 save_window_save (window, vector, i)
5147 Lisp_Object window;
5148 struct Lisp_Vector *vector;
5149 int i;
5151 register struct saved_window *p;
5152 register struct window *w;
5153 register Lisp_Object tem;
5155 for (;!NILP (window); window = w->next)
5157 p = SAVED_WINDOW_N (vector, i);
5158 w = XWINDOW (window);
5160 XSETFASTINT (w->temslot, i++);
5161 p->window = window;
5162 p->buffer = w->buffer;
5163 p->left = w->left;
5164 p->top = w->top;
5165 p->width = w->width;
5166 p->height = w->height;
5167 p->hscroll = w->hscroll;
5168 p->min_hscroll = w->min_hscroll;
5169 p->display_table = w->display_table;
5170 p->orig_top = w->orig_top;
5171 p->orig_height = w->orig_height;
5172 if (!NILP (w->buffer))
5174 /* Save w's value of point in the window configuration.
5175 If w is the selected window, then get the value of point
5176 from the buffer; pointm is garbage in the selected window. */
5177 if (EQ (window, selected_window))
5179 p->pointm = Fmake_marker ();
5180 set_marker_both (p->pointm, w->buffer,
5181 BUF_PT (XBUFFER (w->buffer)),
5182 BUF_PT_BYTE (XBUFFER (w->buffer)));
5184 else
5185 p->pointm = Fcopy_marker (w->pointm, Qnil);
5187 p->start = Fcopy_marker (w->start, Qnil);
5188 p->start_at_line_beg = w->start_at_line_beg;
5190 tem = XBUFFER (w->buffer)->mark;
5191 p->mark = Fcopy_marker (tem, Qnil);
5193 else
5195 p->pointm = Qnil;
5196 p->start = Qnil;
5197 p->mark = Qnil;
5198 p->start_at_line_beg = Qnil;
5201 if (NILP (w->parent))
5202 p->parent = Qnil;
5203 else
5204 p->parent = XWINDOW (w->parent)->temslot;
5206 if (NILP (w->prev))
5207 p->prev = Qnil;
5208 else
5209 p->prev = XWINDOW (w->prev)->temslot;
5211 if (!NILP (w->vchild))
5212 i = save_window_save (w->vchild, vector, i);
5213 if (!NILP (w->hchild))
5214 i = save_window_save (w->hchild, vector, i);
5217 return i;
5220 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
5221 Scurrent_window_configuration, 0, 1, 0,
5222 "Return an object representing the current window configuration of FRAME.\n\
5223 If FRAME is nil or omitted, use the selected frame.\n\
5224 This describes the number of windows, their sizes and current buffers,\n\
5225 and for each displayed buffer, where display starts, and the positions of\n\
5226 point and mark. An exception is made for point in the current buffer:\n\
5227 its value is -not- saved.\n\
5228 This also records the currently selected frame, and FRAME's focus\n\
5229 redirection (see `redirect-frame-focus').")
5230 (frame)
5231 Lisp_Object frame;
5233 register Lisp_Object tem;
5234 register int n_windows;
5235 register struct save_window_data *data;
5236 register struct Lisp_Vector *vec;
5237 register int i;
5238 FRAME_PTR f;
5240 if (NILP (frame))
5241 frame = selected_frame;
5242 CHECK_LIVE_FRAME (frame, 0);
5243 f = XFRAME (frame);
5245 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
5246 vec = allocate_vectorlike (VECSIZE (struct save_window_data));
5247 for (i = 0; i < VECSIZE (struct save_window_data); i++)
5248 vec->contents[i] = Qnil;
5249 vec->size = VECSIZE (struct save_window_data);
5250 data = (struct save_window_data *)vec;
5252 XSETFASTINT (data->frame_width, FRAME_WIDTH (f));
5253 XSETFASTINT (data->frame_height, FRAME_HEIGHT (f));
5254 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
5255 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
5256 data->selected_frame = selected_frame;
5257 data->current_window = FRAME_SELECTED_WINDOW (f);
5258 XSETBUFFER (data->current_buffer, current_buffer);
5259 data->minibuf_scroll_window = Vminibuf_scroll_window;
5260 data->root_window = FRAME_ROOT_WINDOW (f);
5261 data->focus_frame = FRAME_FOCUS_FRAME (f);
5262 XSETINT (data->min_height, window_min_height);
5263 XSETINT (data->min_width, window_min_width);
5264 tem = Fmake_vector (make_number (n_windows), Qnil);
5265 data->saved_windows = tem;
5266 for (i = 0; i < n_windows; i++)
5267 XVECTOR (tem)->contents[i]
5268 = Fmake_vector (make_number (SAVED_WINDOW_VECTOR_SIZE), Qnil);
5269 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
5270 XSETWINDOW_CONFIGURATION (tem, data);
5271 return (tem);
5274 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
5275 0, UNEVALLED, 0,
5276 "Execute body, preserving window sizes and contents.\n\
5277 Restore which buffer appears in which window, where display starts,\n\
5278 and the value of point and mark for each window.\n\
5279 Also restore the choice of selected window.\n\
5280 Also restore which buffer is current.\n\
5281 Does not restore the value of point in current buffer.")
5282 (args)
5283 Lisp_Object args;
5285 register Lisp_Object val;
5286 register int count = specpdl_ptr - specpdl;
5288 record_unwind_protect (Fset_window_configuration,
5289 Fcurrent_window_configuration (Qnil));
5290 val = Fprogn (args);
5291 return unbind_to (count, val);
5295 /***********************************************************************
5296 Marginal Areas
5297 ***********************************************************************/
5299 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
5300 2, 3, 0,
5301 "Set width of marginal areas of window WINDOW.\n\
5302 If window is nil, set margins of the currently selected window.\n\
5303 First parameter LEFT-WIDTH specifies the number of character\n\
5304 cells to reserve for the left marginal area. Second parameter\n\
5305 RIGHT-WIDTH does the same for the right marginal area.\n\
5306 A nil width parameter means no margin.")
5307 (window, left, right)
5308 Lisp_Object window, left, right;
5310 struct window *w = decode_window (window);
5312 if (!NILP (left))
5313 CHECK_NUMBER_OR_FLOAT (left, 1);
5314 if (!NILP (right))
5315 CHECK_NUMBER_OR_FLOAT (right, 2);
5317 /* Check widths < 0 and translate a zero width to nil.
5318 Margins that are too wide have to be checked elsewhere. */
5319 if ((INTEGERP (left) && XINT (left) < 0)
5320 || (FLOATP (left) && XFLOAT_DATA (left) <= 0))
5321 XSETFASTINT (left, 0);
5322 if (INTEGERP (left) && XFASTINT (left) == 0)
5323 left = Qnil;
5325 if ((INTEGERP (right) && XINT (right) < 0)
5326 || (FLOATP (right) && XFLOAT_DATA (right) <= 0))
5327 XSETFASTINT (right, 0);
5328 if (INTEGERP (right) && XFASTINT (right) == 0)
5329 right = Qnil;
5331 w->left_margin_width = left;
5332 w->right_margin_width = right;
5334 ++windows_or_buffers_changed;
5335 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
5336 return Qnil;
5340 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
5341 0, 1, 0,
5342 "Get width of marginal areas of window WINDOW.\n\
5343 If WINDOW is omitted or nil, use the currently selected window.\n\
5344 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).\n\
5345 If a marginal area does not exist, its width will be returned\n\
5346 as nil.")
5347 (window)
5348 Lisp_Object window;
5350 struct window *w = decode_window (window);
5351 return Fcons (w->left_margin_width, w->right_margin_width);
5356 /***********************************************************************
5357 Smooth scrolling
5358 ***********************************************************************/
5360 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 1, 0,
5361 "Return the amount by which WINDOW is scrolled vertically.\n\
5362 Use the selected window if WINDOW is nil or omitted.\n\
5363 Value is a multiple of the canonical character height of WINDOW.")
5364 (window)
5365 Lisp_Object window;
5367 Lisp_Object result;
5368 struct frame *f;
5369 struct window *w;
5371 if (NILP (window))
5372 window = selected_window;
5373 else
5374 CHECK_WINDOW (window, 0);
5375 w = XWINDOW (window);
5376 f = XFRAME (w->frame);
5378 if (FRAME_WINDOW_P (f))
5379 result = CANON_Y_FROM_PIXEL_Y (f, -w->vscroll);
5380 else
5381 result = make_number (0);
5382 return result;
5386 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
5387 2, 2, 0,
5388 "Set amount by which WINDOW should be scrolled vertically to VSCROLL.\n\
5389 WINDOW nil or omitted means use the selected window. VSCROLL is a\n\
5390 non-negative multiple of the canonical character height of WINDOW.")
5391 (window, vscroll)
5392 Lisp_Object window, vscroll;
5394 struct window *w;
5395 struct frame *f;
5397 if (NILP (window))
5398 window = selected_window;
5399 else
5400 CHECK_WINDOW (window, 0);
5401 CHECK_NUMBER_OR_FLOAT (vscroll, 1);
5403 w = XWINDOW (window);
5404 f = XFRAME (w->frame);
5406 if (FRAME_WINDOW_P (f))
5408 int old_dy = w->vscroll;
5410 w->vscroll = - CANON_Y_UNIT (f) * XFLOATINT (vscroll);
5411 w->vscroll = min (w->vscroll, 0);
5413 /* Adjust glyph matrix of the frame if the virtual display
5414 area becomes larger than before. */
5415 if (w->vscroll < 0 && w->vscroll < old_dy)
5416 adjust_glyphs (f);
5418 /* Prevent redisplay shortcuts. */
5419 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
5422 return Fwindow_vscroll (window);
5426 /* Call FN for all leaf windows on frame F. FN is called with the
5427 first argument being a pointer to the leaf window, and with
5428 additional argument USER_DATA. Stops when FN returns 0. */
5430 void
5431 foreach_window (f, fn, user_data)
5432 struct frame *f;
5433 int (* fn) P_ ((struct window *, void *));
5434 void *user_data;
5436 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
5440 /* Helper function for foreach_window. Call FN for all leaf windows
5441 reachable from W. FN is called with the first argument being a
5442 pointer to the leaf window, and with additional argument USER_DATA.
5443 Stop when FN returns 0. Value is 0 if stopped by FN. */
5445 static int
5446 foreach_window_1 (w, fn, user_data)
5447 struct window *w;
5448 int (* fn) P_ ((struct window *, void *));
5449 void *user_data;
5451 int cont;
5453 for (cont = 1; w && cont;)
5455 if (!NILP (w->hchild))
5456 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
5457 else if (!NILP (w->vchild))
5458 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
5459 else
5460 cont = fn (w, user_data);
5462 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5465 return cont;
5469 /* Freeze or unfreeze the window start of W if unless it is a
5470 mini-window or the selected window. FREEZE_P non-null means freeze
5471 the window start. */
5473 static int
5474 freeze_window_start (w, freeze_p)
5475 struct window *w;
5476 void *freeze_p;
5478 if (w == XWINDOW (selected_window)
5479 || MINI_WINDOW_P (w)
5480 || (MINI_WINDOW_P (XWINDOW (selected_window))
5481 && ! NILP (Vminibuf_scroll_window)
5482 && w == XWINDOW (Vminibuf_scroll_window)))
5483 freeze_p = NULL;
5485 w->frozen_window_start_p = freeze_p != NULL;
5486 return 1;
5490 /* Freeze or unfreeze the window starts of all leaf windows on frame
5491 F, except the selected window and a mini-window. FREEZE_P non-zero
5492 means freeze the window start. */
5494 void
5495 freeze_window_starts (f, freeze_p)
5496 struct frame *f;
5497 int freeze_p;
5499 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
5503 /***********************************************************************
5504 Initialization
5505 ***********************************************************************/
5507 /* Return 1 if window configurations C1 and C2
5508 describe the same state of affairs. This is used by Fequal. */
5511 compare_window_configurations (c1, c2, ignore_positions)
5512 Lisp_Object c1, c2;
5513 int ignore_positions;
5515 register struct save_window_data *d1, *d2;
5516 struct Lisp_Vector *sw1, *sw2;
5517 int i;
5519 if (!WINDOW_CONFIGURATIONP (c1))
5520 wrong_type_argument (Qwindow_configuration_p, c1);
5521 if (!WINDOW_CONFIGURATIONP (c2))
5522 wrong_type_argument (Qwindow_configuration_p, c2);
5524 d1 = (struct save_window_data *) XVECTOR (c1);
5525 d2 = (struct save_window_data *) XVECTOR (c2);
5526 sw1 = XVECTOR (d1->saved_windows);
5527 sw2 = XVECTOR (d2->saved_windows);
5529 if (! EQ (d1->frame_width, d2->frame_width))
5530 return 0;
5531 if (! EQ (d1->frame_height, d2->frame_height))
5532 return 0;
5533 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
5534 return 0;
5535 if (! EQ (d1->selected_frame, d2->selected_frame))
5536 return 0;
5537 /* Don't compare the current_window field directly.
5538 Instead see w1_is_current and w2_is_current, below. */
5539 if (! EQ (d1->current_buffer, d2->current_buffer))
5540 return 0;
5541 if (! ignore_positions)
5542 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
5543 return 0;
5544 /* Don't compare the root_window field.
5545 We don't require the two configurations
5546 to use the same window object,
5547 and the two root windows must be equivalent
5548 if everything else compares equal. */
5549 if (! EQ (d1->focus_frame, d2->focus_frame))
5550 return 0;
5551 if (! EQ (d1->min_width, d2->min_width))
5552 return 0;
5553 if (! EQ (d1->min_height, d2->min_height))
5554 return 0;
5556 /* Verify that the two confis have the same number of windows. */
5557 if (sw1->size != sw2->size)
5558 return 0;
5560 for (i = 0; i < sw1->size; i++)
5562 struct saved_window *p1, *p2;
5563 int w1_is_current, w2_is_current;
5565 p1 = SAVED_WINDOW_N (sw1, i);
5566 p2 = SAVED_WINDOW_N (sw2, i);
5568 /* Verify that the current windows in the two
5569 configurations correspond to each other. */
5570 w1_is_current = EQ (d1->current_window, p1->window);
5571 w2_is_current = EQ (d2->current_window, p2->window);
5573 if (w1_is_current != w2_is_current)
5574 return 0;
5576 /* Verify that the corresponding windows do match. */
5577 if (! EQ (p1->buffer, p2->buffer))
5578 return 0;
5579 if (! EQ (p1->left, p2->left))
5580 return 0;
5581 if (! EQ (p1->top, p2->top))
5582 return 0;
5583 if (! EQ (p1->width, p2->width))
5584 return 0;
5585 if (! EQ (p1->height, p2->height))
5586 return 0;
5587 if (! EQ (p1->display_table, p2->display_table))
5588 return 0;
5589 if (! EQ (p1->parent, p2->parent))
5590 return 0;
5591 if (! EQ (p1->prev, p2->prev))
5592 return 0;
5593 if (! ignore_positions)
5595 if (! EQ (p1->hscroll, p2->hscroll))
5596 return 0;
5597 if (!EQ (p1->min_hscroll, p2->min_hscroll))
5598 return 0;
5599 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
5600 return 0;
5601 if (NILP (Fequal (p1->start, p2->start)))
5602 return 0;
5603 if (NILP (Fequal (p1->pointm, p2->pointm)))
5604 return 0;
5605 if (NILP (Fequal (p1->mark, p2->mark)))
5606 return 0;
5610 return 1;
5613 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
5614 Scompare_window_configurations, 2, 2, 0,
5615 "Compare two window configurations as regards the structure of windows.\n\
5616 This function ignores details such as the values of point and mark\n\
5617 and scrolling positions.")
5618 (x, y)
5619 Lisp_Object x, y;
5621 if (compare_window_configurations (x, y, 1))
5622 return Qt;
5623 return Qnil;
5626 void
5627 init_window_once ()
5629 struct frame *f = make_terminal_frame ();
5630 XSETFRAME (selected_frame, f);
5631 Vterminal_frame = selected_frame;
5632 minibuf_window = f->minibuffer_window;
5633 selected_window = f->selected_window;
5634 last_nonminibuf_frame = f;
5636 window_initialized = 1;
5639 void
5640 init_window ()
5642 Vwindow_list = Qnil;
5645 void
5646 syms_of_window ()
5648 Qleft_fringe = intern ("left-fringe");
5649 staticpro (&Qleft_fringe);
5650 Qright_fringe = intern ("right-fringe");
5651 staticpro (&Qright_fringe);
5653 Qwindow_size_fixed = intern ("window-size-fixed");
5654 staticpro (&Qwindow_size_fixed);
5656 staticpro (&Qwindow_configuration_change_hook);
5657 Qwindow_configuration_change_hook
5658 = intern ("window-configuration-change-hook");
5660 Qwindowp = intern ("windowp");
5661 staticpro (&Qwindowp);
5663 Qwindow_configuration_p = intern ("window-configuration-p");
5664 staticpro (&Qwindow_configuration_p);
5666 Qwindow_live_p = intern ("window-live-p");
5667 staticpro (&Qwindow_live_p);
5669 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
5670 staticpro (&Qtemp_buffer_show_hook);
5672 staticpro (&Vwindow_list);
5674 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
5675 "Non-nil means call as function to display a help buffer.\n\
5676 The function is called with one argument, the buffer to be displayed.\n\
5677 Used by `with-output-to-temp-buffer'.\n\
5678 If this function is used, then it must do the entire job of showing\n\
5679 the buffer; `temp-buffer-show-hook' is not run unless this function runs it.");
5680 Vtemp_buffer_show_function = Qnil;
5682 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
5683 "If non-nil, function to call to handle `display-buffer'.\n\
5684 It will receive two args, the buffer and a flag which if non-nil means\n\
5685 that the currently selected window is not acceptable.\n\
5686 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'\n\
5687 work using this function.");
5688 Vdisplay_buffer_function = Qnil;
5690 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
5691 "*If non-nil, `display-buffer' should even the window heights.\n\
5692 If nil, `display-buffer' will leave the window configuration alone.");
5693 Veven_window_heights = Qt;
5695 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
5696 "Non-nil means it is the window that C-M-v in minibuffer should scroll.");
5697 Vminibuf_scroll_window = Qnil;
5699 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
5700 "If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window.");
5701 Vother_window_scroll_buffer = Qnil;
5703 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
5704 "*Non-nil means `display-buffer' should make a separate frame.");
5705 pop_up_frames = 0;
5707 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
5708 "*Non-nil means `display-buffer' should reuse frames.\n\
5709 If the buffer in question is already displayed in a frame, raise that frame.");
5710 display_buffer_reuse_frames = 0;
5712 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
5713 "Function to call to handle automatic new frame creation.\n\
5714 It is called with no arguments and should return a newly created frame.\n\
5716 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'\n\
5717 where `pop-up-frame-alist' would hold the default frame parameters.");
5718 Vpop_up_frame_function = Qnil;
5720 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
5721 "*List of buffer names that should have their own special frames.\n\
5722 Displaying a buffer whose name is in this list makes a special frame for it\n\
5723 using `special-display-function'. See also `special-display-regexps'.\n\
5725 An element of the list can be a list instead of just a string.\n\
5726 There are two ways to use a list as an element:\n\
5727 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)\n\
5728 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5729 In the latter case, FUNCTION is called with BUFFER as the first argument,\n\
5730 followed by OTHER-ARGS--it can display BUFFER in any way it likes.\n\
5731 All this is done by the function found in `special-display-function'.\n\
5733 If this variable appears \"not to work\", because you add a name to it\n\
5734 but that buffer still appears in the selected window, look at the\n\
5735 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5736 Those variables take precedence over this one.");
5737 Vspecial_display_buffer_names = Qnil;
5739 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
5740 "*List of regexps saying which buffers should have their own special frames.\n\
5741 If a buffer name matches one of these regexps, it gets its own frame.\n\
5742 Displaying a buffer whose name is in this list makes a special frame for it\n\
5743 using `special-display-function'.\n\
5745 An element of the list can be a list instead of just a string.\n\
5746 There are two ways to use a list as an element:\n\
5747 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)\n\
5748 In the first case, FRAME-PARAMETERS are used to create the frame.\n\
5749 In the latter case, FUNCTION is called with the buffer as first argument,\n\
5750 followed by OTHER-ARGS--it can display the buffer in any way it likes.\n\
5751 All this is done by the function found in `special-display-function'.\n\
5753 If this variable appears \"not to work\", because you add a regexp to it\n\
5754 but the matching buffers still appear in the selected window, look at the\n\
5755 values of `same-window-buffer-names' and `same-window-regexps'.\n\
5756 Those variables take precedence over this one.");
5757 Vspecial_display_regexps = Qnil;
5759 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
5760 "Function to call to make a new frame for a special buffer.\n\
5761 It is called with two arguments, the buffer and optional buffer specific\n\
5762 data, and should return a window displaying that buffer.\n\
5763 The default value makes a separate frame for the buffer,\n\
5764 using `special-display-frame-alist' to specify the frame parameters.\n\
5766 A buffer is special if its is listed in `special-display-buffer-names'\n\
5767 or matches a regexp in `special-display-regexps'.");
5768 Vspecial_display_function = Qnil;
5770 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
5771 "*List of buffer names that should appear in the selected window.\n\
5772 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'\n\
5773 switches to it in the selected window, rather than making it appear\n\
5774 in some other window.\n\
5776 An element of the list can be a cons cell instead of just a string.\n\
5777 Then the car must be a string, which specifies the buffer name.\n\
5778 This is for compatibility with `special-display-buffer-names';\n\
5779 the cdr of the cons cell is ignored.\n\
5781 See also `same-window-regexps'.");
5782 Vsame_window_buffer_names = Qnil;
5784 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
5785 "*List of regexps saying which buffers should appear in the selected window.\n\
5786 If a buffer name matches one of these regexps, then displaying it\n\
5787 using `display-buffer' or `pop-to-buffer' switches to it\n\
5788 in the selected window, rather than making it appear in some other window.\n\
5790 An element of the list can be a cons cell instead of just a string.\n\
5791 Then the car must be a string, which specifies the buffer name.\n\
5792 This is for compatibility with `special-display-buffer-names';\n\
5793 the cdr of the cons cell is ignored.\n\
5795 See also `same-window-buffer-names'.");
5796 Vsame_window_regexps = Qnil;
5798 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
5799 "*Non-nil means display-buffer should make new windows.");
5800 pop_up_windows = 1;
5802 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
5803 "*Number of lines of continuity when scrolling by screenfuls.");
5804 next_screen_context_lines = 2;
5806 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
5807 "*display-buffer would prefer to split the largest window if this large.\n\
5808 If there is only one window, it is split regardless of this value.");
5809 split_height_threshold = 500;
5811 DEFVAR_INT ("window-min-height", &window_min_height,
5812 "*Delete any window less than this tall (including its mode line).");
5813 window_min_height = 4;
5815 DEFVAR_INT ("window-min-width", &window_min_width,
5816 "*Delete any window less than this wide.");
5817 window_min_width = 10;
5819 DEFVAR_LISP ("scroll-preserve-screen-position",
5820 &Vscroll_preserve_screen_position,
5821 "*Non-nil means scroll commands move point to keep its screen line unchanged.");
5822 Vscroll_preserve_screen_position = Qnil;
5824 DEFVAR_LISP ("window-configuration-change-hook",
5825 &Vwindow_configuration_change_hook,
5826 "Functions to call when window configuration changes.\n\
5827 The selected frame is the one whose configuration has changed.");
5828 Vwindow_configuration_change_hook = Qnil;
5830 DEFVAR_BOOL ("window-size-fixed", &window_size_fixed,
5831 "Non-nil in a buffer means windows displaying the buffer are fixed-size.\n\
5832 Emacs won't change the size of any window displaying that buffer,\n\
5833 unless you explicitly change the size, or Emacs has no other choice.\n\
5834 This variable automatically becomes buffer-local when set.");
5835 Fmake_variable_buffer_local (Qwindow_size_fixed);
5836 window_size_fixed = 0;
5838 defsubr (&Sselected_window);
5839 defsubr (&Sminibuffer_window);
5840 defsubr (&Swindow_minibuffer_p);
5841 defsubr (&Swindowp);
5842 defsubr (&Swindow_live_p);
5843 defsubr (&Spos_visible_in_window_p);
5844 defsubr (&Swindow_buffer);
5845 defsubr (&Swindow_height);
5846 defsubr (&Swindow_width);
5847 defsubr (&Swindow_hscroll);
5848 defsubr (&Sset_window_hscroll);
5849 defsubr (&Swindow_redisplay_end_trigger);
5850 defsubr (&Sset_window_redisplay_end_trigger);
5851 defsubr (&Swindow_edges);
5852 defsubr (&Scoordinates_in_window_p);
5853 defsubr (&Swindow_at);
5854 defsubr (&Swindow_point);
5855 defsubr (&Swindow_start);
5856 defsubr (&Swindow_end);
5857 defsubr (&Sset_window_point);
5858 defsubr (&Sset_window_start);
5859 defsubr (&Swindow_dedicated_p);
5860 defsubr (&Sset_window_dedicated_p);
5861 defsubr (&Swindow_display_table);
5862 defsubr (&Sset_window_display_table);
5863 defsubr (&Snext_window);
5864 defsubr (&Sprevious_window);
5865 defsubr (&Sother_window);
5866 defsubr (&Sget_lru_window);
5867 defsubr (&Sget_largest_window);
5868 defsubr (&Sget_buffer_window);
5869 defsubr (&Sdelete_other_windows);
5870 defsubr (&Sdelete_windows_on);
5871 defsubr (&Sreplace_buffer_in_windows);
5872 defsubr (&Sdelete_window);
5873 defsubr (&Sset_window_buffer);
5874 defsubr (&Sselect_window);
5875 defsubr (&Sspecial_display_p);
5876 defsubr (&Ssame_window_p);
5877 defsubr (&Sdisplay_buffer);
5878 defsubr (&Ssplit_window);
5879 defsubr (&Senlarge_window);
5880 defsubr (&Sshrink_window);
5881 defsubr (&Sscroll_up);
5882 defsubr (&Sscroll_down);
5883 defsubr (&Sscroll_left);
5884 defsubr (&Sscroll_right);
5885 defsubr (&Sother_window_for_scrolling);
5886 defsubr (&Sscroll_other_window);
5887 defsubr (&Srecenter);
5888 defsubr (&Swindow_text_height);
5889 defsubr (&Smove_to_window_line);
5890 defsubr (&Swindow_configuration_p);
5891 defsubr (&Swindow_configuration_frame);
5892 defsubr (&Sset_window_configuration);
5893 defsubr (&Scurrent_window_configuration);
5894 defsubr (&Ssave_window_excursion);
5895 defsubr (&Sset_window_margins);
5896 defsubr (&Swindow_margins);
5897 defsubr (&Swindow_vscroll);
5898 defsubr (&Sset_window_vscroll);
5899 defsubr (&Scompare_window_configurations);
5900 defsubr (&Swindow_list);
5903 void
5904 keys_of_window ()
5906 initial_define_key (control_x_map, '1', "delete-other-windows");
5907 initial_define_key (control_x_map, '2', "split-window");
5908 initial_define_key (control_x_map, '0', "delete-window");
5909 initial_define_key (control_x_map, 'o', "other-window");
5910 initial_define_key (control_x_map, '^', "enlarge-window");
5911 initial_define_key (control_x_map, '<', "scroll-left");
5912 initial_define_key (control_x_map, '>', "scroll-right");
5914 initial_define_key (global_map, Ctl ('V'), "scroll-up");
5915 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
5916 initial_define_key (meta_map, 'v', "scroll-down");
5918 initial_define_key (global_map, Ctl('L'), "recenter");
5919 initial_define_key (meta_map, 'r', "move-to-window-line");