*** empty log message ***
[emacs.git] / src / window.c
blob0db51c58eda4e0cd65967e3eeecb2f943bf2c662
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 1996, 1997, 1998, 2000,
4 2001, 2002, 2003, 2004, 2005, 2006 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., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
23 #include <config.h>
24 #include "lisp.h"
25 #include "buffer.h"
26 #include "keyboard.h"
27 #include "keymap.h"
28 #include "frame.h"
29 #include "window.h"
30 #include "commands.h"
31 #include "indent.h"
32 #include "termchar.h"
33 #include "disptab.h"
34 #include "dispextern.h"
35 #include "blockinput.h"
36 #include "intervals.h"
38 #ifdef HAVE_X_WINDOWS
39 #include "xterm.h"
40 #endif /* HAVE_X_WINDOWS */
41 #ifdef WINDOWSNT
42 #include "w32term.h"
43 #endif
44 #ifdef MSDOS
45 #include "msdos.h"
46 #endif
47 #ifdef MAC_OS
48 #include "macterm.h"
49 #endif
52 Lisp_Object Qwindowp, Qwindow_live_p, Qwindow_configuration_p;
53 Lisp_Object Qscroll_up, Qscroll_down;
54 Lisp_Object Qwindow_size_fixed;
55 extern Lisp_Object Qleft_margin, Qright_margin;
57 static int displayed_window_lines P_ ((struct window *));
58 static struct window *decode_window P_ ((Lisp_Object));
59 static int count_windows P_ ((struct window *));
60 static int get_leaf_windows P_ ((struct window *, struct window **, int));
61 static void window_scroll P_ ((Lisp_Object, int, int, int));
62 static void window_scroll_pixel_based P_ ((Lisp_Object, int, int, int));
63 static void window_scroll_line_based P_ ((Lisp_Object, int, int, int));
64 static int window_min_size_1 P_ ((struct window *, int));
65 static int window_min_size P_ ((struct window *, int, int, int *));
66 static void size_window P_ ((Lisp_Object, int, int, int, int, int));
67 static int freeze_window_start P_ ((struct window *, void *));
68 static int window_fixed_size_p P_ ((struct window *, int, int));
69 static void enlarge_window P_ ((Lisp_Object, int, int));
70 static Lisp_Object window_list P_ ((void));
71 static int add_window_to_list P_ ((struct window *, void *));
72 static int candidate_window_p P_ ((Lisp_Object, Lisp_Object, Lisp_Object,
73 Lisp_Object));
74 static Lisp_Object next_window P_ ((Lisp_Object, Lisp_Object,
75 Lisp_Object, int));
76 static void decode_next_window_args P_ ((Lisp_Object *, Lisp_Object *,
77 Lisp_Object *));
78 static int foreach_window_1 P_ ((struct window *,
79 int (* fn) (struct window *, void *),
80 void *));
81 static Lisp_Object window_list_1 P_ ((Lisp_Object, Lisp_Object, Lisp_Object));
83 /* This is the window in which the terminal's cursor should
84 be left when nothing is being done with it. This must
85 always be a leaf window, and its buffer is selected by
86 the top level editing loop at the end of each command.
88 This value is always the same as
89 FRAME_SELECTED_WINDOW (selected_frame). */
91 Lisp_Object selected_window;
93 /* A list of all windows for use by next_window and Fwindow_list.
94 Functions creating or deleting windows should invalidate this cache
95 by setting it to nil. */
97 Lisp_Object Vwindow_list;
99 /* The mini-buffer window of the selected frame.
100 Note that you cannot test for mini-bufferness of an arbitrary window
101 by comparing against this; but you can test for mini-bufferness of
102 the selected window. */
104 Lisp_Object minibuf_window;
106 /* Non-nil means it is the window whose mode line should be
107 shown as the selected window when the minibuffer is selected. */
109 Lisp_Object minibuf_selected_window;
111 /* Non-nil means it is the window for C-M-v to scroll
112 when the mini-buffer is selected. */
114 Lisp_Object Vminibuf_scroll_window;
116 /* Non-nil means this is the buffer whose window C-M-v should scroll. */
118 Lisp_Object Vother_window_scroll_buffer;
120 /* Non-nil means it's function to call to display temp buffers. */
122 Lisp_Object Vtemp_buffer_show_function;
124 /* Non-zero means line and page scrolling on tall lines (with images)
125 does partial scrolling by modifying window-vscroll. */
127 int auto_window_vscroll_p;
129 /* Non-zero means to use mode-line-inactive face in all windows but the
130 selected-window and the minibuffer-scroll-window when the
131 minibuffer is active. */
132 int mode_line_in_non_selected_windows;
134 /* If a window gets smaller than either of these, it is removed. */
136 EMACS_INT window_min_height;
137 EMACS_INT window_min_width;
139 /* Nonzero implies Fdisplay_buffer should create windows. */
141 int pop_up_windows;
143 /* Nonzero implies make new frames for Fdisplay_buffer. */
145 int pop_up_frames;
147 /* Nonzero means reuse existing frames for displaying buffers. */
149 int display_buffer_reuse_frames;
151 /* Non-nil means use this function instead of default */
153 Lisp_Object Vpop_up_frame_function;
155 /* Function to call to handle Fdisplay_buffer. */
157 Lisp_Object Vdisplay_buffer_function;
159 /* Non-nil means that Fdisplay_buffer should even the heights of windows. */
161 Lisp_Object Veven_window_heights;
163 /* List of buffer *names* for buffers that should have their own frames. */
165 Lisp_Object Vspecial_display_buffer_names;
167 /* List of regexps for buffer names that should have their own frames. */
169 Lisp_Object Vspecial_display_regexps;
171 /* Function to pop up a special frame. */
173 Lisp_Object Vspecial_display_function;
175 /* List of buffer *names* for buffers to appear in selected window. */
177 Lisp_Object Vsame_window_buffer_names;
179 /* List of regexps for buffer names to appear in selected window. */
181 Lisp_Object Vsame_window_regexps;
183 /* Hook run at end of temp_output_buffer_show. */
185 Lisp_Object Qtemp_buffer_show_hook;
187 /* Fdisplay_buffer always splits the largest window
188 if that window is more than this high. */
190 EMACS_INT split_height_threshold;
192 /* Number of lines of continuity in scrolling by screenfuls. */
194 EMACS_INT next_screen_context_lines;
196 /* Incremented for each window created. */
198 static int sequence_number;
200 /* Nonzero after init_window_once has finished. */
202 static int window_initialized;
204 /* Hook to run when window config changes. */
206 Lisp_Object Qwindow_configuration_change_hook;
207 Lisp_Object Vwindow_configuration_change_hook;
209 /* Non-nil means scroll commands try to put point
210 at the same screen height as previously. */
212 Lisp_Object Vscroll_preserve_screen_position;
214 /* Incremented by 1 whenever a window is deleted. */
216 int window_deletion_count;
218 /* Used by the function window_scroll_pixel_based */
220 static int window_scroll_pixel_based_preserve_y;
222 #if 0 /* This isn't used anywhere. */
223 /* Nonzero means we can split a frame even if it is "unsplittable". */
224 static int inhibit_frame_unsplittable;
225 #endif /* 0 */
227 extern EMACS_INT scroll_margin;
229 extern Lisp_Object Qwindow_scroll_functions, Vwindow_scroll_functions;
231 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
232 doc: /* Returns t if OBJECT is a window. */)
233 (object)
234 Lisp_Object object;
236 return WINDOWP (object) ? Qt : Qnil;
239 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
240 doc: /* Returns t if OBJECT is a window which is currently visible. */)
241 (object)
242 Lisp_Object object;
244 return WINDOW_LIVE_P (object) ? Qt : Qnil;
247 Lisp_Object
248 make_window ()
250 Lisp_Object val;
251 register struct window *p;
253 p = allocate_window ();
254 ++sequence_number;
255 XSETFASTINT (p->sequence_number, sequence_number);
256 XSETFASTINT (p->left_col, 0);
257 XSETFASTINT (p->top_line, 0);
258 XSETFASTINT (p->total_lines, 0);
259 XSETFASTINT (p->total_cols, 0);
260 XSETFASTINT (p->hscroll, 0);
261 XSETFASTINT (p->min_hscroll, 0);
262 p->orig_top_line = p->orig_total_lines = Qnil;
263 p->start = Fmake_marker ();
264 p->pointm = Fmake_marker ();
265 XSETFASTINT (p->use_time, 0);
266 p->frame = Qnil;
267 p->display_table = Qnil;
268 p->dedicated = Qnil;
269 p->pseudo_window_p = 0;
270 bzero (&p->cursor, sizeof (p->cursor));
271 bzero (&p->last_cursor, sizeof (p->last_cursor));
272 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
273 p->desired_matrix = p->current_matrix = 0;
274 p->nrows_scale_factor = p->ncols_scale_factor = 1;
275 p->phys_cursor_type = -1;
276 p->phys_cursor_width = -1;
277 p->must_be_updated_p = 0;
278 XSETFASTINT (p->window_end_vpos, 0);
279 XSETFASTINT (p->window_end_pos, 0);
280 p->window_end_valid = Qnil;
281 p->vscroll = 0;
282 XSETWINDOW (val, p);
283 XSETFASTINT (p->last_point, 0);
284 p->frozen_window_start_p = 0;
285 p->last_cursor_off_p = p->cursor_off_p = 0;
286 p->left_margin_cols = Qnil;
287 p->right_margin_cols = Qnil;
288 p->left_fringe_width = Qnil;
289 p->right_fringe_width = Qnil;
290 p->fringes_outside_margins = Qnil;
291 p->scroll_bar_width = Qnil;
292 p->vertical_scroll_bar_type = Qt;
294 Vwindow_list = Qnil;
295 return val;
298 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
299 doc: /* Return the window that the cursor now appears in and commands apply to. */)
302 return selected_window;
305 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
306 doc: /* Return the window used now for minibuffers.
307 If the optional argument FRAME is specified, return the minibuffer window
308 used by that frame. */)
309 (frame)
310 Lisp_Object frame;
312 if (NILP (frame))
313 frame = selected_frame;
314 CHECK_LIVE_FRAME (frame);
315 return FRAME_MINIBUF_WINDOW (XFRAME (frame));
318 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p, Swindow_minibuffer_p, 0, 1, 0,
319 doc: /* Returns non-nil if WINDOW is a minibuffer window.
320 WINDOW defaults to the selected window. */)
321 (window)
322 Lisp_Object window;
324 struct window *w = decode_window (window);
325 return MINI_WINDOW_P (w) ? Qt : Qnil;
329 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
330 Spos_visible_in_window_p, 0, 3, 0,
331 doc: /* Return non-nil if position POS is currently on the frame in WINDOW.
332 Return nil if that position is scrolled vertically out of view.
333 If a character is only partially visible, nil is returned, unless the
334 optional argument PARTIALLY is non-nil.
335 If POS is only out of view because of horizontal scrolling, return non-nil.
336 If POS is t, it specifies the position of the last visible glyph in WINDOW.
337 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
339 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
340 return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
341 where X and Y are the pixel coordinates relative to the top left corner
342 of the window. The remaining elements are omitted if the character after
343 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
344 off-window at the top and bottom of the row, ROWH is the height of the
345 display row, and VPOS is the row number (0-based) containing POS. */)
346 (pos, window, partially)
347 Lisp_Object pos, window, partially;
349 register struct window *w;
350 register int posint;
351 register struct buffer *buf;
352 struct text_pos top;
353 Lisp_Object in_window = Qnil;
354 int rtop, rbot, rowh, vpos, fully_p = 1;
355 int x, y;
357 w = decode_window (window);
358 buf = XBUFFER (w->buffer);
359 SET_TEXT_POS_FROM_MARKER (top, w->start);
361 if (EQ (pos, Qt))
362 posint = -1;
363 else if (!NILP (pos))
365 CHECK_NUMBER_COERCE_MARKER (pos);
366 posint = XINT (pos);
368 else if (w == XWINDOW (selected_window))
369 posint = PT;
370 else
371 posint = XMARKER (w->pointm)->charpos;
373 /* If position is above window start or outside buffer boundaries,
374 or if window start is out of range, position is not visible. */
375 if ((EQ (pos, Qt)
376 || (posint >= CHARPOS (top) && posint <= BUF_ZV (buf)))
377 && CHARPOS (top) >= BUF_BEGV (buf)
378 && CHARPOS (top) <= BUF_ZV (buf)
379 && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos)
380 && (fully_p = !rtop && !rbot, (!NILP (partially) || fully_p)))
381 in_window = Qt;
383 if (!NILP (in_window) && !NILP (partially))
385 Lisp_Object part = Qnil;
386 if (!fully_p)
387 part = list4 (make_number (rtop), make_number (rbot),
388 make_number (rowh), make_number (vpos));
389 in_window = Fcons (make_number (x),
390 Fcons (make_number (y), part));
393 return in_window;
396 DEFUN ("window-line-height", Fwindow_line_height,
397 Swindow_line_height, 0, 2, 0,
398 doc: /* Return height in pixels of text line LINE in window WINDOW.
399 If WINDOW is nil or omitted, use selected window.
401 Return height of current line if LINE is omitted or nil. Return height of
402 header or mode line if LINE is `header-line' and `mode-line'.
403 Otherwise, LINE is a text line number starting from 0. A negative number
404 counts from the end of the window.
406 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
407 in pixels of the visible part of the line, VPOS and YPOS are the
408 vertical position in lines and pixels of the line, relative to the top
409 of the first text line, and OFFBOT is the number of off-window pixels at
410 the bottom of the text line. If there are off-window pixels at the top
411 of the (first) text line, YPOS is negative.
413 Return nil if window display is not up-to-date. In that case, use
414 `pos-visible-in-window-p' to obtain the information. */)
415 (line, window)
416 Lisp_Object line, window;
418 register struct window *w;
419 register struct buffer *b;
420 struct glyph_row *row, *end_row;
421 int max_y, crop, i, n;
423 w = decode_window (window);
425 if (noninteractive
426 || w->pseudo_window_p)
427 return Qnil;
429 CHECK_BUFFER (w->buffer);
430 b = XBUFFER (w->buffer);
432 /* Fail if current matrix is not up-to-date. */
433 if (NILP (w->window_end_valid)
434 || current_buffer->clip_changed
435 || current_buffer->prevent_redisplay_optimizations_p
436 || XFASTINT (w->last_modified) < BUF_MODIFF (b)
437 || XFASTINT (w->last_overlay_modified) < BUF_OVERLAY_MODIFF (b))
438 return Qnil;
440 if (NILP (line))
442 i = w->cursor.vpos;
443 if (i < 0 || i >= w->current_matrix->nrows
444 || (row = MATRIX_ROW (w->current_matrix, i), !row->enabled_p))
445 return Qnil;
446 max_y = window_text_bottom_y (w);
447 goto found_row;
450 if (EQ (line, Qheader_line))
452 if (!WINDOW_WANTS_HEADER_LINE_P (w))
453 return Qnil;
454 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
455 if (!row->enabled_p)
456 return Qnil;
457 return list4 (make_number (row->height),
458 make_number (0), make_number (0),
459 make_number (0));
462 if (EQ (line, Qmode_line))
464 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
465 if (!row->enabled_p)
466 return Qnil;
467 return list4 (make_number (row->height),
468 make_number (0), /* not accurate */
469 make_number (WINDOW_HEADER_LINE_HEIGHT (w)
470 + window_text_bottom_y (w)),
471 make_number (0));
474 CHECK_NUMBER (line);
475 n = XINT (line);
477 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
478 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
479 max_y = window_text_bottom_y (w);
480 i = 0;
482 while ((n < 0 || i < n)
483 && row <= end_row && row->enabled_p
484 && row->y + row->height < max_y)
485 row++, i++;
487 if (row > end_row || !row->enabled_p)
488 return Qnil;
490 if (++n < 0)
492 if (-n > i)
493 return Qnil;
494 row += n;
495 i += n;
498 found_row:
499 crop = max (0, (row->y + row->height) - max_y);
500 return list4 (make_number (row->height + min (0, row->y) - crop),
501 make_number (i),
502 make_number (row->y),
503 make_number (crop));
508 static struct window *
509 decode_window (window)
510 register Lisp_Object window;
512 if (NILP (window))
513 return XWINDOW (selected_window);
515 CHECK_LIVE_WINDOW (window);
516 return XWINDOW (window);
519 static struct window *
520 decode_any_window (window)
521 register Lisp_Object window;
523 if (NILP (window))
524 return XWINDOW (selected_window);
526 CHECK_WINDOW (window);
527 return XWINDOW (window);
530 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
531 doc: /* Return the buffer that WINDOW is displaying.
532 WINDOW defaults to the selected window. */)
533 (window)
534 Lisp_Object window;
536 return decode_window (window)->buffer;
539 DEFUN ("window-height", Fwindow_height, Swindow_height, 0, 1, 0,
540 doc: /* Return the number of lines in WINDOW (including its mode line). */)
541 (window)
542 Lisp_Object window;
544 return decode_any_window (window)->total_lines;
547 DEFUN ("window-width", Fwindow_width, Swindow_width, 0, 1, 0,
548 doc: /* Return the number of display columns in WINDOW.
549 This is the width that is usable columns available for text in WINDOW.
550 If you want to find out how many columns WINDOW takes up,
551 use (let ((edges (window-edges))) (- (nth 2 edges) (nth 0 edges))). */)
552 (window)
553 Lisp_Object window;
555 return make_number (window_box_text_cols (decode_any_window (window)));
558 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
559 doc: /* Return the number of columns by which WINDOW is scrolled from left margin. */)
560 (window)
561 Lisp_Object window;
563 return decode_window (window)->hscroll;
566 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
567 doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
568 Return NCOL. NCOL should be zero or positive.
570 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
571 window so that the location of point moves off-window. */)
572 (window, ncol)
573 Lisp_Object window, ncol;
575 struct window *w = decode_window (window);
576 int hscroll;
578 CHECK_NUMBER (ncol);
579 hscroll = max (0, XINT (ncol));
581 /* Prevent redisplay shortcuts when changing the hscroll. */
582 if (XINT (w->hscroll) != hscroll)
583 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
585 w->hscroll = make_number (hscroll);
586 return ncol;
589 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
590 Swindow_redisplay_end_trigger, 0, 1, 0,
591 doc: /* Return WINDOW's redisplay end trigger value.
592 See `set-window-redisplay-end-trigger' for more information. */)
593 (window)
594 Lisp_Object window;
596 return decode_window (window)->redisplay_end_trigger;
599 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
600 Sset_window_redisplay_end_trigger, 2, 2, 0,
601 doc: /* Set WINDOW's redisplay end trigger value to VALUE.
602 VALUE should be a buffer position (typically a marker) or nil.
603 If it is a buffer position, then if redisplay in WINDOW reaches a position
604 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called
605 with two arguments: WINDOW, and the end trigger value.
606 Afterwards the end-trigger value is reset to nil. */)
607 (window, value)
608 register Lisp_Object window, value;
610 register struct window *w;
612 w = decode_window (window);
613 w->redisplay_end_trigger = value;
614 return value;
617 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
618 doc: /* Return a list of the edge coordinates of WINDOW.
619 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
620 RIGHT is one more than the rightmost column occupied by WINDOW,
621 and BOTTOM is one more than the bottommost row occupied by WINDOW.
622 The edges include the space used by the window's scroll bar,
623 display margins, fringes, header line, and mode line, if it has them.
624 To get the edges of the actual text area, use `window-inside-edges'. */)
625 (window)
626 Lisp_Object window;
628 register struct window *w = decode_any_window (window);
630 return Fcons (make_number (WINDOW_LEFT_EDGE_COL (w)),
631 Fcons (make_number (WINDOW_TOP_EDGE_LINE (w)),
632 Fcons (make_number (WINDOW_RIGHT_EDGE_COL (w)),
633 Fcons (make_number (WINDOW_BOTTOM_EDGE_LINE (w)),
634 Qnil))));
637 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, Swindow_pixel_edges, 0, 1, 0,
638 doc: /* Return a list of the edge pixel coordinates of WINDOW.
639 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
640 RIGHT is one more than the rightmost x position occupied by WINDOW,
641 and BOTTOM is one more than the bottommost y position occupied by WINDOW.
642 The pixel edges include the space used by the window's scroll bar,
643 display margins, fringes, header line, and mode line, if it has them.
644 To get the edges of the actual text area, use `window-inside-pixel-edges'. */)
645 (window)
646 Lisp_Object window;
648 register struct window *w = decode_any_window (window);
650 return Fcons (make_number (WINDOW_LEFT_EDGE_X (w)),
651 Fcons (make_number (WINDOW_TOP_EDGE_Y (w)),
652 Fcons (make_number (WINDOW_RIGHT_EDGE_X (w)),
653 Fcons (make_number (WINDOW_BOTTOM_EDGE_Y (w)),
654 Qnil))));
657 DEFUN ("window-inside-edges", Fwindow_inside_edges, Swindow_inside_edges, 0, 1, 0,
658 doc: /* Return a list of the edge coordinates of WINDOW.
659 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
660 RIGHT is one more than the rightmost column used by text in WINDOW,
661 and BOTTOM is one more than the bottommost row used by text in WINDOW.
662 The inside edges do not include the space used by the window's scroll bar,
663 display margins, fringes, header line, and/or mode line. */)
664 (window)
665 Lisp_Object window;
667 register struct window *w = decode_any_window (window);
669 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_COL (w)
670 + WINDOW_LEFT_MARGIN_COLS (w)
671 + WINDOW_LEFT_FRINGE_COLS (w)),
672 make_number (WINDOW_TOP_EDGE_LINE (w)
673 + WINDOW_HEADER_LINE_LINES (w)),
674 make_number (WINDOW_BOX_RIGHT_EDGE_COL (w)
675 - WINDOW_RIGHT_MARGIN_COLS (w)
676 - WINDOW_RIGHT_FRINGE_COLS (w)),
677 make_number (WINDOW_BOTTOM_EDGE_LINE (w)
678 - WINDOW_MODE_LINE_LINES (w)));
681 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges, Swindow_inside_pixel_edges, 0, 1, 0,
682 doc: /* Return a list of the edge pixel coordinates of WINDOW.
683 \(LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at top left corner of frame.
684 RIGHT is one more than the rightmost x position used by text in WINDOW,
685 and BOTTOM is one more than the bottommost y position used by text in WINDOW.
686 The inside edges do not include the space used by the window's scroll bar,
687 display margins, fringes, header line, and/or mode line. */)
688 (window)
689 Lisp_Object window;
691 register struct window *w = decode_any_window (window);
693 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_X (w)
694 + WINDOW_LEFT_MARGIN_WIDTH (w)
695 + WINDOW_LEFT_FRINGE_WIDTH (w)),
696 make_number (WINDOW_TOP_EDGE_Y (w)
697 + WINDOW_HEADER_LINE_HEIGHT (w)),
698 make_number (WINDOW_BOX_RIGHT_EDGE_X (w)
699 - WINDOW_RIGHT_MARGIN_WIDTH (w)
700 - WINDOW_RIGHT_FRINGE_WIDTH (w)),
701 make_number (WINDOW_BOTTOM_EDGE_Y (w)
702 - WINDOW_MODE_LINE_HEIGHT (w)));
705 /* Test if the character at column *X, row *Y is within window W.
706 If it is not, return ON_NOTHING;
707 if it is in the window's text area,
708 set *x and *y to its location relative to the upper left corner
709 of the window, and
710 return ON_TEXT;
711 if it is on the window's modeline, return ON_MODE_LINE;
712 if it is on the border between the window and its right sibling,
713 return ON_VERTICAL_BORDER.
714 if it is on a scroll bar,
715 return ON_SCROLL_BAR.
716 if it is on the window's top line, return ON_HEADER_LINE;
717 if it is in left or right fringe of the window,
718 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE, and convert *X and *Y
719 to window-relative coordinates;
720 if it is in the marginal area to the left/right of the window,
721 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN, and convert *X and *Y
722 to window-relative coordinates.
724 X and Y are frame relative pixel coordinates. */
726 static enum window_part
727 coordinates_in_window (w, x, y)
728 register struct window *w;
729 register int *x, *y;
731 struct frame *f = XFRAME (WINDOW_FRAME (w));
732 int left_x, right_x, top_y, bottom_y;
733 enum window_part part;
734 int ux = FRAME_COLUMN_WIDTH (f);
735 int x0 = WINDOW_LEFT_EDGE_X (w);
736 int x1 = WINDOW_RIGHT_EDGE_X (w);
737 /* The width of the area where the vertical line can be dragged.
738 (Between mode lines for instance. */
739 int grabbable_width = ux;
740 int lmargin_width, rmargin_width, text_left, text_right;
742 /* In what's below, we subtract 1 when computing right_x because we
743 want the rightmost pixel, which is given by left_pixel+width-1. */
744 if (w->pseudo_window_p)
746 left_x = 0;
747 right_x = WINDOW_TOTAL_WIDTH (w) - 1;
748 top_y = WINDOW_TOP_EDGE_Y (w);
749 bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
751 else
753 left_x = WINDOW_BOX_LEFT_EDGE_X (w);
754 right_x = WINDOW_BOX_RIGHT_EDGE_X (w) - 1;
755 top_y = WINDOW_TOP_EDGE_Y (w);
756 bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
759 /* Outside any interesting row? */
760 if (*y < top_y || *y >= bottom_y)
761 return ON_NOTHING;
763 /* On the mode line or header line? If it's near the start of
764 the mode or header line of window that's has a horizontal
765 sibling, say it's on the vertical line. That's to be able
766 to resize windows horizontally in case we're using toolkit
767 scroll bars. */
769 if (WINDOW_WANTS_MODELINE_P (w)
770 && *y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w))
772 part = ON_MODE_LINE;
774 header_vertical_border_check:
775 /* We're somewhere on the mode line. We consider the place
776 between mode lines of horizontally adjacent mode lines
777 as the vertical border. If scroll bars on the left,
778 return the right window. */
779 if (WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
780 || WINDOW_RIGHTMOST_P (w))
782 if (!WINDOW_LEFTMOST_P (w) && abs (*x - x0) < grabbable_width)
784 /* Convert X and Y to window relative coordinates.
785 Vertical border is at the left edge of window. */
786 *x = max (0, *x - x0);
787 *y -= top_y;
788 return ON_VERTICAL_BORDER;
791 else
793 if (abs (*x - x1) < grabbable_width)
795 /* Convert X and Y to window relative coordinates.
796 Vertical border is at the right edge of window. */
797 *x = min (x1, *x) - x0;
798 *y -= top_y;
799 return ON_VERTICAL_BORDER;
803 if (*x < x0 || *x >= x1)
804 return ON_NOTHING;
806 /* Convert X and Y to window relative coordinates.
807 Mode line starts at left edge of window. */
808 *x -= x0;
809 *y -= top_y;
810 return part;
813 if (WINDOW_WANTS_HEADER_LINE_P (w)
814 && *y < top_y + CURRENT_HEADER_LINE_HEIGHT (w))
816 part = ON_HEADER_LINE;
817 goto header_vertical_border_check;
820 if (*x < x0 || *x >= x1)
821 return ON_NOTHING;
823 /* Outside any interesting column? */
824 if (*x < left_x || *x > right_x)
826 *y -= top_y;
827 return ON_SCROLL_BAR;
830 lmargin_width = window_box_width (w, LEFT_MARGIN_AREA);
831 rmargin_width = window_box_width (w, RIGHT_MARGIN_AREA);
833 text_left = window_box_left (w, TEXT_AREA);
834 text_right = text_left + window_box_width (w, TEXT_AREA);
836 if (FRAME_WINDOW_P (f))
838 if (!w->pseudo_window_p
839 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
840 && !WINDOW_RIGHTMOST_P (w)
841 && (abs (*x - right_x) < grabbable_width))
843 /* Convert X and Y to window relative coordinates.
844 Vertical border is at the right edge of window. */
845 *x = min (right_x, *x) - left_x;
846 *y -= top_y;
847 return ON_VERTICAL_BORDER;
850 else
852 /* Need to say "*x > right_x" rather than >=, since on character
853 terminals, the vertical line's x coordinate is right_x. */
854 if (!w->pseudo_window_p
855 && !WINDOW_RIGHTMOST_P (w)
856 && *x > right_x - ux)
858 /* On the border on the right side of the window? Assume that
859 this area begins at RIGHT_X minus a canonical char width. */
860 *x = min (right_x, *x) - left_x;
861 *y -= top_y;
862 return ON_VERTICAL_BORDER;
866 if (*x < text_left)
868 if (lmargin_width > 0
869 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
870 ? (*x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w))
871 : (*x < left_x + lmargin_width)))
873 *x -= left_x;
874 if (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
875 *x -= WINDOW_LEFT_FRINGE_WIDTH (w);
876 *y -= top_y;
877 return ON_LEFT_MARGIN;
880 /* Convert X and Y to window-relative pixel coordinates. */
881 *x -= left_x;
882 *y -= top_y;
883 return ON_LEFT_FRINGE;
886 if (*x >= text_right)
888 if (rmargin_width > 0
889 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
890 ? (*x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w))
891 : (*x >= right_x - rmargin_width)))
893 *x -= right_x - rmargin_width;
894 if (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
895 *x += WINDOW_RIGHT_FRINGE_WIDTH (w);
896 *y -= top_y;
897 return ON_RIGHT_MARGIN;
900 /* Convert X and Y to window-relative pixel coordinates. */
901 *x -= left_x + WINDOW_LEFT_FRINGE_WIDTH (w);
902 *y -= top_y;
903 return ON_RIGHT_FRINGE;
906 /* Everything special ruled out - must be on text area */
907 *x -= text_left;
908 *y -= top_y;
909 return ON_TEXT;
913 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
914 Scoordinates_in_window_p, 2, 2, 0,
915 doc: /* Return non-nil if COORDINATES are in WINDOW.
916 COORDINATES is a cons of the form (X . Y), X and Y being distances
917 measured in characters from the upper-left corner of the frame.
918 \(0 . 0) denotes the character in the upper left corner of the
919 frame.
920 If COORDINATES are in the text portion of WINDOW,
921 the coordinates relative to the window are returned.
922 If they are in the mode line of WINDOW, `mode-line' is returned.
923 If they are in the top mode line of WINDOW, `header-line' is returned.
924 If they are in the left fringe of WINDOW, `left-fringe' is returned.
925 If they are in the right fringe of WINDOW, `right-fringe' is returned.
926 If they are on the border between WINDOW and its right sibling,
927 `vertical-line' is returned.
928 If they are in the windows's left or right marginal areas, `left-margin'\n\
929 or `right-margin' is returned. */)
930 (coordinates, window)
931 register Lisp_Object coordinates, window;
933 struct window *w;
934 struct frame *f;
935 int x, y;
936 Lisp_Object lx, ly;
938 CHECK_WINDOW (window);
939 w = XWINDOW (window);
940 f = XFRAME (w->frame);
941 CHECK_CONS (coordinates);
942 lx = Fcar (coordinates);
943 ly = Fcdr (coordinates);
944 CHECK_NUMBER_OR_FLOAT (lx);
945 CHECK_NUMBER_OR_FLOAT (ly);
946 x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f);
947 y = FRAME_PIXEL_Y_FROM_CANON_Y (f, ly) + FRAME_INTERNAL_BORDER_WIDTH (f);
949 switch (coordinates_in_window (w, &x, &y))
951 case ON_NOTHING:
952 return Qnil;
954 case ON_TEXT:
955 /* X and Y are now window relative pixel coordinates. Convert
956 them to canonical char units before returning them. */
957 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x),
958 FRAME_CANON_Y_FROM_PIXEL_Y (f, y));
960 case ON_MODE_LINE:
961 return Qmode_line;
963 case ON_VERTICAL_BORDER:
964 return Qvertical_line;
966 case ON_HEADER_LINE:
967 return Qheader_line;
969 case ON_LEFT_FRINGE:
970 return Qleft_fringe;
972 case ON_RIGHT_FRINGE:
973 return Qright_fringe;
975 case ON_LEFT_MARGIN:
976 return Qleft_margin;
978 case ON_RIGHT_MARGIN:
979 return Qright_margin;
981 case ON_SCROLL_BAR:
982 /* Historically we are supposed to return nil in this case. */
983 return Qnil;
985 default:
986 abort ();
991 /* Callback for foreach_window, used in window_from_coordinates.
992 Check if window W contains coordinates specified by USER_DATA which
993 is actually a pointer to a struct check_window_data CW.
995 Check if window W contains coordinates *CW->x and *CW->y. If it
996 does, return W in *CW->window, as Lisp_Object, and return in
997 *CW->part the part of the window under coordinates *X,*Y. Return
998 zero from this function to stop iterating over windows. */
1000 struct check_window_data
1002 Lisp_Object *window;
1003 int *x, *y;
1004 enum window_part *part;
1007 static int
1008 check_window_containing (w, user_data)
1009 struct window *w;
1010 void *user_data;
1012 struct check_window_data *cw = (struct check_window_data *) user_data;
1013 enum window_part found;
1014 int continue_p = 1;
1016 found = coordinates_in_window (w, cw->x, cw->y);
1017 if (found != ON_NOTHING)
1019 *cw->part = found;
1020 XSETWINDOW (*cw->window, w);
1021 continue_p = 0;
1024 return continue_p;
1028 /* Find the window containing frame-relative pixel position X/Y and
1029 return it as a Lisp_Object.
1031 If X, Y is on one of the window's special `window_part' elements,
1032 set *PART to the id of that element, and return X and Y converted
1033 to window relative coordinates in WX and WY.
1035 If there is no window under X, Y return nil and leave *PART
1036 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
1038 This function was previously implemented with a loop cycling over
1039 windows with Fnext_window, and starting with the frame's selected
1040 window. It turned out that this doesn't work with an
1041 implementation of next_window using Vwindow_list, because
1042 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1043 tree of F when this function is called asynchronously from
1044 note_mouse_highlight. The original loop didn't terminate in this
1045 case. */
1047 Lisp_Object
1048 window_from_coordinates (f, x, y, part, wx, wy, tool_bar_p)
1049 struct frame *f;
1050 int x, y;
1051 enum window_part *part;
1052 int *wx, *wy;
1053 int tool_bar_p;
1055 Lisp_Object window;
1056 struct check_window_data cw;
1057 enum window_part dummy;
1059 if (part == 0)
1060 part = &dummy;
1062 window = Qnil;
1063 cw.window = &window, cw.x = &x, cw.y = &y; cw.part = part;
1064 foreach_window (f, check_window_containing, &cw);
1066 /* If not found above, see if it's in the tool bar window, if a tool
1067 bar exists. */
1068 if (NILP (window)
1069 && tool_bar_p
1070 && WINDOWP (f->tool_bar_window)
1071 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0
1072 && (coordinates_in_window (XWINDOW (f->tool_bar_window), &x, &y)
1073 != ON_NOTHING))
1075 *part = ON_TEXT;
1076 window = f->tool_bar_window;
1079 if (wx) *wx = x;
1080 if (wy) *wy = y;
1082 return window;
1085 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
1086 doc: /* Return window containing coordinates X and Y on FRAME.
1087 If omitted, FRAME defaults to the currently selected frame.
1088 The top left corner of the frame is considered to be row 0,
1089 column 0. */)
1090 (x, y, frame)
1091 Lisp_Object x, y, frame;
1093 struct frame *f;
1095 if (NILP (frame))
1096 frame = selected_frame;
1097 CHECK_LIVE_FRAME (frame);
1098 f = XFRAME (frame);
1100 /* Check that arguments are integers or floats. */
1101 CHECK_NUMBER_OR_FLOAT (x);
1102 CHECK_NUMBER_OR_FLOAT (y);
1104 return window_from_coordinates (f,
1105 (FRAME_PIXEL_X_FROM_CANON_X (f, x)
1106 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1107 (FRAME_PIXEL_Y_FROM_CANON_Y (f, y)
1108 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1109 0, 0, 0, 0);
1112 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
1113 doc: /* Return current value of point in WINDOW.
1114 For a nonselected window, this is the value point would have
1115 if that window were selected.
1117 Note that, when WINDOW is the selected window and its buffer
1118 is also currently selected, the value returned is the same as (point).
1119 It would be more strictly correct to return the `top-level' value
1120 of point, outside of any save-excursion forms.
1121 But that is hard to define. */)
1122 (window)
1123 Lisp_Object window;
1125 register struct window *w = decode_window (window);
1127 if (w == XWINDOW (selected_window)
1128 && current_buffer == XBUFFER (w->buffer))
1129 return Fpoint ();
1130 return Fmarker_position (w->pointm);
1133 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
1134 doc: /* Return position at which display currently starts in WINDOW.
1135 This is updated by redisplay or by calling `set-window-start'. */)
1136 (window)
1137 Lisp_Object window;
1139 return Fmarker_position (decode_window (window)->start);
1142 /* This is text temporarily removed from the doc string below.
1144 This function returns nil if the position is not currently known.
1145 That happens when redisplay is preempted and doesn't finish.
1146 If in that case you want to compute where the end of the window would
1147 have been if redisplay had finished, do this:
1148 (save-excursion
1149 (goto-char (window-start window))
1150 (vertical-motion (1- (window-height window)) window)
1151 (point))") */
1153 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
1154 doc: /* Return position at which display currently ends in WINDOW.
1155 This is updated by redisplay, when it runs to completion.
1156 Simply changing the buffer text or setting `window-start'
1157 does not update this value.
1158 Return nil if there is no recorded value. \(This can happen if the
1159 last redisplay of WINDOW was preempted, and did not finish.)
1160 If UPDATE is non-nil, compute the up-to-date position
1161 if it isn't already recorded. */)
1162 (window, update)
1163 Lisp_Object window, update;
1165 Lisp_Object value;
1166 struct window *w = decode_window (window);
1167 Lisp_Object buf;
1168 struct buffer *b;
1170 buf = w->buffer;
1171 CHECK_BUFFER (buf);
1172 b = XBUFFER (buf);
1174 #if 0 /* This change broke some things. We should make it later. */
1175 /* If we don't know the end position, return nil.
1176 The user can compute it with vertical-motion if he wants to.
1177 It would be nicer to do it automatically,
1178 but that's so slow that it would probably bother people. */
1179 if (NILP (w->window_end_valid))
1180 return Qnil;
1181 #endif
1183 if (! NILP (update)
1184 && ! (! NILP (w->window_end_valid)
1185 && XFASTINT (w->last_modified) >= BUF_MODIFF (b))
1186 && !noninteractive)
1188 struct text_pos startp;
1189 struct it it;
1190 struct buffer *old_buffer = NULL;
1192 /* Cannot use Fvertical_motion because that function doesn't
1193 cope with variable-height lines. */
1194 if (b != current_buffer)
1196 old_buffer = current_buffer;
1197 set_buffer_internal (b);
1200 /* In case W->start is out of the range, use something
1201 reasonable. This situation occurred when loading a file with
1202 `-l' containing a call to `rmail' with subsequent other
1203 commands. At the end, W->start happened to be BEG, while
1204 rmail had already narrowed the buffer. */
1205 if (XMARKER (w->start)->charpos < BEGV)
1206 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
1207 else if (XMARKER (w->start)->charpos > ZV)
1208 SET_TEXT_POS (startp, ZV, ZV_BYTE);
1209 else
1210 SET_TEXT_POS_FROM_MARKER (startp, w->start);
1212 start_display (&it, w, startp);
1213 move_it_vertically (&it, window_box_height (w));
1214 if (it.current_y < it.last_visible_y)
1215 move_it_past_eol (&it);
1216 value = make_number (IT_CHARPOS (it));
1218 if (old_buffer)
1219 set_buffer_internal (old_buffer);
1221 else
1222 XSETINT (value, BUF_Z (b) - XFASTINT (w->window_end_pos));
1224 return value;
1227 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
1228 doc: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1229 Return POS. */)
1230 (window, pos)
1231 Lisp_Object window, pos;
1233 register struct window *w = decode_window (window);
1235 CHECK_NUMBER_COERCE_MARKER (pos);
1236 if (w == XWINDOW (selected_window)
1237 && XBUFFER (w->buffer) == current_buffer)
1238 Fgoto_char (pos);
1239 else
1240 set_marker_restricted (w->pointm, pos, w->buffer);
1242 /* We have to make sure that redisplay updates the window to show
1243 the new value of point. */
1244 if (!EQ (window, selected_window))
1245 ++windows_or_buffers_changed;
1247 return pos;
1250 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
1251 doc: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1252 Return POS.
1253 Optional third arg NOFORCE non-nil inhibits next redisplay
1254 from overriding motion of point in order to display at this exact start. */)
1255 (window, pos, noforce)
1256 Lisp_Object window, pos, noforce;
1258 register struct window *w = decode_window (window);
1260 CHECK_NUMBER_COERCE_MARKER (pos);
1261 set_marker_restricted (w->start, pos, w->buffer);
1262 /* this is not right, but much easier than doing what is right. */
1263 w->start_at_line_beg = Qnil;
1264 if (NILP (noforce))
1265 w->force_start = Qt;
1266 w->update_mode_line = Qt;
1267 XSETFASTINT (w->last_modified, 0);
1268 XSETFASTINT (w->last_overlay_modified, 0);
1269 if (!EQ (window, selected_window))
1270 windows_or_buffers_changed++;
1272 return pos;
1275 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
1276 1, 1, 0,
1277 doc: /* Return WINDOW's dedicated object, usually t or nil.
1278 See also `set-window-dedicated-p'. */)
1279 (window)
1280 Lisp_Object window;
1282 return decode_window (window)->dedicated;
1285 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
1286 Sset_window_dedicated_p, 2, 2, 0,
1287 doc: /* Control whether WINDOW is dedicated to the buffer it displays.
1288 If it is dedicated, Emacs will not automatically change
1289 which buffer appears in it.
1290 The second argument is the new value for the dedication flag;
1291 non-nil means yes. */)
1292 (window, arg)
1293 Lisp_Object window, arg;
1295 register struct window *w = decode_window (window);
1297 w->dedicated = arg;
1299 return w->dedicated;
1302 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
1303 0, 1, 0,
1304 doc: /* Return the display-table that WINDOW is using. */)
1305 (window)
1306 Lisp_Object window;
1308 return decode_window (window)->display_table;
1311 /* Get the display table for use on window W. This is either W's
1312 display table or W's buffer's display table. Ignore the specified
1313 tables if they are not valid; if no valid table is specified,
1314 return 0. */
1316 struct Lisp_Char_Table *
1317 window_display_table (w)
1318 struct window *w;
1320 struct Lisp_Char_Table *dp = NULL;
1322 if (DISP_TABLE_P (w->display_table))
1323 dp = XCHAR_TABLE (w->display_table);
1324 else if (BUFFERP (w->buffer))
1326 struct buffer *b = XBUFFER (w->buffer);
1328 if (DISP_TABLE_P (b->display_table))
1329 dp = XCHAR_TABLE (b->display_table);
1330 else if (DISP_TABLE_P (Vstandard_display_table))
1331 dp = XCHAR_TABLE (Vstandard_display_table);
1334 return dp;
1337 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
1338 doc: /* Set WINDOW's display-table to TABLE. */)
1339 (window, table)
1340 register Lisp_Object window, table;
1342 register struct window *w;
1344 w = decode_window (window);
1345 w->display_table = table;
1346 return table;
1349 /* Record info on buffer window w is displaying
1350 when it is about to cease to display that buffer. */
1351 static void
1352 unshow_buffer (w)
1353 register struct window *w;
1355 Lisp_Object buf;
1356 struct buffer *b;
1358 buf = w->buffer;
1359 b = XBUFFER (buf);
1360 if (b != XMARKER (w->pointm)->buffer)
1361 abort ();
1363 #if 0
1364 if (w == XWINDOW (selected_window)
1365 || ! EQ (buf, XWINDOW (selected_window)->buffer))
1366 /* Do this except when the selected window's buffer
1367 is being removed from some other window. */
1368 #endif
1369 /* last_window_start records the start position that this buffer
1370 had in the last window to be disconnected from it.
1371 Now that this statement is unconditional,
1372 it is possible for the buffer to be displayed in the
1373 selected window, while last_window_start reflects another
1374 window which was recently showing the same buffer.
1375 Some people might say that might be a good thing. Let's see. */
1376 b->last_window_start = marker_position (w->start);
1378 /* Point in the selected window's buffer
1379 is actually stored in that buffer, and the window's pointm isn't used.
1380 So don't clobber point in that buffer. */
1381 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1382 /* This line helps to fix Horsley's testbug.el bug. */
1383 && !(WINDOWP (b->last_selected_window)
1384 && w != XWINDOW (b->last_selected_window)
1385 && EQ (buf, XWINDOW (b->last_selected_window)->buffer)))
1386 temp_set_point_both (b,
1387 clip_to_bounds (BUF_BEGV (b),
1388 XMARKER (w->pointm)->charpos,
1389 BUF_ZV (b)),
1390 clip_to_bounds (BUF_BEGV_BYTE (b),
1391 marker_byte_position (w->pointm),
1392 BUF_ZV_BYTE (b)));
1394 if (WINDOWP (b->last_selected_window)
1395 && w == XWINDOW (b->last_selected_window))
1396 b->last_selected_window = Qnil;
1399 /* Put replacement into the window structure in place of old. */
1400 static void
1401 replace_window (old, replacement)
1402 Lisp_Object old, replacement;
1404 register Lisp_Object tem;
1405 register struct window *o = XWINDOW (old), *p = XWINDOW (replacement);
1407 /* If OLD is its frame's root_window, then replacement is the new
1408 root_window for that frame. */
1410 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
1411 FRAME_ROOT_WINDOW (XFRAME (o->frame)) = replacement;
1413 p->left_col = o->left_col;
1414 p->top_line = o->top_line;
1415 p->total_cols = o->total_cols;
1416 p->total_lines = o->total_lines;
1417 p->desired_matrix = p->current_matrix = 0;
1418 p->vscroll = 0;
1419 bzero (&p->cursor, sizeof (p->cursor));
1420 bzero (&p->last_cursor, sizeof (p->last_cursor));
1421 bzero (&p->phys_cursor, sizeof (p->phys_cursor));
1422 p->phys_cursor_type = -1;
1423 p->phys_cursor_width = -1;
1424 p->must_be_updated_p = 0;
1425 p->pseudo_window_p = 0;
1426 XSETFASTINT (p->window_end_vpos, 0);
1427 XSETFASTINT (p->window_end_pos, 0);
1428 p->window_end_valid = Qnil;
1429 p->frozen_window_start_p = 0;
1430 p->orig_top_line = p->orig_total_lines = Qnil;
1432 p->next = tem = o->next;
1433 if (!NILP (tem))
1434 XWINDOW (tem)->prev = replacement;
1436 p->prev = tem = o->prev;
1437 if (!NILP (tem))
1438 XWINDOW (tem)->next = replacement;
1440 p->parent = tem = o->parent;
1441 if (!NILP (tem))
1443 if (EQ (XWINDOW (tem)->vchild, old))
1444 XWINDOW (tem)->vchild = replacement;
1445 if (EQ (XWINDOW (tem)->hchild, old))
1446 XWINDOW (tem)->hchild = replacement;
1449 /*** Here, if replacement is a vertical combination
1450 and so is its new parent, we should make replacement's
1451 children be children of that parent instead. ***/
1454 DEFUN ("delete-window", Fdelete_window, Sdelete_window, 0, 1, "",
1455 doc: /* Remove WINDOW from the display. Default is selected window. */)
1456 (window)
1457 register Lisp_Object window;
1459 delete_window (window);
1461 if (! NILP (Vwindow_configuration_change_hook)
1462 && ! NILP (Vrun_hooks))
1463 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
1465 return Qnil;
1468 void
1469 delete_window (window)
1470 register Lisp_Object window;
1472 register Lisp_Object tem, parent, sib;
1473 register struct window *p;
1474 register struct window *par;
1475 struct frame *f;
1477 /* Because this function is called by other C code on non-leaf
1478 windows, the CHECK_LIVE_WINDOW macro would choke inappropriately,
1479 so we can't decode_window here. */
1480 if (NILP (window))
1481 window = selected_window;
1482 else
1483 CHECK_WINDOW (window);
1484 p = XWINDOW (window);
1486 /* It's a no-op to delete an already-deleted window. */
1487 if (NILP (p->buffer)
1488 && NILP (p->hchild)
1489 && NILP (p->vchild))
1490 return;
1492 parent = p->parent;
1493 if (NILP (parent))
1494 error ("Attempt to delete minibuffer or sole ordinary window");
1495 par = XWINDOW (parent);
1497 windows_or_buffers_changed++;
1498 Vwindow_list = Qnil;
1499 f = XFRAME (WINDOW_FRAME (p));
1500 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
1502 /* Are we trying to delete any frame's selected window? */
1504 Lisp_Object swindow, pwindow;
1506 /* See if the frame's selected window is either WINDOW
1507 or any subwindow of it, by finding all that window's parents
1508 and comparing each one with WINDOW. */
1509 swindow = FRAME_SELECTED_WINDOW (f);
1511 while (1)
1513 pwindow = swindow;
1514 while (!NILP (pwindow))
1516 if (EQ (window, pwindow))
1517 break;
1518 pwindow = XWINDOW (pwindow)->parent;
1521 /* If the window being deleted is not a parent of SWINDOW,
1522 then SWINDOW is ok as the new selected window. */
1523 if (!EQ (window, pwindow))
1524 break;
1525 /* Otherwise, try another window for SWINDOW. */
1526 swindow = Fnext_window (swindow, Qlambda, Qnil);;
1528 /* If we get back to the frame's selected window,
1529 it means there was no acceptable alternative,
1530 so we cannot delete. */
1531 if (EQ (swindow, FRAME_SELECTED_WINDOW (f)))
1532 error ("Cannot delete window");
1535 /* If we need to change SWINDOW, do it. */
1536 if (! EQ (swindow, FRAME_SELECTED_WINDOW (f)))
1538 /* If we're about to delete the selected window on the
1539 selected frame, then we should use Fselect_window to select
1540 the new window. On the other hand, if we're about to
1541 delete the selected window on any other frame, we shouldn't do
1542 anything but set the frame's selected_window slot. */
1543 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
1544 Fselect_window (swindow, Qnil);
1545 else
1546 FRAME_SELECTED_WINDOW (f) = swindow;
1550 /* Now we know we can delete this one. */
1551 window_deletion_count++;
1553 tem = p->buffer;
1554 /* tem is null for dummy parent windows
1555 (which have inferiors but not any contents themselves) */
1556 if (!NILP (tem))
1558 unshow_buffer (p);
1559 unchain_marker (XMARKER (p->pointm));
1560 unchain_marker (XMARKER (p->start));
1563 /* Free window glyph matrices. It is sure that they are allocated
1564 again when ADJUST_GLYPHS is called. Block input so that expose
1565 events and other events that access glyph matrices are not
1566 processed while we are changing them. */
1567 BLOCK_INPUT;
1568 free_window_matrices (XWINDOW (FRAME_ROOT_WINDOW (f)));
1570 tem = p->next;
1571 if (!NILP (tem))
1572 XWINDOW (tem)->prev = p->prev;
1574 tem = p->prev;
1575 if (!NILP (tem))
1576 XWINDOW (tem)->next = p->next;
1578 if (EQ (window, par->hchild))
1579 par->hchild = p->next;
1580 if (EQ (window, par->vchild))
1581 par->vchild = p->next;
1583 /* Find one of our siblings to give our space to. */
1584 sib = p->prev;
1585 if (NILP (sib))
1587 /* If p gives its space to its next sibling, that sibling needs
1588 to have its top/left side pulled back to where p's is.
1589 set_window_{height,width} will re-position the sibling's
1590 children. */
1591 sib = p->next;
1592 XWINDOW (sib)->top_line = p->top_line;
1593 XWINDOW (sib)->left_col = p->left_col;
1596 /* Stretch that sibling. */
1597 if (!NILP (par->vchild))
1598 set_window_height (sib,
1599 XFASTINT (XWINDOW (sib)->total_lines) + XFASTINT (p->total_lines),
1601 if (!NILP (par->hchild))
1602 set_window_width (sib,
1603 XFASTINT (XWINDOW (sib)->total_cols) + XFASTINT (p->total_cols),
1606 /* If parent now has only one child,
1607 put the child into the parent's place. */
1608 tem = par->hchild;
1609 if (NILP (tem))
1610 tem = par->vchild;
1611 if (NILP (XWINDOW (tem)->next)) {
1612 replace_window (parent, tem);
1613 par = XWINDOW (tem);
1616 /* Since we may be deleting combination windows, we must make sure that
1617 not only p but all its children have been marked as deleted. */
1618 if (! NILP (p->hchild))
1619 delete_all_subwindows (XWINDOW (p->hchild));
1620 else if (! NILP (p->vchild))
1621 delete_all_subwindows (XWINDOW (p->vchild));
1623 /* Mark this window as deleted. */
1624 p->buffer = p->hchild = p->vchild = Qnil;
1626 if (! NILP (par->parent))
1627 par = XWINDOW (par->parent);
1629 /* Check if we have a v/hchild with a v/hchild. In that case remove
1630 one of them. */
1632 if (! NILP (par->vchild) && ! NILP (XWINDOW (par->vchild)->vchild))
1634 p = XWINDOW (par->vchild);
1635 par->vchild = p->vchild;
1636 tem = p->vchild;
1638 else if (! NILP (par->hchild) && ! NILP (XWINDOW (par->hchild)->hchild))
1640 p = XWINDOW (par->hchild);
1641 par->hchild = p->hchild;
1642 tem = p->hchild;
1644 else
1645 p = 0;
1647 if (p)
1649 while (! NILP (tem)) {
1650 XWINDOW (tem)->parent = p->parent;
1651 if (NILP (XWINDOW (tem)->next))
1652 break;
1653 tem = XWINDOW (tem)->next;
1655 if (! NILP (tem)) {
1656 /* The next of the v/hchild we are removing is now the next of the
1657 last child for the v/hchild:
1658 Before v/hchild -> v/hchild -> next1 -> next2
1660 -> next3
1661 After: v/hchild -> next1 -> next2 -> next3
1663 XWINDOW (tem)->next = p->next;
1664 if (! NILP (p->next))
1665 XWINDOW (p->next)->prev = tem;
1667 p->next = p->prev = p->vchild = p->hchild = p->buffer = Qnil;
1671 /* Adjust glyph matrices. */
1672 adjust_glyphs (f);
1673 UNBLOCK_INPUT;
1678 /***********************************************************************
1679 Window List
1680 ***********************************************************************/
1682 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
1683 pointer. This is a callback function for foreach_window, used in
1684 function window_list. */
1686 static int
1687 add_window_to_list (w, user_data)
1688 struct window *w;
1689 void *user_data;
1691 Lisp_Object *list = (Lisp_Object *) user_data;
1692 Lisp_Object window;
1693 XSETWINDOW (window, w);
1694 *list = Fcons (window, *list);
1695 return 1;
1699 /* Return a list of all windows, for use by next_window. If
1700 Vwindow_list is a list, return that list. Otherwise, build a new
1701 list, cache it in Vwindow_list, and return that. */
1703 static Lisp_Object
1704 window_list ()
1706 if (!CONSP (Vwindow_list))
1708 Lisp_Object tail;
1710 Vwindow_list = Qnil;
1711 for (tail = Vframe_list; CONSP (tail); tail = XCDR (tail))
1713 Lisp_Object args[2];
1715 /* We are visiting windows in canonical order, and add
1716 new windows at the front of args[1], which means we
1717 have to reverse this list at the end. */
1718 args[1] = Qnil;
1719 foreach_window (XFRAME (XCAR (tail)), add_window_to_list, &args[1]);
1720 args[0] = Vwindow_list;
1721 args[1] = Fnreverse (args[1]);
1722 Vwindow_list = Fnconc (2, args);
1726 return Vwindow_list;
1730 /* Value is non-zero if WINDOW satisfies the constraints given by
1731 OWINDOW, MINIBUF and ALL_FRAMES.
1733 MINIBUF t means WINDOW may be minibuffer windows.
1734 `lambda' means WINDOW may not be a minibuffer window.
1735 a window means a specific minibuffer window
1737 ALL_FRAMES t means search all frames,
1738 nil means search just current frame,
1739 `visible' means search just visible frames,
1740 0 means search visible and iconified frames,
1741 a window means search the frame that window belongs to,
1742 a frame means consider windows on that frame, only. */
1744 static int
1745 candidate_window_p (window, owindow, minibuf, all_frames)
1746 Lisp_Object window, owindow, minibuf, all_frames;
1748 struct window *w = XWINDOW (window);
1749 struct frame *f = XFRAME (w->frame);
1750 int candidate_p = 1;
1752 if (!BUFFERP (w->buffer))
1753 candidate_p = 0;
1754 else if (MINI_WINDOW_P (w)
1755 && (EQ (minibuf, Qlambda)
1756 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
1758 /* If MINIBUF is `lambda' don't consider any mini-windows.
1759 If it is a window, consider only that one. */
1760 candidate_p = 0;
1762 else if (EQ (all_frames, Qt))
1763 candidate_p = 1;
1764 else if (NILP (all_frames))
1766 xassert (WINDOWP (owindow));
1767 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
1769 else if (EQ (all_frames, Qvisible))
1771 FRAME_SAMPLE_VISIBILITY (f);
1772 candidate_p = FRAME_VISIBLE_P (f);
1774 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
1776 FRAME_SAMPLE_VISIBILITY (f);
1777 candidate_p = FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f);
1779 else if (WINDOWP (all_frames))
1780 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
1781 || EQ (XWINDOW (all_frames)->frame, w->frame)
1782 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
1783 else if (FRAMEP (all_frames))
1784 candidate_p = EQ (all_frames, w->frame);
1786 return candidate_p;
1790 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
1791 Fwindow_list. See there for the meaning of WINDOW, MINIBUF, and
1792 ALL_FRAMES. */
1794 static void
1795 decode_next_window_args (window, minibuf, all_frames)
1796 Lisp_Object *window, *minibuf, *all_frames;
1798 if (NILP (*window))
1799 *window = selected_window;
1800 else
1801 CHECK_LIVE_WINDOW (*window);
1803 /* MINIBUF nil may or may not include minibuffers. Decide if it
1804 does. */
1805 if (NILP (*minibuf))
1806 *minibuf = minibuf_level ? minibuf_window : Qlambda;
1807 else if (!EQ (*minibuf, Qt))
1808 *minibuf = Qlambda;
1810 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
1811 => count none of them, or a specific minibuffer window (the
1812 active one) to count. */
1814 /* ALL_FRAMES nil doesn't specify which frames to include. */
1815 if (NILP (*all_frames))
1816 *all_frames = (!EQ (*minibuf, Qlambda)
1817 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window)->frame))
1818 : Qnil);
1819 else if (EQ (*all_frames, Qvisible))
1821 else if (EQ (*all_frames, make_number (0)))
1823 else if (FRAMEP (*all_frames))
1825 else if (!EQ (*all_frames, Qt))
1826 *all_frames = Qnil;
1828 /* Now *ALL_FRAMES is t meaning search all frames, nil meaning
1829 search just current frame, `visible' meaning search just visible
1830 frames, 0 meaning search visible and iconified frames, or a
1831 window, meaning search the frame that window belongs to, or a
1832 frame, meaning consider windows on that frame, only. */
1836 /* Return the next or previous window of WINDOW in canonical ordering
1837 of windows. NEXT_P non-zero means return the next window. See the
1838 documentation string of next-window for the meaning of MINIBUF and
1839 ALL_FRAMES. */
1841 static Lisp_Object
1842 next_window (window, minibuf, all_frames, next_p)
1843 Lisp_Object window, minibuf, all_frames;
1844 int next_p;
1846 decode_next_window_args (&window, &minibuf, &all_frames);
1848 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
1849 return the first window on the frame. */
1850 if (FRAMEP (all_frames)
1851 && !EQ (all_frames, XWINDOW (window)->frame))
1852 return Fframe_first_window (all_frames);
1854 if (next_p)
1856 Lisp_Object list;
1858 /* Find WINDOW in the list of all windows. */
1859 list = Fmemq (window, window_list ());
1861 /* Scan forward from WINDOW to the end of the window list. */
1862 if (CONSP (list))
1863 for (list = XCDR (list); CONSP (list); list = XCDR (list))
1864 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1865 break;
1867 /* Scan from the start of the window list up to WINDOW. */
1868 if (!CONSP (list))
1869 for (list = Vwindow_list;
1870 CONSP (list) && !EQ (XCAR (list), window);
1871 list = XCDR (list))
1872 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
1873 break;
1875 if (CONSP (list))
1876 window = XCAR (list);
1878 else
1880 Lisp_Object candidate, list;
1882 /* Scan through the list of windows for candidates. If there are
1883 candidate windows in front of WINDOW, the last one of these
1884 is the one we want. If there are candidates following WINDOW
1885 in the list, again the last one of these is the one we want. */
1886 candidate = Qnil;
1887 for (list = window_list (); CONSP (list); list = XCDR (list))
1889 if (EQ (XCAR (list), window))
1891 if (WINDOWP (candidate))
1892 break;
1894 else if (candidate_window_p (XCAR (list), window, minibuf,
1895 all_frames))
1896 candidate = XCAR (list);
1899 if (WINDOWP (candidate))
1900 window = candidate;
1903 return window;
1907 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
1908 doc: /* Return next window after WINDOW in canonical ordering of windows.
1909 If omitted, WINDOW defaults to the selected window.
1911 Optional second arg MINIBUF t means count the minibuffer window even
1912 if not active. MINIBUF nil or omitted means count the minibuffer iff
1913 it is active. MINIBUF neither t nor nil means not to count the
1914 minibuffer even if it is active.
1916 Several frames may share a single minibuffer; if the minibuffer
1917 counts, all windows on all frames that share that minibuffer count
1918 too. Therefore, `next-window' can be used to iterate through the
1919 set of windows even when the minibuffer is on another frame. If the
1920 minibuffer does not count, only windows from WINDOW's frame count.
1922 Optional third arg ALL-FRAMES t means include windows on all frames.
1923 ALL-FRAMES nil or omitted means cycle within the frames as specified
1924 above. ALL-FRAMES = `visible' means include windows on all visible frames.
1925 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
1926 If ALL-FRAMES is a frame, restrict search to windows on that frame.
1927 Anything else means restrict to WINDOW's frame.
1929 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
1930 `next-window' to iterate through the entire cycle of acceptable
1931 windows, eventually ending up back at the window you started with.
1932 `previous-window' traverses the same cycle, in the reverse order. */)
1933 (window, minibuf, all_frames)
1934 Lisp_Object window, minibuf, all_frames;
1936 return next_window (window, minibuf, all_frames, 1);
1940 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
1941 doc: /* Return the window preceding WINDOW in canonical ordering of windows.
1942 If omitted, WINDOW defaults to the selected window.
1944 Optional second arg MINIBUF t means count the minibuffer window even
1945 if not active. MINIBUF nil or omitted means count the minibuffer iff
1946 it is active. MINIBUF neither t nor nil means not to count the
1947 minibuffer even if it is active.
1949 Several frames may share a single minibuffer; if the minibuffer
1950 counts, all windows on all frames that share that minibuffer count
1951 too. Therefore, `previous-window' can be used to iterate through
1952 the set of windows even when the minibuffer is on another frame. If
1953 the minibuffer does not count, only windows from WINDOW's frame count
1955 Optional third arg ALL-FRAMES t means include windows on all frames.
1956 ALL-FRAMES nil or omitted means cycle within the frames as specified
1957 above. ALL-FRAMES = `visible' means include windows on all visible frames.
1958 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
1959 If ALL-FRAMES is a frame, restrict search to windows on that frame.
1960 Anything else means restrict to WINDOW's frame.
1962 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
1963 `previous-window' to iterate through the entire cycle of acceptable
1964 windows, eventually ending up back at the window you started with.
1965 `next-window' traverses the same cycle, in the reverse order. */)
1966 (window, minibuf, all_frames)
1967 Lisp_Object window, minibuf, all_frames;
1969 return next_window (window, minibuf, all_frames, 0);
1973 DEFUN ("other-window", Fother_window, Sother_window, 1, 2, "p",
1974 doc: /* Select the ARG'th different window on this frame.
1975 All windows on current frame are arranged in a cyclic order.
1976 This command selects the window ARG steps away in that order.
1977 A negative ARG moves in the opposite order. The optional second
1978 argument ALL-FRAMES has the same meaning as in `next-window', which see. */)
1979 (arg, all_frames)
1980 Lisp_Object arg, all_frames;
1982 Lisp_Object window;
1983 int i;
1985 CHECK_NUMBER (arg);
1986 window = selected_window;
1988 for (i = XINT (arg); i > 0; --i)
1989 window = Fnext_window (window, Qnil, all_frames);
1990 for (; i < 0; ++i)
1991 window = Fprevious_window (window, Qnil, all_frames);
1993 Fselect_window (window, Qnil);
1994 return Qnil;
1998 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
1999 doc: /* Return a list of windows on FRAME, starting with WINDOW.
2000 FRAME nil or omitted means use the selected frame.
2001 WINDOW nil or omitted means use the selected window.
2002 MINIBUF t means include the minibuffer window, even if it isn't active.
2003 MINIBUF nil or omitted means include the minibuffer window only
2004 if it's active.
2005 MINIBUF neither nil nor t means never include the minibuffer window. */)
2006 (frame, minibuf, window)
2007 Lisp_Object frame, minibuf, window;
2009 if (NILP (window))
2010 window = FRAMEP (frame) ? XFRAME (frame)->selected_window : selected_window;
2011 CHECK_WINDOW (window);
2012 if (NILP (frame))
2013 frame = selected_frame;
2015 if (!EQ (frame, XWINDOW (window)->frame))
2016 error ("Window is on a different frame");
2018 return window_list_1 (window, minibuf, frame);
2022 /* Return a list of windows in canonical ordering. Arguments are like
2023 for `next-window'. */
2025 static Lisp_Object
2026 window_list_1 (window, minibuf, all_frames)
2027 Lisp_Object window, minibuf, all_frames;
2029 Lisp_Object tail, list, rest;
2031 decode_next_window_args (&window, &minibuf, &all_frames);
2032 list = Qnil;
2034 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
2035 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
2036 list = Fcons (XCAR (tail), list);
2038 /* Rotate the list to start with WINDOW. */
2039 list = Fnreverse (list);
2040 rest = Fmemq (window, list);
2041 if (!NILP (rest) && !EQ (rest, list))
2043 for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail))
2045 XSETCDR (tail, Qnil);
2046 list = nconc2 (rest, list);
2048 return list;
2053 /* Look at all windows, performing an operation specified by TYPE
2054 with argument OBJ.
2055 If FRAMES is Qt, look at all frames;
2056 Qnil, look at just the selected frame;
2057 Qvisible, look at visible frames;
2058 a frame, just look at windows on that frame.
2059 If MINI is non-zero, perform the operation on minibuffer windows too. */
2061 enum window_loop
2063 WINDOW_LOOP_UNUSED,
2064 GET_BUFFER_WINDOW, /* Arg is buffer */
2065 GET_LRU_WINDOW, /* Arg is t for full-width windows only */
2066 DELETE_OTHER_WINDOWS, /* Arg is window not to delete */
2067 DELETE_BUFFER_WINDOWS, /* Arg is buffer */
2068 GET_LARGEST_WINDOW,
2069 UNSHOW_BUFFER, /* Arg is buffer */
2070 REDISPLAY_BUFFER_WINDOWS, /* Arg is buffer */
2071 CHECK_ALL_WINDOWS
2074 static Lisp_Object
2075 window_loop (type, obj, mini, frames)
2076 enum window_loop type;
2077 Lisp_Object obj, frames;
2078 int mini;
2080 Lisp_Object window, windows, best_window, frame_arg;
2081 struct frame *f;
2082 struct gcpro gcpro1;
2084 /* If we're only looping through windows on a particular frame,
2085 frame points to that frame. If we're looping through windows
2086 on all frames, frame is 0. */
2087 if (FRAMEP (frames))
2088 f = XFRAME (frames);
2089 else if (NILP (frames))
2090 f = SELECTED_FRAME ();
2091 else
2092 f = NULL;
2094 if (f)
2095 frame_arg = Qlambda;
2096 else if (EQ (frames, make_number (0)))
2097 frame_arg = frames;
2098 else if (EQ (frames, Qvisible))
2099 frame_arg = frames;
2100 else
2101 frame_arg = Qt;
2103 /* frame_arg is Qlambda to stick to one frame,
2104 Qvisible to consider all visible frames,
2105 or Qt otherwise. */
2107 /* Pick a window to start with. */
2108 if (WINDOWP (obj))
2109 window = obj;
2110 else if (f)
2111 window = FRAME_SELECTED_WINDOW (f);
2112 else
2113 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2115 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
2116 GCPRO1 (windows);
2117 best_window = Qnil;
2119 for (; CONSP (windows); windows = XCDR (windows))
2121 struct window *w;
2123 window = XCAR (windows);
2124 w = XWINDOW (window);
2126 /* Note that we do not pay attention here to whether the frame
2127 is visible, since Fwindow_list skips non-visible frames if
2128 that is desired, under the control of frame_arg. */
2129 if (!MINI_WINDOW_P (w)
2130 /* For UNSHOW_BUFFER, we must always consider all windows. */
2131 || type == UNSHOW_BUFFER
2132 || (mini && minibuf_level > 0))
2133 switch (type)
2135 case GET_BUFFER_WINDOW:
2136 if (EQ (w->buffer, obj)
2137 /* Don't find any minibuffer window
2138 except the one that is currently in use. */
2139 && (MINI_WINDOW_P (w)
2140 ? EQ (window, minibuf_window)
2141 : 1))
2143 if (NILP (best_window))
2144 best_window = window;
2145 else if (EQ (window, selected_window))
2146 /* For compatibility with 20.x, prefer to return
2147 selected-window. */
2148 best_window = window;
2150 break;
2152 case GET_LRU_WINDOW:
2153 /* `obj' is an integer encoding a bitvector.
2154 `obj & 1' means consider only full-width windows.
2155 `obj & 2' means consider also dedicated windows. */
2156 if (((XINT (obj) & 1) && !WINDOW_FULL_WIDTH_P (w))
2157 || (!(XINT (obj) & 2) && !NILP (w->dedicated))
2158 /* Minibuffer windows are always ignored. */
2159 || MINI_WINDOW_P (w))
2160 break;
2161 if (NILP (best_window)
2162 || (XFASTINT (XWINDOW (best_window)->use_time)
2163 > XFASTINT (w->use_time)))
2164 best_window = window;
2165 break;
2167 case DELETE_OTHER_WINDOWS:
2168 if (!EQ (window, obj))
2169 Fdelete_window (window);
2170 break;
2172 case DELETE_BUFFER_WINDOWS:
2173 if (EQ (w->buffer, obj))
2175 struct frame *f = XFRAME (WINDOW_FRAME (w));
2177 /* If this window is dedicated, and in a frame of its own,
2178 kill the frame. */
2179 if (EQ (window, FRAME_ROOT_WINDOW (f))
2180 && !NILP (w->dedicated)
2181 && other_visible_frames (f))
2183 /* Skip the other windows on this frame.
2184 There might be one, the minibuffer! */
2185 while (CONSP (XCDR (windows))
2186 && EQ (XWINDOW (XCAR (windows))->frame,
2187 XWINDOW (XCAR (XCDR (windows)))->frame))
2188 windows = XCDR (windows);
2190 /* Now we can safely delete the frame. */
2191 Fdelete_frame (w->frame, Qnil);
2193 else if (NILP (w->parent))
2195 /* If we're deleting the buffer displayed in the
2196 only window on the frame, find a new buffer to
2197 display there. */
2198 Lisp_Object buffer;
2199 buffer = Fother_buffer (obj, Qnil, w->frame);
2200 Fset_window_buffer (window, buffer, Qnil);
2201 if (EQ (window, selected_window))
2202 Fset_buffer (w->buffer);
2204 else
2205 Fdelete_window (window);
2207 break;
2209 case GET_LARGEST_WINDOW:
2210 { /* nil `obj' means to ignore dedicated windows. */
2211 /* Ignore dedicated windows and minibuffers. */
2212 if (MINI_WINDOW_P (w) || (NILP (obj) && !NILP (w->dedicated)))
2213 break;
2215 if (NILP (best_window))
2216 best_window = window;
2217 else
2219 struct window *b = XWINDOW (best_window);
2220 if (XFASTINT (w->total_lines) * XFASTINT (w->total_cols)
2221 > XFASTINT (b->total_lines) * XFASTINT (b->total_cols))
2222 best_window = window;
2225 break;
2227 case UNSHOW_BUFFER:
2228 if (EQ (w->buffer, obj))
2230 Lisp_Object buffer;
2231 struct frame *f = XFRAME (w->frame);
2233 /* Find another buffer to show in this window. */
2234 buffer = Fother_buffer (obj, Qnil, w->frame);
2236 /* If this window is dedicated, and in a frame of its own,
2237 kill the frame. */
2238 if (EQ (window, FRAME_ROOT_WINDOW (f))
2239 && !NILP (w->dedicated)
2240 && other_visible_frames (f))
2242 /* Skip the other windows on this frame.
2243 There might be one, the minibuffer! */
2244 while (CONSP (XCDR (windows))
2245 && EQ (XWINDOW (XCAR (windows))->frame,
2246 XWINDOW (XCAR (XCDR (windows)))->frame))
2247 windows = XCDR (windows);
2249 /* Now we can safely delete the frame. */
2250 Fdelete_frame (w->frame, Qnil);
2252 else if (!NILP (w->dedicated) && !NILP (w->parent))
2254 Lisp_Object window;
2255 XSETWINDOW (window, w);
2256 /* If this window is dedicated and not the only window
2257 in its frame, then kill it. */
2258 Fdelete_window (window);
2260 else
2262 /* Otherwise show a different buffer in the window. */
2263 w->dedicated = Qnil;
2264 Fset_window_buffer (window, buffer, Qnil);
2265 if (EQ (window, selected_window))
2266 Fset_buffer (w->buffer);
2269 break;
2271 case REDISPLAY_BUFFER_WINDOWS:
2272 if (EQ (w->buffer, obj))
2274 mark_window_display_accurate (window, 0);
2275 w->update_mode_line = Qt;
2276 XBUFFER (obj)->prevent_redisplay_optimizations_p = 1;
2277 ++update_mode_lines;
2278 best_window = window;
2280 break;
2282 /* Check for a window that has a killed buffer. */
2283 case CHECK_ALL_WINDOWS:
2284 if (! NILP (w->buffer)
2285 && NILP (XBUFFER (w->buffer)->name))
2286 abort ();
2287 break;
2289 case WINDOW_LOOP_UNUSED:
2290 break;
2294 UNGCPRO;
2295 return best_window;
2298 /* Used for debugging. Abort if any window has a dead buffer. */
2300 void
2301 check_all_windows ()
2303 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
2306 DEFUN ("get-lru-window", Fget_lru_window, Sget_lru_window, 0, 2, 0,
2307 doc: /* Return the window least recently selected or used for display.
2308 Return a full-width window if possible.
2309 A minibuffer window is never a candidate.
2310 A dedicated window is never a candidate, unless DEDICATED is non-nil,
2311 so if all windows are dedicated, the value is nil.
2312 If optional argument FRAME is `visible', search all visible frames.
2313 If FRAME is 0, search all visible and iconified frames.
2314 If FRAME is t, search all frames.
2315 If FRAME is nil, search only the selected frame.
2316 If FRAME is a frame, search only that frame. */)
2317 (frame, dedicated)
2318 Lisp_Object frame, dedicated;
2320 register Lisp_Object w;
2321 /* First try for a window that is full-width */
2322 w = window_loop (GET_LRU_WINDOW,
2323 NILP (dedicated) ? make_number (1) : make_number (3),
2324 0, frame);
2325 if (!NILP (w) && !EQ (w, selected_window))
2326 return w;
2327 /* If none of them, try the rest */
2328 return window_loop (GET_LRU_WINDOW,
2329 NILP (dedicated) ? make_number (0) : make_number (2),
2330 0, frame);
2333 DEFUN ("get-largest-window", Fget_largest_window, Sget_largest_window, 0, 2, 0,
2334 doc: /* Return the largest window in area.
2335 A minibuffer window is never a candidate.
2336 A dedicated window is never a candidate unless DEDICATED is non-nil,
2337 so if all windows are dedicated, the value is nil.
2338 If optional argument FRAME is `visible', search all visible frames.
2339 If FRAME is 0, search all visible and iconified frames.
2340 If FRAME is t, search all frames.
2341 If FRAME is nil, search only the selected frame.
2342 If FRAME is a frame, search only that frame. */)
2343 (frame, dedicated)
2344 Lisp_Object frame, dedicated;
2346 return window_loop (GET_LARGEST_WINDOW, dedicated, 0,
2347 frame);
2350 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 1, 2, 0,
2351 doc: /* Return a window currently displaying BUFFER, or nil if none.
2352 BUFFER can be a buffer or a buffer name.
2353 If optional argument FRAME is `visible', search all visible frames.
2354 If optional argument FRAME is 0, search all visible and iconified frames.
2355 If FRAME is t, search all frames.
2356 If FRAME is nil, search only the selected frame.
2357 If FRAME is a frame, search only that frame. */)
2358 (buffer, frame)
2359 Lisp_Object buffer, frame;
2361 buffer = Fget_buffer (buffer);
2362 if (BUFFERP (buffer))
2363 return window_loop (GET_BUFFER_WINDOW, buffer, 1, frame);
2364 else
2365 return Qnil;
2368 DEFUN ("delete-other-windows", Fdelete_other_windows, Sdelete_other_windows,
2369 0, 1, "",
2370 doc: /* Make WINDOW (or the selected window) fill its frame.
2371 Only the frame WINDOW is on is affected.
2372 This function tries to reduce display jumps
2373 by keeping the text previously visible in WINDOW
2374 in the same place on the frame. Doing this depends on
2375 the value of (window-start WINDOW), so if calling this function
2376 in a program gives strange scrolling, make sure the window-start
2377 value is reasonable when this function is called. */)
2378 (window)
2379 Lisp_Object window;
2381 struct window *w;
2382 int startpos;
2383 int top, new_top;
2385 if (NILP (window))
2386 window = selected_window;
2387 else
2388 CHECK_LIVE_WINDOW (window);
2389 w = XWINDOW (window);
2391 startpos = marker_position (w->start);
2392 top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2394 if (MINI_WINDOW_P (w) && top > 0)
2395 error ("Can't expand minibuffer to full frame");
2397 window_loop (DELETE_OTHER_WINDOWS, window, 0, WINDOW_FRAME (w));
2399 /* Try to minimize scrolling, by setting the window start to the point
2400 will cause the text at the old window start to be at the same place
2401 on the frame. But don't try to do this if the window start is
2402 outside the visible portion (as might happen when the display is
2403 not current, due to typeahead). */
2404 new_top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2405 if (new_top != top
2406 && startpos >= BUF_BEGV (XBUFFER (w->buffer))
2407 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
2409 struct position pos;
2410 struct buffer *obuf = current_buffer;
2412 Fset_buffer (w->buffer);
2413 /* This computation used to temporarily move point, but that can
2414 have unwanted side effects due to text properties. */
2415 pos = *vmotion (startpos, -top, w);
2417 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
2418 w->window_end_valid = Qnil;
2419 w->start_at_line_beg = ((pos.bytepos == BEGV_BYTE
2420 || FETCH_BYTE (pos.bytepos - 1) == '\n') ? Qt
2421 : Qnil);
2422 /* We need to do this, so that the window-scroll-functions
2423 get called. */
2424 w->optional_new_start = Qt;
2426 set_buffer_internal (obuf);
2429 return Qnil;
2432 DEFUN ("delete-windows-on", Fdelete_windows_on, Sdelete_windows_on,
2433 1, 2, "bDelete windows on (buffer): ",
2434 doc: /* Delete all windows showing BUFFER.
2435 BUFFER must be a buffer or the name of an existing buffer.
2436 Optional second argument FRAME controls which frames are affected.
2437 If optional argument FRAME is `visible', search all visible frames.
2438 If FRAME is 0, search all visible and iconified frames.
2439 If FRAME is nil, search all frames.
2440 If FRAME is t, search only the selected frame.
2441 If FRAME is a frame, search only that frame. */)
2442 (buffer, frame)
2443 Lisp_Object buffer, frame;
2445 /* FRAME uses t and nil to mean the opposite of what window_loop
2446 expects. */
2447 if (NILP (frame))
2448 frame = Qt;
2449 else if (EQ (frame, Qt))
2450 frame = Qnil;
2452 if (!NILP (buffer))
2454 buffer = Fget_buffer (buffer);
2455 CHECK_BUFFER (buffer);
2456 window_loop (DELETE_BUFFER_WINDOWS, buffer, 0, frame);
2459 return Qnil;
2462 DEFUN ("replace-buffer-in-windows", Freplace_buffer_in_windows,
2463 Sreplace_buffer_in_windows,
2464 1, 1, "bReplace buffer in windows: ",
2465 doc: /* Replace BUFFER with some other buffer in all windows showing it.
2466 BUFFER may be a buffer or the name of an existing buffer. */)
2467 (buffer)
2468 Lisp_Object buffer;
2470 if (!NILP (buffer))
2472 buffer = Fget_buffer (buffer);
2473 CHECK_BUFFER (buffer);
2474 window_loop (UNSHOW_BUFFER, buffer, 0, Qt);
2476 return Qnil;
2479 /* Replace BUFFER with some other buffer in all windows
2480 of all frames, even those on other keyboards. */
2482 void
2483 replace_buffer_in_all_windows (buffer)
2484 Lisp_Object buffer;
2486 #ifdef MULTI_KBOARD
2487 Lisp_Object tail, frame;
2489 /* A single call to window_loop won't do the job
2490 because it only considers frames on the current keyboard.
2491 So loop manually over frames, and handle each one. */
2492 FOR_EACH_FRAME (tail, frame)
2493 window_loop (UNSHOW_BUFFER, buffer, 1, frame);
2494 #else
2495 window_loop (UNSHOW_BUFFER, buffer, 1, Qt);
2496 #endif
2499 /* Set the height of WINDOW and all its inferiors. */
2501 /* The smallest acceptable dimensions for a window. Anything smaller
2502 might crash Emacs. */
2504 #define MIN_SAFE_WINDOW_WIDTH (2)
2505 #define MIN_SAFE_WINDOW_HEIGHT (1)
2507 /* Make sure that window_min_height and window_min_width are
2508 not too small; if they are, set them to safe minima. */
2510 static void
2511 check_min_window_sizes ()
2513 /* Smaller values might permit a crash. */
2514 if (window_min_width < MIN_SAFE_WINDOW_WIDTH)
2515 window_min_width = MIN_SAFE_WINDOW_WIDTH;
2516 if (window_min_height < MIN_SAFE_WINDOW_HEIGHT)
2517 window_min_height = MIN_SAFE_WINDOW_HEIGHT;
2520 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
2521 minimum allowable size. */
2523 void
2524 check_frame_size (frame, rows, cols)
2525 FRAME_PTR frame;
2526 int *rows, *cols;
2528 /* For height, we have to see:
2529 how many windows the frame has at minimum (one or two),
2530 and whether it has a menu bar or other special stuff at the top. */
2531 int min_height
2532 = ((FRAME_MINIBUF_ONLY_P (frame) || ! FRAME_HAS_MINIBUF_P (frame))
2533 ? MIN_SAFE_WINDOW_HEIGHT
2534 : 2 * MIN_SAFE_WINDOW_HEIGHT);
2536 if (FRAME_TOP_MARGIN (frame) > 0)
2537 min_height += FRAME_TOP_MARGIN (frame);
2539 if (*rows < min_height)
2540 *rows = min_height;
2541 if (*cols < MIN_SAFE_WINDOW_WIDTH)
2542 *cols = MIN_SAFE_WINDOW_WIDTH;
2546 /* Value is non-zero if window W is fixed-size. WIDTH_P non-zero means
2547 check if W's width can be changed, otherwise check W's height.
2548 CHECK_SIBLINGS_P non-zero means check resizablity of WINDOW's
2549 siblings, too. If none of the siblings is resizable, WINDOW isn't
2550 either. */
2552 static int
2553 window_fixed_size_p (w, width_p, check_siblings_p)
2554 struct window *w;
2555 int width_p, check_siblings_p;
2557 int fixed_p;
2558 struct window *c;
2560 if (!NILP (w->hchild))
2562 c = XWINDOW (w->hchild);
2564 if (width_p)
2566 /* A horiz. combination is fixed-width if all of if its
2567 children are. */
2568 while (c && window_fixed_size_p (c, width_p, 0))
2569 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2570 fixed_p = c == NULL;
2572 else
2574 /* A horiz. combination is fixed-height if one of if its
2575 children is. */
2576 while (c && !window_fixed_size_p (c, width_p, 0))
2577 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2578 fixed_p = c != NULL;
2581 else if (!NILP (w->vchild))
2583 c = XWINDOW (w->vchild);
2585 if (width_p)
2587 /* A vert. combination is fixed-width if one of if its
2588 children is. */
2589 while (c && !window_fixed_size_p (c, width_p, 0))
2590 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2591 fixed_p = c != NULL;
2593 else
2595 /* A vert. combination is fixed-height if all of if its
2596 children are. */
2597 while (c && window_fixed_size_p (c, width_p, 0))
2598 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2599 fixed_p = c == NULL;
2602 else if (BUFFERP (w->buffer))
2604 struct buffer *old = current_buffer;
2605 Lisp_Object val;
2607 current_buffer = XBUFFER (w->buffer);
2608 val = find_symbol_value (Qwindow_size_fixed);
2609 current_buffer = old;
2611 fixed_p = 0;
2612 if (!EQ (val, Qunbound))
2614 fixed_p = !NILP (val);
2616 if (fixed_p
2617 && ((EQ (val, Qheight) && width_p)
2618 || (EQ (val, Qwidth) && !width_p)))
2619 fixed_p = 0;
2622 /* Can't tell if this one is resizable without looking at
2623 siblings. If all siblings are fixed-size this one is too. */
2624 if (!fixed_p && check_siblings_p && WINDOWP (w->parent))
2626 Lisp_Object child;
2628 for (child = w->prev; !NILP (child); child = XWINDOW (child)->prev)
2629 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2630 break;
2632 if (NILP (child))
2633 for (child = w->next; !NILP (child); child = XWINDOW (child)->next)
2634 if (!window_fixed_size_p (XWINDOW (child), width_p, 0))
2635 break;
2637 if (NILP (child))
2638 fixed_p = 1;
2641 else
2642 fixed_p = 1;
2644 return fixed_p;
2648 /* Return the minimum size of window W, not taking fixed-width windows
2649 into account. WIDTH_P non-zero means return the minimum width,
2650 otherwise return the minimum height. If W is a combination window,
2651 compute the minimum size from the minimum sizes of W's children. */
2653 static int
2654 window_min_size_1 (w, width_p)
2655 struct window *w;
2656 int width_p;
2658 struct window *c;
2659 int size;
2661 if (!NILP (w->hchild))
2663 c = XWINDOW (w->hchild);
2664 size = 0;
2666 if (width_p)
2668 /* The min width of a horizontal combination is
2669 the sum of the min widths of its children. */
2670 while (c)
2672 size += window_min_size_1 (c, width_p);
2673 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2676 else
2678 /* The min height a horizontal combination equals
2679 the maximum of all min height of its children. */
2680 while (c)
2682 int min_size = window_min_size_1 (c, width_p);
2683 size = max (min_size, size);
2684 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2688 else if (!NILP (w->vchild))
2690 c = XWINDOW (w->vchild);
2691 size = 0;
2693 if (width_p)
2695 /* The min width of a vertical combination is
2696 the maximum of the min widths of its children. */
2697 while (c)
2699 int min_size = window_min_size_1 (c, width_p);
2700 size = max (min_size, size);
2701 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2704 else
2706 /* The min height of a vertical combination equals
2707 the sum of the min height of its children. */
2708 while (c)
2710 size += window_min_size_1 (c, width_p);
2711 c = WINDOWP (c->next) ? XWINDOW (c->next) : NULL;
2715 else
2717 if (width_p)
2718 size = max (window_min_width,
2719 (MIN_SAFE_WINDOW_WIDTH
2720 + WINDOW_FRINGE_COLS (w)
2721 + WINDOW_SCROLL_BAR_COLS (w)));
2722 else
2724 if (MINI_WINDOW_P (w)
2725 || (!WINDOW_WANTS_MODELINE_P (w)
2726 && !WINDOW_WANTS_HEADER_LINE_P (w)))
2727 size = 1;
2728 else
2729 size = window_min_height;
2733 return size;
2737 /* Return the minimum size of window W, taking fixed-size windows into
2738 account. WIDTH_P non-zero means return the minimum width,
2739 otherwise return the minimum height. IGNORE_FIXED_P non-zero means
2740 ignore if W is fixed-size. Set *FIXED to 1 if W is fixed-size
2741 unless FIXED is null. */
2743 static int
2744 window_min_size (w, width_p, ignore_fixed_p, fixed)
2745 struct window *w;
2746 int width_p, ignore_fixed_p, *fixed;
2748 int size, fixed_p;
2750 if (ignore_fixed_p)
2751 fixed_p = 0;
2752 else
2753 fixed_p = window_fixed_size_p (w, width_p, 1);
2755 if (fixed)
2756 *fixed = fixed_p;
2758 if (fixed_p)
2759 size = width_p ? XFASTINT (w->total_cols) : XFASTINT (w->total_lines);
2760 else
2761 size = window_min_size_1 (w, width_p);
2763 return size;
2767 /* Adjust the margins of window W if text area is too small.
2768 Return 1 if window width is ok after adjustment; 0 if window
2769 is still too narrow. */
2771 static int
2772 adjust_window_margins (w)
2773 struct window *w;
2775 int box_cols = (WINDOW_TOTAL_COLS (w)
2776 - WINDOW_FRINGE_COLS (w)
2777 - WINDOW_SCROLL_BAR_COLS (w));
2778 int margin_cols = (WINDOW_LEFT_MARGIN_COLS (w)
2779 + WINDOW_RIGHT_MARGIN_COLS (w));
2781 if (box_cols - margin_cols >= MIN_SAFE_WINDOW_WIDTH)
2782 return 1;
2784 if (margin_cols < 0 || box_cols < MIN_SAFE_WINDOW_WIDTH)
2785 return 0;
2787 /* Window's text area is too narrow, but reducing the window
2788 margins will fix that. */
2789 margin_cols = box_cols - MIN_SAFE_WINDOW_WIDTH;
2790 if (WINDOW_RIGHT_MARGIN_COLS (w) > 0)
2792 if (WINDOW_LEFT_MARGIN_COLS (w) > 0)
2793 w->left_margin_cols = w->right_margin_cols
2794 = make_number (margin_cols/2);
2795 else
2796 w->right_margin_cols = make_number (margin_cols);
2798 else
2799 w->left_margin_cols = make_number (margin_cols);
2800 return 1;
2803 /* Calculate new sizes for windows in the list FORWARD when the window size
2804 goes from TOTAL to SIZE. TOTAL must be greater than SIZE.
2805 The number of windows in FORWARD is NCHILDREN, and the number that
2806 can shrink is SHRINKABLE.
2807 The minimum size a window can have is MIN_SIZE.
2808 If we are shrinking fixed windows, RESIZE_FIXED_P is non-zero.
2809 If we are shrinking columns, WIDTH_P is non-zero, otherwise we are
2810 shrinking rows.
2812 This function returns an allocated array of new sizes that the caller
2813 must free. The size -1 means the window is fixed and RESIZE_FIXED_P
2814 is zero. Array index 0 refers to the first window in FORWARD, 1 to
2815 the second, and so on.
2817 This function tries to keep windows at least at the minimum size
2818 and resize other windows before it resizes any window to zero (i.e.
2819 delete that window).
2821 Windows are resized proportional to their size, so bigger windows
2822 shrink more than smaller windows. */
2823 static int *
2824 shrink_windows (total, size, nchildren, shrinkable,
2825 min_size, resize_fixed_p, forward, width_p)
2826 int total, size, nchildren, shrinkable, min_size;
2827 int resize_fixed_p, width_p;
2828 Lisp_Object forward;
2830 int available_resize = 0;
2831 int *new_sizes;
2832 struct window *c;
2833 Lisp_Object child;
2834 int smallest = total;
2835 int total_removed = 0;
2836 int total_shrink = total - size;
2837 int i;
2839 new_sizes = xmalloc (sizeof (*new_sizes) * nchildren);
2841 for (i = 0, child = forward; !NILP (child); child = c->next, ++i)
2843 int child_size;
2845 c = XWINDOW (child);
2846 child_size = width_p ? XINT (c->total_cols) : XINT (c->total_lines);
2848 if (! resize_fixed_p && window_fixed_size_p (c, width_p, 0))
2849 new_sizes[i] = -1;
2850 else
2852 new_sizes[i] = child_size;
2853 if (child_size > min_size)
2854 available_resize += child_size - min_size;
2857 /* We might need to shrink some windows to zero. Find the smallest
2858 windows and set them to 0 until we can fulfil the new size. */
2860 while (shrinkable > 1 && size + available_resize < total)
2862 for (i = 0; i < nchildren; ++i)
2863 if (new_sizes[i] > 0 && smallest > new_sizes[i])
2864 smallest = new_sizes[i];
2866 for (i = 0; i < nchildren; ++i)
2867 if (new_sizes[i] == smallest)
2869 /* Resize this window down to zero. */
2870 new_sizes[i] = 0;
2871 if (smallest > min_size)
2872 available_resize -= smallest - min_size;
2873 available_resize += smallest;
2874 --shrinkable;
2875 total_removed += smallest;
2877 /* We don't know what the smallest is now. */
2878 smallest = total;
2880 /* Out of for, just remove one window at the time and
2881 check again if we have enough space. */
2882 break;
2886 /* Now, calculate the new sizes. Try to shrink each window
2887 proportional to its size. */
2888 for (i = 0; i < nchildren; ++i)
2890 if (new_sizes[i] > min_size)
2892 int to_shrink = total_shrink*new_sizes[i]/total;
2893 if (new_sizes[i] - to_shrink < min_size)
2894 to_shrink = new_sizes[i] - min_size;
2895 new_sizes[i] -= to_shrink;
2896 total_removed += to_shrink;
2900 /* Any reminder due to rounding, we just subtract from windows
2901 that are left and still can be shrunk. */
2902 while (total_shrink > total_removed)
2904 int nonzero_sizes = 0;
2905 int nonzero_idx = -1;
2907 for (i = 0; i < nchildren; ++i)
2908 if (new_sizes[i] > 0)
2910 ++nonzero_sizes;
2911 nonzero_idx = i;
2914 for (i = 0; i < nchildren; ++i)
2915 if (new_sizes[i] > min_size)
2917 --new_sizes[i];
2918 ++total_removed;
2920 /* Out of for, just shrink one window at the time and
2921 check again if we have enough space. */
2922 break;
2926 /* Special case, only one window left. */
2927 if (nonzero_sizes == 1)
2928 break;
2931 /* Any surplus due to rounding, we add to windows that are left. */
2932 while (total_shrink < total_removed)
2934 for (i = 0; i < nchildren; ++i)
2936 if (new_sizes[i] != 0 && total_shrink < total_removed)
2938 ++new_sizes[i];
2939 --total_removed;
2940 break;
2945 return new_sizes;
2948 /* Set WINDOW's height or width to SIZE. WIDTH_P non-zero means set
2949 WINDOW's width. Resize WINDOW's children, if any, so that they
2950 keep their proportionate size relative to WINDOW.
2952 If FIRST_ONLY is 1, change only the first of WINDOW's children when
2953 they are in series. If LAST_ONLY is 1, change only the last of
2954 WINDOW's children when they are in series.
2956 Propagate WINDOW's top or left edge position to children. Delete
2957 windows that become too small unless NODELETE_P is non-zero.
2959 If NODELETE_P is 2, that means we do delete windows that are
2960 too small, even if they were too small before! */
2962 static void
2963 size_window (window, size, width_p, nodelete_p, first_only, last_only)
2964 Lisp_Object window;
2965 int size, width_p, nodelete_p;
2966 int first_only, last_only;
2968 struct window *w = XWINDOW (window);
2969 struct window *c;
2970 Lisp_Object child, *forward, *sideward;
2971 int old_size, min_size, safe_min_size;
2973 /* We test nodelete_p != 2 and nodelete_p != 1 below, so it
2974 seems like it's too soon to do this here. ++KFS. */
2975 if (nodelete_p == 2)
2976 nodelete_p = 0;
2978 check_min_window_sizes ();
2979 size = max (0, size);
2981 /* If the window has been "too small" at one point,
2982 don't delete it for being "too small" in the future.
2983 Preserve it as long as that is at all possible. */
2984 if (width_p)
2986 old_size = WINDOW_TOTAL_COLS (w);
2987 min_size = window_min_width;
2988 /* Ensure that there is room for the scroll bar and fringes!
2989 We may reduce display margins though. */
2990 safe_min_size = (MIN_SAFE_WINDOW_WIDTH
2991 + WINDOW_FRINGE_COLS (w)
2992 + WINDOW_SCROLL_BAR_COLS (w));
2994 else
2996 old_size = XINT (w->total_lines);
2997 min_size = window_min_height;
2998 safe_min_size = MIN_SAFE_WINDOW_HEIGHT;
3001 if (old_size < min_size && nodelete_p != 2)
3002 w->too_small_ok = Qt;
3004 /* Maybe delete WINDOW if it's too small. */
3005 if (nodelete_p != 1 && !NILP (w->parent))
3007 if (!MINI_WINDOW_P (w) && !NILP (w->too_small_ok))
3008 min_size = width_p ? MIN_SAFE_WINDOW_WIDTH : MIN_SAFE_WINDOW_HEIGHT;
3009 if (min_size < safe_min_size)
3010 min_size = safe_min_size;
3011 if (size < min_size)
3013 delete_window (window);
3014 return;
3018 /* Set redisplay hints. */
3019 w->last_modified = make_number (0);
3020 w->last_overlay_modified = make_number (0);
3021 windows_or_buffers_changed++;
3022 FRAME_WINDOW_SIZES_CHANGED (XFRAME (w->frame)) = 1;
3024 if (width_p)
3026 sideward = &w->vchild;
3027 forward = &w->hchild;
3028 w->total_cols = make_number (size);
3029 adjust_window_margins (w);
3031 else
3033 sideward = &w->hchild;
3034 forward = &w->vchild;
3035 w->total_lines = make_number (size);
3036 w->orig_total_lines = Qnil;
3039 if (!NILP (*sideward))
3041 /* We have a chain of parallel siblings whose size should all change. */
3042 for (child = *sideward; !NILP (child); child = c->next)
3044 c = XWINDOW (child);
3045 if (width_p)
3046 c->left_col = w->left_col;
3047 else
3048 c->top_line = w->top_line;
3049 size_window (child, size, width_p, nodelete_p,
3050 first_only, last_only);
3053 else if (!NILP (*forward) && last_only)
3055 /* Change the last in a series of siblings. */
3056 Lisp_Object last_child;
3057 int child_size;
3059 for (child = *forward; !NILP (child); child = c->next)
3061 c = XWINDOW (child);
3062 last_child = child;
3065 child_size = XINT (width_p ? c->total_cols : c->total_lines);
3066 size_window (last_child,
3067 size - old_size + child_size,
3068 width_p, nodelete_p, first_only, last_only);
3070 else if (!NILP (*forward) && first_only)
3072 /* Change the first in a series of siblings. */
3073 int child_size;
3075 child = *forward;
3076 c = XWINDOW (child);
3078 if (width_p)
3079 c->left_col = w->left_col;
3080 else
3081 c->top_line = w->top_line;
3083 child_size = XINT (width_p ? c->total_cols : c->total_lines);
3084 size_window (child,
3085 size - old_size + child_size,
3086 width_p, nodelete_p, first_only, last_only);
3088 else if (!NILP (*forward))
3090 int fixed_size, each, extra, n;
3091 int resize_fixed_p, nfixed;
3092 int last_pos, first_pos, nchildren, total;
3093 int *new_sizes = NULL;
3095 /* Determine the fixed-size portion of this window, and the
3096 number of child windows. */
3097 fixed_size = nchildren = nfixed = total = 0;
3098 for (child = *forward; !NILP (child); child = c->next, ++nchildren)
3100 int child_size;
3102 c = XWINDOW (child);
3103 child_size = width_p ? XINT (c->total_cols) : XINT (c->total_lines);
3104 total += child_size;
3106 if (window_fixed_size_p (c, width_p, 0))
3108 fixed_size += child_size;
3109 ++nfixed;
3113 /* If the new size is smaller than fixed_size, or if there
3114 aren't any resizable windows, allow resizing fixed-size
3115 windows. */
3116 resize_fixed_p = nfixed == nchildren || size < fixed_size;
3118 /* Compute how many lines/columns to add/remove to each child. The
3119 value of extra takes care of rounding errors. */
3120 n = resize_fixed_p ? nchildren : nchildren - nfixed;
3121 if (size < total && n > 1)
3122 new_sizes = shrink_windows (total, size, nchildren, n, min_size,
3123 resize_fixed_p, *forward, width_p);
3124 else
3126 each = (size - total) / n;
3127 extra = (size - total) - n * each;
3130 /* Compute new children heights and edge positions. */
3131 first_pos = width_p ? XINT (w->left_col) : XINT (w->top_line);
3132 last_pos = first_pos;
3133 for (n = 0, child = *forward; !NILP (child); child = c->next, ++n)
3135 int new_size, old_size;
3137 c = XWINDOW (child);
3138 old_size = width_p ? XFASTINT (c->total_cols) : XFASTINT (c->total_lines);
3139 new_size = old_size;
3141 /* The top or left edge position of this child equals the
3142 bottom or right edge of its predecessor. */
3143 if (width_p)
3144 c->left_col = make_number (last_pos);
3145 else
3146 c->top_line = make_number (last_pos);
3148 /* If this child can be resized, do it. */
3149 if (resize_fixed_p || !window_fixed_size_p (c, width_p, 0))
3151 new_size = new_sizes ? new_sizes[n] : old_size + each + extra;
3152 extra = 0;
3155 /* Set new height. Note that size_window also propagates
3156 edge positions to children, so it's not a no-op if we
3157 didn't change the child's size. */
3158 size_window (child, new_size, width_p, 1, first_only, last_only);
3160 /* Remember the bottom/right edge position of this child; it
3161 will be used to set the top/left edge of the next child. */
3162 last_pos += new_size;
3165 if (new_sizes) xfree (new_sizes);
3167 /* We should have covered the parent exactly with child windows. */
3168 xassert (size == last_pos - first_pos);
3170 /* Now delete any children that became too small. */
3171 if (!nodelete_p)
3172 for (child = *forward; !NILP (child); child = c->next)
3174 int child_size;
3175 c = XWINDOW (child);
3176 child_size = width_p ? XINT (c->total_cols) : XINT (c->total_lines);
3177 size_window (child, child_size, width_p, 2, first_only, last_only);
3182 /* Set WINDOW's height to HEIGHT, and recursively change the height of
3183 WINDOW's children. NODELETE non-zero means don't delete windows
3184 that become too small in the process. (The caller should check
3185 later and do so if appropriate.) */
3187 void
3188 set_window_height (window, height, nodelete)
3189 Lisp_Object window;
3190 int height;
3191 int nodelete;
3193 size_window (window, height, 0, nodelete, 0, 0);
3197 /* Set WINDOW's width to WIDTH, and recursively change the width of
3198 WINDOW's children. NODELETE non-zero means don't delete windows
3199 that become too small in the process. (The caller should check
3200 later and do so if appropriate.) */
3202 void
3203 set_window_width (window, width, nodelete)
3204 Lisp_Object window;
3205 int width;
3206 int nodelete;
3208 size_window (window, width, 1, nodelete, 0, 0);
3211 /* Change window heights in windows rooted in WINDOW by N lines. */
3213 void
3214 change_window_heights (window, n)
3215 Lisp_Object window;
3216 int n;
3218 struct window *w = XWINDOW (window);
3220 XSETFASTINT (w->top_line, XFASTINT (w->top_line) + n);
3221 XSETFASTINT (w->total_lines, XFASTINT (w->total_lines) - n);
3223 if (INTEGERP (w->orig_top_line))
3224 XSETFASTINT (w->orig_top_line, XFASTINT (w->orig_top_line) + n);
3225 if (INTEGERP (w->orig_total_lines))
3226 XSETFASTINT (w->orig_total_lines, XFASTINT (w->orig_total_lines) - n);
3228 /* Handle just the top child in a vertical split. */
3229 if (!NILP (w->vchild))
3230 change_window_heights (w->vchild, n);
3232 /* Adjust all children in a horizontal split. */
3233 for (window = w->hchild; !NILP (window); window = w->next)
3235 w = XWINDOW (window);
3236 change_window_heights (window, n);
3241 int window_select_count;
3243 Lisp_Object
3244 Fset_window_buffer_unwind (obuf)
3245 Lisp_Object obuf;
3247 Fset_buffer (obuf);
3248 return Qnil;
3251 EXFUN (Fset_window_fringes, 4);
3252 EXFUN (Fset_window_scroll_bars, 4);
3254 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
3255 means it's allowed to run hooks. See make_frame for a case where
3256 it's not allowed. KEEP_MARGINS_P non-zero means that the current
3257 margins, fringes, and scroll-bar settings of the window are not
3258 reset from the buffer's local settings. */
3260 void
3261 set_window_buffer (window, buffer, run_hooks_p, keep_margins_p)
3262 Lisp_Object window, buffer;
3263 int run_hooks_p, keep_margins_p;
3265 struct window *w = XWINDOW (window);
3266 struct buffer *b = XBUFFER (buffer);
3267 int count = SPECPDL_INDEX ();
3268 #ifdef HAVE_WINDOW_SYSTEM
3269 struct frame *f = XFRAME (w->frame);
3270 Display_Info *dpyinfo;
3271 #endif
3273 w->buffer = buffer;
3275 if (EQ (window, selected_window))
3276 b->last_selected_window = window;
3278 /* Let redisplay errors through. */
3279 b->display_error_modiff = 0;
3281 /* Update time stamps of buffer display. */
3282 if (INTEGERP (b->display_count))
3283 XSETINT (b->display_count, XINT (b->display_count) + 1);
3284 b->display_time = Fcurrent_time ();
3286 XSETFASTINT (w->window_end_pos, 0);
3287 XSETFASTINT (w->window_end_vpos, 0);
3288 bzero (&w->last_cursor, sizeof w->last_cursor);
3289 w->window_end_valid = Qnil;
3290 w->hscroll = w->min_hscroll = make_number (0);
3291 w->vscroll = 0;
3292 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3293 set_marker_restricted (w->start,
3294 make_number (b->last_window_start),
3295 buffer);
3296 w->start_at_line_beg = Qnil;
3297 w->force_start = Qnil;
3298 XSETFASTINT (w->last_modified, 0);
3299 XSETFASTINT (w->last_overlay_modified, 0);
3300 windows_or_buffers_changed++;
3302 /* We must select BUFFER for running the window-scroll-functions.
3303 If WINDOW is selected, switch permanently.
3304 Otherwise, switch but go back to the ambient buffer afterward. */
3305 if (EQ (window, selected_window))
3306 Fset_buffer (buffer);
3307 /* We can't check ! NILP (Vwindow_scroll_functions) here
3308 because that might itself be a local variable. */
3309 else if (window_initialized)
3311 record_unwind_protect (Fset_window_buffer_unwind, Fcurrent_buffer ());
3312 Fset_buffer (buffer);
3315 if (!keep_margins_p)
3317 /* Set left and right marginal area width etc. from buffer. */
3319 /* This may call adjust_window_margins three times, so
3320 temporarily disable window margins. */
3321 Lisp_Object save_left = w->left_margin_cols;
3322 Lisp_Object save_right = w->right_margin_cols;
3324 w->left_margin_cols = w->right_margin_cols = Qnil;
3326 Fset_window_fringes (window,
3327 b->left_fringe_width, b->right_fringe_width,
3328 b->fringes_outside_margins);
3330 Fset_window_scroll_bars (window,
3331 b->scroll_bar_width,
3332 b->vertical_scroll_bar_type, Qnil);
3334 w->left_margin_cols = save_left;
3335 w->right_margin_cols = save_right;
3337 Fset_window_margins (window,
3338 b->left_margin_cols, b->right_margin_cols);
3341 if (run_hooks_p)
3343 if (! NILP (Vwindow_scroll_functions))
3344 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3345 Fmarker_position (w->start));
3347 if (! NILP (Vwindow_configuration_change_hook)
3348 && ! NILP (Vrun_hooks))
3349 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
3352 #ifdef HAVE_WINDOW_SYSTEM
3353 BLOCK_INPUT;
3354 if (f && FRAME_X_OUTPUT (f)
3355 && (dpyinfo = FRAME_X_DISPLAY_INFO (f))
3356 && EQ (window, dpyinfo->mouse_face_window))
3357 clear_mouse_face (dpyinfo);
3358 UNBLOCK_INPUT;
3359 #endif
3361 unbind_to (count, Qnil);
3365 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 3, 0,
3366 doc: /* Make WINDOW display BUFFER as its contents.
3367 BUFFER can be a buffer or the name of an existing buffer.
3368 Optional third arg KEEP-MARGINS non-nil means that WINDOW's current
3369 display margins, fringe widths, and scroll bar settings are maintained;
3370 the default is to reset these from BUFFER's local settings or the frame
3371 defaults.
3373 This function runs the hook `window-scroll-functions'. */)
3374 (window, buffer, keep_margins)
3375 register Lisp_Object window, buffer, keep_margins;
3377 register Lisp_Object tem;
3378 register struct window *w = decode_window (window);
3380 XSETWINDOW (window, w);
3381 buffer = Fget_buffer (buffer);
3382 CHECK_BUFFER (buffer);
3384 if (NILP (XBUFFER (buffer)->name))
3385 error ("Attempt to display deleted buffer");
3387 tem = w->buffer;
3388 if (NILP (tem))
3389 error ("Window is deleted");
3390 else if (! EQ (tem, Qt)) /* w->buffer is t when the window
3391 is first being set up. */
3393 if (!NILP (w->dedicated) && !EQ (tem, buffer))
3394 error ("Window is dedicated to `%s'",
3395 SDATA (XBUFFER (tem)->name));
3397 unshow_buffer (w);
3400 set_window_buffer (window, buffer, 1, !NILP (keep_margins));
3401 return Qnil;
3404 /* Note that selected_window can be nil
3405 when this is called from Fset_window_configuration. */
3407 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
3408 doc: /* Select WINDOW. Most editing will apply to WINDOW's buffer.
3409 If WINDOW is not already selected, make WINDOW's buffer current
3410 and make WINDOW the frame's selected window. Return WINDOW.
3411 Optional second arg NORECORD non-nil means
3412 do not put this buffer at the front of the list of recently selected ones.
3414 Note that the main editor command loop
3415 selects the buffer of the selected window before each command. */)
3416 (window, norecord)
3417 register Lisp_Object window, norecord;
3419 register struct window *w;
3420 register struct window *ow;
3421 struct frame *sf;
3423 CHECK_LIVE_WINDOW (window);
3425 w = XWINDOW (window);
3426 w->frozen_window_start_p = 0;
3428 ++window_select_count;
3429 XSETFASTINT (w->use_time, window_select_count);
3430 if (EQ (window, selected_window))
3431 return window;
3433 /* Store the current buffer's actual point into the
3434 old selected window. It belongs to that window,
3435 and when the window is not selected, must be in the window. */
3436 if (!NILP (selected_window))
3438 ow = XWINDOW (selected_window);
3439 if (! NILP (ow->buffer))
3440 set_marker_both (ow->pointm, ow->buffer,
3441 BUF_PT (XBUFFER (ow->buffer)),
3442 BUF_PT_BYTE (XBUFFER (ow->buffer)));
3445 selected_window = window;
3446 sf = SELECTED_FRAME ();
3447 if (XFRAME (WINDOW_FRAME (w)) != sf)
3449 XFRAME (WINDOW_FRAME (w))->selected_window = window;
3450 /* Use this rather than Fhandle_switch_frame
3451 so that FRAME_FOCUS_FRAME is moved appropriately as we
3452 move around in the state where a minibuffer in a separate
3453 frame is active. */
3454 Fselect_frame (WINDOW_FRAME (w));
3456 else
3457 sf->selected_window = window;
3459 if (NILP (norecord))
3460 record_buffer (w->buffer);
3461 Fset_buffer (w->buffer);
3463 XBUFFER (w->buffer)->last_selected_window = window;
3465 /* Go to the point recorded in the window.
3466 This is important when the buffer is in more
3467 than one window. It also matters when
3468 redisplay_window has altered point after scrolling,
3469 because it makes the change only in the window. */
3471 register int new_point = marker_position (w->pointm);
3472 if (new_point < BEGV)
3473 SET_PT (BEGV);
3474 else if (new_point > ZV)
3475 SET_PT (ZV);
3476 else
3477 SET_PT (new_point);
3480 windows_or_buffers_changed++;
3481 return window;
3484 static Lisp_Object
3485 select_window_norecord (window)
3486 Lisp_Object window;
3488 return Fselect_window (window, Qt);
3491 /* Deiconify the frame containing the window WINDOW,
3492 unless it is the selected frame;
3493 then return WINDOW.
3495 The reason for the exception for the selected frame
3496 is that it seems better not to change the selected frames visibility
3497 merely because of displaying a different buffer in it.
3498 The deiconification is useful when a buffer gets shown in
3499 another frame that you were not using lately. */
3501 static Lisp_Object
3502 display_buffer_1 (window)
3503 Lisp_Object window;
3505 Lisp_Object frame = XWINDOW (window)->frame;
3506 FRAME_PTR f = XFRAME (frame);
3508 FRAME_SAMPLE_VISIBILITY (f);
3510 if (EQ (frame, selected_frame))
3511 ; /* Assume the selected frame is already visible enough. */
3512 else if (minibuf_level > 0
3513 && MINI_WINDOW_P (XWINDOW (selected_window))
3514 && WINDOW_LIVE_P (minibuf_selected_window)
3515 && EQ (frame, WINDOW_FRAME (XWINDOW (minibuf_selected_window))))
3516 ; /* Assume the frame from which we invoked the minibuffer is visible. */
3517 else
3519 if (FRAME_ICONIFIED_P (f))
3520 Fmake_frame_visible (frame);
3521 else if (FRAME_VISIBLE_P (f))
3522 Fraise_frame (frame);
3525 return window;
3528 DEFUN ("special-display-p", Fspecial_display_p, Sspecial_display_p, 1, 1, 0,
3529 doc: /* Returns non-nil if a buffer named BUFFER-NAME gets a special frame.
3530 If the value is t, `display-buffer' or `pop-to-buffer' would create a
3531 special frame for that buffer using the default frame parameters.
3533 If the value is a list, it is a list of frame parameters that would be used
3534 to make a frame for that buffer.
3535 The variables `special-display-buffer-names'
3536 and `special-display-regexps' control this. */)
3537 (buffer_name)
3538 Lisp_Object buffer_name;
3540 Lisp_Object tem;
3542 CHECK_STRING (buffer_name);
3544 tem = Fmember (buffer_name, Vspecial_display_buffer_names);
3545 if (!NILP (tem))
3546 return Qt;
3548 tem = Fassoc (buffer_name, Vspecial_display_buffer_names);
3549 if (!NILP (tem))
3550 return XCDR (tem);
3552 for (tem = Vspecial_display_regexps; CONSP (tem); tem = XCDR (tem))
3554 Lisp_Object car = XCAR (tem);
3555 if (STRINGP (car)
3556 && fast_string_match (car, buffer_name) >= 0)
3557 return Qt;
3558 else if (CONSP (car)
3559 && STRINGP (XCAR (car))
3560 && fast_string_match (XCAR (car), buffer_name) >= 0)
3561 return XCDR (car);
3563 return Qnil;
3566 DEFUN ("same-window-p", Fsame_window_p, Ssame_window_p, 1, 1, 0,
3567 doc: /* Returns non-nil if a buffer named BUFFER-NAME would use the same window.
3568 More precisely, if `display-buffer' or `pop-to-buffer' would display
3569 that buffer in the selected window rather than (as usual) in some other window.
3570 See `same-window-buffer-names' and `same-window-regexps'. */)
3571 (buffer_name)
3572 Lisp_Object buffer_name;
3574 Lisp_Object tem;
3576 CHECK_STRING (buffer_name);
3578 tem = Fmember (buffer_name, Vsame_window_buffer_names);
3579 if (!NILP (tem))
3580 return Qt;
3582 tem = Fassoc (buffer_name, Vsame_window_buffer_names);
3583 if (!NILP (tem))
3584 return Qt;
3586 for (tem = Vsame_window_regexps; CONSP (tem); tem = XCDR (tem))
3588 Lisp_Object car = XCAR (tem);
3589 if (STRINGP (car)
3590 && fast_string_match (car, buffer_name) >= 0)
3591 return Qt;
3592 else if (CONSP (car)
3593 && STRINGP (XCAR (car))
3594 && fast_string_match (XCAR (car), buffer_name) >= 0)
3595 return Qt;
3597 return Qnil;
3600 /* Use B so the default is (other-buffer). */
3601 DEFUN ("display-buffer", Fdisplay_buffer, Sdisplay_buffer, 1, 3,
3602 "BDisplay buffer: \nP",
3603 doc: /* Make BUFFER appear in some window but don't select it.
3604 BUFFER must be the name of an existing buffer, or, when called from Lisp,
3605 a buffer.
3606 If BUFFER is shown already in some window, just use that one,
3607 unless the window is the selected window and the optional second
3608 argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).
3609 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.
3610 Returns the window displaying BUFFER.
3611 If `display-buffer-reuse-frames' is non-nil, and another frame is currently
3612 displaying BUFFER, then simply raise that frame.
3614 The variables `special-display-buffer-names',
3615 `special-display-regexps', `same-window-buffer-names', and
3616 `same-window-regexps' customize how certain buffer names are handled.
3617 The latter two take effect only if NOT-THIS-WINDOW is nil.
3619 If optional argument FRAME is `visible', search all visible frames.
3620 If FRAME is 0, search all visible and iconified frames.
3621 If FRAME is t, search all frames.
3622 If FRAME is a frame, search only that frame.
3623 If FRAME is nil, search only the selected frame
3624 (actually the last nonminibuffer frame),
3625 unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,
3626 which means search visible and iconified frames.
3628 If a full-width window on a splittable frame is available to display
3629 the buffer, it may be split, subject to the value of the variable
3630 `split-height-threshold'.
3632 If `even-window-heights' is non-nil, window heights will be evened out
3633 if displaying the buffer causes two vertically adjacent windows to be
3634 displayed. */)
3635 (buffer, not_this_window, frame)
3636 register Lisp_Object buffer, not_this_window, frame;
3638 register Lisp_Object window, tem, swp;
3639 struct frame *f;
3641 swp = Qnil;
3642 buffer = Fget_buffer (buffer);
3643 CHECK_BUFFER (buffer);
3645 if (!NILP (Vdisplay_buffer_function))
3646 return call2 (Vdisplay_buffer_function, buffer, not_this_window);
3648 if (NILP (not_this_window)
3649 && XBUFFER (XWINDOW (selected_window)->buffer) == XBUFFER (buffer))
3650 return display_buffer_1 (selected_window);
3652 /* See if the user has specified this buffer should appear
3653 in the selected window. */
3654 if (NILP (not_this_window))
3656 swp = Fsame_window_p (XBUFFER (buffer)->name);
3657 if (!NILP (swp) && !no_switch_window (selected_window))
3659 Fswitch_to_buffer (buffer, Qnil);
3660 return display_buffer_1 (selected_window);
3664 /* If the user wants pop-up-frames or display-buffer-reuse-frames,
3665 look for a window showing BUFFER on any visible or iconified frame.
3666 Otherwise search only the current frame. */
3667 if (! NILP (frame))
3668 tem = frame;
3669 else if (pop_up_frames
3670 || display_buffer_reuse_frames
3671 || last_nonminibuf_frame == 0)
3672 XSETFASTINT (tem, 0);
3673 else
3674 XSETFRAME (tem, last_nonminibuf_frame);
3676 window = Fget_buffer_window (buffer, tem);
3677 if (!NILP (window)
3678 && (NILP (not_this_window) || !EQ (window, selected_window)))
3679 return display_buffer_1 (window);
3681 /* Certain buffer names get special handling. */
3682 if (!NILP (Vspecial_display_function) && NILP (swp))
3684 tem = Fspecial_display_p (XBUFFER (buffer)->name);
3685 if (EQ (tem, Qt))
3686 return call1 (Vspecial_display_function, buffer);
3687 if (CONSP (tem))
3688 return call2 (Vspecial_display_function, buffer, tem);
3691 /* If there are no frames open that have more than a minibuffer,
3692 we need to create a new frame. */
3693 if (pop_up_frames || last_nonminibuf_frame == 0)
3695 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3696 Fset_window_buffer (window, buffer, Qnil);
3697 return display_buffer_1 (window);
3700 f = SELECTED_FRAME ();
3701 if (pop_up_windows
3702 || FRAME_MINIBUF_ONLY_P (f)
3703 /* If the current frame is a special display frame,
3704 don't try to reuse its windows. */
3705 || !NILP (XWINDOW (FRAME_ROOT_WINDOW (f))->dedicated))
3707 Lisp_Object frames;
3709 frames = Qnil;
3710 if (FRAME_MINIBUF_ONLY_P (f))
3711 XSETFRAME (frames, last_nonminibuf_frame);
3712 /* Don't try to create a window if we would get an error. */
3713 if (split_height_threshold < window_min_height << 1)
3714 split_height_threshold = window_min_height << 1;
3716 /* Note that both Fget_largest_window and Fget_lru_window
3717 ignore minibuffers and dedicated windows.
3718 This means they can return nil. */
3720 /* If the frame we would try to split cannot be split,
3721 try other frames. */
3722 if (FRAME_NO_SPLIT_P (NILP (frames) ? f : last_nonminibuf_frame))
3724 /* Try visible frames first. */
3725 window = Fget_largest_window (Qvisible, Qt);
3726 /* If that didn't work, try iconified frames. */
3727 if (NILP (window))
3728 window = Fget_largest_window (make_number (0), Qt);
3729 #if 0 /* Don't try windows on other displays. */
3730 if (NILP (window))
3731 window = Fget_largest_window (Qt, Qt);
3732 #endif
3734 else
3735 window = Fget_largest_window (frames, Qt);
3737 /* If we got a tall enough full-width window that can be split,
3738 split it. */
3739 if (!NILP (window)
3740 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3741 && window_height (window) >= split_height_threshold
3742 && WINDOW_FULL_WIDTH_P (XWINDOW (window)))
3743 window = Fsplit_window (window, Qnil, Qnil);
3744 else
3746 Lisp_Object upper, lower, other;
3748 window = Fget_lru_window (frames, Qt);
3749 /* If the LRU window is selected, and big enough,
3750 and can be split, split it. */
3751 if (!NILP (window)
3752 && ! FRAME_NO_SPLIT_P (XFRAME (XWINDOW (window)->frame))
3753 && (EQ (window, selected_window)
3754 || EQ (XWINDOW (window)->parent, Qnil))
3755 && window_height (window) >= window_min_height << 1)
3756 window = Fsplit_window (window, Qnil, Qnil);
3757 else
3758 window = Fget_lru_window (frames, Qnil);
3759 /* If Fget_lru_window returned nil, try other approaches. */
3761 /* Try visible frames first. */
3762 if (NILP (window))
3763 window = Fget_buffer_window (buffer, Qvisible);
3764 if (NILP (window))
3765 window = Fget_largest_window (Qvisible, Qnil);
3766 /* If that didn't work, try iconified frames. */
3767 if (NILP (window))
3768 window = Fget_buffer_window (buffer, make_number (0));
3769 if (NILP (window))
3770 window = Fget_largest_window (make_number (0), Qnil);
3772 #if 0 /* Don't try frames on other displays. */
3773 if (NILP (window))
3774 window = Fget_buffer_window (buffer, Qt);
3775 if (NILP (window))
3776 window = Fget_largest_window (Qt, Qnil);
3777 #endif
3778 /* As a last resort, make a new frame. */
3779 if (NILP (window))
3780 window = Fframe_selected_window (call0 (Vpop_up_frame_function));
3781 /* If window appears above or below another,
3782 even out their heights. */
3783 other = upper = lower = Qnil;
3784 if (!NILP (XWINDOW (window)->prev))
3785 other = upper = XWINDOW (window)->prev, lower = window;
3786 if (!NILP (XWINDOW (window)->next))
3787 other = lower = XWINDOW (window)->next, upper = window;
3788 if (!NILP (other)
3789 && !NILP (Veven_window_heights)
3790 /* Check that OTHER and WINDOW are vertically arrayed. */
3791 && !EQ (XWINDOW (other)->top_line, XWINDOW (window)->top_line)
3792 && (XFASTINT (XWINDOW (other)->total_lines)
3793 > XFASTINT (XWINDOW (window)->total_lines)))
3795 int total = (XFASTINT (XWINDOW (other)->total_lines)
3796 + XFASTINT (XWINDOW (window)->total_lines));
3797 enlarge_window (upper,
3798 total / 2 - XFASTINT (XWINDOW (upper)->total_lines),
3803 else
3804 window = Fget_lru_window (Qnil, Qnil);
3806 Fset_window_buffer (window, buffer, Qnil);
3807 return display_buffer_1 (window);
3811 DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
3812 0, 1, 0,
3813 doc: /* Force all windows to be updated on next redisplay.
3814 If optional arg OBJECT is a window, force redisplay of that window only.
3815 If OBJECT is a buffer or buffer name, force redisplay of all windows
3816 displaying that buffer. */)
3817 (object)
3818 Lisp_Object object;
3820 if (NILP (object))
3822 windows_or_buffers_changed++;
3823 update_mode_lines++;
3824 return Qt;
3827 if (WINDOWP (object))
3829 struct window *w = XWINDOW (object);
3830 mark_window_display_accurate (object, 0);
3831 w->update_mode_line = Qt;
3832 if (BUFFERP (w->buffer))
3833 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
3834 ++update_mode_lines;
3835 return Qt;
3838 if (STRINGP (object))
3839 object = Fget_buffer (object);
3840 if (BUFFERP (object) && !NILP (XBUFFER (object)->name))
3842 /* Walk all windows looking for buffer, and force update
3843 of each of those windows. */
3845 object = window_loop (REDISPLAY_BUFFER_WINDOWS, object, 0, Qvisible);
3846 return NILP (object) ? Qnil : Qt;
3849 /* If nothing suitable was found, just return.
3850 We could signal an error, but this feature will typically be used
3851 asynchronously in timers or process sentinels, so we don't. */
3852 return Qnil;
3856 void
3857 temp_output_buffer_show (buf)
3858 register Lisp_Object buf;
3860 register struct buffer *old = current_buffer;
3861 register Lisp_Object window;
3862 register struct window *w;
3864 XBUFFER (buf)->directory = current_buffer->directory;
3866 Fset_buffer (buf);
3867 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3868 BEGV = BEG;
3869 ZV = Z;
3870 SET_PT (BEG);
3871 #if 0 /* rms: there should be no reason for this. */
3872 XBUFFER (buf)->prevent_redisplay_optimizations_p = 1;
3873 #endif
3874 set_buffer_internal (old);
3876 if (!NILP (Vtemp_buffer_show_function))
3877 call1 (Vtemp_buffer_show_function, buf);
3878 else
3880 window = Fdisplay_buffer (buf, Qnil, Qnil);
3882 if (!EQ (XWINDOW (window)->frame, selected_frame))
3883 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3884 Vminibuf_scroll_window = window;
3885 w = XWINDOW (window);
3886 XSETFASTINT (w->hscroll, 0);
3887 XSETFASTINT (w->min_hscroll, 0);
3888 set_marker_restricted_both (w->start, buf, BEG, BEG);
3889 set_marker_restricted_both (w->pointm, buf, BEG, BEG);
3891 /* Run temp-buffer-show-hook, with the chosen window selected
3892 and its buffer current. */
3894 if (!NILP (Vrun_hooks)
3895 && !NILP (Fboundp (Qtemp_buffer_show_hook))
3896 && !NILP (Fsymbol_value (Qtemp_buffer_show_hook)))
3898 int count = SPECPDL_INDEX ();
3899 Lisp_Object prev_window, prev_buffer;
3900 prev_window = selected_window;
3901 XSETBUFFER (prev_buffer, old);
3903 /* Select the window that was chosen, for running the hook.
3904 Note: Both Fselect_window and select_window_norecord may
3905 set-buffer to the buffer displayed in the window,
3906 so we need to save the current buffer. --stef */
3907 record_unwind_protect (Fset_buffer, prev_buffer);
3908 record_unwind_protect (select_window_norecord, prev_window);
3909 Fselect_window (window, Qt);
3910 Fset_buffer (w->buffer);
3911 call1 (Vrun_hooks, Qtemp_buffer_show_hook);
3912 unbind_to (count, Qnil);
3917 static void
3918 make_dummy_parent (window)
3919 Lisp_Object window;
3921 Lisp_Object new;
3922 register struct window *o, *p;
3923 int i;
3925 o = XWINDOW (window);
3926 p = allocate_window ();
3927 for (i = 0; i < VECSIZE (struct window); ++i)
3928 ((struct Lisp_Vector *) p)->contents[i]
3929 = ((struct Lisp_Vector *)o)->contents[i];
3930 XSETWINDOW (new, p);
3932 ++sequence_number;
3933 XSETFASTINT (p->sequence_number, sequence_number);
3935 /* Put new into window structure in place of window */
3936 replace_window (window, new);
3938 o->next = Qnil;
3939 o->prev = Qnil;
3940 o->vchild = Qnil;
3941 o->hchild = Qnil;
3942 o->parent = new;
3944 p->start = Qnil;
3945 p->pointm = Qnil;
3946 p->buffer = Qnil;
3949 DEFUN ("split-window", Fsplit_window, Ssplit_window, 0, 3, "",
3950 doc: /* Split WINDOW, putting SIZE lines in the first of the pair.
3951 WINDOW defaults to selected one and SIZE to half its size.
3952 If optional third arg HORFLAG is non-nil, split side by side
3953 and put SIZE columns in the first of the pair. In that case,
3954 SIZE includes that window's scroll bar, or the divider column to its right.
3955 Interactively, all arguments are nil.
3957 Returns the newly created window (which is the lower or rightmost one).
3958 The upper or leftmost window is the original one, and remains selected
3959 if it was selected before.
3961 See Info node `(elisp)Splitting Windows' for more details and examples.*/)
3962 (window, size, horflag)
3963 Lisp_Object window, size, horflag;
3965 register Lisp_Object new;
3966 register struct window *o, *p;
3967 FRAME_PTR fo;
3968 register int size_int;
3970 if (NILP (window))
3971 window = selected_window;
3972 else
3973 CHECK_LIVE_WINDOW (window);
3975 o = XWINDOW (window);
3976 fo = XFRAME (WINDOW_FRAME (o));
3978 if (NILP (size))
3980 if (!NILP (horflag))
3981 /* Calculate the size of the left-hand window, by dividing
3982 the usable space in columns by two.
3983 We round up, since the left-hand window may include
3984 a dividing line, while the right-hand may not. */
3985 size_int = (XFASTINT (o->total_cols) + 1) >> 1;
3986 else
3987 size_int = XFASTINT (o->total_lines) >> 1;
3989 else
3991 CHECK_NUMBER (size);
3992 size_int = XINT (size);
3995 if (MINI_WINDOW_P (o))
3996 error ("Attempt to split minibuffer window");
3997 else if (window_fixed_size_p (o, !NILP (horflag), 0))
3998 error ("Attempt to split fixed-size window");
4000 check_min_window_sizes ();
4002 if (NILP (horflag))
4004 if (size_int < window_min_height)
4005 error ("Window height %d too small (after splitting)", size_int);
4006 if (size_int + window_min_height > XFASTINT (o->total_lines))
4007 error ("Window height %d too small (after splitting)",
4008 XFASTINT (o->total_lines) - size_int);
4009 if (NILP (o->parent)
4010 || NILP (XWINDOW (o->parent)->vchild))
4012 make_dummy_parent (window);
4013 new = o->parent;
4014 XWINDOW (new)->vchild = window;
4017 else
4019 if (size_int < window_min_width)
4020 error ("Window width %d too small (after splitting)", size_int);
4022 if (size_int + window_min_width > XFASTINT (o->total_cols))
4023 error ("Window width %d too small (after splitting)",
4024 XFASTINT (o->total_cols) - size_int);
4025 if (NILP (o->parent)
4026 || NILP (XWINDOW (o->parent)->hchild))
4028 make_dummy_parent (window);
4029 new = o->parent;
4030 XWINDOW (new)->hchild = window;
4034 /* Now we know that window's parent is a vertical combination
4035 if we are dividing vertically, or a horizontal combination
4036 if we are making side-by-side windows */
4038 windows_or_buffers_changed++;
4039 FRAME_WINDOW_SIZES_CHANGED (fo) = 1;
4040 new = make_window ();
4041 p = XWINDOW (new);
4043 p->frame = o->frame;
4044 p->next = o->next;
4045 if (!NILP (p->next))
4046 XWINDOW (p->next)->prev = new;
4047 p->prev = window;
4048 o->next = new;
4049 p->parent = o->parent;
4050 p->buffer = Qt;
4051 p->window_end_valid = Qnil;
4052 bzero (&p->last_cursor, sizeof p->last_cursor);
4054 /* Duplicate special geometry settings. */
4056 p->left_margin_cols = o->left_margin_cols;
4057 p->right_margin_cols = o->right_margin_cols;
4058 p->left_fringe_width = o->left_fringe_width;
4059 p->right_fringe_width = o->right_fringe_width;
4060 p->fringes_outside_margins = o->fringes_outside_margins;
4061 p->scroll_bar_width = o->scroll_bar_width;
4062 p->vertical_scroll_bar_type = o->vertical_scroll_bar_type;
4064 /* Apportion the available frame space among the two new windows */
4066 if (!NILP (horflag))
4068 p->total_lines = o->total_lines;
4069 p->top_line = o->top_line;
4070 XSETFASTINT (p->total_cols, XFASTINT (o->total_cols) - size_int);
4071 XSETFASTINT (o->total_cols, size_int);
4072 XSETFASTINT (p->left_col, XFASTINT (o->left_col) + size_int);
4073 adjust_window_margins (p);
4074 adjust_window_margins (o);
4076 else
4078 p->left_col = o->left_col;
4079 p->total_cols = o->total_cols;
4080 XSETFASTINT (p->total_lines, XFASTINT (o->total_lines) - size_int);
4081 XSETFASTINT (o->total_lines, size_int);
4082 XSETFASTINT (p->top_line, XFASTINT (o->top_line) + size_int);
4085 /* Adjust glyph matrices. */
4086 adjust_glyphs (fo);
4088 Fset_window_buffer (new, o->buffer, Qt);
4089 return new;
4092 DEFUN ("enlarge-window", Fenlarge_window, Senlarge_window, 1, 2, "p",
4093 doc: /* Make current window ARG lines bigger.
4094 From program, optional second arg non-nil means grow sideways ARG columns.
4095 Interactively, if an argument is not given, make the window one line bigger.
4096 If HORIZONTAL is non-nil, enlarge horizontally instead of vertically.
4097 This function can delete windows, even the second window, if they get
4098 too small. */)
4099 (arg, horizontal)
4100 Lisp_Object arg, horizontal;
4102 CHECK_NUMBER (arg);
4103 enlarge_window (selected_window, XINT (arg), !NILP (horizontal));
4105 if (! NILP (Vwindow_configuration_change_hook))
4106 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4108 return Qnil;
4111 DEFUN ("shrink-window", Fshrink_window, Sshrink_window, 1, 2, "p",
4112 doc: /* Make current window ARG lines smaller.
4113 From program, optional second arg non-nil means shrink sideways arg columns.
4114 Interactively, if an argument is not given, make the window one line smaller. Only
4115 siblings to the right or below are changed. */)
4116 (arg, side)
4117 Lisp_Object arg, side;
4119 CHECK_NUMBER (arg);
4120 enlarge_window (selected_window, -XINT (arg), !NILP (side));
4122 if (! NILP (Vwindow_configuration_change_hook))
4123 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4125 return Qnil;
4129 window_height (window)
4130 Lisp_Object window;
4132 register struct window *p = XWINDOW (window);
4133 return WINDOW_TOTAL_LINES (p);
4137 window_width (window)
4138 Lisp_Object window;
4140 register struct window *p = XWINDOW (window);
4141 return WINDOW_TOTAL_COLS (p);
4145 #define CURBEG(w) \
4146 *(horiz_flag ? &(XWINDOW (w)->left_col) : &(XWINDOW (w)->top_line))
4148 #define CURSIZE(w) \
4149 *(horiz_flag ? &(XWINDOW (w)->total_cols) : &(XWINDOW (w)->total_lines))
4152 /* Enlarge WINDOW by DELTA.
4153 HORIZ_FLAG nonzero means enlarge it horizontally;
4154 zero means do it vertically.
4156 Siblings of the selected window are resized to fulfill the size
4157 request. If they become too small in the process, they will be
4158 deleted. */
4160 static void
4161 enlarge_window (window, delta, horiz_flag)
4162 Lisp_Object window;
4163 int delta, horiz_flag;
4165 Lisp_Object parent, next, prev;
4166 struct window *p;
4167 Lisp_Object *sizep;
4168 int maximum;
4169 int (*sizefun) P_ ((Lisp_Object))
4170 = horiz_flag ? window_width : window_height;
4171 void (*setsizefun) P_ ((Lisp_Object, int, int))
4172 = (horiz_flag ? set_window_width : set_window_height);
4174 /* Check values of window_min_width and window_min_height for
4175 validity. */
4176 check_min_window_sizes ();
4178 /* Give up if this window cannot be resized. */
4179 if (window_fixed_size_p (XWINDOW (window), horiz_flag, 1))
4180 error ("Window is not resizable");
4182 /* Find the parent of the selected window. */
4183 while (1)
4185 p = XWINDOW (window);
4186 parent = p->parent;
4188 if (NILP (parent))
4190 if (horiz_flag)
4191 error ("No other window to side of this one");
4192 break;
4195 if (horiz_flag
4196 ? !NILP (XWINDOW (parent)->hchild)
4197 : !NILP (XWINDOW (parent)->vchild))
4198 break;
4200 window = parent;
4203 sizep = &CURSIZE (window);
4206 register int maxdelta;
4208 /* Compute the maximum size increment this window can have. */
4210 maxdelta = (!NILP (parent) ? (*sizefun) (parent) - XINT (*sizep)
4211 /* This is a main window followed by a minibuffer. */
4212 : !NILP (p->next) ? ((*sizefun) (p->next)
4213 - window_min_size (XWINDOW (p->next),
4214 horiz_flag, 0, 0))
4215 /* This is a minibuffer following a main window. */
4216 : !NILP (p->prev) ? ((*sizefun) (p->prev)
4217 - window_min_size (XWINDOW (p->prev),
4218 horiz_flag, 0, 0))
4219 /* This is a frame with only one window, a minibuffer-only
4220 or a minibufferless frame. */
4221 : (delta = 0));
4223 if (delta > maxdelta)
4224 /* This case traps trying to make the minibuffer
4225 the full frame, or make the only window aside from the
4226 minibuffer the full frame. */
4227 delta = maxdelta;
4230 if (XINT (*sizep) + delta < window_min_size (XWINDOW (window), horiz_flag, 0, 0))
4232 delete_window (window);
4233 return;
4236 if (delta == 0)
4237 return;
4239 /* Find the total we can get from other siblings without deleting them. */
4240 maximum = 0;
4241 for (next = p->next; ! NILP (next); next = XWINDOW (next)->next)
4242 maximum += (*sizefun) (next) - window_min_size (XWINDOW (next),
4243 horiz_flag, 0, 0);
4244 for (prev = p->prev; ! NILP (prev); prev = XWINDOW (prev)->prev)
4245 maximum += (*sizefun) (prev) - window_min_size (XWINDOW (prev),
4246 horiz_flag, 0, 0);
4248 /* If we can get it all from them without deleting them, do so. */
4249 if (delta <= maximum)
4251 Lisp_Object first_unaffected;
4252 Lisp_Object first_affected;
4253 int fixed_p;
4255 next = p->next;
4256 prev = p->prev;
4257 first_affected = window;
4258 /* Look at one sibling at a time,
4259 moving away from this window in both directions alternately,
4260 and take as much as we can get without deleting that sibling. */
4261 while (delta != 0
4262 && (!NILP (next) || !NILP (prev)))
4264 if (! NILP (next))
4266 int this_one = ((*sizefun) (next)
4267 - window_min_size (XWINDOW (next),
4268 horiz_flag, 0, &fixed_p));
4269 if (!fixed_p)
4271 if (this_one > delta)
4272 this_one = delta;
4274 (*setsizefun) (next, (*sizefun) (next) - this_one, 0);
4275 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
4277 delta -= this_one;
4280 next = XWINDOW (next)->next;
4283 if (delta == 0)
4284 break;
4286 if (! NILP (prev))
4288 int this_one = ((*sizefun) (prev)
4289 - window_min_size (XWINDOW (prev),
4290 horiz_flag, 0, &fixed_p));
4291 if (!fixed_p)
4293 if (this_one > delta)
4294 this_one = delta;
4296 first_affected = prev;
4298 (*setsizefun) (prev, (*sizefun) (prev) - this_one, 0);
4299 (*setsizefun) (window, XINT (*sizep) + this_one, 0);
4301 delta -= this_one;
4304 prev = XWINDOW (prev)->prev;
4308 xassert (delta == 0);
4310 /* Now recalculate the edge positions of all the windows affected,
4311 based on the new sizes. */
4312 first_unaffected = next;
4313 prev = first_affected;
4314 for (next = XWINDOW (prev)->next; ! EQ (next, first_unaffected);
4315 prev = next, next = XWINDOW (next)->next)
4317 XSETINT (CURBEG (next), XINT (CURBEG (prev)) + (*sizefun) (prev));
4318 /* This does not change size of NEXT,
4319 but it propagates the new top edge to its children */
4320 (*setsizefun) (next, (*sizefun) (next), 0);
4323 else
4325 register int delta1;
4326 register int opht = (*sizefun) (parent);
4328 if (opht <= XINT (*sizep) + delta)
4330 /* If trying to grow this window to or beyond size of the parent,
4331 just delete all the sibling windows. */
4332 Lisp_Object start, tem, next;
4334 start = XWINDOW (parent)->vchild;
4335 if (NILP (start))
4336 start = XWINDOW (parent)->hchild;
4338 /* Delete any siblings that come after WINDOW. */
4339 tem = XWINDOW (window)->next;
4340 while (! NILP (tem))
4342 next = XWINDOW (tem)->next;
4343 delete_window (tem);
4344 tem = next;
4347 /* Delete any siblings that come after WINDOW.
4348 Note that if START is not WINDOW, then WINDOW still
4349 Fhas siblings, so WINDOW has not yet replaced its parent. */
4350 tem = start;
4351 while (! EQ (tem, window))
4353 next = XWINDOW (tem)->next;
4354 delete_window (tem);
4355 tem = next;
4358 else
4360 /* Otherwise, make delta1 just right so that if we add
4361 delta1 lines to this window and to the parent, and then
4362 shrink the parent back to its original size, the new
4363 proportional size of this window will increase by delta.
4365 The function size_window will compute the new height h'
4366 of the window from delta1 as:
4368 e = delta1/n
4369 x = delta1 - delta1/n * n for the 1st resizable child
4370 h' = h + e + x
4372 where n is the number of children that can be resized.
4373 We can ignore x by choosing a delta1 that is a multiple of
4374 n. We want the height of this window to come out as
4376 h' = h + delta
4378 So, delta1 must be
4380 h + e = h + delta
4381 delta1/n = delta
4382 delta1 = n * delta.
4384 The number of children n equals the number of resizable
4385 children of this window + 1 because we know window itself
4386 is resizable (otherwise we would have signalled an error). */
4388 struct window *w = XWINDOW (window);
4389 Lisp_Object s;
4390 int n = 1;
4392 for (s = w->next; !NILP (s); s = XWINDOW (s)->next)
4393 if (!window_fixed_size_p (XWINDOW (s), horiz_flag, 0))
4394 ++n;
4395 for (s = w->prev; !NILP (s); s = XWINDOW (s)->prev)
4396 if (!window_fixed_size_p (XWINDOW (s), horiz_flag, 0))
4397 ++n;
4399 delta1 = n * delta;
4401 /* Add delta1 lines or columns to this window, and to the parent,
4402 keeping things consistent while not affecting siblings. */
4403 XSETINT (CURSIZE (parent), opht + delta1);
4404 (*setsizefun) (window, XINT (*sizep) + delta1, 0);
4406 /* Squeeze out delta1 lines or columns from our parent,
4407 shriking this window and siblings proportionately.
4408 This brings parent back to correct size.
4409 Delta1 was calculated so this makes this window the desired size,
4410 taking it all out of the siblings. */
4411 (*setsizefun) (parent, opht, 0);
4416 XSETFASTINT (p->last_modified, 0);
4417 XSETFASTINT (p->last_overlay_modified, 0);
4419 /* Adjust glyph matrices. */
4420 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
4424 /* Adjust the size of WINDOW by DELTA, moving only its trailing edge.
4425 HORIZ_FLAG nonzero means adjust the width, moving the right edge.
4426 zero means adjust the height, moving the bottom edge.
4428 Following siblings of the selected window are resized to fulfill
4429 the size request. If they become too small in the process, they
4430 are not deleted; instead, we signal an error. */
4432 static void
4433 adjust_window_trailing_edge (window, delta, horiz_flag)
4434 Lisp_Object window;
4435 int delta, horiz_flag;
4437 Lisp_Object parent, child;
4438 struct window *p;
4439 Lisp_Object old_config = Fcurrent_window_configuration (Qnil);
4440 int delcount = window_deletion_count;
4442 /* Check values of window_min_width and window_min_height for
4443 validity. */
4444 check_min_window_sizes ();
4446 if (NILP (window))
4447 window = Fselected_window ();
4449 CHECK_WINDOW (window);
4451 /* Give up if this window cannot be resized. */
4452 if (window_fixed_size_p (XWINDOW (window), horiz_flag, 1))
4453 error ("Window is not resizable");
4455 while (1)
4457 Lisp_Object first_parallel = Qnil;
4459 if (NILP (window))
4461 /* This happens if WINDOW on the previous iteration was
4462 at top level of the window tree. */
4463 Fset_window_configuration (old_config);
4464 error ("Specified window edge is fixed");
4467 p = XWINDOW (window);
4468 parent = p->parent;
4470 /* See if this level has windows in parallel in the specified
4471 direction. If so, set FIRST_PARALLEL to the first one. */
4472 if (horiz_flag)
4474 if (! NILP (parent) && !NILP (XWINDOW (parent)->vchild))
4475 first_parallel = XWINDOW (parent)->vchild;
4476 else if (NILP (parent) && !NILP (p->next))
4478 /* Handle the vertical chain of main window and minibuffer
4479 which has no parent. */
4480 first_parallel = window;
4481 while (! NILP (XWINDOW (first_parallel)->prev))
4482 first_parallel = XWINDOW (first_parallel)->prev;
4485 else
4487 if (! NILP (parent) && !NILP (XWINDOW (parent)->hchild))
4488 first_parallel = XWINDOW (parent)->hchild;
4491 /* If this level's succession is in the desired dimension,
4492 and this window is the last one, and there is no higher level,
4493 its trailing edge is fixed. */
4494 if (NILP (XWINDOW (window)->next) && NILP (first_parallel)
4495 && NILP (parent))
4497 Fset_window_configuration (old_config);
4498 error ("Specified window edge is fixed");
4501 /* Don't make this window too small. */
4502 if (XINT (CURSIZE (window)) + delta
4503 < (horiz_flag ? window_min_width : window_min_height))
4505 Fset_window_configuration (old_config);
4506 error ("Cannot adjust window size as specified");
4509 /* Clear out some redisplay caches. */
4510 XSETFASTINT (p->last_modified, 0);
4511 XSETFASTINT (p->last_overlay_modified, 0);
4513 /* Adjust this window's edge. */
4514 XSETINT (CURSIZE (window),
4515 XINT (CURSIZE (window)) + delta);
4517 /* If this window has following siblings in the desired dimension,
4518 make them smaller, and exit the loop.
4520 (If we reach the top of the tree and can never do this,
4521 we will fail and report an error, above.) */
4522 if (NILP (first_parallel))
4524 if (!NILP (p->next))
4526 /* This may happen for the minibuffer. In that case
4527 the window_deletion_count check below does not work. */
4528 if (XINT (CURSIZE (p->next)) - delta <= 0)
4530 Fset_window_configuration (old_config);
4531 error ("Cannot adjust window size as specified");
4534 XSETINT (CURBEG (p->next),
4535 XINT (CURBEG (p->next)) + delta);
4536 size_window (p->next, XINT (CURSIZE (p->next)) - delta,
4537 horiz_flag, 0, 1, 0);
4538 break;
4541 else
4542 /* Here we have a chain of parallel siblings, in the other dimension.
4543 Change the size of the other siblings. */
4544 for (child = first_parallel;
4545 ! NILP (child);
4546 child = XWINDOW (child)->next)
4547 if (! EQ (child, window))
4548 size_window (child, XINT (CURSIZE (child)) + delta,
4549 horiz_flag, 0, 0, 1);
4551 window = parent;
4554 /* If we made a window so small it got deleted,
4555 we failed. Report failure. */
4556 if (delcount != window_deletion_count)
4558 Fset_window_configuration (old_config);
4559 error ("Cannot adjust window size as specified");
4562 /* Adjust glyph matrices. */
4563 adjust_glyphs (XFRAME (WINDOW_FRAME (XWINDOW (window))));
4566 #undef CURBEG
4567 #undef CURSIZE
4569 DEFUN ("adjust-window-trailing-edge", Fadjust_window_trailing_edge,
4570 Sadjust_window_trailing_edge, 3, 3, 0,
4571 doc: /* Adjust the bottom or right edge of WINDOW by DELTA.
4572 If HORIZONTAL is non-nil, that means adjust the width, moving the right edge.
4573 Otherwise, adjust the height, moving the bottom edge.
4575 Following siblings of the selected window are resized to fulfill
4576 the size request. If they become too small in the process, they
4577 are not deleted; instead, we signal an error. */)
4578 (window, delta, horizontal)
4579 Lisp_Object window, delta, horizontal;
4581 CHECK_NUMBER (delta);
4582 adjust_window_trailing_edge (window, XINT (delta), !NILP (horizontal));
4584 if (! NILP (Vwindow_configuration_change_hook))
4585 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
4587 return Qnil;
4592 /***********************************************************************
4593 Resizing Mini-Windows
4594 ***********************************************************************/
4596 static void shrink_window_lowest_first P_ ((struct window *, int));
4598 enum save_restore_action
4600 CHECK_ORIG_SIZES,
4601 SAVE_ORIG_SIZES,
4602 RESTORE_ORIG_SIZES
4605 static int save_restore_orig_size P_ ((struct window *,
4606 enum save_restore_action));
4608 /* Shrink windows rooted in window W to HEIGHT. Take the space needed
4609 from lowest windows first. */
4611 static void
4612 shrink_window_lowest_first (w, height)
4613 struct window *w;
4614 int height;
4616 struct window *c;
4617 Lisp_Object child;
4618 int old_height;
4620 xassert (!MINI_WINDOW_P (w));
4622 /* Set redisplay hints. */
4623 XSETFASTINT (w->last_modified, 0);
4624 XSETFASTINT (w->last_overlay_modified, 0);
4625 windows_or_buffers_changed++;
4626 FRAME_WINDOW_SIZES_CHANGED (XFRAME (WINDOW_FRAME (w))) = 1;
4628 old_height = XFASTINT (w->total_lines);
4629 XSETFASTINT (w->total_lines, height);
4631 if (!NILP (w->hchild))
4633 for (child = w->hchild; !NILP (child); child = c->next)
4635 c = XWINDOW (child);
4636 c->top_line = w->top_line;
4637 shrink_window_lowest_first (c, height);
4640 else if (!NILP (w->vchild))
4642 Lisp_Object last_child;
4643 int delta = old_height - height;
4644 int last_top;
4646 last_child = Qnil;
4648 /* Find the last child. We are taking space from lowest windows
4649 first, so we iterate over children from the last child
4650 backwards. */
4651 for (child = w->vchild; !NILP (child); child = XWINDOW (child)->next)
4652 last_child = child;
4654 /* Assign new heights. We leave only MIN_SAFE_WINDOW_HEIGHT. */
4655 for (child = last_child; delta && !NILP (child); child = c->prev)
4657 int this_one;
4659 c = XWINDOW (child);
4660 this_one = XFASTINT (c->total_lines) - MIN_SAFE_WINDOW_HEIGHT;
4662 if (this_one > delta)
4663 this_one = delta;
4665 shrink_window_lowest_first (c, XFASTINT (c->total_lines) - this_one);
4666 delta -= this_one;
4669 /* Compute new positions. */
4670 last_top = XINT (w->top_line);
4671 for (child = w->vchild; !NILP (child); child = c->next)
4673 c = XWINDOW (child);
4674 c->top_line = make_number (last_top);
4675 shrink_window_lowest_first (c, XFASTINT (c->total_lines));
4676 last_top += XFASTINT (c->total_lines);
4682 /* Save, restore, or check positions and sizes in the window tree
4683 rooted at W. ACTION says what to do.
4685 If ACTION is CHECK_ORIG_SIZES, check if orig_top_line and
4686 orig_total_lines members are valid for all windows in the window
4687 tree. Value is non-zero if they are valid.
4689 If ACTION is SAVE_ORIG_SIZES, save members top and height in
4690 orig_top_line and orig_total_lines for all windows in the tree.
4692 If ACTION is RESTORE_ORIG_SIZES, restore top and height from values
4693 stored in orig_top_line and orig_total_lines for all windows. */
4695 static int
4696 save_restore_orig_size (w, action)
4697 struct window *w;
4698 enum save_restore_action action;
4700 int success_p = 1;
4702 while (w)
4704 if (!NILP (w->hchild))
4706 if (!save_restore_orig_size (XWINDOW (w->hchild), action))
4707 success_p = 0;
4709 else if (!NILP (w->vchild))
4711 if (!save_restore_orig_size (XWINDOW (w->vchild), action))
4712 success_p = 0;
4715 switch (action)
4717 case CHECK_ORIG_SIZES:
4718 if (!INTEGERP (w->orig_top_line) || !INTEGERP (w->orig_total_lines))
4719 return 0;
4720 break;
4722 case SAVE_ORIG_SIZES:
4723 w->orig_top_line = w->top_line;
4724 w->orig_total_lines = w->total_lines;
4725 XSETFASTINT (w->last_modified, 0);
4726 XSETFASTINT (w->last_overlay_modified, 0);
4727 break;
4729 case RESTORE_ORIG_SIZES:
4730 xassert (INTEGERP (w->orig_top_line) && INTEGERP (w->orig_total_lines));
4731 w->top_line = w->orig_top_line;
4732 w->total_lines = w->orig_total_lines;
4733 w->orig_total_lines = w->orig_top_line = Qnil;
4734 XSETFASTINT (w->last_modified, 0);
4735 XSETFASTINT (w->last_overlay_modified, 0);
4736 break;
4738 default:
4739 abort ();
4742 w = NILP (w->next) ? NULL : XWINDOW (w->next);
4745 return success_p;
4749 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we can
4750 without deleting other windows. */
4752 void
4753 grow_mini_window (w, delta)
4754 struct window *w;
4755 int delta;
4757 struct frame *f = XFRAME (w->frame);
4758 struct window *root;
4760 xassert (MINI_WINDOW_P (w));
4761 xassert (delta >= 0);
4763 /* Check values of window_min_width and window_min_height for
4764 validity. */
4765 check_min_window_sizes ();
4767 /* Compute how much we can enlarge the mini-window without deleting
4768 other windows. */
4769 root = XWINDOW (FRAME_ROOT_WINDOW (f));
4770 if (delta)
4772 int min_height = window_min_size (root, 0, 0, 0);
4773 if (XFASTINT (root->total_lines) - delta < min_height)
4774 /* Note that the root window may already be smaller than
4775 min_height. */
4776 delta = max (0, XFASTINT (root->total_lines) - min_height);
4779 if (delta)
4781 /* Save original window sizes and positions, if not already done. */
4782 if (!save_restore_orig_size (root, CHECK_ORIG_SIZES))
4783 save_restore_orig_size (root, SAVE_ORIG_SIZES);
4785 /* Shrink other windows. */
4786 shrink_window_lowest_first (root, XFASTINT (root->total_lines) - delta);
4788 /* Grow the mini-window. */
4789 w->top_line = make_number (XFASTINT (root->top_line) + XFASTINT (root->total_lines));
4790 w->total_lines = make_number (XFASTINT (w->total_lines) + delta);
4791 XSETFASTINT (w->last_modified, 0);
4792 XSETFASTINT (w->last_overlay_modified, 0);
4794 adjust_glyphs (f);
4799 /* Shrink mini-window W. If there is recorded info about window sizes
4800 before a call to grow_mini_window, restore recorded window sizes.
4801 Otherwise, if the mini-window is higher than 1 line, resize it to 1
4802 line. */
4804 void
4805 shrink_mini_window (w)
4806 struct window *w;
4808 struct frame *f = XFRAME (w->frame);
4809 struct window *root = XWINDOW (FRAME_ROOT_WINDOW (f));
4811 if (save_restore_orig_size (root, CHECK_ORIG_SIZES))
4813 save_restore_orig_size (root, RESTORE_ORIG_SIZES);
4814 adjust_glyphs (f);
4815 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4816 windows_or_buffers_changed = 1;
4818 else if (XFASTINT (w->total_lines) > 1)
4820 /* Distribute the additional lines of the mini-window
4821 among the other windows. */
4822 Lisp_Object window;
4823 XSETWINDOW (window, w);
4824 enlarge_window (window, 1 - XFASTINT (w->total_lines), 0);
4830 /* Mark window cursors off for all windows in the window tree rooted
4831 at W by setting their phys_cursor_on_p flag to zero. Called from
4832 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4833 the frame are cleared. */
4835 void
4836 mark_window_cursors_off (w)
4837 struct window *w;
4839 while (w)
4841 if (!NILP (w->hchild))
4842 mark_window_cursors_off (XWINDOW (w->hchild));
4843 else if (!NILP (w->vchild))
4844 mark_window_cursors_off (XWINDOW (w->vchild));
4845 else
4846 w->phys_cursor_on_p = 0;
4848 w = NILP (w->next) ? 0 : XWINDOW (w->next);
4853 /* Return number of lines of text (not counting mode lines) in W. */
4856 window_internal_height (w)
4857 struct window *w;
4859 int ht = XFASTINT (w->total_lines);
4861 if (!MINI_WINDOW_P (w))
4863 if (!NILP (w->parent)
4864 || !NILP (w->vchild)
4865 || !NILP (w->hchild)
4866 || !NILP (w->next)
4867 || !NILP (w->prev)
4868 || WINDOW_WANTS_MODELINE_P (w))
4869 --ht;
4871 if (WINDOW_WANTS_HEADER_LINE_P (w))
4872 --ht;
4875 return ht;
4879 /* Return the number of columns in W.
4880 Don't count columns occupied by scroll bars or the vertical bar
4881 separating W from the sibling to its right. */
4884 window_box_text_cols (w)
4885 struct window *w;
4887 struct frame *f = XFRAME (WINDOW_FRAME (w));
4888 int width = XINT (w->total_cols);
4890 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
4891 /* Scroll bars occupy a few columns. */
4892 width -= WINDOW_CONFIG_SCROLL_BAR_COLS (w);
4893 else if (!FRAME_WINDOW_P (f)
4894 && !WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
4895 /* The column of `|' characters separating side-by-side windows
4896 occupies one column only. */
4897 width -= 1;
4899 if (FRAME_WINDOW_P (f))
4900 /* On window-systems, fringes and display margins cannot be
4901 used for normal text. */
4902 width -= (WINDOW_FRINGE_COLS (w)
4903 + WINDOW_LEFT_MARGIN_COLS (w)
4904 + WINDOW_RIGHT_MARGIN_COLS (w));
4906 return width;
4910 /************************************************************************
4911 Window Scrolling
4912 ***********************************************************************/
4914 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
4915 N screen-fulls, which is defined as the height of the window minus
4916 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4917 instead. Negative values of N mean scroll down. NOERROR non-zero
4918 means don't signal an error if we try to move over BEGV or ZV,
4919 respectively. */
4921 static void
4922 window_scroll (window, n, whole, noerror)
4923 Lisp_Object window;
4924 int n;
4925 int whole;
4926 int noerror;
4928 immediate_quit = 1;
4930 /* If we must, use the pixel-based version which is much slower than
4931 the line-based one but can handle varying line heights. */
4932 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
4933 window_scroll_pixel_based (window, n, whole, noerror);
4934 else
4935 window_scroll_line_based (window, n, whole, noerror);
4937 immediate_quit = 0;
4941 /* Implementation of window_scroll that works based on pixel line
4942 heights. See the comment of window_scroll for parameter
4943 descriptions. */
4945 static void
4946 window_scroll_pixel_based (window, n, whole, noerror)
4947 Lisp_Object window;
4948 int n;
4949 int whole;
4950 int noerror;
4952 struct it it;
4953 struct window *w = XWINDOW (window);
4954 struct text_pos start;
4955 int this_scroll_margin;
4956 /* True if we fiddled the window vscroll field without really scrolling. */
4957 int vscrolled = 0;
4958 int x, y, rtop, rbot, rowh, vpos;
4960 SET_TEXT_POS_FROM_MARKER (start, w->start);
4962 /* If PT is not visible in WINDOW, move back one half of
4963 the screen. Allow PT to be partially visible, otherwise
4964 something like (scroll-down 1) with PT in the line before
4965 the partially visible one would recenter. */
4967 if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos))
4969 /* Move backward half the height of the window. Performance note:
4970 vmotion used here is about 10% faster, but would give wrong
4971 results for variable height lines. */
4972 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4973 it.current_y = it.last_visible_y;
4974 move_it_vertically_backward (&it, window_box_height (w) / 2);
4976 /* The function move_iterator_vertically may move over more than
4977 the specified y-distance. If it->w is small, e.g. a
4978 mini-buffer window, we may end up in front of the window's
4979 display area. This is the case when Start displaying at the
4980 start of the line containing PT in this case. */
4981 if (it.current_y <= 0)
4983 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4984 move_it_vertically_backward (&it, 0);
4985 it.current_y = 0;
4988 start = it.current.pos;
4990 else if (auto_window_vscroll_p)
4992 if (rtop || rbot) /* partially visible */
4994 int px;
4995 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
4996 if (whole)
4997 dy = max ((window_box_height (w)
4998 - next_screen_context_lines * dy),
4999 dy);
5000 dy *= n;
5002 if (n < 0)
5004 /* Only vscroll backwards if already vscrolled forwards. */
5005 if (w->vscroll < 0 && rtop > 0)
5007 px = max (0, -w->vscroll - min (rtop, -dy));
5008 Fset_window_vscroll (window, make_number (px), Qt);
5009 return;
5012 if (n > 0)
5014 /* Do vscroll if already vscrolled or only display line. */
5015 if (rbot > 0 && (w->vscroll < 0 || vpos == 0))
5017 px = max (0, -w->vscroll + min (rbot, dy));
5018 Fset_window_vscroll (window, make_number (px), Qt);
5019 return;
5022 /* Maybe modify window start instead of scrolling. */
5023 if (rbot > 0 || w->vscroll < 0)
5025 int spos;
5027 Fset_window_vscroll (window, make_number (0), Qt);
5028 /* If there are other text lines above the current row,
5029 move window start to current row. Else to next row. */
5030 if (rbot > 0)
5031 spos = XINT (Fline_beginning_position (Qnil));
5032 else
5033 spos = min (XINT (Fline_end_position (Qnil)) + 1, ZV);
5034 set_marker_restricted (w->start, make_number (spos),
5035 w->buffer);
5036 w->start_at_line_beg = Qt;
5037 w->update_mode_line = Qt;
5038 XSETFASTINT (w->last_modified, 0);
5039 XSETFASTINT (w->last_overlay_modified, 0);
5040 /* Set force_start so that redisplay_window will run the
5041 window-scroll-functions. */
5042 w->force_start = Qt;
5043 return;
5047 /* Cancel previous vscroll. */
5048 Fset_window_vscroll (window, make_number (0), Qt);
5051 /* If scroll_preserve_screen_position is non-nil, we try to set
5052 point in the same window line as it is now, so get that line. */
5053 if (!NILP (Vscroll_preserve_screen_position))
5055 /* We preserve the goal pixel coordinate across consecutive
5056 calls to scroll-up or scroll-down. This avoids the
5057 possibility of point becoming "stuck" on a tall line when
5058 scrolling by one line. */
5059 if (window_scroll_pixel_based_preserve_y < 0
5060 || (!EQ (current_kboard->Vlast_command, Qscroll_up)
5061 && !EQ (current_kboard->Vlast_command, Qscroll_down)))
5063 start_display (&it, w, start);
5064 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
5065 window_scroll_pixel_based_preserve_y = it.current_y;
5068 else
5069 window_scroll_pixel_based_preserve_y = -1;
5071 /* Move iterator it from start the specified distance forward or
5072 backward. The result is the new window start. */
5073 start_display (&it, w, start);
5074 if (whole)
5076 int start_pos = IT_CHARPOS (it);
5077 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
5078 dy = max ((window_box_height (w)
5079 - next_screen_context_lines * dy),
5080 dy) * n;
5082 /* Note that move_it_vertically always moves the iterator to the
5083 start of a line. So, if the last line doesn't have a newline,
5084 we would end up at the start of the line ending at ZV. */
5085 if (dy <= 0)
5087 move_it_vertically_backward (&it, -dy);
5088 /* Ensure we actually do move, e.g. in case we are currently
5089 looking at an image that is taller that the window height. */
5090 while (start_pos == IT_CHARPOS (it)
5091 && start_pos > BEGV)
5092 move_it_by_lines (&it, -1, 1);
5094 else if (dy > 0)
5096 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
5097 MOVE_TO_POS | MOVE_TO_Y);
5098 /* Ensure we actually do move, e.g. in case we are currently
5099 looking at an image that is taller that the window height. */
5100 while (start_pos == IT_CHARPOS (it)
5101 && start_pos < ZV)
5102 move_it_by_lines (&it, 1, 1);
5105 else
5106 move_it_by_lines (&it, n, 1);
5108 /* We failed if we find ZV is already on the screen (scrolling up,
5109 means there's nothing past the end), or if we can't start any
5110 earlier (scrolling down, means there's nothing past the top). */
5111 if ((n > 0 && IT_CHARPOS (it) == ZV)
5112 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
5114 if (IT_CHARPOS (it) == ZV)
5116 if (it.current_y < it.last_visible_y
5117 && (it.current_y + it.max_ascent + it.max_descent
5118 > it.last_visible_y))
5120 /* The last line was only partially visible, make it fully
5121 visible. */
5122 w->vscroll = (it.last_visible_y
5123 - it.current_y + it.max_ascent + it.max_descent);
5124 adjust_glyphs (it.f);
5126 else if (noerror)
5127 return;
5128 else if (n < 0) /* could happen with empty buffers */
5129 xsignal0 (Qbeginning_of_buffer);
5130 else
5131 xsignal0 (Qend_of_buffer);
5133 else
5135 if (w->vscroll != 0)
5136 /* The first line was only partially visible, make it fully
5137 visible. */
5138 w->vscroll = 0;
5139 else if (noerror)
5140 return;
5141 else
5142 xsignal0 (Qbeginning_of_buffer);
5145 /* If control gets here, then we vscrolled. */
5147 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
5149 /* Don't try to change the window start below. */
5150 vscrolled = 1;
5153 if (! vscrolled)
5155 int pos = IT_CHARPOS (it);
5156 int bytepos;
5158 /* If in the middle of a multi-glyph character move forward to
5159 the next character. */
5160 if (in_display_vector_p (&it))
5162 ++pos;
5163 move_it_to (&it, pos, -1, -1, -1, MOVE_TO_POS);
5166 /* Set the window start, and set up the window for redisplay. */
5167 set_marker_restricted (w->start, make_number (pos),
5168 w->buffer);
5169 bytepos = XMARKER (w->start)->bytepos;
5170 w->start_at_line_beg = ((pos == BEGV || FETCH_BYTE (bytepos - 1) == '\n')
5171 ? Qt : Qnil);
5172 w->update_mode_line = Qt;
5173 XSETFASTINT (w->last_modified, 0);
5174 XSETFASTINT (w->last_overlay_modified, 0);
5175 /* Set force_start so that redisplay_window will run the
5176 window-scroll-functions. */
5177 w->force_start = Qt;
5180 /* The rest of this function uses current_y in a nonstandard way,
5181 not including the height of the header line if any. */
5182 it.current_y = it.vpos = 0;
5184 /* Move PT out of scroll margins.
5185 This code wants current_y to be zero at the window start position
5186 even if there is a header line. */
5187 this_scroll_margin = max (0, scroll_margin);
5188 this_scroll_margin = min (this_scroll_margin, XFASTINT (w->total_lines) / 4);
5189 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
5191 if (n > 0)
5193 /* We moved the window start towards ZV, so PT may be now
5194 in the scroll margin at the top. */
5195 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
5196 if (IT_CHARPOS (it) == PT && it.current_y >= this_scroll_margin
5197 && (NILP (Vscroll_preserve_screen_position)
5198 || EQ (Vscroll_preserve_screen_position, Qt)))
5199 /* We found PT at a legitimate height. Leave it alone. */
5201 else if (window_scroll_pixel_based_preserve_y >= 0)
5203 /* If we have a header line, take account of it.
5204 This is necessary because we set it.current_y to 0, above. */
5205 move_it_to (&it, -1, -1,
5206 window_scroll_pixel_based_preserve_y
5207 - (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0 ),
5208 -1, MOVE_TO_Y);
5209 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5211 else
5213 while (it.current_y < this_scroll_margin)
5215 int prev = it.current_y;
5216 move_it_by_lines (&it, 1, 1);
5217 if (prev == it.current_y)
5218 break;
5220 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5223 else if (n < 0)
5225 int charpos, bytepos;
5226 int partial_p;
5228 /* Save our position, for the
5229 window_scroll_pixel_based_preserve_y case. */
5230 charpos = IT_CHARPOS (it);
5231 bytepos = IT_BYTEPOS (it);
5233 /* We moved the window start towards BEGV, so PT may be now
5234 in the scroll margin at the bottom. */
5235 move_it_to (&it, PT, -1,
5236 (it.last_visible_y - CURRENT_HEADER_LINE_HEIGHT (w)
5237 - this_scroll_margin - 1),
5239 MOVE_TO_POS | MOVE_TO_Y);
5241 /* Save our position, in case it's correct. */
5242 charpos = IT_CHARPOS (it);
5243 bytepos = IT_BYTEPOS (it);
5245 /* See if point is on a partially visible line at the end. */
5246 if (it.what == IT_EOB)
5247 partial_p = it.current_y + it.ascent + it.descent > it.last_visible_y;
5248 else
5250 move_it_by_lines (&it, 1, 1);
5251 partial_p = it.current_y > it.last_visible_y;
5254 if (charpos == PT && !partial_p
5255 && (NILP (Vscroll_preserve_screen_position)
5256 || EQ (Vscroll_preserve_screen_position, Qt)))
5257 /* We found PT before we found the display margin, so PT is ok. */
5259 else if (window_scroll_pixel_based_preserve_y >= 0)
5261 SET_TEXT_POS_FROM_MARKER (start, w->start);
5262 start_display (&it, w, start);
5263 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
5264 here because we called start_display again and did not
5265 alter it.current_y this time. */
5266 move_it_to (&it, -1, -1, window_scroll_pixel_based_preserve_y, -1,
5267 MOVE_TO_Y);
5268 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5270 else
5272 if (partial_p)
5273 /* The last line was only partially visible, so back up two
5274 lines to make sure we're on a fully visible line. */
5276 move_it_by_lines (&it, -2, 0);
5277 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5279 else
5280 /* No, the position we saved is OK, so use it. */
5281 SET_PT_BOTH (charpos, bytepos);
5287 /* Implementation of window_scroll that works based on screen lines.
5288 See the comment of window_scroll for parameter descriptions. */
5290 static void
5291 window_scroll_line_based (window, n, whole, noerror)
5292 Lisp_Object window;
5293 int n;
5294 int whole;
5295 int noerror;
5297 register struct window *w = XWINDOW (window);
5298 register int opoint = PT, opoint_byte = PT_BYTE;
5299 register int pos, pos_byte;
5300 register int ht = window_internal_height (w);
5301 register Lisp_Object tem;
5302 int lose;
5303 Lisp_Object bolp;
5304 int startpos;
5305 struct position posit;
5306 int original_vpos;
5308 /* If scrolling screen-fulls, compute the number of lines to
5309 scroll from the window's height. */
5310 if (whole)
5311 n *= max (1, ht - next_screen_context_lines);
5313 startpos = marker_position (w->start);
5315 posit = *compute_motion (startpos, 0, 0, 0,
5316 PT, ht, 0,
5317 -1, XINT (w->hscroll),
5318 0, w);
5319 original_vpos = posit.vpos;
5321 XSETFASTINT (tem, PT);
5322 tem = Fpos_visible_in_window_p (tem, window, Qnil);
5324 if (NILP (tem))
5326 Fvertical_motion (make_number (- (ht / 2)), window);
5327 startpos = PT;
5330 SET_PT (startpos);
5331 lose = n < 0 && PT == BEGV;
5332 Fvertical_motion (make_number (n), window);
5333 pos = PT;
5334 pos_byte = PT_BYTE;
5335 bolp = Fbolp ();
5336 SET_PT_BOTH (opoint, opoint_byte);
5338 if (lose)
5340 if (noerror)
5341 return;
5342 else
5343 xsignal0 (Qbeginning_of_buffer);
5346 if (pos < ZV)
5348 int this_scroll_margin = scroll_margin;
5350 /* Don't use a scroll margin that is negative or too large. */
5351 if (this_scroll_margin < 0)
5352 this_scroll_margin = 0;
5354 if (XINT (w->total_lines) < 4 * scroll_margin)
5355 this_scroll_margin = XINT (w->total_lines) / 4;
5357 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
5358 w->start_at_line_beg = bolp;
5359 w->update_mode_line = Qt;
5360 XSETFASTINT (w->last_modified, 0);
5361 XSETFASTINT (w->last_overlay_modified, 0);
5362 /* Set force_start so that redisplay_window will run
5363 the window-scroll-functions. */
5364 w->force_start = Qt;
5366 if (!NILP (Vscroll_preserve_screen_position)
5367 && (whole || !EQ (Vscroll_preserve_screen_position, Qt)))
5369 SET_PT_BOTH (pos, pos_byte);
5370 Fvertical_motion (make_number (original_vpos), window);
5372 /* If we scrolled forward, put point enough lines down
5373 that it is outside the scroll margin. */
5374 else if (n > 0)
5376 int top_margin;
5378 if (this_scroll_margin > 0)
5380 SET_PT_BOTH (pos, pos_byte);
5381 Fvertical_motion (make_number (this_scroll_margin), window);
5382 top_margin = PT;
5384 else
5385 top_margin = pos;
5387 if (top_margin <= opoint)
5388 SET_PT_BOTH (opoint, opoint_byte);
5389 else if (!NILP (Vscroll_preserve_screen_position))
5391 SET_PT_BOTH (pos, pos_byte);
5392 Fvertical_motion (make_number (original_vpos), window);
5394 else
5395 SET_PT (top_margin);
5397 else if (n < 0)
5399 int bottom_margin;
5401 /* If we scrolled backward, put point near the end of the window
5402 but not within the scroll margin. */
5403 SET_PT_BOTH (pos, pos_byte);
5404 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
5405 if (XFASTINT (tem) == ht - this_scroll_margin)
5406 bottom_margin = PT;
5407 else
5408 bottom_margin = PT + 1;
5410 if (bottom_margin > opoint)
5411 SET_PT_BOTH (opoint, opoint_byte);
5412 else
5414 if (!NILP (Vscroll_preserve_screen_position))
5416 SET_PT_BOTH (pos, pos_byte);
5417 Fvertical_motion (make_number (original_vpos), window);
5419 else
5420 Fvertical_motion (make_number (-1), window);
5424 else
5426 if (noerror)
5427 return;
5428 else
5429 xsignal0 (Qend_of_buffer);
5434 /* Scroll selected_window up or down. If N is nil, scroll a
5435 screen-full which is defined as the height of the window minus
5436 next_screen_context_lines. If N is the symbol `-', scroll.
5437 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
5438 up. This is the guts of Fscroll_up and Fscroll_down. */
5440 static void
5441 scroll_command (n, direction)
5442 Lisp_Object n;
5443 int direction;
5445 int count = SPECPDL_INDEX ();
5447 xassert (abs (direction) == 1);
5449 /* If selected window's buffer isn't current, make it current for
5450 the moment. But don't screw up if window_scroll gets an error. */
5451 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
5453 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5454 Fset_buffer (XWINDOW (selected_window)->buffer);
5456 /* Make redisplay consider other windows than just selected_window. */
5457 ++windows_or_buffers_changed;
5460 if (NILP (n))
5461 window_scroll (selected_window, direction, 1, 0);
5462 else if (EQ (n, Qminus))
5463 window_scroll (selected_window, -direction, 1, 0);
5464 else
5466 n = Fprefix_numeric_value (n);
5467 window_scroll (selected_window, XINT (n) * direction, 0, 0);
5470 unbind_to (count, Qnil);
5473 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "P",
5474 doc: /* Scroll text of current window upward ARG lines.
5475 If ARG is omitted or nil, scroll upward by a near full screen.
5476 A near full screen is `next-screen-context-lines' less than a full screen.
5477 Negative ARG means scroll downward.
5478 If ARG is the atom `-', scroll downward by nearly full screen.
5479 When calling from a program, supply as argument a number, nil, or `-'. */)
5480 (arg)
5481 Lisp_Object arg;
5483 scroll_command (arg, 1);
5484 return Qnil;
5487 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "P",
5488 doc: /* Scroll text of current window down ARG lines.
5489 If ARG is omitted or nil, scroll down by a near full screen.
5490 A near full screen is `next-screen-context-lines' less than a full screen.
5491 Negative ARG means scroll upward.
5492 If ARG is the atom `-', scroll upward by nearly full screen.
5493 When calling from a program, supply as argument a number, nil, or `-'. */)
5494 (arg)
5495 Lisp_Object arg;
5497 scroll_command (arg, -1);
5498 return Qnil;
5501 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
5502 doc: /* Return the other window for \"other window scroll\" commands.
5503 If `other-window-scroll-buffer' is non-nil, a window
5504 showing that buffer is used.
5505 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5506 specifies the window. This takes precedence over
5507 `other-window-scroll-buffer'. */)
5510 Lisp_Object window;
5512 if (MINI_WINDOW_P (XWINDOW (selected_window))
5513 && !NILP (Vminibuf_scroll_window))
5514 window = Vminibuf_scroll_window;
5515 /* If buffer is specified, scroll that buffer. */
5516 else if (!NILP (Vother_window_scroll_buffer))
5518 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
5519 if (NILP (window))
5520 window = Fdisplay_buffer (Vother_window_scroll_buffer, Qt, Qnil);
5522 else
5524 /* Nothing specified; look for a neighboring window on the same
5525 frame. */
5526 window = Fnext_window (selected_window, Qnil, Qnil);
5528 if (EQ (window, selected_window))
5529 /* That didn't get us anywhere; look for a window on another
5530 visible frame. */
5532 window = Fnext_window (window, Qnil, Qt);
5533 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
5534 && ! EQ (window, selected_window));
5537 CHECK_LIVE_WINDOW (window);
5539 if (EQ (window, selected_window))
5540 error ("There is no other window");
5542 return window;
5545 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
5546 doc: /* Scroll next window upward ARG lines; or near full screen if no ARG.
5547 A near full screen is `next-screen-context-lines' less than a full screen.
5548 The next window is the one below the current one; or the one at the top
5549 if the current one is at the bottom. Negative ARG means scroll downward.
5550 If ARG is the atom `-', scroll downward by nearly full screen.
5551 When calling from a program, supply as argument a number, nil, or `-'.
5553 If `other-window-scroll-buffer' is non-nil, scroll the window
5554 showing that buffer, popping the buffer up if necessary.
5555 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5556 specifies the window to scroll. This takes precedence over
5557 `other-window-scroll-buffer'. */)
5558 (arg)
5559 Lisp_Object arg;
5561 Lisp_Object window;
5562 struct window *w;
5563 int count = SPECPDL_INDEX ();
5565 window = Fother_window_for_scrolling ();
5566 w = XWINDOW (window);
5568 /* Don't screw up if window_scroll gets an error. */
5569 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5570 ++windows_or_buffers_changed;
5572 Fset_buffer (w->buffer);
5573 SET_PT (marker_position (w->pointm));
5575 if (NILP (arg))
5576 window_scroll (window, 1, 1, 1);
5577 else if (EQ (arg, Qminus))
5578 window_scroll (window, -1, 1, 1);
5579 else
5581 if (CONSP (arg))
5582 arg = Fcar (arg);
5583 CHECK_NUMBER (arg);
5584 window_scroll (window, XINT (arg), 0, 1);
5587 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5588 unbind_to (count, Qnil);
5590 return Qnil;
5593 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "P\np",
5594 doc: /* Scroll selected window display ARG columns left.
5595 Default for ARG is window width minus 2.
5596 Value is the total amount of leftward horizontal scrolling in
5597 effect after the change.
5598 If SET_MINIMUM is non-nil, the new scroll amount becomes the
5599 lower bound for automatic scrolling, i.e. automatic scrolling
5600 will not scroll a window to a column less than the value returned
5601 by this function. This happens in an interactive call. */)
5602 (arg, set_minimum)
5603 register Lisp_Object arg, set_minimum;
5605 Lisp_Object result;
5606 int hscroll;
5607 struct window *w = XWINDOW (selected_window);
5609 if (NILP (arg))
5610 XSETFASTINT (arg, window_box_text_cols (w) - 2);
5611 else
5612 arg = Fprefix_numeric_value (arg);
5614 hscroll = XINT (w->hscroll) + XINT (arg);
5615 result = Fset_window_hscroll (selected_window, make_number (hscroll));
5617 if (!NILP (set_minimum))
5618 w->min_hscroll = w->hscroll;
5620 return result;
5623 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "P\np",
5624 doc: /* Scroll selected window display ARG columns right.
5625 Default for ARG is window width minus 2.
5626 Value is the total amount of leftward horizontal scrolling in
5627 effect after the change.
5628 If SET_MINIMUM is non-nil, the new scroll amount becomes the
5629 lower bound for automatic scrolling, i.e. automatic scrolling
5630 will not scroll a window to a column less than the value returned
5631 by this function. This happens in an interactive call. */)
5632 (arg, set_minimum)
5633 register Lisp_Object arg, set_minimum;
5635 Lisp_Object result;
5636 int hscroll;
5637 struct window *w = XWINDOW (selected_window);
5639 if (NILP (arg))
5640 XSETFASTINT (arg, window_box_text_cols (w) - 2);
5641 else
5642 arg = Fprefix_numeric_value (arg);
5644 hscroll = XINT (w->hscroll) - XINT (arg);
5645 result = Fset_window_hscroll (selected_window, make_number (hscroll));
5647 if (!NILP (set_minimum))
5648 w->min_hscroll = w->hscroll;
5650 return result;
5653 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window, Sminibuffer_selected_window, 0, 0, 0,
5654 doc: /* Return the window which was selected when entering the minibuffer.
5655 Returns nil, if current window is not a minibuffer window. */)
5658 if (minibuf_level > 0
5659 && MINI_WINDOW_P (XWINDOW (selected_window))
5660 && WINDOW_LIVE_P (minibuf_selected_window))
5661 return minibuf_selected_window;
5663 return Qnil;
5666 /* Value is the number of lines actually displayed in window W,
5667 as opposed to its height. */
5669 static int
5670 displayed_window_lines (w)
5671 struct window *w;
5673 struct it it;
5674 struct text_pos start;
5675 int height = window_box_height (w);
5676 struct buffer *old_buffer;
5677 int bottom_y;
5679 if (XBUFFER (w->buffer) != current_buffer)
5681 old_buffer = current_buffer;
5682 set_buffer_internal (XBUFFER (w->buffer));
5684 else
5685 old_buffer = NULL;
5687 /* In case W->start is out of the accessible range, do something
5688 reasonable. This happens in Info mode when Info-scroll-down
5689 calls (recenter -1) while W->start is 1. */
5690 if (XMARKER (w->start)->charpos < BEGV)
5691 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
5692 else if (XMARKER (w->start)->charpos > ZV)
5693 SET_TEXT_POS (start, ZV, ZV_BYTE);
5694 else
5695 SET_TEXT_POS_FROM_MARKER (start, w->start);
5697 start_display (&it, w, start);
5698 move_it_vertically (&it, height);
5699 bottom_y = line_bottom_y (&it);
5701 /* rms: On a non-window display,
5702 the value of it.vpos at the bottom of the screen
5703 seems to be 1 larger than window_box_height (w).
5704 This kludge fixes a bug whereby (move-to-window-line -1)
5705 when ZV is on the last screen line
5706 moves to the previous screen line instead of the last one. */
5707 if (! FRAME_WINDOW_P (XFRAME (w->frame)))
5708 height++;
5710 /* Add in empty lines at the bottom of the window. */
5711 if (bottom_y < height)
5713 int uy = FRAME_LINE_HEIGHT (it.f);
5714 it.vpos += (height - bottom_y + uy - 1) / uy;
5717 if (old_buffer)
5718 set_buffer_internal (old_buffer);
5720 return it.vpos;
5724 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
5725 doc: /* Center point in window and redisplay frame.
5726 With prefix argument ARG, recenter putting point on screen line ARG
5727 relative to the current window. If ARG is negative, it counts up from the
5728 bottom of the window. (ARG should be less than the height of the window.)
5730 If ARG is omitted or nil, erase the entire frame and then
5731 redraw with point in the center of the current window.
5732 Just C-u as prefix means put point in the center of the window
5733 and redisplay normally--don't erase and redraw the frame. */)
5734 (arg)
5735 register Lisp_Object arg;
5737 struct window *w = XWINDOW (selected_window);
5738 struct buffer *buf = XBUFFER (w->buffer);
5739 struct buffer *obuf = current_buffer;
5740 int center_p = 0;
5741 int charpos, bytepos;
5742 int iarg;
5743 int this_scroll_margin;
5745 /* If redisplay is suppressed due to an error, try again. */
5746 obuf->display_error_modiff = 0;
5748 if (NILP (arg))
5750 int i;
5752 /* Invalidate pixel data calculated for all compositions. */
5753 for (i = 0; i < n_compositions; i++)
5754 composition_table[i]->font = NULL;
5756 Fredraw_frame (w->frame);
5757 SET_FRAME_GARBAGED (XFRAME (WINDOW_FRAME (w)));
5758 center_p = 1;
5760 else if (CONSP (arg)) /* Just C-u. */
5761 center_p = 1;
5762 else
5764 arg = Fprefix_numeric_value (arg);
5765 CHECK_NUMBER (arg);
5766 iarg = XINT (arg);
5769 set_buffer_internal (buf);
5771 /* Do this after making BUF current
5772 in case scroll_margin is buffer-local. */
5773 this_scroll_margin = max (0, scroll_margin);
5774 this_scroll_margin = min (this_scroll_margin,
5775 XFASTINT (w->total_lines) / 4);
5777 /* Handle centering on a graphical frame specially. Such frames can
5778 have variable-height lines and centering point on the basis of
5779 line counts would lead to strange effects. */
5780 if (FRAME_WINDOW_P (XFRAME (w->frame)))
5782 if (center_p)
5784 struct it it;
5785 struct text_pos pt;
5787 SET_TEXT_POS (pt, PT, PT_BYTE);
5788 start_display (&it, w, pt);
5789 move_it_vertically_backward (&it, window_box_height (w) / 2);
5790 charpos = IT_CHARPOS (it);
5791 bytepos = IT_BYTEPOS (it);
5793 else if (iarg < 0)
5795 struct it it;
5796 struct text_pos pt;
5797 int nlines = -iarg;
5798 int extra_line_spacing;
5799 int h = window_box_height (w);
5801 iarg = - max (-iarg, this_scroll_margin);
5803 SET_TEXT_POS (pt, PT, PT_BYTE);
5804 start_display (&it, w, pt);
5806 /* Be sure we have the exact height of the full line containing PT. */
5807 move_it_by_lines (&it, 0, 1);
5809 /* The amount of pixels we have to move back is the window
5810 height minus what's displayed in the line containing PT,
5811 and the lines below. */
5812 it.current_y = 0;
5813 it.vpos = 0;
5814 move_it_by_lines (&it, nlines, 1);
5816 if (it.vpos == nlines)
5817 h -= it.current_y;
5818 else
5820 /* Last line has no newline */
5821 h -= line_bottom_y (&it);
5822 it.vpos++;
5825 /* Don't reserve space for extra line spacing of last line. */
5826 extra_line_spacing = it.max_extra_line_spacing;
5828 /* If we can't move down NLINES lines because we hit
5829 the end of the buffer, count in some empty lines. */
5830 if (it.vpos < nlines)
5832 nlines -= it.vpos;
5833 extra_line_spacing = it.extra_line_spacing;
5834 h -= nlines * (FRAME_LINE_HEIGHT (it.f) + extra_line_spacing);
5836 if (h <= 0)
5837 return Qnil;
5839 /* Now find the new top line (starting position) of the window. */
5840 start_display (&it, w, pt);
5841 it.current_y = 0;
5842 move_it_vertically_backward (&it, h);
5844 /* If extra line spacing is present, we may move too far
5845 back. This causes the last line to be only partially
5846 visible (which triggers redisplay to recenter that line
5847 in the middle), so move forward.
5848 But ignore extra line spacing on last line, as it is not
5849 considered to be part of the visible height of the line.
5851 h += extra_line_spacing;
5852 while (-it.current_y > h)
5853 move_it_by_lines (&it, 1, 1);
5855 charpos = IT_CHARPOS (it);
5856 bytepos = IT_BYTEPOS (it);
5858 else
5860 struct position pos;
5862 iarg = max (iarg, this_scroll_margin);
5864 pos = *vmotion (PT, -iarg, w);
5865 charpos = pos.bufpos;
5866 bytepos = pos.bytepos;
5869 else
5871 struct position pos;
5872 int ht = window_internal_height (w);
5874 if (center_p)
5875 iarg = ht / 2;
5876 else if (iarg < 0)
5877 iarg += ht;
5879 /* Don't let it get into the margin at either top or bottom. */
5880 iarg = max (iarg, this_scroll_margin);
5881 iarg = min (iarg, ht - this_scroll_margin - 1);
5883 pos = *vmotion (PT, - iarg, w);
5884 charpos = pos.bufpos;
5885 bytepos = pos.bytepos;
5888 /* Set the new window start. */
5889 set_marker_both (w->start, w->buffer, charpos, bytepos);
5890 w->window_end_valid = Qnil;
5892 w->optional_new_start = Qt;
5894 if (bytepos == BEGV_BYTE || FETCH_BYTE (bytepos - 1) == '\n')
5895 w->start_at_line_beg = Qt;
5896 else
5897 w->start_at_line_beg = Qnil;
5899 set_buffer_internal (obuf);
5900 return Qnil;
5904 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
5905 0, 1, 0,
5906 doc: /* Return the height in lines of the text display area of WINDOW.
5907 This doesn't include the mode-line (or header-line if any) or any
5908 partial-height lines in the text display area. */)
5909 (window)
5910 Lisp_Object window;
5912 struct window *w = decode_window (window);
5913 int pixel_height = window_box_height (w);
5914 int line_height = pixel_height / FRAME_LINE_HEIGHT (XFRAME (w->frame));
5915 return make_number (line_height);
5920 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
5921 1, 1, "P",
5922 doc: /* Position point relative to window.
5923 With no argument, position point at center of window.
5924 An argument specifies vertical position within the window;
5925 zero means top of window, negative means relative to bottom of window. */)
5926 (arg)
5927 Lisp_Object arg;
5929 struct window *w = XWINDOW (selected_window);
5930 int lines, start;
5931 Lisp_Object window;
5932 #if 0
5933 int this_scroll_margin;
5934 #endif
5936 window = selected_window;
5937 start = marker_position (w->start);
5938 if (start < BEGV || start > ZV)
5940 int height = window_internal_height (w);
5941 Fvertical_motion (make_number (- (height / 2)), window);
5942 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
5943 w->start_at_line_beg = Fbolp ();
5944 w->force_start = Qt;
5946 else
5947 Fgoto_char (w->start);
5949 lines = displayed_window_lines (w);
5951 #if 0
5952 this_scroll_margin = max (0, scroll_margin);
5953 this_scroll_margin = min (this_scroll_margin, lines / 4);
5954 #endif
5956 if (NILP (arg))
5957 XSETFASTINT (arg, lines / 2);
5958 else
5960 int iarg = XINT (Fprefix_numeric_value (arg));
5962 if (iarg < 0)
5963 iarg = iarg + lines;
5965 #if 0 /* This code would prevent move-to-window-line from moving point
5966 to a place inside the scroll margins (which would cause the
5967 next redisplay to scroll). I wrote this code, but then concluded
5968 it is probably better not to install it. However, it is here
5969 inside #if 0 so as not to lose it. -- rms. */
5971 /* Don't let it get into the margin at either top or bottom. */
5972 iarg = max (iarg, this_scroll_margin);
5973 iarg = min (iarg, lines - this_scroll_margin - 1);
5974 #endif
5976 arg = make_number (iarg);
5979 /* Skip past a partially visible first line. */
5980 if (w->vscroll)
5981 XSETINT (arg, XINT (arg) + 1);
5983 return Fvertical_motion (arg, window);
5988 /***********************************************************************
5989 Window Configuration
5990 ***********************************************************************/
5992 struct save_window_data
5994 EMACS_INT size_from_Lisp_Vector_struct;
5995 struct Lisp_Vector *next_from_Lisp_Vector_struct;
5996 Lisp_Object frame_cols, frame_lines, frame_menu_bar_lines;
5997 Lisp_Object frame_tool_bar_lines;
5998 Lisp_Object selected_frame;
5999 Lisp_Object current_window;
6000 Lisp_Object current_buffer;
6001 Lisp_Object minibuf_scroll_window;
6002 Lisp_Object minibuf_selected_window;
6003 Lisp_Object root_window;
6004 Lisp_Object focus_frame;
6005 /* Record the values of window-min-width and window-min-height
6006 so that window sizes remain consistent with them. */
6007 Lisp_Object min_width, min_height;
6008 /* A vector, each of whose elements is a struct saved_window
6009 for one window. */
6010 Lisp_Object saved_windows;
6013 /* This is saved as a Lisp_Vector */
6014 struct saved_window
6016 /* these first two must agree with struct Lisp_Vector in lisp.h */
6017 EMACS_INT size_from_Lisp_Vector_struct;
6018 struct Lisp_Vector *next_from_Lisp_Vector_struct;
6020 Lisp_Object window;
6021 Lisp_Object buffer, start, pointm, mark;
6022 Lisp_Object left_col, top_line, total_cols, total_lines;
6023 Lisp_Object hscroll, min_hscroll;
6024 Lisp_Object parent, prev;
6025 Lisp_Object start_at_line_beg;
6026 Lisp_Object display_table;
6027 Lisp_Object orig_top_line, orig_total_lines;
6028 Lisp_Object left_margin_cols, right_margin_cols;
6029 Lisp_Object left_fringe_width, right_fringe_width, fringes_outside_margins;
6030 Lisp_Object scroll_bar_width, vertical_scroll_bar_type;
6031 Lisp_Object dedicated;
6034 #define SAVED_WINDOW_N(swv,n) \
6035 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
6037 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
6038 doc: /* Return t if OBJECT is a window-configuration object. */)
6039 (object)
6040 Lisp_Object object;
6042 return WINDOW_CONFIGURATIONP (object) ? Qt : Qnil;
6045 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
6046 doc: /* Return the frame that CONFIG, a window-configuration object, is about. */)
6047 (config)
6048 Lisp_Object config;
6050 register struct save_window_data *data;
6051 struct Lisp_Vector *saved_windows;
6053 CHECK_WINDOW_CONFIGURATION (config);
6055 data = (struct save_window_data *) XVECTOR (config);
6056 saved_windows = XVECTOR (data->saved_windows);
6057 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
6060 DEFUN ("set-window-configuration", Fset_window_configuration,
6061 Sset_window_configuration, 1, 1, 0,
6062 doc: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
6063 CONFIGURATION must be a value previously returned
6064 by `current-window-configuration' (which see).
6065 If CONFIGURATION was made from a frame that is now deleted,
6066 only frame-independent values can be restored. In this case,
6067 the return value is nil. Otherwise the value is t. */)
6068 (configuration)
6069 Lisp_Object configuration;
6071 register struct save_window_data *data;
6072 struct Lisp_Vector *saved_windows;
6073 Lisp_Object new_current_buffer;
6074 Lisp_Object frame;
6075 FRAME_PTR f;
6076 int old_point = -1;
6078 CHECK_WINDOW_CONFIGURATION (configuration);
6080 data = (struct save_window_data *) XVECTOR (configuration);
6081 saved_windows = XVECTOR (data->saved_windows);
6083 new_current_buffer = data->current_buffer;
6084 if (NILP (XBUFFER (new_current_buffer)->name))
6085 new_current_buffer = Qnil;
6086 else
6088 if (XBUFFER (new_current_buffer) == current_buffer)
6089 /* The code further down "preserves point" by saving here PT in
6090 old_point and then setting it later back into PT. When the
6091 current-selected-window and the final-selected-window both show
6092 the current buffer, this suffers from the problem that the
6093 current PT is the window-point of the current-selected-window,
6094 while the final PT is the point of the final-selected-window, so
6095 this copy from one PT to the other would end up moving the
6096 window-point of the final-selected-window to the window-point of
6097 the current-selected-window. So we have to be careful which
6098 point of the current-buffer we copy into old_point. */
6099 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)
6100 && WINDOWP (selected_window)
6101 && EQ (XWINDOW (selected_window)->buffer, new_current_buffer)
6102 && !EQ (selected_window, data->current_window))
6103 old_point = XMARKER (XWINDOW (data->current_window)->pointm)->charpos;
6104 else
6105 old_point = PT;
6106 else
6107 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
6108 point in new_current_buffer as of the last time this buffer was
6109 used. This can be non-deterministic since it can be changed by
6110 things like jit-lock by mere temporary selection of some random
6111 window that happens to show this buffer.
6112 So if possible we want this arbitrary choice of "which point" to
6113 be the one from the to-be-selected-window so as to prevent this
6114 window's cursor from being copied from another window. */
6115 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)
6116 /* If current_window = selected_window, its point is in BUF_PT. */
6117 && !EQ (selected_window, data->current_window))
6118 old_point = XMARKER (XWINDOW (data->current_window)->pointm)->charpos;
6119 else
6120 old_point = BUF_PT (XBUFFER (new_current_buffer));
6123 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
6124 f = XFRAME (frame);
6126 /* If f is a dead frame, don't bother rebuilding its window tree.
6127 However, there is other stuff we should still try to do below. */
6128 if (FRAME_LIVE_P (f))
6130 register struct window *w;
6131 register struct saved_window *p;
6132 struct window *root_window;
6133 struct window **leaf_windows;
6134 int n_leaf_windows;
6135 int k, i, n;
6137 /* If the frame has been resized since this window configuration was
6138 made, we change the frame to the size specified in the
6139 configuration, restore the configuration, and then resize it
6140 back. We keep track of the prevailing height in these variables. */
6141 int previous_frame_lines = FRAME_LINES (f);
6142 int previous_frame_cols = FRAME_COLS (f);
6143 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
6144 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
6146 /* The mouse highlighting code could get screwed up
6147 if it runs during this. */
6148 BLOCK_INPUT;
6150 if (XFASTINT (data->frame_lines) != previous_frame_lines
6151 || XFASTINT (data->frame_cols) != previous_frame_cols)
6152 change_frame_size (f, XFASTINT (data->frame_lines),
6153 XFASTINT (data->frame_cols), 0, 0, 0);
6154 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
6155 if (XFASTINT (data->frame_menu_bar_lines)
6156 != previous_frame_menu_bar_lines)
6157 x_set_menu_bar_lines (f, data->frame_menu_bar_lines, make_number (0));
6158 #ifdef HAVE_WINDOW_SYSTEM
6159 if (XFASTINT (data->frame_tool_bar_lines)
6160 != previous_frame_tool_bar_lines)
6161 x_set_tool_bar_lines (f, data->frame_tool_bar_lines, make_number (0));
6162 #endif
6163 #endif
6165 /* "Swap out" point from the selected window's buffer
6166 into the window itself. (Normally the pointm of the selected
6167 window holds garbage.) We do this now, before
6168 restoring the window contents, and prevent it from
6169 being done later on when we select a new window. */
6170 if (! NILP (XWINDOW (selected_window)->buffer))
6172 w = XWINDOW (selected_window);
6173 set_marker_both (w->pointm,
6174 w->buffer,
6175 BUF_PT (XBUFFER (w->buffer)),
6176 BUF_PT_BYTE (XBUFFER (w->buffer)));
6179 windows_or_buffers_changed++;
6180 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
6182 /* Problem: Freeing all matrices and later allocating them again
6183 is a serious redisplay flickering problem. What we would
6184 really like to do is to free only those matrices not reused
6185 below. */
6186 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
6187 leaf_windows
6188 = (struct window **) alloca (count_windows (root_window)
6189 * sizeof (struct window *));
6190 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
6192 /* Temporarily avoid any problems with windows that are smaller
6193 than they are supposed to be. */
6194 window_min_height = 1;
6195 window_min_width = 1;
6197 /* Kludge Alert!
6198 Mark all windows now on frame as "deleted".
6199 Restoring the new configuration "undeletes" any that are in it.
6201 Save their current buffers in their height fields, since we may
6202 need it later, if a buffer saved in the configuration is now
6203 dead. */
6204 delete_all_subwindows (XWINDOW (FRAME_ROOT_WINDOW (f)));
6206 for (k = 0; k < saved_windows->size; k++)
6208 p = SAVED_WINDOW_N (saved_windows, k);
6209 w = XWINDOW (p->window);
6210 w->next = Qnil;
6212 if (!NILP (p->parent))
6213 w->parent = SAVED_WINDOW_N (saved_windows,
6214 XFASTINT (p->parent))->window;
6215 else
6216 w->parent = Qnil;
6218 if (!NILP (p->prev))
6220 w->prev = SAVED_WINDOW_N (saved_windows,
6221 XFASTINT (p->prev))->window;
6222 XWINDOW (w->prev)->next = p->window;
6224 else
6226 w->prev = Qnil;
6227 if (!NILP (w->parent))
6229 if (EQ (p->total_cols, XWINDOW (w->parent)->total_cols))
6231 XWINDOW (w->parent)->vchild = p->window;
6232 XWINDOW (w->parent)->hchild = Qnil;
6234 else
6236 XWINDOW (w->parent)->hchild = p->window;
6237 XWINDOW (w->parent)->vchild = Qnil;
6242 /* If we squirreled away the buffer in the window's height,
6243 restore it now. */
6244 if (BUFFERP (w->total_lines))
6245 w->buffer = w->total_lines;
6246 w->left_col = p->left_col;
6247 w->top_line = p->top_line;
6248 w->total_cols = p->total_cols;
6249 w->total_lines = p->total_lines;
6250 w->hscroll = p->hscroll;
6251 w->min_hscroll = p->min_hscroll;
6252 w->display_table = p->display_table;
6253 w->orig_top_line = p->orig_top_line;
6254 w->orig_total_lines = p->orig_total_lines;
6255 w->left_margin_cols = p->left_margin_cols;
6256 w->right_margin_cols = p->right_margin_cols;
6257 w->left_fringe_width = p->left_fringe_width;
6258 w->right_fringe_width = p->right_fringe_width;
6259 w->fringes_outside_margins = p->fringes_outside_margins;
6260 w->scroll_bar_width = p->scroll_bar_width;
6261 w->vertical_scroll_bar_type = p->vertical_scroll_bar_type;
6262 w->dedicated = p->dedicated;
6263 XSETFASTINT (w->last_modified, 0);
6264 XSETFASTINT (w->last_overlay_modified, 0);
6266 /* Reinstall the saved buffer and pointers into it. */
6267 if (NILP (p->buffer))
6268 w->buffer = p->buffer;
6269 else
6271 if (!NILP (XBUFFER (p->buffer)->name))
6272 /* If saved buffer is alive, install it. */
6274 w->buffer = p->buffer;
6275 w->start_at_line_beg = p->start_at_line_beg;
6276 set_marker_restricted (w->start, p->start, w->buffer);
6277 set_marker_restricted (w->pointm, p->pointm, w->buffer);
6278 Fset_marker (XBUFFER (w->buffer)->mark,
6279 p->mark, w->buffer);
6281 /* As documented in Fcurrent_window_configuration, don't
6282 restore the location of point in the buffer which was
6283 current when the window configuration was recorded. */
6284 if (!EQ (p->buffer, new_current_buffer)
6285 && XBUFFER (p->buffer) == current_buffer)
6286 Fgoto_char (w->pointm);
6288 else if (NILP (w->buffer) || NILP (XBUFFER (w->buffer)->name))
6289 /* Else unless window has a live buffer, get one. */
6291 w->buffer = Fcdr (Fcar (Vbuffer_alist));
6292 /* This will set the markers to beginning of visible
6293 range. */
6294 set_marker_restricted (w->start, make_number (0), w->buffer);
6295 set_marker_restricted (w->pointm, make_number (0),w->buffer);
6296 w->start_at_line_beg = Qt;
6298 else
6299 /* Keeping window's old buffer; make sure the markers
6300 are real. */
6302 /* Set window markers at start of visible range. */
6303 if (XMARKER (w->start)->buffer == 0)
6304 set_marker_restricted (w->start, make_number (0),
6305 w->buffer);
6306 if (XMARKER (w->pointm)->buffer == 0)
6307 set_marker_restricted_both (w->pointm, w->buffer,
6308 BUF_PT (XBUFFER (w->buffer)),
6309 BUF_PT_BYTE (XBUFFER (w->buffer)));
6310 w->start_at_line_beg = Qt;
6315 FRAME_ROOT_WINDOW (f) = data->root_window;
6316 /* Prevent "swapping out point" in the old selected window
6317 using the buffer that has been restored into it.
6318 We already swapped out point that from that window's old buffer. */
6319 selected_window = Qnil;
6321 /* Arrange *not* to restore point in the buffer that was
6322 current when the window configuration was saved. */
6323 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer))
6324 set_marker_restricted (XWINDOW (data->current_window)->pointm,
6325 make_number (old_point),
6326 XWINDOW (data->current_window)->buffer);
6328 Fselect_window (data->current_window, Qnil);
6329 XBUFFER (XWINDOW (selected_window)->buffer)->last_selected_window
6330 = selected_window;
6332 if (NILP (data->focus_frame)
6333 || (FRAMEP (data->focus_frame)
6334 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
6335 Fredirect_frame_focus (frame, data->focus_frame);
6337 #if 0 /* I don't understand why this is needed, and it causes problems
6338 when the frame's old selected window has been deleted. */
6339 if (f != selected_frame && FRAME_WINDOW_P (f))
6340 do_switch_frame (WINDOW_FRAME (XWINDOW (data->root_window)),
6341 0, 0);
6342 #endif
6344 /* Set the screen height to the value it had before this function. */
6345 if (previous_frame_lines != FRAME_LINES (f)
6346 || previous_frame_cols != FRAME_COLS (f))
6347 change_frame_size (f, previous_frame_lines, previous_frame_cols,
6348 0, 0, 0);
6349 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
6350 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
6351 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
6352 make_number (0));
6353 #ifdef HAVE_WINDOW_SYSTEM
6354 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
6355 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
6356 make_number (0));
6357 #endif
6358 #endif
6360 /* Now, free glyph matrices in windows that were not reused. */
6361 for (i = n = 0; i < n_leaf_windows; ++i)
6363 if (NILP (leaf_windows[i]->buffer))
6365 /* Assert it's not reused as a combination. */
6366 xassert (NILP (leaf_windows[i]->hchild)
6367 && NILP (leaf_windows[i]->vchild));
6368 free_window_matrices (leaf_windows[i]);
6370 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
6371 ++n;
6374 adjust_glyphs (f);
6376 UNBLOCK_INPUT;
6378 /* Fselect_window will have made f the selected frame, so we
6379 reselect the proper frame here. Fhandle_switch_frame will change the
6380 selected window too, but that doesn't make the call to
6381 Fselect_window above totally superfluous; it still sets f's
6382 selected window. */
6383 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
6384 do_switch_frame (data->selected_frame, 0, 0);
6386 if (! NILP (Vwindow_configuration_change_hook)
6387 && ! NILP (Vrun_hooks))
6388 call1 (Vrun_hooks, Qwindow_configuration_change_hook);
6391 if (!NILP (new_current_buffer))
6392 Fset_buffer (new_current_buffer);
6394 /* Restore the minimum heights recorded in the configuration. */
6395 window_min_height = XINT (data->min_height);
6396 window_min_width = XINT (data->min_width);
6398 Vminibuf_scroll_window = data->minibuf_scroll_window;
6399 minibuf_selected_window = data->minibuf_selected_window;
6401 return (FRAME_LIVE_P (f) ? Qt : Qnil);
6404 /* Mark all windows now on frame as deleted
6405 by setting their buffers to nil. */
6407 void
6408 delete_all_subwindows (w)
6409 register struct window *w;
6411 if (!NILP (w->next))
6412 delete_all_subwindows (XWINDOW (w->next));
6413 if (!NILP (w->vchild))
6414 delete_all_subwindows (XWINDOW (w->vchild));
6415 if (!NILP (w->hchild))
6416 delete_all_subwindows (XWINDOW (w->hchild));
6418 w->total_lines = w->buffer; /* See Fset_window_configuration for excuse. */
6420 if (!NILP (w->buffer))
6421 unshow_buffer (w);
6423 /* We set all three of these fields to nil, to make sure that we can
6424 distinguish this dead window from any live window. Live leaf
6425 windows will have buffer set, and combination windows will have
6426 vchild or hchild set. */
6427 w->buffer = Qnil;
6428 w->vchild = Qnil;
6429 w->hchild = Qnil;
6431 Vwindow_list = Qnil;
6434 static int
6435 count_windows (window)
6436 register struct window *window;
6438 register int count = 1;
6439 if (!NILP (window->next))
6440 count += count_windows (XWINDOW (window->next));
6441 if (!NILP (window->vchild))
6442 count += count_windows (XWINDOW (window->vchild));
6443 if (!NILP (window->hchild))
6444 count += count_windows (XWINDOW (window->hchild));
6445 return count;
6449 /* Fill vector FLAT with leaf windows under W, starting at index I.
6450 Value is last index + 1. */
6452 static int
6453 get_leaf_windows (w, flat, i)
6454 struct window *w;
6455 struct window **flat;
6456 int i;
6458 while (w)
6460 if (!NILP (w->hchild))
6461 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
6462 else if (!NILP (w->vchild))
6463 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
6464 else
6465 flat[i++] = w;
6467 w = NILP (w->next) ? 0 : XWINDOW (w->next);
6470 return i;
6474 /* Return a pointer to the glyph W's physical cursor is on. Value is
6475 null if W's current matrix is invalid, so that no meaningfull glyph
6476 can be returned. */
6478 struct glyph *
6479 get_phys_cursor_glyph (w)
6480 struct window *w;
6482 struct glyph_row *row;
6483 struct glyph *glyph;
6485 if (w->phys_cursor.vpos >= 0
6486 && w->phys_cursor.vpos < w->current_matrix->nrows
6487 && (row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos),
6488 row->enabled_p)
6489 && row->used[TEXT_AREA] > w->phys_cursor.hpos)
6490 glyph = row->glyphs[TEXT_AREA] + w->phys_cursor.hpos;
6491 else
6492 glyph = NULL;
6494 return glyph;
6498 static int
6499 save_window_save (window, vector, i)
6500 Lisp_Object window;
6501 struct Lisp_Vector *vector;
6502 int i;
6504 register struct saved_window *p;
6505 register struct window *w;
6506 register Lisp_Object tem;
6508 for (;!NILP (window); window = w->next)
6510 p = SAVED_WINDOW_N (vector, i);
6511 w = XWINDOW (window);
6513 XSETFASTINT (w->temslot, i); i++;
6514 p->window = window;
6515 p->buffer = w->buffer;
6516 p->left_col = w->left_col;
6517 p->top_line = w->top_line;
6518 p->total_cols = w->total_cols;
6519 p->total_lines = w->total_lines;
6520 p->hscroll = w->hscroll;
6521 p->min_hscroll = w->min_hscroll;
6522 p->display_table = w->display_table;
6523 p->orig_top_line = w->orig_top_line;
6524 p->orig_total_lines = w->orig_total_lines;
6525 p->left_margin_cols = w->left_margin_cols;
6526 p->right_margin_cols = w->right_margin_cols;
6527 p->left_fringe_width = w->left_fringe_width;
6528 p->right_fringe_width = w->right_fringe_width;
6529 p->fringes_outside_margins = w->fringes_outside_margins;
6530 p->scroll_bar_width = w->scroll_bar_width;
6531 p->vertical_scroll_bar_type = w->vertical_scroll_bar_type;
6532 p->dedicated = w->dedicated;
6533 if (!NILP (w->buffer))
6535 /* Save w's value of point in the window configuration.
6536 If w is the selected window, then get the value of point
6537 from the buffer; pointm is garbage in the selected window. */
6538 if (EQ (window, selected_window))
6540 p->pointm = Fmake_marker ();
6541 set_marker_both (p->pointm, w->buffer,
6542 BUF_PT (XBUFFER (w->buffer)),
6543 BUF_PT_BYTE (XBUFFER (w->buffer)));
6545 else
6546 p->pointm = Fcopy_marker (w->pointm, Qnil);
6548 p->start = Fcopy_marker (w->start, Qnil);
6549 p->start_at_line_beg = w->start_at_line_beg;
6551 tem = XBUFFER (w->buffer)->mark;
6552 p->mark = Fcopy_marker (tem, Qnil);
6554 else
6556 p->pointm = Qnil;
6557 p->start = Qnil;
6558 p->mark = Qnil;
6559 p->start_at_line_beg = Qnil;
6562 if (NILP (w->parent))
6563 p->parent = Qnil;
6564 else
6565 p->parent = XWINDOW (w->parent)->temslot;
6567 if (NILP (w->prev))
6568 p->prev = Qnil;
6569 else
6570 p->prev = XWINDOW (w->prev)->temslot;
6572 if (!NILP (w->vchild))
6573 i = save_window_save (w->vchild, vector, i);
6574 if (!NILP (w->hchild))
6575 i = save_window_save (w->hchild, vector, i);
6578 return i;
6581 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
6582 Scurrent_window_configuration, 0, 1, 0,
6583 doc: /* Return an object representing the current window configuration of FRAME.
6584 If FRAME is nil or omitted, use the selected frame.
6585 This describes the number of windows, their sizes and current buffers,
6586 and for each displayed buffer, where display starts, and the positions of
6587 point and mark. An exception is made for point in the current buffer:
6588 its value is -not- saved.
6589 This also records the currently selected frame, and FRAME's focus
6590 redirection (see `redirect-frame-focus'). */)
6591 (frame)
6592 Lisp_Object frame;
6594 register Lisp_Object tem;
6595 register int n_windows;
6596 register struct save_window_data *data;
6597 register struct Lisp_Vector *vec;
6598 register int i;
6599 FRAME_PTR f;
6601 if (NILP (frame))
6602 frame = selected_frame;
6603 CHECK_LIVE_FRAME (frame);
6604 f = XFRAME (frame);
6606 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
6607 vec = allocate_other_vector (VECSIZE (struct save_window_data));
6608 data = (struct save_window_data *)vec;
6610 XSETFASTINT (data->frame_cols, FRAME_COLS (f));
6611 XSETFASTINT (data->frame_lines, FRAME_LINES (f));
6612 XSETFASTINT (data->frame_menu_bar_lines, FRAME_MENU_BAR_LINES (f));
6613 XSETFASTINT (data->frame_tool_bar_lines, FRAME_TOOL_BAR_LINES (f));
6614 data->selected_frame = selected_frame;
6615 data->current_window = FRAME_SELECTED_WINDOW (f);
6616 XSETBUFFER (data->current_buffer, current_buffer);
6617 data->minibuf_scroll_window = minibuf_level > 0 ? Vminibuf_scroll_window : Qnil;
6618 data->minibuf_selected_window = minibuf_level > 0 ? minibuf_selected_window : Qnil;
6619 data->root_window = FRAME_ROOT_WINDOW (f);
6620 data->focus_frame = FRAME_FOCUS_FRAME (f);
6621 XSETINT (data->min_height, window_min_height);
6622 XSETINT (data->min_width, window_min_width);
6623 tem = Fmake_vector (make_number (n_windows), Qnil);
6624 data->saved_windows = tem;
6625 for (i = 0; i < n_windows; i++)
6626 XVECTOR (tem)->contents[i]
6627 = Fmake_vector (make_number (VECSIZE (struct saved_window)), Qnil);
6628 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
6629 XSETWINDOW_CONFIGURATION (tem, data);
6630 return (tem);
6633 DEFUN ("save-window-excursion", Fsave_window_excursion, Ssave_window_excursion,
6634 0, UNEVALLED, 0,
6635 doc: /* Execute BODY, preserving window sizes and contents.
6636 Return the value of the last form in BODY.
6637 Restore which buffer appears in which window, where display starts,
6638 and the value of point and mark for each window.
6639 Also restore the choice of selected window.
6640 Also restore which buffer is current.
6641 Does not restore the value of point in current buffer.
6642 usage: (save-window-excursion BODY ...) */)
6643 (args)
6644 Lisp_Object args;
6646 register Lisp_Object val;
6647 register int count = SPECPDL_INDEX ();
6649 record_unwind_protect (Fset_window_configuration,
6650 Fcurrent_window_configuration (Qnil));
6651 val = Fprogn (args);
6652 return unbind_to (count, val);
6657 /***********************************************************************
6658 Window Split Tree
6659 ***********************************************************************/
6661 static Lisp_Object
6662 window_tree (w)
6663 struct window *w;
6665 Lisp_Object tail = Qnil;
6666 Lisp_Object result = Qnil;
6668 while (w)
6670 Lisp_Object wn;
6672 XSETWINDOW (wn, w);
6673 if (!NILP (w->hchild))
6674 wn = Fcons (Qnil, Fcons (Fwindow_edges (wn),
6675 window_tree (XWINDOW (w->hchild))));
6676 else if (!NILP (w->vchild))
6677 wn = Fcons (Qt, Fcons (Fwindow_edges (wn),
6678 window_tree (XWINDOW (w->vchild))));
6680 if (NILP (result))
6682 result = tail = Fcons (wn, Qnil);
6684 else
6686 XSETCDR (tail, Fcons (wn, Qnil));
6687 tail = XCDR (tail);
6690 w = NILP (w->next) ? 0 : XWINDOW (w->next);
6693 return result;
6698 DEFUN ("window-tree", Fwindow_tree, Swindow_tree,
6699 0, 1, 0,
6700 doc: /* Return the window tree for frame FRAME.
6702 The return value is a list of the form (ROOT MINI), where ROOT
6703 represents the window tree of the frame's root window, and MINI
6704 is the frame's minibuffer window.
6706 If the root window is not split, ROOT is the root window itself.
6707 Otherwise, ROOT is a list (DIR EDGES W1 W2 ...) where DIR is nil for a
6708 horizontal split, and t for a vertical split, EDGES gives the combined
6709 size and position of the subwindows in the split, and the rest of the
6710 elements are the subwindows in the split. Each of the subwindows may
6711 again be a window or a list representing a window split, and so on.
6712 EDGES is a list \(LEFT TOP RIGHT BOTTOM) as returned by `window-edges'.
6714 If FRAME is nil or omitted, return information on the currently
6715 selected frame. */)
6716 (frame)
6717 Lisp_Object frame;
6719 FRAME_PTR f;
6721 if (NILP (frame))
6722 frame = selected_frame;
6724 CHECK_FRAME (frame);
6725 f = XFRAME (frame);
6727 if (!FRAME_LIVE_P (f))
6728 return Qnil;
6730 return window_tree (XWINDOW (FRAME_ROOT_WINDOW (f)));
6734 /***********************************************************************
6735 Marginal Areas
6736 ***********************************************************************/
6738 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
6739 2, 3, 0,
6740 doc: /* Set width of marginal areas of window WINDOW.
6741 If WINDOW is nil, set margins of the currently selected window.
6742 Second arg LEFT-WIDTH specifies the number of character cells to
6743 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6744 does the same for the right marginal area. A nil width parameter
6745 means no margin. */)
6746 (window, left_width, right_width)
6747 Lisp_Object window, left_width, right_width;
6749 struct window *w = decode_window (window);
6751 /* Translate negative or zero widths to nil.
6752 Margins that are too wide have to be checked elsewhere. */
6754 if (!NILP (left_width))
6756 CHECK_NUMBER (left_width);
6757 if (XINT (left_width) <= 0)
6758 left_width = Qnil;
6761 if (!NILP (right_width))
6763 CHECK_NUMBER (right_width);
6764 if (XINT (right_width) <= 0)
6765 right_width = Qnil;
6768 if (!EQ (w->left_margin_cols, left_width)
6769 || !EQ (w->right_margin_cols, right_width))
6771 w->left_margin_cols = left_width;
6772 w->right_margin_cols = right_width;
6774 adjust_window_margins (w);
6776 ++windows_or_buffers_changed;
6777 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6780 return Qnil;
6784 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
6785 0, 1, 0,
6786 doc: /* Get width of marginal areas of window WINDOW.
6787 If WINDOW is omitted or nil, use the currently selected window.
6788 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6789 If a marginal area does not exist, its width will be returned
6790 as nil. */)
6791 (window)
6792 Lisp_Object window;
6794 struct window *w = decode_window (window);
6795 return Fcons (w->left_margin_cols, w->right_margin_cols);
6800 /***********************************************************************
6801 Fringes
6802 ***********************************************************************/
6804 DEFUN ("set-window-fringes", Fset_window_fringes, Sset_window_fringes,
6805 2, 4, 0,
6806 doc: /* Set the fringe widths of window WINDOW.
6807 If WINDOW is nil, set the fringe widths of the currently selected
6808 window.
6809 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6810 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6811 fringe width. If a fringe width arg is nil, that means to use the
6812 frame's default fringe width. Default fringe widths can be set with
6813 the command `set-fringe-style'.
6814 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6815 outside of the display margins. By default, fringes are drawn between
6816 display marginal areas and the text area. */)
6817 (window, left_width, right_width, outside_margins)
6818 Lisp_Object window, left_width, right_width, outside_margins;
6820 struct window *w = decode_window (window);
6822 if (!NILP (left_width))
6823 CHECK_NATNUM (left_width);
6824 if (!NILP (right_width))
6825 CHECK_NATNUM (right_width);
6827 /* Do nothing on a tty. */
6828 if (FRAME_WINDOW_P (WINDOW_XFRAME (w))
6829 && (!EQ (w->left_fringe_width, left_width)
6830 || !EQ (w->right_fringe_width, right_width)
6831 || !EQ (w->fringes_outside_margins, outside_margins)))
6833 w->left_fringe_width = left_width;
6834 w->right_fringe_width = right_width;
6835 w->fringes_outside_margins = outside_margins;
6837 adjust_window_margins (w);
6839 clear_glyph_matrix (w->current_matrix);
6840 w->window_end_valid = Qnil;
6842 ++windows_or_buffers_changed;
6843 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6846 return Qnil;
6850 DEFUN ("window-fringes", Fwindow_fringes, Swindow_fringes,
6851 0, 1, 0,
6852 doc: /* Get width of fringes of window WINDOW.
6853 If WINDOW is omitted or nil, use the currently selected window.
6854 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6855 (window)
6856 Lisp_Object window;
6858 struct window *w = decode_window (window);
6860 return Fcons (make_number (WINDOW_LEFT_FRINGE_WIDTH (w)),
6861 Fcons (make_number (WINDOW_RIGHT_FRINGE_WIDTH (w)),
6862 Fcons ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
6863 ? Qt : Qnil), Qnil)));
6868 /***********************************************************************
6869 Scroll bars
6870 ***********************************************************************/
6872 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars, Sset_window_scroll_bars,
6873 2, 4, 0,
6874 doc: /* Set width and type of scroll bars of window WINDOW.
6875 If window is nil, set scroll bars of the currently selected window.
6876 Second parameter WIDTH specifies the pixel width for the scroll bar;
6877 this is automatically adjusted to a multiple of the frame column width.
6878 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6879 bar: left, right, or nil.
6880 If WIDTH is nil, use the frame's scroll-bar width.
6881 If VERTICAL-TYPE is t, use the frame's scroll-bar type.
6882 Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6883 (window, width, vertical_type, horizontal_type)
6884 Lisp_Object window, width, vertical_type, horizontal_type;
6886 struct window *w = decode_window (window);
6888 if (!NILP (width))
6890 CHECK_NATNUM (width);
6892 if (XINT (width) == 0)
6893 vertical_type = Qnil;
6896 if (!(EQ (vertical_type, Qnil)
6897 || EQ (vertical_type, Qleft)
6898 || EQ (vertical_type, Qright)
6899 || EQ (vertical_type, Qt)))
6900 error ("Invalid type of vertical scroll bar");
6902 if (!EQ (w->scroll_bar_width, width)
6903 || !EQ (w->vertical_scroll_bar_type, vertical_type))
6905 w->scroll_bar_width = width;
6906 w->vertical_scroll_bar_type = vertical_type;
6908 adjust_window_margins (w);
6910 clear_glyph_matrix (w->current_matrix);
6911 w->window_end_valid = Qnil;
6913 ++windows_or_buffers_changed;
6914 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6917 return Qnil;
6921 DEFUN ("window-scroll-bars", Fwindow_scroll_bars, Swindow_scroll_bars,
6922 0, 1, 0,
6923 doc: /* Get width and type of scroll bars of window WINDOW.
6924 If WINDOW is omitted or nil, use the currently selected window.
6925 Value is a list of the form (WIDTH COLS VERTICAL-TYPE HORIZONTAL-TYPE).
6926 If WIDTH is nil or TYPE is t, the window is using the frame's corresponding
6927 value. */)
6928 (window)
6929 Lisp_Object window;
6931 struct window *w = decode_window (window);
6932 return Fcons (make_number ((WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
6933 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
6934 : WINDOW_SCROLL_BAR_AREA_WIDTH (w))),
6935 Fcons (make_number (WINDOW_SCROLL_BAR_COLS (w)),
6936 Fcons (w->vertical_scroll_bar_type,
6937 Fcons (Qnil, Qnil))));
6942 /***********************************************************************
6943 Smooth scrolling
6944 ***********************************************************************/
6946 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
6947 doc: /* Return the amount by which WINDOW is scrolled vertically.
6948 Use the selected window if WINDOW is nil or omitted.
6949 Normally, value is a multiple of the canonical character height of WINDOW;
6950 optional second arg PIXELS-P means value is measured in pixels. */)
6951 (window, pixels_p)
6952 Lisp_Object window, pixels_p;
6954 Lisp_Object result;
6955 struct frame *f;
6956 struct window *w;
6958 if (NILP (window))
6959 window = selected_window;
6960 else
6961 CHECK_WINDOW (window);
6962 w = XWINDOW (window);
6963 f = XFRAME (w->frame);
6965 if (FRAME_WINDOW_P (f))
6966 result = (NILP (pixels_p)
6967 ? FRAME_CANON_Y_FROM_PIXEL_Y (f, -w->vscroll)
6968 : make_number (-w->vscroll));
6969 else
6970 result = make_number (0);
6971 return result;
6975 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
6976 2, 3, 0,
6977 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6978 WINDOW nil means use the selected window. Normally, VSCROLL is a
6979 non-negative multiple of the canonical character height of WINDOW;
6980 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6981 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6982 corresponds to an integral number of pixels. The return value is the
6983 result of this rounding.
6984 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6985 (window, vscroll, pixels_p)
6986 Lisp_Object window, vscroll, pixels_p;
6988 struct window *w;
6989 struct frame *f;
6991 if (NILP (window))
6992 window = selected_window;
6993 else
6994 CHECK_WINDOW (window);
6995 CHECK_NUMBER_OR_FLOAT (vscroll);
6997 w = XWINDOW (window);
6998 f = XFRAME (w->frame);
7000 if (FRAME_WINDOW_P (f))
7002 int old_dy = w->vscroll;
7004 w->vscroll = - (NILP (pixels_p)
7005 ? FRAME_LINE_HEIGHT (f) * XFLOATINT (vscroll)
7006 : XFLOATINT (vscroll));
7007 w->vscroll = min (w->vscroll, 0);
7009 if (w->vscroll != old_dy)
7011 /* Adjust glyph matrix of the frame if the virtual display
7012 area becomes larger than before. */
7013 if (w->vscroll < 0 && w->vscroll < old_dy)
7014 adjust_glyphs (f);
7016 /* Prevent redisplay shortcuts. */
7017 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
7021 return Fwindow_vscroll (window, pixels_p);
7025 /* Call FN for all leaf windows on frame F. FN is called with the
7026 first argument being a pointer to the leaf window, and with
7027 additional argument USER_DATA. Stops when FN returns 0. */
7029 void
7030 foreach_window (f, fn, user_data)
7031 struct frame *f;
7032 int (* fn) P_ ((struct window *, void *));
7033 void *user_data;
7035 /* Fdelete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
7036 if (WINDOWP (FRAME_ROOT_WINDOW (f)))
7037 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
7041 /* Helper function for foreach_window. Call FN for all leaf windows
7042 reachable from W. FN is called with the first argument being a
7043 pointer to the leaf window, and with additional argument USER_DATA.
7044 Stop when FN returns 0. Value is 0 if stopped by FN. */
7046 static int
7047 foreach_window_1 (w, fn, user_data)
7048 struct window *w;
7049 int (* fn) P_ ((struct window *, void *));
7050 void *user_data;
7052 int cont;
7054 for (cont = 1; w && cont;)
7056 if (!NILP (w->hchild))
7057 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
7058 else if (!NILP (w->vchild))
7059 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
7060 else
7061 cont = fn (w, user_data);
7063 w = NILP (w->next) ? 0 : XWINDOW (w->next);
7066 return cont;
7070 /* Freeze or unfreeze the window start of W unless it is a
7071 mini-window or the selected window. FREEZE_P non-null means freeze
7072 the window start. */
7074 static int
7075 freeze_window_start (w, freeze_p)
7076 struct window *w;
7077 void *freeze_p;
7079 if (w == XWINDOW (selected_window)
7080 || MINI_WINDOW_P (w)
7081 || (MINI_WINDOW_P (XWINDOW (selected_window))
7082 && ! NILP (Vminibuf_scroll_window)
7083 && w == XWINDOW (Vminibuf_scroll_window)))
7084 freeze_p = NULL;
7086 w->frozen_window_start_p = freeze_p != NULL;
7087 return 1;
7091 /* Freeze or unfreeze the window starts of all leaf windows on frame
7092 F, except the selected window and a mini-window. FREEZE_P non-zero
7093 means freeze the window start. */
7095 void
7096 freeze_window_starts (f, freeze_p)
7097 struct frame *f;
7098 int freeze_p;
7100 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
7104 /***********************************************************************
7105 Initialization
7106 ***********************************************************************/
7108 /* Return 1 if window configurations C1 and C2
7109 describe the same state of affairs. This is used by Fequal. */
7112 compare_window_configurations (c1, c2, ignore_positions)
7113 Lisp_Object c1, c2;
7114 int ignore_positions;
7116 register struct save_window_data *d1, *d2;
7117 struct Lisp_Vector *sw1, *sw2;
7118 int i;
7120 CHECK_WINDOW_CONFIGURATION (c1);
7121 CHECK_WINDOW_CONFIGURATION (c2);
7123 d1 = (struct save_window_data *) XVECTOR (c1);
7124 d2 = (struct save_window_data *) XVECTOR (c2);
7125 sw1 = XVECTOR (d1->saved_windows);
7126 sw2 = XVECTOR (d2->saved_windows);
7128 if (! EQ (d1->frame_cols, d2->frame_cols))
7129 return 0;
7130 if (! EQ (d1->frame_lines, d2->frame_lines))
7131 return 0;
7132 if (! EQ (d1->frame_menu_bar_lines, d2->frame_menu_bar_lines))
7133 return 0;
7134 if (! EQ (d1->selected_frame, d2->selected_frame))
7135 return 0;
7136 /* Don't compare the current_window field directly.
7137 Instead see w1_is_current and w2_is_current, below. */
7138 if (! EQ (d1->current_buffer, d2->current_buffer))
7139 return 0;
7140 if (! ignore_positions)
7142 if (! EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window))
7143 return 0;
7144 if (! EQ (d1->minibuf_selected_window, d2->minibuf_selected_window))
7145 return 0;
7147 /* Don't compare the root_window field.
7148 We don't require the two configurations
7149 to use the same window object,
7150 and the two root windows must be equivalent
7151 if everything else compares equal. */
7152 if (! EQ (d1->focus_frame, d2->focus_frame))
7153 return 0;
7154 if (! EQ (d1->min_width, d2->min_width))
7155 return 0;
7156 if (! EQ (d1->min_height, d2->min_height))
7157 return 0;
7159 /* Verify that the two confis have the same number of windows. */
7160 if (sw1->size != sw2->size)
7161 return 0;
7163 for (i = 0; i < sw1->size; i++)
7165 struct saved_window *p1, *p2;
7166 int w1_is_current, w2_is_current;
7168 p1 = SAVED_WINDOW_N (sw1, i);
7169 p2 = SAVED_WINDOW_N (sw2, i);
7171 /* Verify that the current windows in the two
7172 configurations correspond to each other. */
7173 w1_is_current = EQ (d1->current_window, p1->window);
7174 w2_is_current = EQ (d2->current_window, p2->window);
7176 if (w1_is_current != w2_is_current)
7177 return 0;
7179 /* Verify that the corresponding windows do match. */
7180 if (! EQ (p1->buffer, p2->buffer))
7181 return 0;
7182 if (! EQ (p1->left_col, p2->left_col))
7183 return 0;
7184 if (! EQ (p1->top_line, p2->top_line))
7185 return 0;
7186 if (! EQ (p1->total_cols, p2->total_cols))
7187 return 0;
7188 if (! EQ (p1->total_lines, p2->total_lines))
7189 return 0;
7190 if (! EQ (p1->display_table, p2->display_table))
7191 return 0;
7192 if (! EQ (p1->parent, p2->parent))
7193 return 0;
7194 if (! EQ (p1->prev, p2->prev))
7195 return 0;
7196 if (! ignore_positions)
7198 if (! EQ (p1->hscroll, p2->hscroll))
7199 return 0;
7200 if (!EQ (p1->min_hscroll, p2->min_hscroll))
7201 return 0;
7202 if (! EQ (p1->start_at_line_beg, p2->start_at_line_beg))
7203 return 0;
7204 if (NILP (Fequal (p1->start, p2->start)))
7205 return 0;
7206 if (NILP (Fequal (p1->pointm, p2->pointm)))
7207 return 0;
7208 if (NILP (Fequal (p1->mark, p2->mark)))
7209 return 0;
7211 if (! EQ (p1->left_margin_cols, p2->left_margin_cols))
7212 return 0;
7213 if (! EQ (p1->right_margin_cols, p2->right_margin_cols))
7214 return 0;
7215 if (! EQ (p1->left_fringe_width, p2->left_fringe_width))
7216 return 0;
7217 if (! EQ (p1->right_fringe_width, p2->right_fringe_width))
7218 return 0;
7219 if (! EQ (p1->fringes_outside_margins, p2->fringes_outside_margins))
7220 return 0;
7221 if (! EQ (p1->scroll_bar_width, p2->scroll_bar_width))
7222 return 0;
7223 if (! EQ (p1->vertical_scroll_bar_type, p2->vertical_scroll_bar_type))
7224 return 0;
7227 return 1;
7230 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
7231 Scompare_window_configurations, 2, 2, 0,
7232 doc: /* Compare two window configurations as regards the structure of windows.
7233 This function ignores details such as the values of point and mark
7234 and scrolling positions. */)
7235 (x, y)
7236 Lisp_Object x, y;
7238 if (compare_window_configurations (x, y, 1))
7239 return Qt;
7240 return Qnil;
7243 void
7244 init_window_once ()
7246 struct frame *f = make_terminal_frame ();
7247 XSETFRAME (selected_frame, f);
7248 Vterminal_frame = selected_frame;
7249 minibuf_window = f->minibuffer_window;
7250 selected_window = f->selected_window;
7251 last_nonminibuf_frame = f;
7253 window_initialized = 1;
7256 void
7257 init_window ()
7259 Vwindow_list = Qnil;
7262 void
7263 syms_of_window ()
7265 Qscroll_up = intern ("scroll-up");
7266 staticpro (&Qscroll_up);
7268 Qscroll_down = intern ("scroll-down");
7269 staticpro (&Qscroll_down);
7271 Qwindow_size_fixed = intern ("window-size-fixed");
7272 staticpro (&Qwindow_size_fixed);
7273 Fset (Qwindow_size_fixed, Qnil);
7275 staticpro (&Qwindow_configuration_change_hook);
7276 Qwindow_configuration_change_hook
7277 = intern ("window-configuration-change-hook");
7279 Qwindowp = intern ("windowp");
7280 staticpro (&Qwindowp);
7282 Qwindow_configuration_p = intern ("window-configuration-p");
7283 staticpro (&Qwindow_configuration_p);
7285 Qwindow_live_p = intern ("window-live-p");
7286 staticpro (&Qwindow_live_p);
7288 Qtemp_buffer_show_hook = intern ("temp-buffer-show-hook");
7289 staticpro (&Qtemp_buffer_show_hook);
7291 staticpro (&Vwindow_list);
7293 minibuf_selected_window = Qnil;
7294 staticpro (&minibuf_selected_window);
7296 window_scroll_pixel_based_preserve_y = -1;
7298 DEFVAR_LISP ("temp-buffer-show-function", &Vtemp_buffer_show_function,
7299 doc: /* Non-nil means call as function to display a help buffer.
7300 The function is called with one argument, the buffer to be displayed.
7301 Used by `with-output-to-temp-buffer'.
7302 If this function is used, then it must do the entire job of showing
7303 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
7304 Vtemp_buffer_show_function = Qnil;
7306 DEFVAR_LISP ("display-buffer-function", &Vdisplay_buffer_function,
7307 doc: /* If non-nil, function to call to handle `display-buffer'.
7308 It will receive two args, the buffer and a flag which if non-nil means
7309 that the currently selected window is not acceptable.
7310 It should choose or create a window, display the specified buffer in it,
7311 and return the window.
7312 Commands such as `switch-to-buffer-other-window' and `find-file-other-window'
7313 work using this function. */);
7314 Vdisplay_buffer_function = Qnil;
7316 DEFVAR_LISP ("even-window-heights", &Veven_window_heights,
7317 doc: /* *If non-nil, `display-buffer' should even the window heights.
7318 If nil, `display-buffer' will leave the window configuration alone. */);
7319 Veven_window_heights = Qt;
7321 DEFVAR_LISP ("minibuffer-scroll-window", &Vminibuf_scroll_window,
7322 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
7323 Vminibuf_scroll_window = Qnil;
7325 DEFVAR_BOOL ("mode-line-in-non-selected-windows", &mode_line_in_non_selected_windows,
7326 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
7327 If the minibuffer is active, the `minibuffer-scroll-window' mode line
7328 is displayed in the `mode-line' face. */);
7329 mode_line_in_non_selected_windows = 1;
7331 DEFVAR_LISP ("other-window-scroll-buffer", &Vother_window_scroll_buffer,
7332 doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
7333 Vother_window_scroll_buffer = Qnil;
7335 DEFVAR_BOOL ("pop-up-frames", &pop_up_frames,
7336 doc: /* *Non-nil means `display-buffer' should make a separate frame. */);
7337 pop_up_frames = 0;
7339 DEFVAR_BOOL ("auto-window-vscroll", &auto_window_vscroll_p,
7340 doc: /* *Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
7341 auto_window_vscroll_p = 1;
7343 DEFVAR_BOOL ("display-buffer-reuse-frames", &display_buffer_reuse_frames,
7344 doc: /* *Non-nil means `display-buffer' should reuse frames.
7345 If the buffer in question is already displayed in a frame, raise that frame. */);
7346 display_buffer_reuse_frames = 0;
7348 DEFVAR_LISP ("pop-up-frame-function", &Vpop_up_frame_function,
7349 doc: /* Function to call to handle automatic new frame creation.
7350 It is called with no arguments and should return a newly created frame.
7352 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'
7353 where `pop-up-frame-alist' would hold the default frame parameters. */);
7354 Vpop_up_frame_function = Qnil;
7356 DEFVAR_LISP ("special-display-buffer-names", &Vspecial_display_buffer_names,
7357 doc: /* *List of buffer names that should have their own special frames.
7358 Displaying a buffer with `display-buffer' or `pop-to-buffer',
7359 if its name is in this list, makes a special frame for it
7360 using `special-display-function'. See also `special-display-regexps'.
7362 An element of the list can be a list instead of just a string.
7363 There are two ways to use a list as an element:
7364 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)
7365 In the first case, the FRAME-PARAMETERS are pairs of the form
7366 \(PARAMETER . VALUE); these parameter values are used to create the frame.
7367 In the second case, FUNCTION is called with BUFFER as the first argument,
7368 followed by the OTHER-ARGS--it can display BUFFER in any way it likes.
7369 All this is done by the function found in `special-display-function'.
7371 If the specified frame parameters include (same-buffer . t), the
7372 buffer is displayed in the currently selected window. Otherwise, if
7373 they include (same-frame . t), the buffer is displayed in a new window
7374 in the currently selected frame.
7376 If this variable appears \"not to work\", because you add a name to it
7377 but that buffer still appears in the selected window, look at the
7378 values of `same-window-buffer-names' and `same-window-regexps'.
7379 Those variables take precedence over this one. */);
7380 Vspecial_display_buffer_names = Qnil;
7382 DEFVAR_LISP ("special-display-regexps", &Vspecial_display_regexps,
7383 doc: /* *List of regexps saying which buffers should have their own special frames.
7384 When displaying a buffer with `display-buffer' or `pop-to-buffer',
7385 if any regexp in this list matches the buffer name, it makes a
7386 special frame for the buffer by calling `special-display-function'.
7388 An element of the list can be a list instead of just a string.
7389 There are two ways to use a list as an element:
7390 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)
7391 In the first case, the FRAME-PARAMETERS are pairs of the form
7392 \(PARAMETER . VALUE); these parameter values are used to create the frame.
7393 In the second case, FUNCTION is called with BUFFER as the first argument,
7394 followed by the OTHER-ARGS--it can display the buffer in any way it likes.
7395 All this is done by the function found in `special-display-function'.
7397 If the specified frame parameters include (same-buffer . t), the
7398 buffer is displayed in the currently selected window. Otherwise, if
7399 they include (same-frame . t), the buffer is displayed in a new window
7400 in the currently selected frame.
7402 If this variable appears \"not to work\", because you add a regexp to it
7403 but the matching buffers still appear in the selected window, look at the
7404 values of `same-window-buffer-names' and `same-window-regexps'.
7405 Those variables take precedence over this one. */);
7406 Vspecial_display_regexps = Qnil;
7408 DEFVAR_LISP ("special-display-function", &Vspecial_display_function,
7409 doc: /* Function to call to make a new frame for a special buffer.
7410 It is called with two arguments, the buffer and optional buffer specific
7411 data, and should return a window displaying that buffer.
7412 The default value normally makes a separate frame for the buffer,
7413 using `special-display-frame-alist' to specify the frame parameters.
7414 But if the buffer specific data includes (same-buffer . t) then the
7415 buffer is displayed in the current selected window.
7416 Otherwise if it includes (same-frame . t) then the buffer is displayed in
7417 a new window in the currently selected frame.
7419 A buffer is special if it is listed in `special-display-buffer-names'
7420 or matches a regexp in `special-display-regexps'. */);
7421 Vspecial_display_function = Qnil;
7423 DEFVAR_LISP ("same-window-buffer-names", &Vsame_window_buffer_names,
7424 doc: /* *List of buffer names that should appear in the selected window.
7425 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'
7426 switches to it in the selected window, rather than making it appear
7427 in some other window.
7429 An element of the list can be a cons cell instead of just a string.
7430 Then the car must be a string, which specifies the buffer name.
7431 This is for compatibility with `special-display-buffer-names';
7432 the cdr of the cons cell is ignored.
7434 See also `same-window-regexps'. */);
7435 Vsame_window_buffer_names = Qnil;
7437 DEFVAR_LISP ("same-window-regexps", &Vsame_window_regexps,
7438 doc: /* *List of regexps saying which buffers should appear in the selected window.
7439 If a buffer name matches one of these regexps, then displaying it
7440 using `display-buffer' or `pop-to-buffer' switches to it
7441 in the selected window, rather than making it appear in some other window.
7443 An element of the list can be a cons cell instead of just a string.
7444 Then the car must be a string, which specifies the buffer name.
7445 This is for compatibility with `special-display-buffer-names';
7446 the cdr of the cons cell is ignored.
7448 See also `same-window-buffer-names'. */);
7449 Vsame_window_regexps = Qnil;
7451 DEFVAR_BOOL ("pop-up-windows", &pop_up_windows,
7452 doc: /* *Non-nil means display-buffer should make new windows. */);
7453 pop_up_windows = 1;
7455 DEFVAR_INT ("next-screen-context-lines", &next_screen_context_lines,
7456 doc: /* *Number of lines of continuity when scrolling by screenfuls. */);
7457 next_screen_context_lines = 2;
7459 DEFVAR_INT ("split-height-threshold", &split_height_threshold,
7460 doc: /* *A window must be at least this tall to be eligible for splitting
7461 by `display-buffer'. The value is in line units.
7462 If there is only one window, it is split regardless of this value. */);
7463 split_height_threshold = 500;
7465 DEFVAR_INT ("window-min-height", &window_min_height,
7466 doc: /* *Delete any window less than this tall (including its mode line).
7467 The value is in line units. */);
7468 window_min_height = 4;
7470 DEFVAR_INT ("window-min-width", &window_min_width,
7471 doc: /* *Delete any window less than this wide (measured in characters). */);
7472 window_min_width = 10;
7474 DEFVAR_LISP ("scroll-preserve-screen-position",
7475 &Vscroll_preserve_screen_position,
7476 doc: /* *Controls if scroll commands move point to keep its screen line unchanged.
7477 A value of nil means point does not keep its screen position except
7478 at the scroll margin or window boundary respectively.
7479 A value of t means point keeps its screen position if the scroll
7480 command moved it vertically out of the window, e.g. when scrolling
7481 by full screens.
7482 Any other value means point always keeps its screen position. */);
7483 Vscroll_preserve_screen_position = Qnil;
7485 DEFVAR_LISP ("window-configuration-change-hook",
7486 &Vwindow_configuration_change_hook,
7487 doc: /* Functions to call when window configuration changes.
7488 The selected frame is the one whose configuration has changed. */);
7489 Vwindow_configuration_change_hook = Qnil;
7491 defsubr (&Sselected_window);
7492 defsubr (&Sminibuffer_window);
7493 defsubr (&Swindow_minibuffer_p);
7494 defsubr (&Swindowp);
7495 defsubr (&Swindow_live_p);
7496 defsubr (&Spos_visible_in_window_p);
7497 defsubr (&Swindow_line_height);
7498 defsubr (&Swindow_buffer);
7499 defsubr (&Swindow_height);
7500 defsubr (&Swindow_width);
7501 defsubr (&Swindow_hscroll);
7502 defsubr (&Sset_window_hscroll);
7503 defsubr (&Swindow_redisplay_end_trigger);
7504 defsubr (&Sset_window_redisplay_end_trigger);
7505 defsubr (&Swindow_edges);
7506 defsubr (&Swindow_pixel_edges);
7507 defsubr (&Swindow_inside_edges);
7508 defsubr (&Swindow_inside_pixel_edges);
7509 defsubr (&Scoordinates_in_window_p);
7510 defsubr (&Swindow_at);
7511 defsubr (&Swindow_point);
7512 defsubr (&Swindow_start);
7513 defsubr (&Swindow_end);
7514 defsubr (&Sset_window_point);
7515 defsubr (&Sset_window_start);
7516 defsubr (&Swindow_dedicated_p);
7517 defsubr (&Sset_window_dedicated_p);
7518 defsubr (&Swindow_display_table);
7519 defsubr (&Sset_window_display_table);
7520 defsubr (&Snext_window);
7521 defsubr (&Sprevious_window);
7522 defsubr (&Sother_window);
7523 defsubr (&Sget_lru_window);
7524 defsubr (&Sget_largest_window);
7525 defsubr (&Sget_buffer_window);
7526 defsubr (&Sdelete_other_windows);
7527 defsubr (&Sdelete_windows_on);
7528 defsubr (&Sreplace_buffer_in_windows);
7529 defsubr (&Sdelete_window);
7530 defsubr (&Sset_window_buffer);
7531 defsubr (&Sselect_window);
7532 defsubr (&Sspecial_display_p);
7533 defsubr (&Ssame_window_p);
7534 defsubr (&Sdisplay_buffer);
7535 defsubr (&Sforce_window_update);
7536 defsubr (&Ssplit_window);
7537 defsubr (&Senlarge_window);
7538 defsubr (&Sshrink_window);
7539 defsubr (&Sadjust_window_trailing_edge);
7540 defsubr (&Sscroll_up);
7541 defsubr (&Sscroll_down);
7542 defsubr (&Sscroll_left);
7543 defsubr (&Sscroll_right);
7544 defsubr (&Sother_window_for_scrolling);
7545 defsubr (&Sscroll_other_window);
7546 defsubr (&Sminibuffer_selected_window);
7547 defsubr (&Srecenter);
7548 defsubr (&Swindow_text_height);
7549 defsubr (&Smove_to_window_line);
7550 defsubr (&Swindow_configuration_p);
7551 defsubr (&Swindow_configuration_frame);
7552 defsubr (&Sset_window_configuration);
7553 defsubr (&Scurrent_window_configuration);
7554 defsubr (&Ssave_window_excursion);
7555 defsubr (&Swindow_tree);
7556 defsubr (&Sset_window_margins);
7557 defsubr (&Swindow_margins);
7558 defsubr (&Sset_window_fringes);
7559 defsubr (&Swindow_fringes);
7560 defsubr (&Sset_window_scroll_bars);
7561 defsubr (&Swindow_scroll_bars);
7562 defsubr (&Swindow_vscroll);
7563 defsubr (&Sset_window_vscroll);
7564 defsubr (&Scompare_window_configurations);
7565 defsubr (&Swindow_list);
7568 void
7569 keys_of_window ()
7571 initial_define_key (control_x_map, '1', "delete-other-windows");
7572 initial_define_key (control_x_map, '2', "split-window");
7573 initial_define_key (control_x_map, '0', "delete-window");
7574 initial_define_key (control_x_map, 'o', "other-window");
7575 initial_define_key (control_x_map, '^', "enlarge-window");
7576 initial_define_key (control_x_map, '<', "scroll-left");
7577 initial_define_key (control_x_map, '>', "scroll-right");
7579 initial_define_key (global_map, Ctl ('V'), "scroll-up");
7580 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
7581 initial_define_key (meta_map, 'v', "scroll-down");
7583 initial_define_key (global_map, Ctl('L'), "recenter");
7584 initial_define_key (meta_map, 'r', "move-to-window-line");
7587 /* arch-tag: 90a9c576-0590-48f1-a5f1-6c96a0452d9f
7588 (do not change this comment) */