Revert "Revert changes installed by xwidgets merge"
[emacs.git] / src / window.c
blobb4230100150af067984f30f1ffcfdd7c467742b7
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985-1987, 1993-1998, 2000-2015 Free Software
4 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 3 of the License, or
11 (at your option) 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. If not, see <http://www.gnu.org/licenses/>. */
21 #include <config.h>
23 #include <stdio.h>
25 #include "lisp.h"
26 #include "character.h"
27 #include "buffer.h"
28 #include "keyboard.h"
29 #include "keymap.h"
30 #include "menu.h"
31 #include "frame.h"
32 #include "window.h"
33 #include "commands.h"
34 #include "indent.h"
35 #include "termchar.h"
36 #include "disptab.h"
37 #include "dispextern.h"
38 #include "blockinput.h"
39 #include "intervals.h"
40 #include "termhooks.h" /* For FRAME_TERMINAL. */
41 #ifdef HAVE_WINDOW_SYSTEM
42 #include TERM_HEADER
43 #endif /* HAVE_WINDOW_SYSTEM */
44 #ifdef MSDOS
45 #include "msdos.h"
46 #endif
47 #ifdef HAVE_XWIDGETS
48 #include "xwidget.h"
49 #endif
51 static int displayed_window_lines (struct window *);
52 static int count_windows (struct window *);
53 static int get_leaf_windows (struct window *, struct window **, int);
54 static void window_scroll (Lisp_Object, EMACS_INT, bool, int);
55 static void window_scroll_pixel_based (Lisp_Object, int, bool, int);
56 static void window_scroll_line_based (Lisp_Object, int, bool, int);
57 static int add_window_to_list (struct window *, void *);
58 static Lisp_Object next_window (Lisp_Object, Lisp_Object,
59 Lisp_Object, int);
60 static void decode_next_window_args (Lisp_Object *, Lisp_Object *,
61 Lisp_Object *);
62 static void foreach_window (struct frame *,
63 int (* fn) (struct window *, void *),
64 void *);
65 static int foreach_window_1 (struct window *,
66 int (* fn) (struct window *, void *),
67 void *);
68 static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object);
69 static int window_resize_check (struct window *, bool);
70 static void window_resize_apply (struct window *, bool);
71 static void window_resize_apply_total (struct window *, bool);
72 static Lisp_Object select_window (Lisp_Object, Lisp_Object, int);
73 static void select_window_1 (Lisp_Object, bool);
75 static struct window *set_window_fringes (struct window *, Lisp_Object,
76 Lisp_Object, Lisp_Object);
77 static struct window *set_window_margins (struct window *, Lisp_Object,
78 Lisp_Object);
79 static struct window *set_window_scroll_bars (struct window *, Lisp_Object,
80 Lisp_Object, Lisp_Object, Lisp_Object);
81 static void apply_window_adjustment (struct window *);
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). */
90 Lisp_Object selected_window;
92 /* A list of all windows for use by next_window and Fwindow_list.
93 Functions creating or deleting windows should invalidate this cache
94 by setting it to nil. */
95 Lisp_Object Vwindow_list;
97 /* The mini-buffer window of the selected frame.
98 Note that you cannot test for mini-bufferness of an arbitrary window
99 by comparing against this; but you can test for mini-bufferness of
100 the selected window. */
101 Lisp_Object minibuf_window;
103 /* Non-nil means it is the window whose mode line should be
104 shown as the selected window when the minibuffer is selected. */
105 Lisp_Object minibuf_selected_window;
107 /* Incremented for each window created. */
108 static int sequence_number;
110 /* Used by the function window_scroll_pixel_based. */
111 static int window_scroll_pixel_based_preserve_x;
112 static int window_scroll_pixel_based_preserve_y;
114 /* Same for window_scroll_line_based. */
115 static EMACS_INT window_scroll_preserve_hpos;
116 static EMACS_INT window_scroll_preserve_vpos;
118 static void
119 CHECK_WINDOW_CONFIGURATION (Lisp_Object x)
121 CHECK_TYPE (WINDOW_CONFIGURATIONP (x), Qwindow_configuration_p, x);
124 /* These setters are used only in this file, so they can be private. */
125 static void
126 wset_combination_limit (struct window *w, Lisp_Object val)
128 w->combination_limit = val;
131 static void
132 wset_dedicated (struct window *w, Lisp_Object val)
134 w->dedicated = val;
137 static void
138 wset_display_table (struct window *w, Lisp_Object val)
140 w->display_table = val;
143 static void
144 wset_new_normal (struct window *w, Lisp_Object val)
146 w->new_normal = val;
149 static void
150 wset_new_total (struct window *w, Lisp_Object val)
152 w->new_total = val;
155 static void
156 wset_normal_cols (struct window *w, Lisp_Object val)
158 w->normal_cols = val;
161 static void
162 wset_normal_lines (struct window *w, Lisp_Object val)
164 w->normal_lines = val;
167 static void
168 wset_parent (struct window *w, Lisp_Object val)
170 w->parent = val;
173 static void
174 wset_pointm (struct window *w, Lisp_Object val)
176 w->pointm = val;
179 static void
180 wset_old_pointm (struct window *w, Lisp_Object val)
182 w->old_pointm = val;
185 static void
186 wset_start (struct window *w, Lisp_Object val)
188 w->start = val;
191 static void
192 wset_temslot (struct window *w, Lisp_Object val)
194 w->temslot = val;
197 static void
198 wset_vertical_scroll_bar_type (struct window *w, Lisp_Object val)
200 w->vertical_scroll_bar_type = val;
203 static void
204 wset_window_parameters (struct window *w, Lisp_Object val)
206 w->window_parameters = val;
209 static void
210 wset_combination (struct window *w, bool horflag, Lisp_Object val)
212 /* Since leaf windows never becomes non-leaf, there should
213 be no buffer and markers in start and pointm fields of W. */
214 eassert (!BUFFERP (w->contents) && NILP (w->start) && NILP (w->pointm));
215 w->contents = val;
216 /* When an internal window is deleted and VAL is nil, HORFLAG
217 is meaningless. */
218 if (!NILP (val))
219 w->horizontal = horflag;
222 /* Nonzero if leaf window W doesn't reflect the actual state
223 of displayed buffer due to its text or overlays change. */
225 bool
226 window_outdated (struct window *w)
228 struct buffer *b = XBUFFER (w->contents);
229 return (w->last_modified < BUF_MODIFF (b)
230 || w->last_overlay_modified < BUF_OVERLAY_MODIFF (b));
233 struct window *
234 decode_live_window (register Lisp_Object window)
236 if (NILP (window))
237 return XWINDOW (selected_window);
239 CHECK_LIVE_WINDOW (window);
240 return XWINDOW (window);
243 struct window *
244 decode_any_window (register Lisp_Object window)
246 struct window *w;
248 if (NILP (window))
249 return XWINDOW (selected_window);
251 CHECK_WINDOW (window);
252 w = XWINDOW (window);
253 return w;
256 static struct window *
257 decode_valid_window (register Lisp_Object window)
259 struct window *w;
261 if (NILP (window))
262 return XWINDOW (selected_window);
264 CHECK_VALID_WINDOW (window);
265 w = XWINDOW (window);
266 return w;
269 /* Called when W's buffer slot is changed. ARG -1 means that W is about to
270 cease its buffer, and 1 means that W is about to set up the new one. */
272 static void
273 adjust_window_count (struct window *w, int arg)
275 eassert (eabs (arg) == 1);
276 if (BUFFERP (w->contents))
278 struct buffer *b = XBUFFER (w->contents);
280 if (b->base_buffer)
281 b = b->base_buffer;
282 b->window_count += arg;
283 eassert (b->window_count >= 0);
284 /* These should be recalculated by redisplay code. */
285 w->window_end_valid = 0;
286 w->base_line_pos = 0;
290 /* Set W's buffer slot to VAL and recompute number
291 of windows showing VAL if it is a buffer. */
293 void
294 wset_buffer (struct window *w, Lisp_Object val)
296 adjust_window_count (w, -1);
297 if (BUFFERP (val))
298 /* Make sure that we do not assign the buffer
299 to an internal window. */
300 eassert (MARKERP (w->start) && MARKERP (w->pointm));
301 w->contents = val;
302 adjust_window_count (w, 1);
305 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
306 doc: /* Return t if OBJECT is a window and nil otherwise. */)
307 (Lisp_Object object)
309 return WINDOWP (object) ? Qt : Qnil;
312 DEFUN ("window-valid-p", Fwindow_valid_p, Swindow_valid_p, 1, 1, 0,
313 doc: /* Return t if OBJECT is a valid window and nil otherwise.
314 A valid window is either a window that displays a buffer or an internal
315 window. Windows that have been deleted are not valid. */)
316 (Lisp_Object object)
318 return WINDOW_VALID_P (object) ? Qt : Qnil;
321 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
322 doc: /* Return t if OBJECT is a live window and nil otherwise.
323 A live window is a window that displays a buffer.
324 Internal windows and deleted windows are not live. */)
325 (Lisp_Object object)
327 return WINDOW_LIVE_P (object) ? Qt : Qnil;
330 /* Frames and windows. */
331 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 0, 1, 0,
332 doc: /* Return the frame that window WINDOW is on.
333 WINDOW must be a valid window and defaults to the selected one. */)
334 (Lisp_Object window)
336 return decode_valid_window (window)->frame;
339 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
340 doc: /* Return the root window of FRAME-OR-WINDOW.
341 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
342 With a frame argument, return that frame's root window.
343 With a window argument, return the root window of that window's frame. */)
344 (Lisp_Object frame_or_window)
346 Lisp_Object window;
348 if (NILP (frame_or_window))
349 window = SELECTED_FRAME ()->root_window;
350 else if (WINDOW_VALID_P (frame_or_window))
351 window = XFRAME (XWINDOW (frame_or_window)->frame)->root_window;
352 else
354 CHECK_LIVE_FRAME (frame_or_window);
355 window = XFRAME (frame_or_window)->root_window;
358 return window;
361 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
362 doc: /* Return the minibuffer window for frame FRAME.
363 If FRAME is omitted or nil, it defaults to the selected frame. */)
364 (Lisp_Object frame)
366 return FRAME_MINIBUF_WINDOW (decode_live_frame (frame));
369 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p,
370 Swindow_minibuffer_p, 0, 1, 0,
371 doc: /* Return non-nil if WINDOW is a minibuffer window.
372 WINDOW must be a valid window and defaults to the selected one. */)
373 (Lisp_Object window)
375 return MINI_WINDOW_P (decode_valid_window (window)) ? Qt : Qnil;
378 /* Don't move this to window.el - this must be a safe routine. */
379 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
380 doc: /* Return the topmost, leftmost live window on FRAME-OR-WINDOW.
381 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
382 Else if FRAME-OR-WINDOW denotes a valid window, return the first window
383 of that window's frame. If FRAME-OR-WINDOW denotes a live frame, return
384 the first window of that frame. */)
385 (Lisp_Object frame_or_window)
387 Lisp_Object window;
389 if (NILP (frame_or_window))
390 window = SELECTED_FRAME ()->root_window;
391 else if (WINDOW_VALID_P (frame_or_window))
392 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->root_window;
393 else
395 CHECK_LIVE_FRAME (frame_or_window);
396 window = XFRAME (frame_or_window)->root_window;
399 while (WINDOWP (XWINDOW (window)->contents))
400 window = XWINDOW (window)->contents;
402 return window;
405 DEFUN ("frame-selected-window", Fframe_selected_window,
406 Sframe_selected_window, 0, 1, 0,
407 doc: /* Return the selected window of FRAME-OR-WINDOW.
408 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
409 Else if FRAME-OR-WINDOW denotes a valid window, return the selected
410 window of that window's frame. If FRAME-OR-WINDOW denotes a live frame,
411 return the selected window of that frame. */)
412 (Lisp_Object frame_or_window)
414 Lisp_Object window;
416 if (NILP (frame_or_window))
417 window = SELECTED_FRAME ()->selected_window;
418 else if (WINDOW_VALID_P (frame_or_window))
419 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->selected_window;
420 else
422 CHECK_LIVE_FRAME (frame_or_window);
423 window = XFRAME (frame_or_window)->selected_window;
426 return window;
429 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
430 Sset_frame_selected_window, 2, 3, 0,
431 doc: /* Set selected window of FRAME to WINDOW.
432 FRAME must be a live frame and defaults to the selected one. If FRAME
433 is the selected frame, this makes WINDOW the selected window. Optional
434 argument NORECORD non-nil means to neither change the order of recently
435 selected windows nor the buffer list. WINDOW must denote a live window.
436 Return WINDOW. */)
437 (Lisp_Object frame, Lisp_Object window, Lisp_Object norecord)
439 if (NILP (frame))
440 frame = selected_frame;
442 CHECK_LIVE_FRAME (frame);
443 CHECK_LIVE_WINDOW (window);
445 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
446 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
448 if (EQ (frame, selected_frame))
449 return Fselect_window (window, norecord);
450 else
452 fset_selected_window (XFRAME (frame), window);
453 return window;
457 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
458 doc: /* Return the selected window.
459 The selected window is the window in which the standard cursor for
460 selected windows appears and to which many commands apply. */)
461 (void)
463 return selected_window;
466 int window_select_count;
468 /* If select_window is called with inhibit_point_swap non-zero it will
469 not store point of the old selected window's buffer back into that
470 window's pointm slot. This is needed by Fset_window_configuration to
471 avoid that the display routine is called with selected_window set to
472 Qnil causing a subsequent crash. */
473 static Lisp_Object
474 select_window (Lisp_Object window, Lisp_Object norecord, int inhibit_point_swap)
476 register struct window *w;
477 struct frame *sf;
479 CHECK_LIVE_WINDOW (window);
481 w = XWINDOW (window);
483 /* Make the selected window's buffer current. */
484 Fset_buffer (w->contents);
486 if (EQ (window, selected_window) && !inhibit_point_swap)
487 /* `switch-to-buffer' uses (select-window (selected-window)) as a "clever"
488 way to call record_buffer from Elisp, so it's important that we call
489 record_buffer before returning here. */
490 goto record_and_return;
492 if (NILP (norecord))
493 { /* Mark the window for redisplay since the selected-window has
494 a different mode-line. */
495 wset_redisplay (XWINDOW (selected_window));
496 wset_redisplay (w);
498 else
499 redisplay_other_windows ();
501 sf = SELECTED_FRAME ();
502 if (XFRAME (WINDOW_FRAME (w)) != sf)
504 fset_selected_window (XFRAME (WINDOW_FRAME (w)), window);
505 /* Use this rather than Fhandle_switch_frame
506 so that FRAME_FOCUS_FRAME is moved appropriately as we
507 move around in the state where a minibuffer in a separate
508 frame is active. */
509 Fselect_frame (WINDOW_FRAME (w), norecord);
510 /* Fselect_frame called us back so we've done all the work already. */
511 eassert (EQ (window, selected_window));
512 return window;
514 else
515 fset_selected_window (sf, window);
517 select_window_1 (window, inhibit_point_swap);
518 bset_last_selected_window (XBUFFER (w->contents), window);
520 record_and_return:
521 /* record_buffer can run QUIT, so make sure it is run only after we have
522 re-established the invariant between selected_window and selected_frame,
523 otherwise the temporary broken invariant might "escape" (bug#14161). */
524 if (NILP (norecord))
526 w->use_time = ++window_select_count;
527 record_buffer (w->contents);
530 return window;
533 /* Select window with a minimum of fuss, i.e. don't record the change anywhere
534 (not even for redisplay's benefit), and assume that the window's frame is
535 already selected. */
536 static void
537 select_window_1 (Lisp_Object window, bool inhibit_point_swap)
539 /* Store the old selected window's buffer's point in pointm of the old
540 selected window. It belongs to that window, and when the window is
541 not selected, must be in the window. */
542 if (!inhibit_point_swap)
544 struct window *ow = XWINDOW (selected_window);
545 if (BUFFERP (ow->contents))
546 set_marker_both (ow->pointm, ow->contents,
547 BUF_PT (XBUFFER (ow->contents)),
548 BUF_PT_BYTE (XBUFFER (ow->contents)));
551 selected_window = window;
553 /* Go to the point recorded in the window.
554 This is important when the buffer is in more
555 than one window. It also matters when
556 redisplay_window has altered point after scrolling,
557 because it makes the change only in the window. */
558 set_point_from_marker (XWINDOW (window)->pointm);
561 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
562 doc: /* Select WINDOW which must be a live window.
563 Also make WINDOW's frame the selected frame and WINDOW that frame's
564 selected window. In addition, make WINDOW's buffer current and set its
565 buffer's value of `point' to the value of WINDOW's `window-point'.
566 Return WINDOW.
568 Optional second arg NORECORD non-nil means do not put this buffer at the
569 front of the buffer list and do not make this window the most recently
570 selected one.
572 Run `buffer-list-update-hook' unless NORECORD is non-nil. Note that
573 applications and internal routines often select a window temporarily for
574 various purposes; mostly, to simplify coding. As a rule, such
575 selections should be not recorded and therefore will not pollute
576 `buffer-list-update-hook'. Selections that "really count" are those
577 causing a visible change in the next redisplay of WINDOW's frame and
578 should be always recorded. So if you think of running a function each
579 time a window gets selected put it on `buffer-list-update-hook'.
581 Also note that the main editor command loop sets the current buffer to
582 the buffer of the selected window before each command. */)
583 (register Lisp_Object window, Lisp_Object norecord)
585 return select_window (window, norecord, 0);
588 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
589 doc: /* Return the buffer displayed in window WINDOW.
590 If WINDOW is omitted or nil, it defaults to the selected window.
591 Return nil for an internal window or a deleted window. */)
592 (Lisp_Object window)
594 struct window *w = decode_any_window (window);
595 return WINDOW_LEAF_P (w) ? w->contents : Qnil;
598 DEFUN ("window-parent", Fwindow_parent, Swindow_parent, 0, 1, 0,
599 doc: /* Return the parent window of window WINDOW.
600 WINDOW must be a valid window and defaults to the selected one.
601 Return nil for a window with no parent (e.g. a root window). */)
602 (Lisp_Object window)
604 return decode_valid_window (window)->parent;
607 DEFUN ("window-top-child", Fwindow_top_child, Swindow_top_child, 0, 1, 0,
608 doc: /* Return the topmost child window of window WINDOW.
609 WINDOW must be a valid window and defaults to the selected one.
610 Return nil if WINDOW is a live window (live windows have no children).
611 Return nil if WINDOW is an internal window whose children form a
612 horizontal combination. */)
613 (Lisp_Object window)
615 struct window *w = decode_valid_window (window);
616 return WINDOW_VERTICAL_COMBINATION_P (w) ? w->contents : Qnil;
619 DEFUN ("window-left-child", Fwindow_left_child, Swindow_left_child, 0, 1, 0,
620 doc: /* Return the leftmost child window of window WINDOW.
621 WINDOW must be a valid window and defaults to the selected one.
622 Return nil if WINDOW is a live window (live windows have no children).
623 Return nil if WINDOW is an internal window whose children form a
624 vertical combination. */)
625 (Lisp_Object window)
627 struct window *w = decode_valid_window (window);
628 return WINDOW_HORIZONTAL_COMBINATION_P (w) ? w->contents : Qnil;
631 DEFUN ("window-next-sibling", Fwindow_next_sibling, Swindow_next_sibling, 0, 1, 0,
632 doc: /* Return the next sibling window of window WINDOW.
633 WINDOW must be a valid window and defaults to the selected one.
634 Return nil if WINDOW has no next sibling. */)
635 (Lisp_Object window)
637 return decode_valid_window (window)->next;
640 DEFUN ("window-prev-sibling", Fwindow_prev_sibling, Swindow_prev_sibling, 0, 1, 0,
641 doc: /* Return the previous sibling window of window WINDOW.
642 WINDOW must be a valid window and defaults to the selected one.
643 Return nil if WINDOW has no previous sibling. */)
644 (Lisp_Object window)
646 return decode_valid_window (window)->prev;
649 DEFUN ("window-combination-limit", Fwindow_combination_limit, Swindow_combination_limit, 1, 1, 0,
650 doc: /* Return combination limit of window WINDOW.
651 WINDOW must be a valid window used in horizontal or vertical combination.
652 If the return value is nil, child windows of WINDOW can be recombined with
653 WINDOW's siblings. A return value of t means that child windows of
654 WINDOW are never \(re-)combined with WINDOW's siblings. */)
655 (Lisp_Object window)
657 struct window *w;
659 CHECK_VALID_WINDOW (window);
660 w = XWINDOW (window);
661 if (WINDOW_LEAF_P (w))
662 error ("Combination limit is meaningful for internal windows only");
663 return w->combination_limit;
666 DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0,
667 doc: /* Set combination limit of window WINDOW to LIMIT; return LIMIT.
668 WINDOW must be a valid window used in horizontal or vertical combination.
669 If LIMIT is nil, child windows of WINDOW can be recombined with WINDOW's
670 siblings. LIMIT t means that child windows of WINDOW are never
671 \(re-)combined with WINDOW's siblings. Other values are reserved for
672 future use. */)
673 (Lisp_Object window, Lisp_Object limit)
675 struct window *w;
677 CHECK_VALID_WINDOW (window);
678 w = XWINDOW (window);
679 if (WINDOW_LEAF_P (w))
680 error ("Combination limit is meaningful for internal windows only");
681 wset_combination_limit (w, limit);
682 return limit;
685 DEFUN ("window-use-time", Fwindow_use_time, Swindow_use_time, 0, 1, 0,
686 doc: /* Return the use time of window WINDOW.
687 WINDOW must be a live window and defaults to the selected one.
688 The window with the highest use time is the most recently selected
689 one. The window with the lowest use time is the least recently
690 selected one. */)
691 (Lisp_Object window)
693 return make_number (decode_live_window (window)->use_time);
696 DEFUN ("window-pixel-width", Fwindow_pixel_width, Swindow_pixel_width, 0, 1, 0,
697 doc: /* Return the width of window WINDOW in pixels.
698 WINDOW must be a valid window and defaults to the selected one.
700 The return value includes the fringes and margins of WINDOW as well as
701 any vertical dividers or scroll bars belonging to WINDOW. If WINDOW is
702 an internal window, its pixel width is the width of the screen areas
703 spanned by its children. */)
704 (Lisp_Object window)
706 return make_number (decode_valid_window (window)->pixel_width);
709 DEFUN ("window-pixel-height", Fwindow_pixel_height, Swindow_pixel_height, 0, 1, 0,
710 doc: /* Return the height of window WINDOW in pixels.
711 WINDOW must be a valid window and defaults to the selected one.
713 The return value includes the mode line and header line and the bottom
714 divider, if any. If WINDOW is an internal window, its pixel height is
715 the height of the screen areas spanned by its children. */)
716 (Lisp_Object window)
718 return make_number (decode_valid_window (window)->pixel_height);
721 DEFUN ("window-total-height", Fwindow_total_height, Swindow_total_height, 0, 2, 0,
722 doc: /* Return the height of window WINDOW in lines.
723 WINDOW must be a valid window and defaults to the selected one.
725 The return value includes the heights of WINDOW's mode and header line
726 and its bottom divider, if any. If WINDOW is an internal window, the
727 total height is the height of the screen areas spanned by its children.
729 If WINDOW's pixel height is not an integral multiple of its frame's
730 character height, the number of lines occupied by WINDOW is rounded
731 internally. This is done in a way such that, if WINDOW is a parent
732 window, the sum of the total heights of all its children internally
733 equals the total height of WINDOW.
735 If the optional argument ROUND is `ceiling', return the smallest integer
736 larger than WINDOW's pixel height divided by the character height of
737 WINDOW's frame. ROUND `floor' means to return the largest integer
738 smaller than WINDOW's pixel height divided by the character height of
739 WINDOW's frame. Any other value of ROUND means to return the internal
740 total height of WINDOW. */)
741 (Lisp_Object window, Lisp_Object round)
743 struct window *w = decode_valid_window (window);
745 if (! EQ (round, Qfloor) && ! EQ (round, Qceiling))
746 return make_number (w->total_lines);
747 else
749 int unit = FRAME_LINE_HEIGHT (WINDOW_XFRAME (w));
751 return make_number (EQ (round, Qceiling)
752 ? ((w->pixel_height + unit - 1) /unit)
753 : (w->pixel_height / unit));
757 DEFUN ("window-total-width", Fwindow_total_width, Swindow_total_width, 0, 2, 0,
758 doc: /* Return the total width of window WINDOW in columns.
759 WINDOW must be a valid window and defaults to the selected one.
761 The return value includes the widths of WINDOW's fringes, margins,
762 scroll bars and its right divider, if any. If WINDOW is an internal
763 window, the total width is the width of the screen areas spanned by its
764 children.
766 If WINDOW's pixel width is not an integral multiple of its frame's
767 character width, the number of lines occupied by WINDOW is rounded
768 internally. This is done in a way such that, if WINDOW is a parent
769 window, the sum of the total widths of all its children internally
770 equals the total width of WINDOW.
772 If the optional argument ROUND is `ceiling', return the smallest integer
773 larger than WINDOW's pixel width divided by the character width of
774 WINDOW's frame. ROUND `floor' means to return the largest integer
775 smaller than WINDOW's pixel width divided by the character width of
776 WINDOW's frame. Any other value of ROUND means to return the internal
777 total width of WINDOW. */)
778 (Lisp_Object window, Lisp_Object round)
780 struct window *w = decode_valid_window (window);
782 if (! EQ (round, Qfloor) && ! EQ (round, Qceiling))
783 return make_number (w->total_cols);
784 else
786 int unit = FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w));
788 return make_number (EQ (round, Qceiling)
789 ? ((w->pixel_width + unit - 1) /unit)
790 : (w->pixel_width / unit));
794 DEFUN ("window-new-total", Fwindow_new_total, Swindow_new_total, 0, 1, 0,
795 doc: /* Return the new total size of window WINDOW.
796 WINDOW must be a valid window and defaults to the selected one.
798 The new total size of WINDOW is the value set by the last call of
799 `set-window-new-total' for WINDOW. If it is valid, it will be shortly
800 installed as WINDOW's total height (see `window-total-height') or total
801 width (see `window-total-width'). */)
802 (Lisp_Object window)
804 return decode_valid_window (window)->new_total;
807 DEFUN ("window-normal-size", Fwindow_normal_size, Swindow_normal_size, 0, 2, 0,
808 doc: /* Return the normal height of window WINDOW.
809 WINDOW must be a valid window and defaults to the selected one.
810 If HORIZONTAL is non-nil, return the normal width of WINDOW.
812 The normal height of a frame's root window or a window that is
813 horizontally combined (a window that has a left or right sibling) is
814 1.0. The normal height of a window that is vertically combined (has a
815 sibling above or below) is the fraction of the window's height with
816 respect to its parent. The sum of the normal heights of all windows in a
817 vertical combination equals 1.0.
819 Similarly, the normal width of a frame's root window or a window that is
820 vertically combined equals 1.0. The normal width of a window that is
821 horizontally combined is the fraction of the window's width with respect
822 to its parent. The sum of the normal widths of all windows in a
823 horizontal combination equals 1.0.
825 The normal sizes of windows are used to restore the proportional sizes
826 of windows after they have been shrunk to their minimum sizes; for
827 example when a frame is temporarily made very small and afterwards gets
828 re-enlarged to its previous size. */)
829 (Lisp_Object window, Lisp_Object horizontal)
831 struct window *w = decode_valid_window (window);
833 return NILP (horizontal) ? w->normal_lines : w->normal_cols;
836 DEFUN ("window-new-normal", Fwindow_new_normal, Swindow_new_normal, 0, 1, 0,
837 doc: /* Return new normal size of window WINDOW.
838 WINDOW must be a valid window and defaults to the selected one.
840 The new normal size of WINDOW is the value set by the last call of
841 `set-window-new-normal' for WINDOW. If valid, it will be shortly
842 installed as WINDOW's normal size (see `window-normal-size'). */)
843 (Lisp_Object window)
845 return decode_valid_window (window)->new_normal;
848 DEFUN ("window-new-pixel", Fwindow_new_pixel, Swindow_new_pixel, 0, 1, 0,
849 doc: /* Return new pixel size of window WINDOW.
850 WINDOW must be a valid window and defaults to the selected one.
852 The new pixel size of WINDOW is the value set by the last call of
853 `set-window-new-pixel' for WINDOW. If it is valid, it will be shortly
854 installed as WINDOW's pixel height (see `window-pixel-height') or pixel
855 width (see `window-pixel-width'). */)
856 (Lisp_Object window)
858 return decode_valid_window (window)->new_pixel;
861 DEFUN ("window-pixel-left", Fwindow_pixel_left, Swindow_pixel_left, 0, 1, 0,
862 doc: /* Return left pixel edge of window WINDOW.
863 WINDOW must be a valid window and defaults to the selected one. */)
864 (Lisp_Object window)
866 return make_number (decode_valid_window (window)->pixel_left);
869 DEFUN ("window-pixel-top", Fwindow_pixel_top, Swindow_pixel_top, 0, 1, 0,
870 doc: /* Return top pixel edge of window WINDOW.
871 WINDOW must be a valid window and defaults to the selected one. */)
872 (Lisp_Object window)
874 return make_number (decode_valid_window (window)->pixel_top);
877 DEFUN ("window-left-column", Fwindow_left_column, Swindow_left_column, 0, 1, 0,
878 doc: /* Return left column of window WINDOW.
879 This is the distance, in columns, between the left edge of WINDOW and
880 the left edge of the frame's window area. For instance, the return
881 value is 0 if there is no window to the left of WINDOW.
883 WINDOW must be a valid window and defaults to the selected one. */)
884 (Lisp_Object window)
886 return make_number (decode_valid_window (window)->left_col);
889 DEFUN ("window-top-line", Fwindow_top_line, Swindow_top_line, 0, 1, 0,
890 doc: /* Return top line of window WINDOW.
891 This is the distance, in lines, between the top of WINDOW and the top
892 of the frame's window area. For instance, the return value is 0 if
893 there is no window above WINDOW.
895 WINDOW must be a valid window and defaults to the selected one. */)
896 (Lisp_Object window)
898 return make_number (decode_valid_window (window)->top_line);
901 /* Return the number of lines/pixels of W's body. Don't count any mode
902 or header line or horizontal divider of W. Rounds down to nearest
903 integer when not working pixelwise. */
904 static int
905 window_body_height (struct window *w, bool pixelwise)
907 int height = (w->pixel_height
908 - WINDOW_HEADER_LINE_HEIGHT (w)
909 - (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w)
910 ? WINDOW_SCROLL_BAR_AREA_HEIGHT (w)
911 : 0)
912 - WINDOW_MODE_LINE_HEIGHT (w)
913 - WINDOW_BOTTOM_DIVIDER_WIDTH (w));
915 /* Don't return a negative value. */
916 return max (pixelwise
917 ? height
918 : height / FRAME_LINE_HEIGHT (WINDOW_XFRAME (w)),
922 /* Return the number of columns/pixels of W's body. Don't count columns
923 occupied by the scroll bar or the divider/vertical bar separating W
924 from its right sibling or margins. On window-systems don't count
925 fringes either. Round down to nearest integer when not working
926 pixelwise. */
928 window_body_width (struct window *w, bool pixelwise)
930 struct frame *f = XFRAME (WINDOW_FRAME (w));
932 int width = (w->pixel_width
933 - WINDOW_RIGHT_DIVIDER_WIDTH (w)
934 - (WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
935 ? WINDOW_SCROLL_BAR_AREA_WIDTH (w)
936 : ((!FRAME_WINDOW_P (f)
937 && !WINDOW_RIGHTMOST_P (w)
938 && !WINDOW_RIGHT_DIVIDER_WIDTH (w))
939 /* A vertical bar is either 1 or 0. */
940 ? 1 : 0))
941 - WINDOW_MARGINS_WIDTH (w)
942 - (FRAME_WINDOW_P (f)
943 ? WINDOW_FRINGES_WIDTH (w)
944 : 0));
946 /* Don't return a negative value. */
947 return max (pixelwise
948 ? width
949 : width / FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w)),
953 DEFUN ("window-body-height", Fwindow_body_height, Swindow_body_height, 0, 2, 0,
954 doc: /* Return the height of WINDOW's text area.
955 WINDOW must be a live window and defaults to the selected one. Optional
956 argument PIXELWISE non-nil means return the height of WINDOW's text area
957 in pixels. The return value does not include the mode line or header
958 line or any horizontal divider.
960 If PIXELWISE is nil, return the largest integer smaller than WINDOW's
961 pixel height divided by the character height of WINDOW's frame. This
962 means that if a line at the bottom of the text area is only partially
963 visible, that line is not counted. */)
964 (Lisp_Object window, Lisp_Object pixelwise)
966 return make_number (window_body_height (decode_live_window (window),
967 NILP (pixelwise) ? 0 : 1));
970 DEFUN ("window-body-width", Fwindow_body_width, Swindow_body_width, 0, 2, 0,
971 doc: /* Return the width of WINDOW's text area.
972 WINDOW must be a live window and defaults to the selected one. Optional
973 argument PIXELWISE non-nil means return the width in pixels. The return
974 value does not include any vertical dividers, fringes or marginal areas,
975 or scroll bars.
977 If PIXELWISE is nil, return the largest integer smaller than WINDOW's
978 pixel width divided by the character width of WINDOW's frame. This
979 means that if a column at the right of the text area is only partially
980 visible, that column is not counted.
982 Note that the returned value includes the column reserved for the
983 continuation glyph. */)
984 (Lisp_Object window, Lisp_Object pixelwise)
986 return make_number (window_body_width (decode_live_window (window),
987 NILP (pixelwise) ? 0 : 1));
990 DEFUN ("window-mode-line-height", Fwindow_mode_line_height,
991 Swindow_mode_line_height, 0, 1, 0,
992 doc: /* Return the height in pixels of WINDOW's mode-line.
993 WINDOW must be a live window and defaults to the selected one. */)
994 (Lisp_Object window)
996 return (make_number (WINDOW_MODE_LINE_HEIGHT (decode_live_window (window))));
999 DEFUN ("window-header-line-height", Fwindow_header_line_height,
1000 Swindow_header_line_height, 0, 1, 0,
1001 doc: /* Return the height in pixels of WINDOW's header-line.
1002 WINDOW must be a live window and defaults to the selected one. */)
1003 (Lisp_Object window)
1005 return (make_number (WINDOW_HEADER_LINE_HEIGHT (decode_live_window (window))));
1008 DEFUN ("window-right-divider-width", Fwindow_right_divider_width,
1009 Swindow_right_divider_width, 0, 1, 0,
1010 doc: /* Return the width in pixels of WINDOW's right divider.
1011 WINDOW must be a live window and defaults to the selected one. */)
1012 (Lisp_Object window)
1014 return (make_number (WINDOW_RIGHT_DIVIDER_WIDTH (decode_live_window (window))));
1017 DEFUN ("window-bottom-divider-width", Fwindow_bottom_divider_width,
1018 Swindow_bottom_divider_width, 0, 1, 0,
1019 doc: /* Return the width in pixels of WINDOW's bottom divider.
1020 WINDOW must be a live window and defaults to the selected one. */)
1021 (Lisp_Object window)
1023 return (make_number (WINDOW_BOTTOM_DIVIDER_WIDTH (decode_live_window (window))));
1026 DEFUN ("window-scroll-bar-width", Fwindow_scroll_bar_width,
1027 Swindow_scroll_bar_width, 0, 1, 0,
1028 doc: /* Return the width in pixels of WINDOW's vertical scrollbar.
1029 WINDOW must be a live window and defaults to the selected one. */)
1030 (Lisp_Object window)
1032 return (make_number (WINDOW_SCROLL_BAR_AREA_WIDTH (decode_live_window (window))));
1035 DEFUN ("window-scroll-bar-height", Fwindow_scroll_bar_height,
1036 Swindow_scroll_bar_height, 0, 1, 0,
1037 doc: /* Return the height in pixels of WINDOW's horizontal scrollbar.
1038 WINDOW must be a live window and defaults to the selected one. */)
1039 (Lisp_Object window)
1041 return (make_number (WINDOW_SCROLL_BAR_AREA_HEIGHT (decode_live_window (window))));
1044 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
1045 doc: /* Return the number of columns by which WINDOW is scrolled from left margin.
1046 WINDOW must be a live window and defaults to the selected one. */)
1047 (Lisp_Object window)
1049 return make_number (decode_live_window (window)->hscroll);
1052 /* Set W's horizontal scroll amount to HSCROLL clipped to a reasonable
1053 range, returning the new amount as a fixnum. */
1054 static Lisp_Object
1055 set_window_hscroll (struct window *w, EMACS_INT hscroll)
1057 /* Horizontal scrolling has problems with large scroll amounts.
1058 It's too slow with long lines, and even with small lines the
1059 display can be messed up. For now, though, impose only the limits
1060 required by the internal representation: horizontal scrolling must
1061 fit in fixnum (since it's visible to Elisp) and into ptrdiff_t
1062 (since it's stored in a ptrdiff_t). */
1063 ptrdiff_t hscroll_max = min (MOST_POSITIVE_FIXNUM, PTRDIFF_MAX);
1064 ptrdiff_t new_hscroll = clip_to_bounds (0, hscroll, hscroll_max);
1066 /* Prevent redisplay shortcuts when changing the hscroll. */
1067 if (w->hscroll != new_hscroll)
1068 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
1070 w->hscroll = new_hscroll;
1071 w->suspend_auto_hscroll = 1;
1073 return make_number (new_hscroll);
1076 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
1077 doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
1078 WINDOW must be a live window and defaults to the selected one.
1079 Clip the number to a reasonable value if out of range.
1080 Return the new number. NCOL should be zero or positive.
1082 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
1083 window so that the location of point moves off-window. */)
1084 (Lisp_Object window, Lisp_Object ncol)
1086 CHECK_NUMBER (ncol);
1087 return set_window_hscroll (decode_live_window (window), XINT (ncol));
1090 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
1091 Swindow_redisplay_end_trigger, 0, 1, 0,
1092 doc: /* Return WINDOW's redisplay end trigger value.
1093 WINDOW must be a live window and defaults to the selected one.
1094 See `set-window-redisplay-end-trigger' for more information. */)
1095 (Lisp_Object window)
1097 return decode_live_window (window)->redisplay_end_trigger;
1100 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
1101 Sset_window_redisplay_end_trigger, 2, 2, 0,
1102 doc: /* Set WINDOW's redisplay end trigger value to VALUE.
1103 WINDOW must be a live window and defaults to the selected one. VALUE
1104 should be a buffer position (typically a marker) or nil. If it is a
1105 buffer position, then if redisplay in WINDOW reaches a position beyond
1106 VALUE, the functions in `redisplay-end-trigger-functions' are called
1107 with two arguments: WINDOW, and the end trigger value. Afterwards the
1108 end-trigger value is reset to nil. */)
1109 (register Lisp_Object window, Lisp_Object value)
1111 wset_redisplay_end_trigger (decode_live_window (window), value);
1112 return value;
1115 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
1116 doc: /* Return a list of the edge coordinates of WINDOW.
1117 WINDOW must be a valid window and defaults to the selected one.
1119 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
1120 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
1121 0 at top left corner of frame.
1123 RIGHT is one more than the rightmost column occupied by WINDOW. BOTTOM
1124 is one more than the bottommost row occupied by WINDOW. The edges
1125 include the space used by WINDOW's scroll bar, display margins, fringes,
1126 header line, and/or mode line. For the edges of just the text area, use
1127 `window-inside-edges'. */)
1128 (Lisp_Object window)
1130 register struct window *w = decode_valid_window (window);
1132 return list4i (WINDOW_LEFT_EDGE_COL (w), WINDOW_TOP_EDGE_LINE (w),
1133 WINDOW_RIGHT_EDGE_COL (w), WINDOW_BOTTOM_EDGE_LINE (w));
1136 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, Swindow_pixel_edges, 0, 1, 0,
1137 doc: /* Return a list of the edge pixel coordinates of WINDOW.
1138 WINDOW must be a valid window and defaults to the selected one.
1140 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1141 0, 0 at the top left corner of the frame.
1143 RIGHT is one more than the rightmost x position occupied by WINDOW.
1144 BOTTOM is one more than the bottommost y position occupied by WINDOW.
1145 The pixel edges include the space used by WINDOW's scroll bar, display
1146 margins, fringes, header line, and/or mode line. For the pixel edges
1147 of just the text area, use `window-inside-pixel-edges'. */)
1148 (Lisp_Object window)
1150 register struct window *w = decode_valid_window (window);
1152 return list4i (WINDOW_LEFT_EDGE_X (w), WINDOW_TOP_EDGE_Y (w),
1153 WINDOW_RIGHT_EDGE_X (w), WINDOW_BOTTOM_EDGE_Y (w));
1156 static void
1157 calc_absolute_offset (struct window *w, int *add_x, int *add_y)
1159 struct frame *f = XFRAME (w->frame);
1160 *add_y = f->top_pos;
1161 #ifdef FRAME_MENUBAR_HEIGHT
1162 *add_y += FRAME_MENUBAR_HEIGHT (f);
1163 #endif
1164 #ifdef FRAME_TOOLBAR_TOP_HEIGHT
1165 *add_y += FRAME_TOOLBAR_TOP_HEIGHT (f);
1166 #elif defined (FRAME_TOOLBAR_HEIGHT)
1167 *add_y += FRAME_TOOLBAR_HEIGHT (f);
1168 #endif
1169 #ifdef FRAME_NS_TITLEBAR_HEIGHT
1170 *add_y += FRAME_NS_TITLEBAR_HEIGHT (f);
1171 #endif
1172 *add_x = f->left_pos;
1173 #ifdef FRAME_TOOLBAR_LEFT_WIDTH
1174 *add_x += FRAME_TOOLBAR_LEFT_WIDTH (f);
1175 #endif
1178 DEFUN ("window-absolute-pixel-edges", Fwindow_absolute_pixel_edges,
1179 Swindow_absolute_pixel_edges, 0, 1, 0,
1180 doc: /* Return a list of the edge pixel coordinates of WINDOW.
1181 WINDOW must be a valid window and defaults to the selected one.
1183 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1184 0, 0 at the top left corner of the display.
1186 RIGHT is one more than the rightmost x position occupied by WINDOW.
1187 BOTTOM is one more than the bottommost y position occupied by WINDOW.
1188 The pixel edges include the space used by WINDOW's scroll bar, display
1189 margins, fringes, header line, and/or mode line. For the pixel edges
1190 of just the text area, use `window-inside-absolute-pixel-edges'. */)
1191 (Lisp_Object window)
1193 register struct window *w = decode_valid_window (window);
1194 int add_x, add_y;
1196 calc_absolute_offset (w, &add_x, &add_y);
1198 return list4i (WINDOW_LEFT_EDGE_X (w) + add_x,
1199 WINDOW_TOP_EDGE_Y (w) + add_y,
1200 WINDOW_RIGHT_EDGE_X (w) + add_x,
1201 WINDOW_BOTTOM_EDGE_Y (w) + add_y);
1204 DEFUN ("window-inside-edges", Fwindow_inside_edges, Swindow_inside_edges, 0, 1, 0,
1205 doc: /* Return a list of the edge coordinates of WINDOW.
1206 WINDOW must be a live window and defaults to the selected one.
1208 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
1209 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
1210 0 at top left corner of frame.
1212 RIGHT is one more than the rightmost column of WINDOW's text area.
1213 BOTTOM is one more than the bottommost row of WINDOW's text area. The
1214 inside edges do not include the space used by the WINDOW's scroll bar,
1215 display margins, fringes, header line, and/or mode line. */)
1216 (Lisp_Object window)
1218 register struct window *w = decode_live_window (window);
1220 return list4i ((WINDOW_BOX_LEFT_EDGE_COL (w)
1221 + WINDOW_LEFT_MARGIN_COLS (w)
1222 + ((WINDOW_LEFT_FRINGE_WIDTH (w)
1223 + WINDOW_FRAME_COLUMN_WIDTH (w) - 1)
1224 / WINDOW_FRAME_COLUMN_WIDTH (w))),
1225 (WINDOW_TOP_EDGE_LINE (w)
1226 + WINDOW_HEADER_LINE_LINES (w)),
1227 (WINDOW_BOX_RIGHT_EDGE_COL (w)
1228 - WINDOW_RIGHT_MARGIN_COLS (w)
1229 - ((WINDOW_RIGHT_FRINGE_WIDTH (w)
1230 + WINDOW_FRAME_COLUMN_WIDTH (w) - 1)
1231 / WINDOW_FRAME_COLUMN_WIDTH (w))),
1232 (WINDOW_BOTTOM_EDGE_LINE (w)
1233 - WINDOW_MODE_LINE_LINES (w)));
1236 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges, Swindow_inside_pixel_edges, 0, 1, 0,
1237 doc: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1238 WINDOW must be a live window and defaults to the selected one.
1240 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1241 (0,0) at the top left corner of the frame's window area.
1243 RIGHT is one more than the rightmost x position of WINDOW's text area.
1244 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1245 The inside edges do not include the space used by WINDOW's scroll bar,
1246 display margins, fringes, header line, and/or mode line. */)
1247 (Lisp_Object window)
1249 register struct window *w = decode_live_window (window);
1251 return list4i ((WINDOW_BOX_LEFT_EDGE_X (w)
1252 + WINDOW_LEFT_MARGIN_WIDTH (w)
1253 + WINDOW_LEFT_FRINGE_WIDTH (w)),
1254 (WINDOW_TOP_EDGE_Y (w)
1255 + WINDOW_HEADER_LINE_HEIGHT (w)),
1256 (WINDOW_BOX_RIGHT_EDGE_X (w)
1257 - WINDOW_RIGHT_MARGIN_WIDTH (w)
1258 - WINDOW_RIGHT_FRINGE_WIDTH (w)),
1259 (WINDOW_BOTTOM_EDGE_Y (w)
1260 - WINDOW_MODE_LINE_HEIGHT (w)));
1263 DEFUN ("window-inside-absolute-pixel-edges",
1264 Fwindow_inside_absolute_pixel_edges,
1265 Swindow_inside_absolute_pixel_edges, 0, 1, 0,
1266 doc: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1267 WINDOW must be a live window and defaults to the selected one.
1269 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1270 (0,0) at the top left corner of the frame's window area.
1272 RIGHT is one more than the rightmost x position of WINDOW's text area.
1273 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1274 The inside edges do not include the space used by WINDOW's scroll bar,
1275 display margins, fringes, header line, and/or mode line. */)
1276 (Lisp_Object window)
1278 register struct window *w = decode_live_window (window);
1279 int add_x, add_y;
1281 calc_absolute_offset (w, &add_x, &add_y);
1283 return list4i ((WINDOW_BOX_LEFT_EDGE_X (w)
1284 + WINDOW_LEFT_MARGIN_WIDTH (w)
1285 + WINDOW_LEFT_FRINGE_WIDTH (w) + add_x),
1286 (WINDOW_TOP_EDGE_Y (w)
1287 + WINDOW_HEADER_LINE_HEIGHT (w) + add_y),
1288 (WINDOW_BOX_RIGHT_EDGE_X (w)
1289 - WINDOW_RIGHT_MARGIN_WIDTH (w)
1290 - WINDOW_RIGHT_FRINGE_WIDTH (w) + add_x),
1291 (WINDOW_BOTTOM_EDGE_Y (w)
1292 - WINDOW_MODE_LINE_HEIGHT (w) + add_y));
1295 /* Test if the character at column X, row Y is within window W.
1296 If it is not, return ON_NOTHING;
1297 if it is on the window's vertical divider, return
1298 ON_RIGHT_DIVIDER;
1299 if it is on the window's horizontal divider, return
1300 ON_BOTTOM_DIVIDER;
1301 if it is in the window's text area, return ON_TEXT;
1302 if it is on the window's modeline, return ON_MODE_LINE;
1303 if it is on the border between the window and its right sibling,
1304 return ON_VERTICAL_BORDER;
1305 if it is on a scroll bar, return ON_SCROLL_BAR;
1306 if it is on the window's top line, return ON_HEADER_LINE;
1307 if it is in left or right fringe of the window,
1308 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
1309 if it is in the marginal area to the left/right of the window,
1310 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
1312 X and Y are frame relative pixel coordinates. */
1314 static enum window_part
1315 coordinates_in_window (register struct window *w, int x, int y)
1317 struct frame *f = XFRAME (WINDOW_FRAME (w));
1318 enum window_part part;
1319 int ux = FRAME_COLUMN_WIDTH (f);
1320 int left_x = WINDOW_LEFT_EDGE_X (w);
1321 int right_x = WINDOW_RIGHT_EDGE_X (w);
1322 int top_y = WINDOW_TOP_EDGE_Y (w);
1323 int bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
1324 /* The width of the area where the vertical line can be dragged.
1325 (Between mode lines for instance. */
1326 int grabbable_width = ux;
1327 int lmargin_width, rmargin_width, text_left, text_right;
1329 /* Outside any interesting row or column? */
1330 if (y < top_y || y >= bottom_y || x < left_x || x >= right_x)
1331 return ON_NOTHING;
1333 /* On the horizontal window divider (which prevails the vertical
1334 divider)? */
1335 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w) > 0
1336 && y >= (bottom_y - WINDOW_BOTTOM_DIVIDER_WIDTH (w))
1337 && y <= bottom_y)
1338 return ON_BOTTOM_DIVIDER;
1339 /* On vertical window divider? */
1340 else if (!WINDOW_RIGHTMOST_P (w)
1341 && WINDOW_RIGHT_DIVIDER_WIDTH (w) > 0
1342 && x >= right_x - WINDOW_RIGHT_DIVIDER_WIDTH (w)
1343 && x <= right_x)
1344 return ON_RIGHT_DIVIDER;
1345 /* On the horizontal scroll bar? (Including the empty space at its
1346 right!) */
1347 else if ((WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w)
1348 && y >= (bottom_y
1349 - WINDOW_SCROLL_BAR_AREA_HEIGHT (w)
1350 - CURRENT_MODE_LINE_HEIGHT (w)
1351 - WINDOW_BOTTOM_DIVIDER_WIDTH (w))
1352 && y <= (bottom_y
1353 - CURRENT_MODE_LINE_HEIGHT (w)
1354 - WINDOW_BOTTOM_DIVIDER_WIDTH (w))))
1355 return ON_HORIZONTAL_SCROLL_BAR;
1356 /* On the mode or header line? */
1357 else if ((WINDOW_WANTS_MODELINE_P (w)
1358 && y >= (bottom_y
1359 - CURRENT_MODE_LINE_HEIGHT (w)
1360 - WINDOW_BOTTOM_DIVIDER_WIDTH (w))
1361 && y <= bottom_y - WINDOW_BOTTOM_DIVIDER_WIDTH (w)
1362 && (part = ON_MODE_LINE))
1363 || (WINDOW_WANTS_HEADER_LINE_P (w)
1364 && y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
1365 && (part = ON_HEADER_LINE)))
1367 /* If it's under/over the scroll bar portion of the mode/header
1368 line, say it's on the vertical line. That's to be able to
1369 resize windows horizontally in case we're using toolkit scroll
1370 bars. Note: If scrollbars are on the left, the window that
1371 must be eventually resized is that on the left of WINDOW. */
1372 if ((WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0)
1373 && ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1374 && !WINDOW_LEFTMOST_P (w)
1375 && eabs (x - left_x) < grabbable_width)
1376 || (!WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1377 && !WINDOW_RIGHTMOST_P (w)
1378 && eabs (x - right_x) < grabbable_width)))
1379 return ON_VERTICAL_BORDER;
1380 else
1381 return part;
1384 /* In what's below, we subtract 1 when computing right_x because we
1385 want the rightmost pixel, which is given by left_pixel+width-1. */
1386 if (w->pseudo_window_p)
1388 left_x = 0;
1389 right_x = WINDOW_PIXEL_WIDTH (w) - 1;
1391 else
1393 left_x = WINDOW_BOX_LEFT_EDGE_X (w);
1394 right_x = WINDOW_BOX_RIGHT_EDGE_X (w) - 1;
1397 /* Outside any interesting column? */
1398 if (x < left_x || x > right_x)
1399 return ON_VERTICAL_SCROLL_BAR;
1401 lmargin_width = window_box_width (w, LEFT_MARGIN_AREA);
1402 rmargin_width = window_box_width (w, RIGHT_MARGIN_AREA);
1404 text_left = window_box_left (w, TEXT_AREA);
1405 text_right = text_left + window_box_width (w, TEXT_AREA);
1407 if (FRAME_WINDOW_P (f))
1409 if (!w->pseudo_window_p
1410 && WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0
1411 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
1412 && !WINDOW_RIGHTMOST_P (w)
1413 && (eabs (x - right_x) < grabbable_width))
1414 return ON_VERTICAL_BORDER;
1416 /* Need to say "x > right_x" rather than >=, since on character
1417 terminals, the vertical line's x coordinate is right_x. */
1418 else if (!w->pseudo_window_p
1419 && WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0
1420 && !WINDOW_RIGHTMOST_P (w)
1421 /* Why check ux if we are not the rightmost window? Also
1422 shouldn't a pseudo window always be rightmost? */
1423 && x > right_x - ux)
1424 return ON_VERTICAL_BORDER;
1426 if (x < text_left)
1428 if (lmargin_width > 0
1429 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1430 ? (x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w))
1431 : (x < left_x + lmargin_width)))
1432 return ON_LEFT_MARGIN;
1433 else
1434 return ON_LEFT_FRINGE;
1437 if (x >= text_right)
1439 if (rmargin_width > 0
1440 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1441 ? (x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w))
1442 : (x >= right_x - rmargin_width)))
1443 return ON_RIGHT_MARGIN;
1444 else
1445 return ON_RIGHT_FRINGE;
1448 /* Everything special ruled out - must be on text area */
1449 return ON_TEXT;
1452 /* Take X is the frame-relative pixel x-coordinate, and return the
1453 x-coordinate relative to part PART of window W. */
1455 window_relative_x_coord (struct window *w, enum window_part part, int x)
1457 int left_x = (w->pseudo_window_p) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w);
1459 switch (part)
1461 case ON_TEXT:
1462 return x - window_box_left (w, TEXT_AREA);
1464 case ON_HEADER_LINE:
1465 case ON_MODE_LINE:
1466 case ON_LEFT_FRINGE:
1467 return x - left_x;
1469 case ON_RIGHT_FRINGE:
1470 return x - left_x - WINDOW_LEFT_FRINGE_WIDTH (w);
1472 case ON_LEFT_MARGIN:
1473 return (x - left_x
1474 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1475 ? WINDOW_LEFT_FRINGE_WIDTH (w) : 0));
1477 case ON_RIGHT_MARGIN:
1478 return (x + 1
1479 - ((w->pseudo_window_p)
1480 ? WINDOW_PIXEL_WIDTH (w)
1481 : WINDOW_BOX_RIGHT_EDGE_X (w))
1482 + window_box_width (w, RIGHT_MARGIN_AREA)
1483 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1484 ? WINDOW_RIGHT_FRINGE_WIDTH (w) : 0));
1487 /* ON_SCROLL_BAR, ON_NOTHING, and ON_VERTICAL_BORDER: */
1488 return 0;
1492 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
1493 Scoordinates_in_window_p, 2, 2, 0,
1494 doc: /* Return non-nil if COORDINATES are in WINDOW.
1495 WINDOW must be a live window and defaults to the selected one.
1496 COORDINATES is a cons of the form (X . Y), X and Y being distances
1497 measured in characters from the upper-left corner of the frame.
1498 \(0 . 0) denotes the character in the upper left corner of the
1499 frame.
1500 If COORDINATES are in the text portion of WINDOW,
1501 the coordinates relative to the window are returned.
1502 If they are in the bottom divider of WINDOW, `bottom-divider' is returned.
1503 If they are in the right divider of WINDOW, `right-divider' is returned.
1504 If they are in the mode line of WINDOW, `mode-line' is returned.
1505 If they are in the header line of WINDOW, `header-line' is returned.
1506 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1507 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1508 If they are on the border between WINDOW and its right sibling,
1509 `vertical-line' is returned.
1510 If they are in the windows's left or right marginal areas, `left-margin'\n\
1511 or `right-margin' is returned. */)
1512 (register Lisp_Object coordinates, Lisp_Object window)
1514 struct window *w;
1515 struct frame *f;
1516 int x, y;
1517 Lisp_Object lx, ly;
1519 w = decode_live_window (window);
1520 f = XFRAME (w->frame);
1521 CHECK_CONS (coordinates);
1522 lx = Fcar (coordinates);
1523 ly = Fcdr (coordinates);
1524 CHECK_NUMBER_OR_FLOAT (lx);
1525 CHECK_NUMBER_OR_FLOAT (ly);
1526 x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f);
1527 y = FRAME_PIXEL_Y_FROM_CANON_Y (f, ly) + FRAME_INTERNAL_BORDER_WIDTH (f);
1529 switch (coordinates_in_window (w, x, y))
1531 case ON_NOTHING:
1532 return Qnil;
1534 case ON_TEXT:
1535 /* Convert X and Y to window relative pixel coordinates, and
1536 return the canonical char units. */
1537 x -= window_box_left (w, TEXT_AREA);
1538 y -= WINDOW_TOP_EDGE_Y (w);
1539 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x),
1540 FRAME_CANON_Y_FROM_PIXEL_Y (f, y));
1542 case ON_MODE_LINE:
1543 return Qmode_line;
1545 case ON_VERTICAL_BORDER:
1546 return Qvertical_line;
1548 case ON_HEADER_LINE:
1549 return Qheader_line;
1551 case ON_LEFT_FRINGE:
1552 return Qleft_fringe;
1554 case ON_RIGHT_FRINGE:
1555 return Qright_fringe;
1557 case ON_LEFT_MARGIN:
1558 return Qleft_margin;
1560 case ON_RIGHT_MARGIN:
1561 return Qright_margin;
1563 case ON_VERTICAL_SCROLL_BAR:
1564 /* Historically we are supposed to return nil in this case. */
1565 return Qnil;
1567 case ON_HORIZONTAL_SCROLL_BAR:
1568 return Qnil;
1570 case ON_RIGHT_DIVIDER:
1571 return Qright_divider;
1573 case ON_BOTTOM_DIVIDER:
1574 return Qbottom_divider;
1576 default:
1577 emacs_abort ();
1582 /* Callback for foreach_window, used in window_from_coordinates.
1583 Check if window W contains coordinates specified by USER_DATA which
1584 is actually a pointer to a struct check_window_data CW.
1586 Check if window W contains coordinates *CW->x and *CW->y. If it
1587 does, return W in *CW->window, as Lisp_Object, and return in
1588 *CW->part the part of the window under coordinates *X,*Y. Return
1589 zero from this function to stop iterating over windows. */
1591 struct check_window_data
1593 Lisp_Object *window;
1594 int x, y;
1595 enum window_part *part;
1598 static int
1599 check_window_containing (struct window *w, void *user_data)
1601 struct check_window_data *cw = user_data;
1602 enum window_part found;
1603 int continue_p = 1;
1605 found = coordinates_in_window (w, cw->x, cw->y);
1606 if (found != ON_NOTHING)
1608 *cw->part = found;
1609 XSETWINDOW (*cw->window, w);
1610 continue_p = 0;
1613 return continue_p;
1617 /* Find the window containing frame-relative pixel position X/Y and
1618 return it as a Lisp_Object.
1620 If X, Y is on one of the window's special `window_part' elements,
1621 set *PART to the id of that element.
1623 If there is no window under X, Y return nil and leave *PART
1624 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
1626 This function was previously implemented with a loop cycling over
1627 windows with Fnext_window, and starting with the frame's selected
1628 window. It turned out that this doesn't work with an
1629 implementation of next_window using Vwindow_list, because
1630 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1631 tree of F when this function is called asynchronously from
1632 note_mouse_highlight. The original loop didn't terminate in this
1633 case. */
1635 Lisp_Object
1636 window_from_coordinates (struct frame *f, int x, int y,
1637 enum window_part *part, bool tool_bar_p)
1639 Lisp_Object window;
1640 struct check_window_data cw;
1641 enum window_part dummy;
1643 if (part == 0)
1644 part = &dummy;
1646 window = Qnil;
1647 cw.window = &window, cw.x = x, cw.y = y; cw.part = part;
1648 foreach_window (f, check_window_containing, &cw);
1650 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
1651 /* If not found above, see if it's in the tool bar window, if a tool
1652 bar exists. */
1653 if (NILP (window)
1654 && tool_bar_p
1655 && WINDOWP (f->tool_bar_window)
1656 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0
1657 && (coordinates_in_window (XWINDOW (f->tool_bar_window), x, y)
1658 != ON_NOTHING))
1660 *part = ON_TEXT;
1661 window = f->tool_bar_window;
1663 #endif
1665 return window;
1668 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
1669 doc: /* Return window containing coordinates X and Y on FRAME.
1670 FRAME must be a live frame and defaults to the selected one.
1671 The top left corner of the frame is considered to be row 0,
1672 column 0. */)
1673 (Lisp_Object x, Lisp_Object y, Lisp_Object frame)
1675 struct frame *f = decode_live_frame (frame);
1677 /* Check that arguments are integers or floats. */
1678 CHECK_NUMBER_OR_FLOAT (x);
1679 CHECK_NUMBER_OR_FLOAT (y);
1681 return window_from_coordinates (f,
1682 (FRAME_PIXEL_X_FROM_CANON_X (f, x)
1683 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1684 (FRAME_PIXEL_Y_FROM_CANON_Y (f, y)
1685 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1686 0, 0);
1689 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
1690 doc: /* Return current value of point in WINDOW.
1691 WINDOW must be a live window and defaults to the selected one.
1693 For a nonselected window, this is the value point would have if that
1694 window were selected.
1696 Note that, when WINDOW is selected, the value returned is the same as
1697 that returned by `point' for WINDOW's buffer. It would be more strictly
1698 correct to return the top-level value of `point', outside of any
1699 `save-excursion' forms. But that is hard to define. */)
1700 (Lisp_Object window)
1702 register struct window *w = decode_live_window (window);
1704 if (w == XWINDOW (selected_window))
1705 return make_number (BUF_PT (XBUFFER (w->contents)));
1706 else
1707 return Fmarker_position (w->pointm);
1710 DEFUN ("window-old-point", Fwindow_old_point, Swindow_old_point, 0, 1, 0,
1711 doc: /* Return old value of point in WINDOW.
1712 WINDOW must be a live window and defaults to the selected one. */)
1713 (Lisp_Object window)
1715 return Fmarker_position (decode_live_window (window)->old_pointm);
1718 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
1719 doc: /* Return position at which display currently starts in WINDOW.
1720 WINDOW must be a live window and defaults to the selected one.
1721 This is updated by redisplay or by calling `set-window-start'. */)
1722 (Lisp_Object window)
1724 return Fmarker_position (decode_live_window (window)->start);
1727 /* This is text temporarily removed from the doc string below.
1729 This function returns nil if the position is not currently known.
1730 That happens when redisplay is preempted and doesn't finish.
1731 If in that case you want to compute where the end of the window would
1732 have been if redisplay had finished, do this:
1733 (save-excursion
1734 (goto-char (window-start window))
1735 (vertical-motion (1- (window-height window)) window)
1736 (point))") */
1738 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
1739 doc: /* Return position at which display currently ends in WINDOW.
1740 WINDOW must be a live window and defaults to the selected one.
1741 This is updated by redisplay, when it runs to completion.
1742 Simply changing the buffer text or setting `window-start'
1743 does not update this value.
1744 Return nil if there is no recorded value. (This can happen if the
1745 last redisplay of WINDOW was preempted, and did not finish.)
1746 If UPDATE is non-nil, compute the up-to-date position
1747 if it isn't already recorded. */)
1748 (Lisp_Object window, Lisp_Object update)
1750 Lisp_Object value;
1751 struct window *w = decode_live_window (window);
1752 Lisp_Object buf;
1753 struct buffer *b;
1755 buf = w->contents;
1756 CHECK_BUFFER (buf);
1757 b = XBUFFER (buf);
1759 if (! NILP (update)
1760 && (windows_or_buffers_changed
1761 || !w->window_end_valid
1762 || b->clip_changed
1763 || b->prevent_redisplay_optimizations_p
1764 || window_outdated (w))
1765 && !noninteractive)
1767 struct text_pos startp;
1768 struct it it;
1769 struct buffer *old_buffer = NULL;
1770 void *itdata = NULL;
1772 /* Cannot use Fvertical_motion because that function doesn't
1773 cope with variable-height lines. */
1774 if (b != current_buffer)
1776 old_buffer = current_buffer;
1777 set_buffer_internal (b);
1780 /* In case W->start is out of the range, use something
1781 reasonable. This situation occurred when loading a file with
1782 `-l' containing a call to `rmail' with subsequent other
1783 commands. At the end, W->start happened to be BEG, while
1784 rmail had already narrowed the buffer. */
1785 CLIP_TEXT_POS_FROM_MARKER (startp, w->start);
1787 itdata = bidi_shelve_cache ();
1788 start_display (&it, w, startp);
1789 move_it_vertically (&it, window_box_height (w));
1790 if (it.current_y < it.last_visible_y)
1791 move_it_past_eol (&it);
1792 value = make_number (IT_CHARPOS (it));
1793 bidi_unshelve_cache (itdata, 0);
1795 if (old_buffer)
1796 set_buffer_internal (old_buffer);
1798 else
1799 XSETINT (value, BUF_Z (b) - w->window_end_pos);
1801 return value;
1804 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
1805 doc: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1806 WINDOW must be a live window and defaults to the selected one.
1807 Return POS. */)
1808 (Lisp_Object window, Lisp_Object pos)
1810 register struct window *w = decode_live_window (window);
1812 /* Type of POS is checked by Fgoto_char or set_marker_restricted ... */
1814 if (w == XWINDOW (selected_window))
1816 if (XBUFFER (w->contents) == current_buffer)
1817 Fgoto_char (pos);
1818 else
1820 struct buffer *old_buffer = current_buffer;
1822 /* ... but here we want to catch type error before buffer change. */
1823 CHECK_NUMBER_COERCE_MARKER (pos);
1824 set_buffer_internal (XBUFFER (w->contents));
1825 Fgoto_char (pos);
1826 set_buffer_internal (old_buffer);
1829 else
1831 set_marker_restricted (w->pointm, pos, w->contents);
1832 /* We have to make sure that redisplay updates the window to show
1833 the new value of point. */
1834 wset_redisplay (w);
1837 return pos;
1840 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
1841 doc: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1842 WINDOW must be a live window and defaults to the selected one. Return
1843 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1844 overriding motion of point in order to display at this exact start. */)
1845 (Lisp_Object window, Lisp_Object pos, Lisp_Object noforce)
1847 register struct window *w = decode_live_window (window);
1849 set_marker_restricted (w->start, pos, w->contents);
1850 /* This is not right, but much easier than doing what is right. */
1851 w->start_at_line_beg = 0;
1852 if (NILP (noforce))
1853 w->force_start = 1;
1854 w->update_mode_line = 1;
1855 /* Bug#15957. */
1856 w->window_end_valid = 0;
1857 wset_redisplay (w);
1859 return pos;
1862 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
1863 Spos_visible_in_window_p, 0, 3, 0,
1864 doc: /* Return non-nil if position POS is currently on the frame in WINDOW.
1865 WINDOW must be a live window and defaults to the selected one.
1867 Return nil if that position is scrolled vertically out of view. If a
1868 character is only partially visible, nil is returned, unless the
1869 optional argument PARTIALLY is non-nil. If POS is only out of view
1870 because of horizontal scrolling, return non-nil. If POS is t, it
1871 specifies the position of the last visible glyph in WINDOW. POS
1872 defaults to point in WINDOW; WINDOW defaults to the selected window.
1874 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1875 the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1876 where X and Y are the pixel coordinates relative to the top left corner
1877 of the window. The remaining elements are omitted if the character after
1878 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1879 off-window at the top and bottom of the screen line ("row") containing
1880 POS, ROWH is the visible height of that row, and VPOS is the row number
1881 \(zero-based). */)
1882 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially)
1884 register struct window *w;
1885 register EMACS_INT posint;
1886 register struct buffer *buf;
1887 struct text_pos top;
1888 Lisp_Object in_window = Qnil;
1889 int rtop, rbot, rowh, vpos, fully_p = 1;
1890 int x, y;
1892 w = decode_live_window (window);
1893 buf = XBUFFER (w->contents);
1894 SET_TEXT_POS_FROM_MARKER (top, w->start);
1896 if (EQ (pos, Qt))
1897 posint = -1;
1898 else if (!NILP (pos))
1900 CHECK_NUMBER_COERCE_MARKER (pos);
1901 posint = XINT (pos);
1903 else if (w == XWINDOW (selected_window))
1904 posint = PT;
1905 else
1906 posint = marker_position (w->pointm);
1908 /* If position is above window start or outside buffer boundaries,
1909 or if window start is out of range, position is not visible. */
1910 if ((EQ (pos, Qt)
1911 || (posint >= CHARPOS (top) && posint <= BUF_ZV (buf)))
1912 && CHARPOS (top) >= BUF_BEGV (buf)
1913 && CHARPOS (top) <= BUF_ZV (buf)
1914 && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos)
1915 && (fully_p = !rtop && !rbot, (!NILP (partially) || fully_p)))
1916 in_window = Qt;
1918 if (!NILP (in_window) && !NILP (partially))
1920 Lisp_Object part = Qnil;
1921 if (!fully_p)
1922 part = list4i (rtop, rbot, rowh, vpos);
1923 in_window = Fcons (make_number (x),
1924 Fcons (make_number (y), part));
1927 return in_window;
1930 DEFUN ("window-line-height", Fwindow_line_height,
1931 Swindow_line_height, 0, 2, 0,
1932 doc: /* Return height in pixels of text line LINE in window WINDOW.
1933 WINDOW must be a live window and defaults to the selected one.
1935 Return height of current line if LINE is omitted or nil. Return height of
1936 header or mode line if LINE is `header-line' or `mode-line'.
1937 Otherwise, LINE is a text line number starting from 0. A negative number
1938 counts from the end of the window.
1940 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1941 in pixels of the visible part of the line, VPOS and YPOS are the
1942 vertical position in lines and pixels of the line, relative to the top
1943 of the first text line, and OFFBOT is the number of off-window pixels at
1944 the bottom of the text line. If there are off-window pixels at the top
1945 of the (first) text line, YPOS is negative.
1947 Return nil if window display is not up-to-date. In that case, use
1948 `pos-visible-in-window-p' to obtain the information. */)
1949 (Lisp_Object line, Lisp_Object window)
1951 register struct window *w;
1952 register struct buffer *b;
1953 struct glyph_row *row, *end_row;
1954 int max_y, crop, i;
1955 EMACS_INT n;
1957 w = decode_live_window (window);
1959 if (noninteractive || w->pseudo_window_p)
1960 return Qnil;
1962 CHECK_BUFFER (w->contents);
1963 b = XBUFFER (w->contents);
1965 /* Fail if current matrix is not up-to-date. */
1966 if (!w->window_end_valid
1967 || windows_or_buffers_changed
1968 || b->clip_changed
1969 || b->prevent_redisplay_optimizations_p
1970 || window_outdated (w))
1971 return Qnil;
1973 if (NILP (line))
1975 i = w->cursor.vpos;
1976 if (i < 0 || i >= w->current_matrix->nrows
1977 || (row = MATRIX_ROW (w->current_matrix, i), !row->enabled_p))
1978 return Qnil;
1979 max_y = window_text_bottom_y (w);
1980 goto found_row;
1983 if (EQ (line, Qheader_line))
1985 if (!WINDOW_WANTS_HEADER_LINE_P (w))
1986 return Qnil;
1987 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
1988 return row->enabled_p ? list4i (row->height, 0, 0, 0) : Qnil;
1991 if (EQ (line, Qmode_line))
1993 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
1994 return (row->enabled_p ?
1995 list4i (row->height,
1996 0, /* not accurate */
1997 (WINDOW_HEADER_LINE_HEIGHT (w)
1998 + window_text_bottom_y (w)),
2000 : Qnil);
2003 CHECK_NUMBER (line);
2004 n = XINT (line);
2006 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
2007 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
2008 max_y = window_text_bottom_y (w);
2009 i = 0;
2011 while ((n < 0 || i < n)
2012 && row <= end_row && row->enabled_p
2013 && row->y + row->height < max_y)
2014 row++, i++;
2016 if (row > end_row || !row->enabled_p)
2017 return Qnil;
2019 if (++n < 0)
2021 if (-n > i)
2022 return Qnil;
2023 row += n;
2024 i += n;
2027 found_row:
2028 crop = max (0, (row->y + row->height) - max_y);
2029 return list4i (row->height + min (0, row->y) - crop, i, row->y, crop);
2032 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
2033 0, 1, 0,
2034 doc: /* Return non-nil when WINDOW is dedicated to its buffer.
2035 More precisely, return the value assigned by the last call of
2036 `set-window-dedicated-p' for WINDOW. Return nil if that function was
2037 never called with WINDOW as its argument, or the value set by that
2038 function was internally reset since its last call. WINDOW must be a
2039 live window and defaults to the selected one.
2041 When a window is dedicated to its buffer, `display-buffer' will refrain
2042 from displaying another buffer in it. `get-lru-window' and
2043 `get-largest-window' treat dedicated windows specially.
2044 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
2045 `kill-buffer' can delete a dedicated window and the containing frame.
2047 Functions like `set-window-buffer' may change the buffer displayed by a
2048 window, unless that window is "strongly" dedicated to its buffer, that
2049 is the value returned by `window-dedicated-p' is t. */)
2050 (Lisp_Object window)
2052 return decode_live_window (window)->dedicated;
2055 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
2056 Sset_window_dedicated_p, 2, 2, 0,
2057 doc: /* Mark WINDOW as dedicated according to FLAG.
2058 WINDOW must be a live window and defaults to the selected one. FLAG
2059 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
2060 mark WINDOW as non-dedicated. Return FLAG.
2062 When a window is dedicated to its buffer, `display-buffer' will refrain
2063 from displaying another buffer in it. `get-lru-window' and
2064 `get-largest-window' treat dedicated windows specially.
2065 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
2066 `quit-restore-window' and `kill-buffer' can delete a dedicated window
2067 and the containing frame.
2069 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
2070 its buffer. Functions like `set-window-buffer' may change the buffer
2071 displayed by a window, unless that window is strongly dedicated to its
2072 buffer. If and when `set-window-buffer' displays another buffer in a
2073 window, it also makes sure that the window is no more dedicated. */)
2074 (Lisp_Object window, Lisp_Object flag)
2076 wset_dedicated (decode_live_window (window), flag);
2077 return flag;
2080 DEFUN ("window-prev-buffers", Fwindow_prev_buffers, Swindow_prev_buffers,
2081 0, 1, 0,
2082 doc: /* Return buffers previously shown in WINDOW.
2083 WINDOW must be a live window and defaults to the selected one.
2085 The return value is a list of elements (BUFFER WINDOW-START POS),
2086 where BUFFER is a buffer, WINDOW-START is the start position of the
2087 window for that buffer, and POS is a window-specific point value. */)
2088 (Lisp_Object window)
2090 return decode_live_window (window)->prev_buffers;
2093 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers,
2094 Sset_window_prev_buffers, 2, 2, 0,
2095 doc: /* Set WINDOW's previous buffers to PREV-BUFFERS.
2096 WINDOW must be a live window and defaults to the selected one.
2098 PREV-BUFFERS should be a list of elements (BUFFER WINDOW-START POS),
2099 where BUFFER is a buffer, WINDOW-START is the start position of the
2100 window for that buffer, and POS is a window-specific point value. */)
2101 (Lisp_Object window, Lisp_Object prev_buffers)
2103 wset_prev_buffers (decode_live_window (window), prev_buffers);
2104 return prev_buffers;
2107 DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers,
2108 0, 1, 0,
2109 doc: /* Return list of buffers recently re-shown in WINDOW.
2110 WINDOW must be a live window and defaults to the selected one. */)
2111 (Lisp_Object window)
2113 return decode_live_window (window)->next_buffers;
2116 DEFUN ("set-window-next-buffers", Fset_window_next_buffers,
2117 Sset_window_next_buffers, 2, 2, 0,
2118 doc: /* Set WINDOW's next buffers to NEXT-BUFFERS.
2119 WINDOW must be a live window and defaults to the selected one.
2120 NEXT-BUFFERS should be a list of buffers. */)
2121 (Lisp_Object window, Lisp_Object next_buffers)
2123 wset_next_buffers (decode_live_window (window), next_buffers);
2124 return next_buffers;
2127 DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,
2128 0, 1, 0,
2129 doc: /* Return the parameters of WINDOW and their values.
2130 WINDOW must be a valid window and defaults to the selected one. The
2131 return value is a list of elements of the form (PARAMETER . VALUE). */)
2132 (Lisp_Object window)
2134 return Fcopy_alist (decode_valid_window (window)->window_parameters);
2137 DEFUN ("window-parameter", Fwindow_parameter, Swindow_parameter,
2138 2, 2, 0,
2139 doc: /* Return WINDOW's value for PARAMETER.
2140 WINDOW can be any window and defaults to the selected one. */)
2141 (Lisp_Object window, Lisp_Object parameter)
2143 Lisp_Object result;
2145 result = Fassq (parameter, decode_any_window (window)->window_parameters);
2146 return CDR_SAFE (result);
2149 DEFUN ("set-window-parameter", Fset_window_parameter,
2150 Sset_window_parameter, 3, 3, 0,
2151 doc: /* Set WINDOW's value of PARAMETER to VALUE.
2152 WINDOW can be any window and defaults to the selected one.
2153 Return VALUE. */)
2154 (Lisp_Object window, Lisp_Object parameter, Lisp_Object value)
2156 register struct window *w = decode_any_window (window);
2157 Lisp_Object old_alist_elt;
2159 old_alist_elt = Fassq (parameter, w->window_parameters);
2160 if (NILP (old_alist_elt))
2161 wset_window_parameters
2162 (w, Fcons (Fcons (parameter, value), w->window_parameters));
2163 else
2164 Fsetcdr (old_alist_elt, value);
2165 return value;
2168 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
2169 0, 1, 0,
2170 doc: /* Return the display-table that WINDOW is using.
2171 WINDOW must be a live window and defaults to the selected one. */)
2172 (Lisp_Object window)
2174 return decode_live_window (window)->display_table;
2177 /* Get the display table for use on window W. This is either W's
2178 display table or W's buffer's display table. Ignore the specified
2179 tables if they are not valid; if no valid table is specified,
2180 return 0. */
2182 struct Lisp_Char_Table *
2183 window_display_table (struct window *w)
2185 struct Lisp_Char_Table *dp = NULL;
2187 if (DISP_TABLE_P (w->display_table))
2188 dp = XCHAR_TABLE (w->display_table);
2189 else if (BUFFERP (w->contents))
2191 struct buffer *b = XBUFFER (w->contents);
2193 if (DISP_TABLE_P (BVAR (b, display_table)))
2194 dp = XCHAR_TABLE (BVAR (b, display_table));
2195 else if (DISP_TABLE_P (Vstandard_display_table))
2196 dp = XCHAR_TABLE (Vstandard_display_table);
2199 return dp;
2202 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
2203 doc: /* Set WINDOW's display-table to TABLE.
2204 WINDOW must be a live window and defaults to the selected one. */)
2205 (register Lisp_Object window, Lisp_Object table)
2207 wset_display_table (decode_live_window (window), table);
2208 return table;
2211 /* Record info on buffer window W is displaying
2212 when it is about to cease to display that buffer. */
2213 static void
2214 unshow_buffer (register struct window *w)
2216 Lisp_Object buf = w->contents;
2217 struct buffer *b = XBUFFER (buf);
2219 eassert (b == XMARKER (w->pointm)->buffer);
2221 #if 0
2222 if (w == XWINDOW (selected_window)
2223 || ! EQ (buf, XWINDOW (selected_window)->contents))
2224 /* Do this except when the selected window's buffer
2225 is being removed from some other window. */
2226 #endif
2227 /* last_window_start records the start position that this buffer
2228 had in the last window to be disconnected from it.
2229 Now that this statement is unconditional,
2230 it is possible for the buffer to be displayed in the
2231 selected window, while last_window_start reflects another
2232 window which was recently showing the same buffer.
2233 Some people might say that might be a good thing. Let's see. */
2234 b->last_window_start = marker_position (w->start);
2236 /* Point in the selected window's buffer
2237 is actually stored in that buffer, and the window's pointm isn't used.
2238 So don't clobber point in that buffer. */
2239 if (! EQ (buf, XWINDOW (selected_window)->contents)
2240 /* Don't clobber point in current buffer either (this could be
2241 useful in connection with bug#12208).
2242 && XBUFFER (buf) != current_buffer */
2243 /* This line helps to fix Horsley's testbug.el bug. */
2244 && !(WINDOWP (BVAR (b, last_selected_window))
2245 && w != XWINDOW (BVAR (b, last_selected_window))
2246 && EQ (buf, XWINDOW (BVAR (b, last_selected_window))->contents)))
2247 temp_set_point_both (b,
2248 clip_to_bounds (BUF_BEGV (b),
2249 marker_position (w->pointm),
2250 BUF_ZV (b)),
2251 clip_to_bounds (BUF_BEGV_BYTE (b),
2252 marker_byte_position (w->pointm),
2253 BUF_ZV_BYTE (b)));
2255 if (WINDOWP (BVAR (b, last_selected_window))
2256 && w == XWINDOW (BVAR (b, last_selected_window)))
2257 bset_last_selected_window (b, Qnil);
2260 /* Put NEW into the window structure in place of OLD. SETFLAG zero
2261 means change window structure only. Otherwise store geometry and
2262 other settings as well. */
2263 static void
2264 replace_window (Lisp_Object old, Lisp_Object new, int setflag)
2266 register Lisp_Object tem;
2267 register struct window *o = XWINDOW (old), *n = XWINDOW (new);
2269 /* If OLD is its frame's root window, then NEW is the new
2270 root window for that frame. */
2271 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
2272 fset_root_window (XFRAME (o->frame), new);
2274 if (setflag)
2276 n->pixel_left = o->pixel_left;
2277 n->pixel_top = o->pixel_top;
2278 n->pixel_width = o->pixel_width;
2279 n->pixel_height = o->pixel_height;
2280 n->left_col = o->left_col;
2281 n->top_line = o->top_line;
2282 n->total_cols = o->total_cols;
2283 n->total_lines = o->total_lines;
2284 wset_normal_cols (n, o->normal_cols);
2285 wset_normal_cols (o, make_float (1.0));
2286 wset_normal_lines (n, o->normal_lines);
2287 wset_normal_lines (o, make_float (1.0));
2288 n->desired_matrix = n->current_matrix = 0;
2289 n->vscroll = 0;
2290 memset (&n->cursor, 0, sizeof (n->cursor));
2291 memset (&n->phys_cursor, 0, sizeof (n->phys_cursor));
2292 n->last_cursor_vpos = 0;
2293 #ifdef HAVE_WINDOW_SYSTEM
2294 n->phys_cursor_type = NO_CURSOR;
2295 n->phys_cursor_width = -1;
2296 #endif
2297 n->must_be_updated_p = 0;
2298 n->pseudo_window_p = 0;
2299 n->window_end_vpos = 0;
2300 n->window_end_pos = 0;
2301 n->window_end_valid = 0;
2304 tem = o->next;
2305 wset_next (n, tem);
2306 if (!NILP (tem))
2307 wset_prev (XWINDOW (tem), new);
2309 tem = o->prev;
2310 wset_prev (n, tem);
2311 if (!NILP (tem))
2312 wset_next (XWINDOW (tem), new);
2314 tem = o->parent;
2315 wset_parent (n, tem);
2316 if (!NILP (tem) && EQ (XWINDOW (tem)->contents, old))
2317 wset_combination (XWINDOW (tem), XWINDOW (tem)->horizontal, new);
2320 /* If window WINDOW and its parent window are iso-combined, merge
2321 WINDOW's children into those of its parent window and mark WINDOW as
2322 deleted. */
2324 static void
2325 recombine_windows (Lisp_Object window)
2327 struct window *w, *p, *c;
2328 Lisp_Object parent, child;
2329 bool horflag;
2331 w = XWINDOW (window);
2332 parent = w->parent;
2333 if (!NILP (parent) && NILP (w->combination_limit))
2335 p = XWINDOW (parent);
2336 if (WINDOWP (p->contents) && WINDOWP (w->contents)
2337 && p->horizontal == w->horizontal)
2338 /* WINDOW and PARENT are both either a vertical or a horizontal
2339 combination. */
2341 horflag = WINDOW_HORIZONTAL_COMBINATION_P (w);
2342 child = w->contents;
2343 c = XWINDOW (child);
2345 /* Splice WINDOW's children into its parent's children and
2346 assign new normal sizes. */
2347 if (NILP (w->prev))
2348 wset_combination (p, horflag, child);
2349 else
2351 wset_prev (c, w->prev);
2352 wset_next (XWINDOW (w->prev), child);
2355 while (c)
2357 wset_parent (c, parent);
2359 if (horflag)
2360 wset_normal_cols
2361 (c, make_float ((double) c->pixel_width
2362 / (double) p->pixel_width));
2363 else
2364 wset_normal_lines
2365 (c, make_float ((double) c->pixel_height
2366 / (double) p->pixel_height));
2368 if (NILP (c->next))
2370 if (!NILP (w->next))
2372 wset_next (c, w->next);
2373 wset_prev (XWINDOW (c->next), child);
2376 c = 0;
2378 else
2380 child = c->next;
2381 c = XWINDOW (child);
2385 /* WINDOW can be deleted now. */
2386 wset_combination (w, 0, Qnil);
2391 /* If WINDOW can be deleted, delete it. */
2392 static void
2393 delete_deletable_window (Lisp_Object window)
2395 if (!NILP (call1 (Qwindow_deletable_p, window)))
2396 call1 (Qdelete_window, window);
2399 /***********************************************************************
2400 Window List
2401 ***********************************************************************/
2403 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
2404 pointer. This is a callback function for foreach_window, used in
2405 the window_list function. */
2407 static int
2408 add_window_to_list (struct window *w, void *user_data)
2410 Lisp_Object *list = user_data;
2411 Lisp_Object window;
2412 XSETWINDOW (window, w);
2413 *list = Fcons (window, *list);
2414 return 1;
2418 /* Return a list of all windows, for use by next_window. If
2419 Vwindow_list is a list, return that list. Otherwise, build a new
2420 list, cache it in Vwindow_list, and return that. */
2422 Lisp_Object
2423 window_list (void)
2425 if (!CONSP (Vwindow_list))
2427 Lisp_Object tail, frame;
2429 Vwindow_list = Qnil;
2430 FOR_EACH_FRAME (tail, frame)
2432 Lisp_Object arglist = Qnil;
2434 /* We are visiting windows in canonical order, and add
2435 new windows at the front of args[1], which means we
2436 have to reverse this list at the end. */
2437 foreach_window (XFRAME (frame), add_window_to_list, &arglist);
2438 arglist = Fnreverse (arglist);
2439 Vwindow_list = CALLN (Fnconc, Vwindow_list, arglist);
2443 return Vwindow_list;
2447 /* Value is non-zero if WINDOW satisfies the constraints given by
2448 OWINDOW, MINIBUF and ALL_FRAMES.
2450 MINIBUF t means WINDOW may be minibuffer windows.
2451 `lambda' means WINDOW may not be a minibuffer window.
2452 a window means a specific minibuffer window
2454 ALL_FRAMES t means search all frames,
2455 nil means search just current frame,
2456 `visible' means search just visible frames on the
2457 current terminal,
2458 0 means search visible and iconified frames on the
2459 current terminal,
2460 a window means search the frame that window belongs to,
2461 a frame means consider windows on that frame, only. */
2463 static bool
2464 candidate_window_p (Lisp_Object window, Lisp_Object owindow,
2465 Lisp_Object minibuf, Lisp_Object all_frames)
2467 struct window *w = XWINDOW (window);
2468 struct frame *f = XFRAME (w->frame);
2469 bool candidate_p = 1;
2471 if (!BUFFERP (w->contents))
2472 candidate_p = 0;
2473 else if (MINI_WINDOW_P (w)
2474 && (EQ (minibuf, Qlambda)
2475 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
2477 /* If MINIBUF is `lambda' don't consider any mini-windows.
2478 If it is a window, consider only that one. */
2479 candidate_p = 0;
2481 else if (EQ (all_frames, Qt))
2482 candidate_p = 1;
2483 else if (NILP (all_frames))
2485 eassert (WINDOWP (owindow));
2486 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
2488 else if (EQ (all_frames, Qvisible))
2490 candidate_p = FRAME_VISIBLE_P (f)
2491 && (FRAME_TERMINAL (XFRAME (w->frame))
2492 == FRAME_TERMINAL (XFRAME (selected_frame)));
2495 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
2497 candidate_p = (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)
2498 #ifdef HAVE_X_WINDOWS
2499 /* Yuck!! If we've just created the frame and the
2500 window-manager requested the user to place it
2501 manually, the window may still not be considered
2502 `visible'. I'd argue it should be at least
2503 something like `iconified', but don't know how to do
2504 that yet. --Stef */
2505 || (FRAME_X_P (f) && f->output_data.x->asked_for_visible
2506 && !f->output_data.x->has_been_visible)
2507 #endif
2509 && (FRAME_TERMINAL (XFRAME (w->frame))
2510 == FRAME_TERMINAL (XFRAME (selected_frame)));
2512 else if (WINDOWP (all_frames))
2513 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
2514 || EQ (XWINDOW (all_frames)->frame, w->frame)
2515 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
2516 else if (FRAMEP (all_frames))
2517 candidate_p = EQ (all_frames, w->frame);
2519 return candidate_p;
2523 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2524 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2525 MINIBUF, and ALL_FRAMES. */
2527 static void
2528 decode_next_window_args (Lisp_Object *window, Lisp_Object *minibuf, Lisp_Object *all_frames)
2530 struct window *w = decode_live_window (*window);
2532 XSETWINDOW (*window, w);
2533 /* MINIBUF nil may or may not include minibuffers. Decide if it
2534 does. */
2535 if (NILP (*minibuf))
2536 *minibuf = minibuf_level ? minibuf_window : Qlambda;
2537 else if (!EQ (*minibuf, Qt))
2538 *minibuf = Qlambda;
2540 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2541 => count none of them, or a specific minibuffer window (the
2542 active one) to count. */
2544 /* ALL_FRAMES nil doesn't specify which frames to include. */
2545 if (NILP (*all_frames))
2546 *all_frames
2547 = (!EQ (*minibuf, Qlambda)
2548 ? FRAME_MINIBUF_WINDOW (XFRAME (w->frame))
2549 : Qnil);
2550 else if (EQ (*all_frames, Qvisible))
2552 else if (EQ (*all_frames, make_number (0)))
2554 else if (FRAMEP (*all_frames))
2556 else if (!EQ (*all_frames, Qt))
2557 *all_frames = Qnil;
2561 /* Return the next or previous window of WINDOW in cyclic ordering
2562 of windows. NEXT_P non-zero means return the next window. See the
2563 documentation string of next-window for the meaning of MINIBUF and
2564 ALL_FRAMES. */
2566 static Lisp_Object
2567 next_window (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames, int next_p)
2569 decode_next_window_args (&window, &minibuf, &all_frames);
2571 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2572 return the first window on the frame. */
2573 if (FRAMEP (all_frames)
2574 && !EQ (all_frames, XWINDOW (window)->frame))
2575 return Fframe_first_window (all_frames);
2577 if (next_p)
2579 Lisp_Object list;
2581 /* Find WINDOW in the list of all windows. */
2582 list = Fmemq (window, window_list ());
2584 /* Scan forward from WINDOW to the end of the window list. */
2585 if (CONSP (list))
2586 for (list = XCDR (list); CONSP (list); list = XCDR (list))
2587 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2588 break;
2590 /* Scan from the start of the window list up to WINDOW. */
2591 if (!CONSP (list))
2592 for (list = Vwindow_list;
2593 CONSP (list) && !EQ (XCAR (list), window);
2594 list = XCDR (list))
2595 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2596 break;
2598 if (CONSP (list))
2599 window = XCAR (list);
2601 else
2603 Lisp_Object candidate, list;
2605 /* Scan through the list of windows for candidates. If there are
2606 candidate windows in front of WINDOW, the last one of these
2607 is the one we want. If there are candidates following WINDOW
2608 in the list, again the last one of these is the one we want. */
2609 candidate = Qnil;
2610 for (list = window_list (); CONSP (list); list = XCDR (list))
2612 if (EQ (XCAR (list), window))
2614 if (WINDOWP (candidate))
2615 break;
2617 else if (candidate_window_p (XCAR (list), window, minibuf,
2618 all_frames))
2619 candidate = XCAR (list);
2622 if (WINDOWP (candidate))
2623 window = candidate;
2626 return window;
2630 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
2631 doc: /* Return live window after WINDOW in the cyclic ordering of windows.
2632 WINDOW must be a live window and defaults to the selected one. The
2633 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2634 consider.
2636 MINIBUF nil or omitted means consider the minibuffer window only if the
2637 minibuffer is active. MINIBUF t means consider the minibuffer window
2638 even if the minibuffer is not active. Any other value means do not
2639 consider the minibuffer window even if the minibuffer is active.
2641 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2642 plus the minibuffer window if specified by the MINIBUF argument. If the
2643 minibuffer counts, consider all windows on all frames that share that
2644 minibuffer too. The following non-nil values of ALL-FRAMES have special
2645 meanings:
2647 - t means consider all windows on all existing frames.
2649 - `visible' means consider all windows on all visible frames.
2651 - 0 (the number zero) means consider all windows on all visible and
2652 iconified frames.
2654 - A frame means consider all windows on that frame only.
2656 Anything else means consider all windows on WINDOW's frame and no
2657 others.
2659 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2660 `next-window' to iterate through the entire cycle of acceptable
2661 windows, eventually ending up back at the window you started with.
2662 `previous-window' traverses the same cycle, in the reverse order. */)
2663 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2665 return next_window (window, minibuf, all_frames, 1);
2669 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
2670 doc: /* Return live window before WINDOW in the cyclic ordering of windows.
2671 WINDOW must be a live window and defaults to the selected one. The
2672 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2673 consider.
2675 MINIBUF nil or omitted means consider the minibuffer window only if the
2676 minibuffer is active. MINIBUF t means consider the minibuffer window
2677 even if the minibuffer is not active. Any other value means do not
2678 consider the minibuffer window even if the minibuffer is active.
2680 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2681 plus the minibuffer window if specified by the MINIBUF argument. If the
2682 minibuffer counts, consider all windows on all frames that share that
2683 minibuffer too. The following non-nil values of ALL-FRAMES have special
2684 meanings:
2686 - t means consider all windows on all existing frames.
2688 - `visible' means consider all windows on all visible frames.
2690 - 0 (the number zero) means consider all windows on all visible and
2691 iconified frames.
2693 - A frame means consider all windows on that frame only.
2695 Anything else means consider all windows on WINDOW's frame and no
2696 others.
2698 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2699 use `previous-window' to iterate through the entire cycle of
2700 acceptable windows, eventually ending up back at the window you
2701 started with. `next-window' traverses the same cycle, in the
2702 reverse order. */)
2703 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2705 return next_window (window, minibuf, all_frames, 0);
2709 /* Return a list of windows in cyclic ordering. Arguments are like
2710 for `next-window'. */
2712 static Lisp_Object
2713 window_list_1 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2715 Lisp_Object tail, list, rest;
2717 decode_next_window_args (&window, &minibuf, &all_frames);
2718 list = Qnil;
2720 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
2721 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
2722 list = Fcons (XCAR (tail), list);
2724 /* Rotate the list to start with WINDOW. */
2725 list = Fnreverse (list);
2726 rest = Fmemq (window, list);
2727 if (!NILP (rest) && !EQ (rest, list))
2729 for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail))
2731 XSETCDR (tail, Qnil);
2732 list = nconc2 (rest, list);
2734 return list;
2738 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
2739 doc: /* Return a list of windows on FRAME, starting with WINDOW.
2740 FRAME nil or omitted means use the selected frame.
2741 WINDOW nil or omitted means use the window selected within FRAME.
2742 MINIBUF t means include the minibuffer window, even if it isn't active.
2743 MINIBUF nil or omitted means include the minibuffer window only
2744 if it's active.
2745 MINIBUF neither nil nor t means never include the minibuffer window. */)
2746 (Lisp_Object frame, Lisp_Object minibuf, Lisp_Object window)
2748 if (NILP (window))
2749 window = FRAMEP (frame) ? XFRAME (frame)->selected_window : selected_window;
2750 CHECK_WINDOW (window);
2751 if (NILP (frame))
2752 frame = selected_frame;
2754 if (!EQ (frame, XWINDOW (window)->frame))
2755 error ("Window is on a different frame");
2757 return window_list_1 (window, minibuf, frame);
2761 DEFUN ("window-list-1", Fwindow_list_1, Swindow_list_1, 0, 3, 0,
2762 doc: /* Return a list of all live windows.
2763 WINDOW specifies the first window to list and defaults to the selected
2764 window.
2766 Optional argument MINIBUF nil or omitted means consider the minibuffer
2767 window only if the minibuffer is active. MINIBUF t means consider the
2768 minibuffer window even if the minibuffer is not active. Any other value
2769 means do not consider the minibuffer window even if the minibuffer is
2770 active.
2772 Optional argument ALL-FRAMES nil or omitted means consider all windows
2773 on WINDOW's frame, plus the minibuffer window if specified by the
2774 MINIBUF argument. If the minibuffer counts, consider all windows on all
2775 frames that share that minibuffer too. The following non-nil values of
2776 ALL-FRAMES have special meanings:
2778 - t means consider all windows on all existing frames.
2780 - `visible' means consider all windows on all visible frames.
2782 - 0 (the number zero) means consider all windows on all visible and
2783 iconified frames.
2785 - A frame means consider all windows on that frame only.
2787 Anything else means consider all windows on WINDOW's frame and no
2788 others.
2790 If WINDOW is not on the list of windows returned, some other window will
2791 be listed first but no error is signaled. */)
2792 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2794 return window_list_1 (window, minibuf, all_frames);
2797 /* Look at all windows, performing an operation specified by TYPE
2798 with argument OBJ.
2799 If FRAMES is Qt, look at all frames;
2800 Qnil, look at just the selected frame;
2801 Qvisible, look at visible frames;
2802 a frame, just look at windows on that frame.
2803 If MINI is non-zero, perform the operation on minibuffer windows too. */
2805 enum window_loop
2807 WINDOW_LOOP_UNUSED,
2808 GET_BUFFER_WINDOW, /* Arg is buffer */
2809 REPLACE_BUFFER_IN_WINDOWS_SAFELY, /* Arg is buffer */
2810 REDISPLAY_BUFFER_WINDOWS, /* Arg is buffer */
2811 CHECK_ALL_WINDOWS /* Arg is ignored */
2814 static Lisp_Object
2815 window_loop (enum window_loop type, Lisp_Object obj, int mini, Lisp_Object frames)
2817 Lisp_Object window, windows, best_window, frame_arg;
2818 int frame_best_window_flag = 0;
2819 struct frame *f;
2820 struct gcpro gcpro1;
2822 /* If we're only looping through windows on a particular frame,
2823 frame points to that frame. If we're looping through windows
2824 on all frames, frame is 0. */
2825 if (FRAMEP (frames))
2826 f = XFRAME (frames);
2827 else if (NILP (frames))
2828 f = SELECTED_FRAME ();
2829 else
2830 f = NULL;
2832 if (f)
2833 frame_arg = Qlambda;
2834 else if (EQ (frames, make_number (0)))
2835 frame_arg = frames;
2836 else if (EQ (frames, Qvisible))
2837 frame_arg = frames;
2838 else
2839 frame_arg = Qt;
2841 /* frame_arg is Qlambda to stick to one frame,
2842 Qvisible to consider all visible frames,
2843 or Qt otherwise. */
2845 /* Pick a window to start with. */
2846 if (WINDOWP (obj))
2847 window = obj;
2848 else if (f)
2849 window = FRAME_SELECTED_WINDOW (f);
2850 else
2851 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2853 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
2854 GCPRO1 (windows);
2855 best_window = Qnil;
2857 for (; CONSP (windows); windows = XCDR (windows))
2859 struct window *w;
2861 window = XCAR (windows);
2862 w = XWINDOW (window);
2864 /* Note that we do not pay attention here to whether the frame
2865 is visible, since Fwindow_list skips non-visible frames if
2866 that is desired, under the control of frame_arg. */
2867 if (!MINI_WINDOW_P (w)
2868 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2869 consider all windows. */
2870 || type == REPLACE_BUFFER_IN_WINDOWS_SAFELY
2871 || (mini && minibuf_level > 0))
2872 switch (type)
2874 case GET_BUFFER_WINDOW:
2875 if (EQ (w->contents, obj)
2876 /* Don't find any minibuffer window except the one that
2877 is currently in use. */
2878 && (MINI_WINDOW_P (w) ? EQ (window, minibuf_window) : 1))
2880 if (EQ (window, selected_window))
2881 /* Preferably return the selected window. */
2882 RETURN_UNGCPRO (window);
2883 else if (EQ (XWINDOW (window)->frame, selected_frame)
2884 && !frame_best_window_flag)
2885 /* Prefer windows on the current frame (but don't
2886 choose another one if we have one already). */
2888 best_window = window;
2889 frame_best_window_flag = 1;
2891 else if (NILP (best_window))
2892 best_window = window;
2894 break;
2896 case REPLACE_BUFFER_IN_WINDOWS_SAFELY:
2897 /* We could simply check whether the buffer shown by window
2898 is live, and show another buffer in case it isn't. */
2899 if (EQ (w->contents, obj))
2901 /* Undedicate WINDOW. */
2902 wset_dedicated (w, Qnil);
2903 /* Make WINDOW show the buffer returned by
2904 other_buffer_safely, don't run any hooks. */
2905 set_window_buffer
2906 (window, other_buffer_safely (w->contents), 0, 0);
2907 /* If WINDOW is the selected window, make its buffer
2908 current. But do so only if the window shows the
2909 current buffer (Bug#6454). */
2910 if (EQ (window, selected_window)
2911 && XBUFFER (w->contents) == current_buffer)
2912 Fset_buffer (w->contents);
2914 break;
2916 case REDISPLAY_BUFFER_WINDOWS:
2917 if (EQ (w->contents, obj))
2919 mark_window_display_accurate (window, 0);
2920 w->update_mode_line = 1;
2921 XBUFFER (obj)->prevent_redisplay_optimizations_p = 1;
2922 update_mode_lines = 27;
2923 best_window = window;
2925 break;
2927 /* Check for a leaf window that has a killed buffer
2928 or broken markers. */
2929 case CHECK_ALL_WINDOWS:
2930 if (BUFFERP (w->contents))
2932 struct buffer *b = XBUFFER (w->contents);
2934 if (!BUFFER_LIVE_P (b))
2935 emacs_abort ();
2936 if (!MARKERP (w->start) || XMARKER (w->start)->buffer != b)
2937 emacs_abort ();
2938 if (!MARKERP (w->pointm) || XMARKER (w->pointm)->buffer != b)
2939 emacs_abort ();
2941 break;
2943 case WINDOW_LOOP_UNUSED:
2944 break;
2948 UNGCPRO;
2949 return best_window;
2952 /* Used for debugging. Abort if any window has a dead buffer. */
2954 extern void check_all_windows (void) EXTERNALLY_VISIBLE;
2955 void
2956 check_all_windows (void)
2958 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
2961 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 0, 2, 0,
2962 doc: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2963 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2964 the current buffer.
2966 The optional argument ALL-FRAMES specifies the frames to consider:
2968 - t means consider all windows on all existing frames.
2970 - `visible' means consider all windows on all visible frames.
2972 - 0 (the number zero) means consider all windows on all visible
2973 and iconified frames.
2975 - A frame means consider all windows on that frame only.
2977 Any other value of ALL-FRAMES means consider all windows on the
2978 selected frame and no others. */)
2979 (Lisp_Object buffer_or_name, Lisp_Object all_frames)
2981 Lisp_Object buffer;
2983 if (NILP (buffer_or_name))
2984 buffer = Fcurrent_buffer ();
2985 else
2986 buffer = Fget_buffer (buffer_or_name);
2988 if (BUFFERP (buffer))
2989 return window_loop (GET_BUFFER_WINDOW, buffer, 1, all_frames);
2990 else
2991 return Qnil;
2995 static Lisp_Object
2996 resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore, Lisp_Object pixelwise)
2998 return call5 (Qwindow_resize_root_window, window, delta, horizontal, ignore, pixelwise);
3001 /* Placeholder used by temacs -nw before window.el is loaded. */
3002 DEFUN ("window--sanitize-window-sizes", Fwindow__sanitize_window_sizes,
3003 Swindow__sanitize_window_sizes, 2, 2, 0,
3004 doc: /* */
3005 attributes: const)
3006 (Lisp_Object frame, Lisp_Object horizontal)
3008 return Qnil;
3011 Lisp_Object
3012 sanitize_window_sizes (Lisp_Object frame, Lisp_Object horizontal)
3014 return call2 (Qwindow_sanitize_window_sizes, frame, horizontal);
3018 static Lisp_Object
3019 window_pixel_to_total (Lisp_Object frame, Lisp_Object horizontal)
3021 return call2 (Qwindow_pixel_to_total, frame, horizontal);
3025 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal,
3026 Sdelete_other_windows_internal, 0, 2, "",
3027 doc: /* Make WINDOW fill its frame.
3028 Only the frame WINDOW is on is affected. WINDOW must be a valid window
3029 and defaults to the selected one.
3031 Optional argument ROOT, if non-nil, must specify an internal window such
3032 that WINDOW is in its window subtree. If this is the case, replace ROOT
3033 by WINDOW and leave alone any windows not part of ROOT's subtree.
3035 When WINDOW is live try to reduce display jumps by keeping the text
3036 previously visible in WINDOW in the same place on the frame. Doing this
3037 depends on the value of (window-start WINDOW), so if calling this
3038 function in a program gives strange scrolling, make sure the
3039 window-start value is reasonable when this function is called. */)
3040 (Lisp_Object window, Lisp_Object root)
3042 struct window *w, *r, *s;
3043 struct frame *f;
3044 Lisp_Object sibling, pwindow, swindow IF_LINT (= Qnil), delta;
3045 ptrdiff_t startpos IF_LINT (= 0), startbyte IF_LINT (= 0);
3046 int top IF_LINT (= 0), new_top, resize_failed;
3048 w = decode_valid_window (window);
3049 XSETWINDOW (window, w);
3050 f = XFRAME (w->frame);
3052 if (NILP (root))
3053 /* ROOT is the frame's root window. */
3055 root = FRAME_ROOT_WINDOW (f);
3056 r = XWINDOW (root);
3058 else
3059 /* ROOT must be an ancestor of WINDOW. */
3061 r = decode_valid_window (root);
3062 pwindow = XWINDOW (window)->parent;
3063 while (!NILP (pwindow))
3064 if (EQ (pwindow, root))
3065 break;
3066 else
3067 pwindow = XWINDOW (pwindow)->parent;
3068 if (!EQ (pwindow, root))
3069 error ("Specified root is not an ancestor of specified window");
3072 if (EQ (window, root))
3073 /* A noop. */
3074 return Qnil;
3075 /* I don't understand the "top > 0" part below. If we deal with a
3076 standalone minibuffer it would have been caught by the preceding
3077 test. */
3078 else if (MINI_WINDOW_P (w)) /* && top > 0) */
3079 error ("Can't expand minibuffer to full frame");
3081 if (BUFFERP (w->contents))
3083 startpos = marker_position (w->start);
3084 startbyte = marker_byte_position (w->start);
3085 top = (WINDOW_TOP_EDGE_LINE (w)
3086 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w))));
3087 /* Make sure WINDOW is the frame's selected window. */
3088 if (!EQ (window, FRAME_SELECTED_WINDOW (f)))
3090 if (EQ (selected_frame, w->frame))
3091 Fselect_window (window, Qnil);
3092 else
3093 fset_selected_window (f, window);
3096 else
3098 /* See if the frame's selected window is a part of the window
3099 subtree rooted at WINDOW, by finding all the selected window's
3100 parents and comparing each one with WINDOW. If it isn't we
3101 need a new selected window for this frame. */
3102 swindow = FRAME_SELECTED_WINDOW (f);
3103 while (1)
3105 pwindow = swindow;
3106 while (!NILP (pwindow) && !EQ (window, pwindow))
3107 pwindow = XWINDOW (pwindow)->parent;
3109 if (EQ (window, pwindow))
3110 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
3111 as the new selected window. */
3112 break;
3113 else
3114 /* Else try the previous window of SWINDOW. */
3115 swindow = Fprevious_window (swindow, Qlambda, Qnil);
3118 if (!EQ (swindow, FRAME_SELECTED_WINDOW (f)))
3120 if (EQ (selected_frame, w->frame))
3121 Fselect_window (swindow, Qnil);
3122 else
3123 fset_selected_window (f, swindow);
3127 block_input ();
3128 if (!FRAME_INITIAL_P (f))
3130 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
3132 /* We are going to free the glyph matrices of WINDOW, and with
3133 that we might lose any information about glyph rows that have
3134 some of their glyphs highlighted in mouse face. (These rows
3135 are marked with a non-zero mouse_face_p flag.) If WINDOW
3136 indeed has some glyphs highlighted in mouse face, signal to
3137 frame's up-to-date hook that mouse highlight was overwritten,
3138 so that it will arrange for redisplaying the highlight. */
3139 if (EQ (hlinfo->mouse_face_window, window))
3140 reset_mouse_highlight (hlinfo);
3142 free_window_matrices (r);
3144 fset_redisplay (f);
3145 Vwindow_list = Qnil;
3146 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3147 resize_failed = 0;
3149 if (!WINDOW_LEAF_P (w))
3151 /* Resize child windows vertically. */
3152 XSETINT (delta, r->pixel_height - w->pixel_height);
3153 w->pixel_top = r->pixel_top;
3154 w->top_line = r->top_line;
3155 resize_root_window (window, delta, Qnil, Qnil, Qt);
3156 if (window_resize_check (w, 0))
3158 window_resize_apply (w, 0);
3159 window_pixel_to_total (w->frame, Qnil);
3161 else
3163 resize_root_window (window, delta, Qnil, Qt, Qt);
3164 if (window_resize_check (w, 0))
3166 window_resize_apply (w, 0);
3167 window_pixel_to_total (w->frame, Qnil);
3169 else
3170 resize_failed = 1;
3173 /* Resize child windows horizontally. */
3174 if (!resize_failed)
3176 w->left_col = r->left_col;
3177 w->pixel_left = r->pixel_left;
3178 XSETINT (delta, r->pixel_width - w->pixel_width);
3179 resize_root_window (window, delta, Qt, Qnil, Qt);
3180 if (window_resize_check (w, 1))
3182 window_resize_apply (w, 1);
3183 window_pixel_to_total (w->frame, Qt);
3185 else
3187 resize_root_window (window, delta, Qt, Qt, Qt);
3188 if (window_resize_check (w, 1))
3190 window_resize_apply (w, 1);
3191 window_pixel_to_total (w->frame, Qt);
3193 else
3194 resize_failed = 1;
3198 if (resize_failed)
3199 /* Play safe, if we still can ... */
3201 window = swindow;
3202 w = XWINDOW (window);
3206 /* Cleanly unlink WINDOW from window-tree. */
3207 if (!NILP (w->prev))
3208 /* Get SIBLING above (on the left of) WINDOW. */
3210 sibling = w->prev;
3211 s = XWINDOW (sibling);
3212 wset_next (s, w->next);
3213 if (!NILP (s->next))
3214 wset_prev (XWINDOW (s->next), sibling);
3216 else
3217 /* Get SIBLING below (on the right of) WINDOW. */
3219 sibling = w->next;
3220 s = XWINDOW (sibling);
3221 wset_prev (s, Qnil);
3222 wset_combination (XWINDOW (w->parent),
3223 XWINDOW (w->parent)->horizontal, sibling);
3226 /* Delete ROOT and all child windows of ROOT. */
3227 if (WINDOWP (r->contents))
3229 delete_all_child_windows (r->contents);
3230 wset_combination (r, 0, Qnil);
3233 replace_window (root, window, 1);
3235 /* This must become SWINDOW anyway ....... */
3236 if (BUFFERP (w->contents) && !resize_failed)
3238 /* Try to minimize scrolling, by setting the window start to the
3239 point will cause the text at the old window start to be at the
3240 same place on the frame. But don't try to do this if the
3241 window start is outside the visible portion (as might happen
3242 when the display is not current, due to typeahead). */
3243 new_top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
3244 if (new_top != top
3245 && startpos >= BUF_BEGV (XBUFFER (w->contents))
3246 && startpos <= BUF_ZV (XBUFFER (w->contents)))
3248 struct position pos;
3249 struct buffer *obuf = current_buffer;
3251 Fset_buffer (w->contents);
3252 /* This computation used to temporarily move point, but that
3253 can have unwanted side effects due to text properties. */
3254 pos = *vmotion (startpos, startbyte, -top, w);
3256 set_marker_both (w->start, w->contents, pos.bufpos, pos.bytepos);
3257 w->window_end_valid = 0;
3258 w->start_at_line_beg = (pos.bytepos == BEGV_BYTE
3259 || FETCH_BYTE (pos.bytepos - 1) == '\n');
3260 /* We need to do this, so that the window-scroll-functions
3261 get called. */
3262 w->optional_new_start = 1;
3264 set_buffer_internal (obuf);
3268 adjust_frame_glyphs (f);
3269 unblock_input ();
3271 run_window_configuration_change_hook (f);
3273 return Qnil;
3277 void
3278 replace_buffer_in_windows (Lisp_Object buffer)
3280 call1 (Qreplace_buffer_in_windows, buffer);
3283 /* If BUFFER is shown in a window, safely replace it with some other
3284 buffer in all windows of all frames, even those on other keyboards. */
3286 void
3287 replace_buffer_in_windows_safely (Lisp_Object buffer)
3289 if (buffer_window_count (XBUFFER (buffer)))
3291 Lisp_Object tail, frame;
3293 /* A single call to window_loop won't do the job because it only
3294 considers frames on the current keyboard. So loop manually over
3295 frames, and handle each one. */
3296 FOR_EACH_FRAME (tail, frame)
3297 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY, buffer, 1, frame);
3301 /* The following three routines are needed for running a window's
3302 configuration change hook. */
3303 static void
3304 run_funs (Lisp_Object funs)
3306 for (; CONSP (funs); funs = XCDR (funs))
3307 if (!EQ (XCAR (funs), Qt))
3308 call0 (XCAR (funs));
3311 static void
3312 select_window_norecord (Lisp_Object window)
3314 if (WINDOW_LIVE_P (window))
3315 Fselect_window (window, Qt);
3318 static void
3319 select_frame_norecord (Lisp_Object frame)
3321 if (FRAME_LIVE_P (XFRAME (frame)))
3322 Fselect_frame (frame, Qt);
3325 void
3326 run_window_configuration_change_hook (struct frame *f)
3328 ptrdiff_t count = SPECPDL_INDEX ();
3329 Lisp_Object frame, global_wcch
3330 = Fdefault_value (Qwindow_configuration_change_hook);
3331 XSETFRAME (frame, f);
3333 if (NILP (Vrun_hooks)
3334 || !(f->can_x_set_window_size)
3335 || !(f->can_run_window_configuration_change_hook))
3336 return;
3338 /* Use the right buffer. Matters when running the local hooks. */
3339 if (current_buffer != XBUFFER (Fwindow_buffer (Qnil)))
3341 record_unwind_current_buffer ();
3342 Fset_buffer (Fwindow_buffer (Qnil));
3345 if (SELECTED_FRAME () != f)
3347 record_unwind_protect (select_frame_norecord, selected_frame);
3348 select_frame_norecord (frame);
3351 /* Look for buffer-local values. */
3353 Lisp_Object windows = Fwindow_list (frame, Qlambda, Qnil);
3354 for (; CONSP (windows); windows = XCDR (windows))
3356 Lisp_Object window = XCAR (windows);
3357 Lisp_Object buffer = Fwindow_buffer (window);
3358 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook,
3359 buffer)))
3361 ptrdiff_t inner_count = SPECPDL_INDEX ();
3362 record_unwind_protect (select_window_norecord, selected_window);
3363 select_window_norecord (window);
3364 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook,
3365 buffer));
3366 unbind_to (inner_count, Qnil);
3371 run_funs (global_wcch);
3372 unbind_to (count, Qnil);
3375 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook,
3376 Srun_window_configuration_change_hook, 0, 1, 0,
3377 doc: /* Run `window-configuration-change-hook' for FRAME.
3378 If FRAME is omitted or nil, it defaults to the selected frame. */)
3379 (Lisp_Object frame)
3381 run_window_configuration_change_hook (decode_live_frame (frame));
3382 return Qnil;
3385 DEFUN ("run-window-scroll-functions", Frun_window_scroll_functions,
3386 Srun_window_scroll_functions, 0, 1, 0,
3387 doc: /* Run `window-scroll-functions' for WINDOW.
3388 If WINDOW is omitted or nil, it defaults to the selected window. */)
3389 (Lisp_Object window)
3391 if (! NILP (Vwindow_scroll_functions))
3392 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3393 Fmarker_position (decode_live_window (window)->start));
3394 return Qnil;
3397 /* Make WINDOW display BUFFER. RUN_HOOKS_P non-zero means it's allowed
3398 to run hooks. See make_frame for a case where it's not allowed.
3399 KEEP_MARGINS_P non-zero means that the current margins, fringes, and
3400 scroll-bar settings of the window are not reset from the buffer's
3401 local settings. */
3403 void
3404 set_window_buffer (Lisp_Object window, Lisp_Object buffer,
3405 bool run_hooks_p, bool keep_margins_p)
3407 struct window *w = XWINDOW (window);
3408 struct buffer *b = XBUFFER (buffer);
3409 ptrdiff_t count = SPECPDL_INDEX ();
3410 bool samebuf = EQ (buffer, w->contents);
3412 wset_buffer (w, buffer);
3414 if (EQ (window, selected_window))
3415 bset_last_selected_window (b, window);
3417 /* Let redisplay errors through. */
3418 b->display_error_modiff = 0;
3420 /* Update time stamps of buffer display. */
3421 if (INTEGERP (BVAR (b, display_count)))
3422 bset_display_count (b, make_number (XINT (BVAR (b, display_count)) + 1));
3423 bset_display_time (b, Fcurrent_time ());
3425 w->window_end_pos = 0;
3426 w->window_end_vpos = 0;
3427 w->last_cursor_vpos = 0;
3429 if (!(keep_margins_p && samebuf))
3430 { /* If we're not actually changing the buffer, don't reset hscroll
3431 and vscroll. This case happens for example when called from
3432 change_frame_size_1, where we use a dummy call to
3433 Fset_window_buffer on the frame's selected window (and no
3434 other) just in order to run window-configuration-change-hook
3435 (no longer true since change_frame_size_1 directly calls
3436 run_window_configuration_change_hook). Resetting hscroll and
3437 vscroll here is problematic for things like image-mode and
3438 doc-view-mode since it resets the image's position whenever we
3439 resize the frame. */
3440 w->hscroll = w->min_hscroll = w->hscroll_whole = 0;
3441 w->suspend_auto_hscroll = 0;
3442 w->vscroll = 0;
3443 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3444 set_marker_both (w->old_pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3445 set_marker_restricted (w->start,
3446 make_number (b->last_window_start),
3447 buffer);
3448 w->start_at_line_beg = 0;
3449 w->force_start = 0;
3451 /* Maybe we could move this into the `if' but it's not obviously safe and
3452 I doubt it's worth the trouble. */
3453 wset_redisplay (w);
3454 w->update_mode_line = true;
3456 /* We must select BUFFER to run the window-scroll-functions and to look up
3457 the buffer-local value of Vwindow_point_insertion_type. */
3458 record_unwind_current_buffer ();
3459 Fset_buffer (buffer);
3461 XMARKER (w->pointm)->insertion_type = !NILP (Vwindow_point_insertion_type);
3462 XMARKER (w->old_pointm)->insertion_type = !NILP (Vwindow_point_insertion_type);
3464 if (!keep_margins_p)
3466 /* Set left and right marginal area width etc. from buffer. */
3467 set_window_fringes (w, BVAR (b, left_fringe_width),
3468 BVAR (b, right_fringe_width),
3469 BVAR (b, fringes_outside_margins));
3470 set_window_scroll_bars (w, BVAR (b, scroll_bar_width),
3471 BVAR (b, vertical_scroll_bar_type),
3472 BVAR (b, scroll_bar_height),
3473 BVAR (b, horizontal_scroll_bar_type));
3474 set_window_margins (w, BVAR (b, left_margin_cols),
3475 BVAR (b, right_margin_cols));
3476 apply_window_adjustment (w);
3479 if (run_hooks_p)
3481 if (! NILP (Vwindow_scroll_functions))
3482 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3483 Fmarker_position (w->start));
3484 if (!samebuf)
3485 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w)));
3488 unbind_to (count, Qnil);
3491 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 3, 0,
3492 doc: /* Make WINDOW display BUFFER-OR-NAME.
3493 WINDOW must be a live window and defaults to the selected one.
3494 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3496 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3497 display margins, fringe widths, and scroll bar settings are preserved;
3498 the default is to reset these from the local settings for BUFFER-OR-NAME
3499 or the frame defaults. Return nil.
3501 This function throws an error when WINDOW is strongly dedicated to its
3502 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3503 already display BUFFER-OR-NAME.
3505 This function runs `window-scroll-functions' before running
3506 `window-configuration-change-hook'. */)
3507 (register Lisp_Object window, Lisp_Object buffer_or_name, Lisp_Object keep_margins)
3509 register Lisp_Object tem, buffer;
3510 register struct window *w = decode_live_window (window);
3512 XSETWINDOW (window, w);
3513 buffer = Fget_buffer (buffer_or_name);
3514 CHECK_BUFFER (buffer);
3515 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
3516 error ("Attempt to display deleted buffer");
3518 tem = w->contents;
3519 if (NILP (tem))
3520 error ("Window is deleted");
3521 else
3523 if (!EQ (tem, buffer))
3525 if (EQ (w->dedicated, Qt))
3526 /* WINDOW is strongly dedicated to its buffer, signal an
3527 error. */
3528 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem), name)));
3529 else
3530 /* WINDOW is weakly dedicated to its buffer, reset
3531 dedication. */
3532 wset_dedicated (w, Qnil);
3534 call1 (Qrecord_window_buffer, window);
3537 unshow_buffer (w);
3540 set_window_buffer (window, buffer, 1, !NILP (keep_margins));
3542 return Qnil;
3545 static Lisp_Object
3546 display_buffer (Lisp_Object buffer, Lisp_Object not_this_window_p, Lisp_Object override_frame)
3548 return call3 (Qdisplay_buffer, buffer, not_this_window_p, override_frame);
3551 DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
3552 0, 1, 0,
3553 doc: /* Force all windows to be updated on next redisplay.
3554 If optional arg OBJECT is a window, force redisplay of that window only.
3555 If OBJECT is a buffer or buffer name, force redisplay of all windows
3556 displaying that buffer. */)
3557 (Lisp_Object object)
3559 if (NILP (object))
3561 windows_or_buffers_changed = 29;
3562 update_mode_lines = 28;
3563 return Qt;
3566 if (WINDOWP (object))
3568 struct window *w = XWINDOW (object);
3569 mark_window_display_accurate (object, 0);
3570 w->update_mode_line = 1;
3571 if (BUFFERP (w->contents))
3572 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
3573 update_mode_lines = 29;
3574 return Qt;
3577 if (STRINGP (object))
3578 object = Fget_buffer (object);
3579 if (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object))
3580 && buffer_window_count (XBUFFER (object)))
3582 /* If buffer is live and shown in at least one window, find
3583 all windows showing this buffer and force update of them. */
3584 object = window_loop (REDISPLAY_BUFFER_WINDOWS, object, 0, Qvisible);
3585 return NILP (object) ? Qnil : Qt;
3588 /* If nothing suitable was found, just return.
3589 We could signal an error, but this feature will typically be used
3590 asynchronously in timers or process sentinels, so we don't. */
3591 return Qnil;
3594 /* Obsolete since 24.3. */
3595 void
3596 temp_output_buffer_show (register Lisp_Object buf)
3598 register struct buffer *old = current_buffer;
3599 register Lisp_Object window;
3600 register struct window *w;
3602 bset_directory (XBUFFER (buf), BVAR (current_buffer, directory));
3604 Fset_buffer (buf);
3605 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3606 BEGV = BEG;
3607 ZV = Z;
3608 SET_PT (BEG);
3609 set_buffer_internal (old);
3611 if (!NILP (Vtemp_buffer_show_function))
3612 call1 (Vtemp_buffer_show_function, buf);
3613 else if (WINDOW_LIVE_P (window = display_buffer (buf, Qnil, Qnil)))
3615 if (!EQ (XWINDOW (window)->frame, selected_frame))
3616 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3617 Vminibuf_scroll_window = window;
3618 w = XWINDOW (window);
3619 w->hscroll = w->min_hscroll = w->hscroll_whole = 0;
3620 w->suspend_auto_hscroll = 0;
3621 set_marker_restricted_both (w->start, buf, BEG, BEG);
3622 set_marker_restricted_both (w->pointm, buf, BEG, BEG);
3623 set_marker_restricted_both (w->old_pointm, buf, BEG, BEG);
3625 /* Run temp-buffer-show-hook, with the chosen window selected
3626 and its buffer current. */
3628 ptrdiff_t count = SPECPDL_INDEX ();
3629 Lisp_Object prev_window, prev_buffer;
3630 prev_window = selected_window;
3631 XSETBUFFER (prev_buffer, old);
3633 /* Select the window that was chosen, for running the hook.
3634 Note: Both Fselect_window and select_window_norecord may
3635 set-buffer to the buffer displayed in the window,
3636 so we need to save the current buffer. --stef */
3637 record_unwind_protect (restore_buffer, prev_buffer);
3638 record_unwind_protect (select_window_norecord, prev_window);
3639 Fselect_window (window, Qt);
3640 Fset_buffer (w->contents);
3641 run_hook (Qtemp_buffer_show_hook);
3642 unbind_to (count, Qnil);
3647 /* Allocate basically initialized window. */
3649 static struct window *
3650 allocate_window (void)
3652 return ALLOCATE_ZEROED_PSEUDOVECTOR
3653 (struct window, current_matrix, PVEC_WINDOW);
3656 /* Make new window, have it replace WINDOW in window-tree, and make
3657 WINDOW its only vertical child (HORFLAG 1 means make WINDOW its only
3658 horizontal child). */
3659 static void
3660 make_parent_window (Lisp_Object window, bool horflag)
3662 Lisp_Object parent;
3663 register struct window *o, *p;
3665 o = XWINDOW (window);
3666 p = allocate_window ();
3667 memcpy ((char *) p + sizeof (struct vectorlike_header),
3668 (char *) o + sizeof (struct vectorlike_header),
3669 word_size * VECSIZE (struct window));
3670 /* P's buffer slot may change from nil to a buffer... */
3671 adjust_window_count (p, 1);
3672 XSETWINDOW (parent, p);
3674 p->sequence_number = ++sequence_number;
3676 replace_window (window, parent, 1);
3678 wset_next (o, Qnil);
3679 wset_prev (o, Qnil);
3680 wset_parent (o, parent);
3681 /* ...but now P becomes an internal window. */
3682 wset_start (p, Qnil);
3683 wset_pointm (p, Qnil);
3684 wset_old_pointm (p, Qnil);
3685 wset_buffer (p, Qnil);
3686 wset_combination (p, horflag, window);
3687 wset_combination_limit (p, Qnil);
3688 wset_window_parameters (p, Qnil);
3691 /* Make new window from scratch. */
3692 Lisp_Object
3693 make_window (void)
3695 Lisp_Object window;
3696 register struct window *w;
3698 w = allocate_window ();
3699 /* Initialize Lisp data. Note that allocate_window initializes all
3700 Lisp data to nil, so do it only for slots which should not be nil. */
3701 wset_normal_lines (w, make_float (1.0));
3702 wset_normal_cols (w, make_float (1.0));
3703 wset_new_total (w, make_number (0));
3704 wset_new_normal (w, make_number (0));
3705 wset_new_pixel (w, make_number (0));
3706 wset_start (w, Fmake_marker ());
3707 wset_pointm (w, Fmake_marker ());
3708 wset_old_pointm (w, Fmake_marker ());
3709 wset_vertical_scroll_bar_type (w, Qt);
3710 wset_horizontal_scroll_bar_type (w, Qt);
3711 /* These Lisp fields are marked specially so they're not set to nil by
3712 allocate_window. */
3713 wset_prev_buffers (w, Qnil);
3714 wset_next_buffers (w, Qnil);
3716 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3717 non-Lisp data, so do it only for slots which should not be zero. */
3718 w->nrows_scale_factor = w->ncols_scale_factor = 1;
3719 w->left_fringe_width = w->right_fringe_width = -1;
3720 w->mode_line_height = w->header_line_height = -1;
3721 #ifdef HAVE_WINDOW_SYSTEM
3722 w->phys_cursor_type = NO_CURSOR;
3723 w->phys_cursor_width = -1;
3724 #endif
3725 w->sequence_number = ++sequence_number;
3726 w->scroll_bar_width = -1;
3727 w->scroll_bar_height = -1;
3728 w->column_number_displayed = -1;
3729 /* Reset window_list. */
3730 Vwindow_list = Qnil;
3731 /* Return window. */
3732 XSETWINDOW (window, w);
3733 return window;
3736 DEFUN ("set-window-new-pixel", Fset_window_new_pixel, Sset_window_new_pixel, 2, 3, 0,
3737 doc: /* Set new pixel size of WINDOW to SIZE.
3738 WINDOW must be a valid window and defaults to the selected one.
3739 Return SIZE.
3741 Optional argument ADD non-nil means add SIZE to the new pixel size of
3742 WINDOW and return the sum.
3744 The new pixel size of WINDOW, if valid, will be shortly installed as
3745 WINDOW's pixel height (see `window-pixel-height') or pixel width (see
3746 `window-pixel-width').
3748 Note: This function does not operate on any child windows of WINDOW. */)
3749 (Lisp_Object window, Lisp_Object size, Lisp_Object add)
3751 struct window *w = decode_valid_window (window);
3752 EMACS_INT size_min = NILP (add) ? 0 : - XINT (w->new_pixel);
3753 EMACS_INT size_max = size_min + min (INT_MAX, MOST_POSITIVE_FIXNUM);
3755 CHECK_RANGED_INTEGER (size, size_min, size_max);
3756 if (NILP (add))
3757 wset_new_pixel (w, size);
3758 else
3759 wset_new_pixel (w, make_number (XINT (w->new_pixel) + XINT (size)));
3761 return w->new_pixel;
3764 DEFUN ("set-window-new-total", Fset_window_new_total, Sset_window_new_total, 2, 3, 0,
3765 doc: /* Set new total size of WINDOW to SIZE.
3766 WINDOW must be a valid window and defaults to the selected one.
3767 Return SIZE.
3769 Optional argument ADD non-nil means add SIZE to the new total size of
3770 WINDOW and return the sum.
3772 The new total size of WINDOW, if valid, will be shortly installed as
3773 WINDOW's total height (see `window-total-height') or total width (see
3774 `window-total-width').
3776 Note: This function does not operate on any child windows of WINDOW. */)
3777 (Lisp_Object window, Lisp_Object size, Lisp_Object add)
3779 struct window *w = decode_valid_window (window);
3781 CHECK_NUMBER (size);
3782 if (NILP (add))
3783 wset_new_total (w, size);
3784 else
3785 wset_new_total (w, make_number (XINT (w->new_total) + XINT (size)));
3787 return w->new_total;
3790 DEFUN ("set-window-new-normal", Fset_window_new_normal, Sset_window_new_normal, 1, 2, 0,
3791 doc: /* Set new normal size of WINDOW to SIZE.
3792 WINDOW must be a valid window and defaults to the selected one.
3793 Return SIZE.
3795 The new normal size of WINDOW, if valid, will be shortly installed as
3796 WINDOW's normal size (see `window-normal-size').
3798 Note: This function does not operate on any child windows of WINDOW. */)
3799 (Lisp_Object window, Lisp_Object size)
3801 wset_new_normal (decode_valid_window (window), size);
3802 return size;
3805 /* Return 1 if setting w->pixel_height (w->pixel_width if HORFLAG is
3806 non-zero) to w->new_pixel would result in correct heights (widths)
3807 for window W and recursively all child windows of W.
3809 Note: This function does not check any of `window-fixed-size-p',
3810 `window-min-height' or `window-min-width'. It does check that window
3811 sizes do not drop below one line (two columns). */
3812 static int
3813 window_resize_check (struct window *w, bool horflag)
3815 struct frame *f = XFRAME (w->frame);
3816 struct window *c;
3818 if (WINDOW_VERTICAL_COMBINATION_P (w))
3819 /* W is a vertical combination. */
3821 c = XWINDOW (w->contents);
3822 if (horflag)
3823 /* All child windows of W must have the same width as W. */
3825 while (c)
3827 if (XINT (c->new_pixel) != XINT (w->new_pixel)
3828 || !window_resize_check (c, horflag))
3829 return 0;
3831 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3834 return 1;
3836 else
3837 /* The sum of the heights of the child windows of W must equal
3838 W's height. */
3840 int remaining_pixels = XINT (w->new_pixel);
3842 while (c)
3844 if (!window_resize_check (c, horflag))
3845 return 0;
3847 remaining_pixels -= XINT (c->new_pixel);
3848 if (remaining_pixels < 0)
3849 return 0;
3850 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3853 return remaining_pixels == 0;
3856 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3857 /* W is a horizontal combination. */
3859 c = XWINDOW (w->contents);
3860 if (horflag)
3861 /* The sum of the widths of the child windows of W must equal W's
3862 width. */
3864 int remaining_pixels = XINT (w->new_pixel);
3866 while (c)
3868 if (!window_resize_check (c, horflag))
3869 return 0;
3871 remaining_pixels -= XINT (c->new_pixel);
3872 if (remaining_pixels < 0)
3873 return 0;
3874 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3877 return remaining_pixels == 0;
3879 else
3880 /* All child windows of W must have the same height as W. */
3882 while (c)
3884 if (XINT (c->new_pixel) != XINT (w->new_pixel)
3885 || !window_resize_check (c, horflag))
3886 return 0;
3888 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3891 return 1;
3894 else
3895 /* A leaf window. Make sure it's not too small. The following
3896 hardcodes the values of `window-safe-min-width' (2) and
3897 `window-safe-min-height' (1) which are defined in window.el. */
3898 return (XINT (w->new_pixel) >= (horflag
3899 ? (2 * FRAME_COLUMN_WIDTH (f))
3900 : FRAME_LINE_HEIGHT (f)));
3904 /* Set w->pixel_height (w->pixel_width if HORFLAG is non-zero) to
3905 w->new_pixel for window W and recursively all child windows of W.
3906 Also calculate and assign the new vertical (horizontal) pixel start
3907 positions of each of these windows.
3909 This function does not perform any error checks. Make sure you have
3910 run window_resize_check on W before applying this function. */
3911 static void
3912 window_resize_apply (struct window *w, bool horflag)
3914 struct window *c;
3915 int edge;
3916 int unit = (horflag
3917 ? FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w))
3918 : FRAME_LINE_HEIGHT (WINDOW_XFRAME (w)));
3920 /* Note: Assigning new_normal requires that the new total size of the
3921 parent window has been set *before*. */
3922 if (horflag)
3924 w->pixel_width = XFASTINT (w->new_pixel);
3925 w->total_cols = w->pixel_width / unit;
3926 if (NUMBERP (w->new_normal))
3927 wset_normal_cols (w, w->new_normal);
3929 edge = w->pixel_left;
3931 else
3933 w->pixel_height = XFASTINT (w->new_pixel);
3934 w->total_lines = w->pixel_height / unit;
3935 if (NUMBERP (w->new_normal))
3936 wset_normal_lines (w, w->new_normal);
3938 edge = w->pixel_top;
3941 if (WINDOW_VERTICAL_COMBINATION_P (w))
3942 /* W is a vertical combination. */
3944 c = XWINDOW (w->contents);
3945 while (c)
3947 if (horflag)
3949 c->pixel_left = edge;
3950 c->left_col = edge / unit;
3952 else
3954 c->pixel_top = edge;
3955 c->top_line = edge / unit;
3957 window_resize_apply (c, horflag);
3958 if (!horflag)
3959 edge = edge + c->pixel_height;
3961 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3964 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3965 /* W is a horizontal combination. */
3967 c = XWINDOW (w->contents);
3968 while (c)
3970 if (horflag)
3972 c->pixel_left = edge;
3973 c->left_col = edge / unit;
3975 else
3977 c->pixel_top = edge;
3978 c->top_line = edge / unit;
3981 window_resize_apply (c, horflag);
3982 if (horflag)
3983 edge = edge + c->pixel_width;
3985 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3988 else
3989 /* Bug#15957. */
3990 w->window_end_valid = 0;
3994 /* Set w->total_lines (w->total_cols if HORFLAG is non-zero) to
3995 w->new_total for window W and recursively all child windows of W.
3996 Also calculate and assign the new vertical (horizontal) start
3997 positions of each of these windows. */
3998 static void
3999 window_resize_apply_total (struct window *w, bool horflag)
4001 struct window *c;
4002 int edge;
4004 /* Note: Assigning new_normal requires that the new total size of the
4005 parent window has been set *before*. */
4006 if (horflag)
4008 w->total_cols = XFASTINT (w->new_total);
4009 edge = w->left_col;
4011 else
4013 w->total_lines = XFASTINT (w->new_total);
4014 edge = w->top_line;
4017 if (WINDOW_VERTICAL_COMBINATION_P (w))
4018 /* W is a vertical combination. */
4020 c = XWINDOW (w->contents);
4021 while (c)
4023 if (horflag)
4024 c->left_col = edge;
4025 else
4026 c->top_line = edge;
4028 window_resize_apply_total (c, horflag);
4029 if (!horflag)
4030 edge = edge + c->total_lines;
4032 c = NILP (c->next) ? 0 : XWINDOW (c->next);
4035 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
4036 /* W is a horizontal combination. */
4038 c = XWINDOW (w->contents);
4039 while (c)
4041 if (horflag)
4042 c->left_col = edge;
4043 else
4044 c->top_line = edge;
4046 window_resize_apply_total (c, horflag);
4047 if (horflag)
4048 edge = edge + c->total_cols;
4050 c = NILP (c->next) ? 0 : XWINDOW (c->next);
4055 DEFUN ("window-resize-apply", Fwindow_resize_apply, Swindow_resize_apply, 0, 2, 0,
4056 doc: /* Apply requested size values for window-tree of FRAME.
4057 If FRAME is omitted or nil, it defaults to the selected frame.
4059 Optional argument HORIZONTAL omitted or nil means apply requested
4060 height values. HORIZONTAL non-nil means apply requested width values.
4062 The requested size values are those set by `set-window-new-pixel' and
4063 `set-window-new-normal'. This function checks whether the requested
4064 values sum up to a valid window layout, recursively assigns the new
4065 sizes of all child windows and calculates and assigns the new start
4066 positions of these windows.
4068 Return t if the requested values have been applied correctly, nil
4069 otherwise.
4071 Note: This function does not check any of `window-fixed-size-p',
4072 `window-min-height' or `window-min-width'. All these checks have to
4073 be applied on the Elisp level. */)
4074 (Lisp_Object frame, Lisp_Object horizontal)
4076 struct frame *f = decode_live_frame (frame);
4077 struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
4078 bool horflag = !NILP (horizontal);
4080 if (!window_resize_check (r, horflag)
4081 || (XINT (r->new_pixel)
4082 != (horflag ? r->pixel_width : r->pixel_height)))
4083 return Qnil;
4085 block_input ();
4086 window_resize_apply (r, horflag);
4088 fset_redisplay (f);
4089 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4091 adjust_frame_glyphs (f);
4092 unblock_input ();
4094 return Qt;
4098 DEFUN ("window-resize-apply-total", Fwindow_resize_apply_total, Swindow_resize_apply_total, 0, 2, 0,
4099 doc: /* Apply requested total size values for window-tree of FRAME.
4100 If FRAME is omitted or nil, it defaults to the selected frame.
4102 This function does not assign pixel or normal size values. You should
4103 have run `window-resize-apply' before running this.
4105 Optional argument HORIZONTAL omitted or nil means apply requested
4106 height values. HORIZONTAL non-nil means apply requested width
4107 values. */)
4108 (Lisp_Object frame, Lisp_Object horizontal)
4110 struct frame *f = decode_live_frame (frame);
4111 struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
4113 block_input ();
4114 /* Necessary when deleting the top-/or leftmost window. */
4115 r->left_col = 0;
4116 r->top_line = FRAME_TOP_MARGIN (f);
4117 window_resize_apply_total (r, !NILP (horizontal));
4118 /* Handle the mini window. */
4119 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
4121 struct window *m = XWINDOW (f->minibuffer_window);
4123 if (NILP (horizontal))
4125 m->top_line = r->top_line + r->total_lines;
4126 m->total_lines = XFASTINT (m->new_total);
4128 else
4129 m->total_cols = XFASTINT (m->new_total);
4132 unblock_input ();
4134 return Qt;
4138 /* Resize frame F's windows when number of lines of F is set to SIZE.
4139 HORFLAG 1 means resize windows when number of columns of F is set to
4140 SIZE. PIXELWISE 1 means to interpret SIZE as pixels. */
4141 void
4142 resize_frame_windows (struct frame *f, int size, bool horflag, bool pixelwise)
4144 Lisp_Object root = f->root_window;
4145 struct window *r = XWINDOW (root);
4146 Lisp_Object mini = f->minibuffer_window;
4147 struct window *m;
4148 /* old_size is the old size of the frame's root window. */
4149 int old_size = horflag ? r->total_cols : r->total_lines;
4150 int old_pixel_size = horflag ? r->pixel_width : r->pixel_height;
4151 int old_pixel_top = r->pixel_top;
4152 /* new_size is the new size of the frame's root window. */
4153 int new_size, new_pixel_size;
4154 int unit = horflag ? FRAME_COLUMN_WIDTH (f) : FRAME_LINE_HEIGHT (f);
4156 /* Don't let the size drop below one unit. This is more comforting
4157 when we are called from x_set_tool_bar_lines since the latter may
4158 have implicitly given us a zero or negative height. */
4159 if (pixelwise)
4161 /* Note: This does not include the size for internal borders
4162 since these are not part of the frame's text area. */
4163 new_pixel_size = max (horflag
4164 ? size
4165 : (size
4166 - ((FRAME_HAS_MINIBUF_P (f)
4167 && !FRAME_MINIBUF_ONLY_P (f))
4168 ? FRAME_LINE_HEIGHT (f) : 0)),
4169 unit);
4170 new_size = new_pixel_size / unit;
4172 else
4174 new_size = max (horflag
4175 ? size
4176 : (size
4177 - ((FRAME_HAS_MINIBUF_P (f)
4178 && !FRAME_MINIBUF_ONLY_P (f))
4179 ? 1 : 0)),
4181 new_pixel_size = new_size * unit;
4184 r->top_line = FRAME_TOP_MARGIN (f);
4185 r->pixel_top = FRAME_TOP_MARGIN_HEIGHT (f);
4187 if (new_pixel_size == old_pixel_size
4188 && r->pixel_top == old_pixel_top)
4190 else if (WINDOW_LEAF_P (r))
4191 /* For a leaf root window just set the size. */
4192 if (horflag)
4194 r->total_cols = new_size;
4195 r->pixel_width = new_pixel_size;
4197 else
4199 r->total_lines = new_size;
4200 r->pixel_height = new_pixel_size;
4202 else
4204 Lisp_Object delta;
4206 if (pixelwise)
4207 XSETINT (delta, new_pixel_size - old_pixel_size);
4208 else
4209 XSETINT (delta, new_size - old_size);
4211 /* Try a "normal" resize first. */
4212 resize_root_window (root, delta, horflag ? Qt : Qnil, Qnil,
4213 pixelwise ? Qt : Qnil);
4214 if (window_resize_check (r, horflag)
4215 && new_pixel_size == XINT (r->new_pixel))
4217 window_resize_apply (r, horflag);
4218 window_pixel_to_total (r->frame, horflag ? Qt : Qnil);
4220 else
4222 /* Try with "reasonable" minimum sizes next. */
4223 resize_root_window (root, delta, horflag ? Qt : Qnil, Qt,
4224 pixelwise ? Qt : Qnil);
4225 if (window_resize_check (r, horflag)
4226 && new_pixel_size == XINT (r->new_pixel))
4228 window_resize_apply (r, horflag);
4229 window_pixel_to_total (r->frame, horflag ? Qt : Qnil);
4230 #if 0 /* Let's try without safe sizes and/or killing other windows. */
4232 else
4234 /* Finally, try with "safe" minimum sizes. */
4235 resize_root_window (root, delta, horflag ? Qt : Qnil, Qsafe,
4236 pixelwise ? Qt : Qnil);
4237 if (window_resize_check (r, horflag)
4238 && new_pixel_size == XINT (r->new_pixel))
4240 window_resize_apply (r, horflag);
4241 window_pixel_to_total (r->frame, horflag ? Qt : Qnil);
4243 else
4245 /* We lost. Delete all windows but the frame's
4246 selected one. */
4247 root = f->selected_window;
4248 Fdelete_other_windows_internal (root, Qnil);
4249 if (horflag)
4251 XWINDOW (root)->total_cols = new_size;
4252 XWINDOW (root)->pixel_width = new_pixel_size;
4254 else
4256 XWINDOW (root)->total_lines = new_size;
4257 XWINDOW (root)->pixel_height = new_pixel_size;
4260 #endif /* 0 */
4265 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
4267 m = XWINDOW (mini);
4268 if (horflag)
4270 m->total_cols = size;
4271 m->pixel_width = new_pixel_size;
4273 else
4275 /* Are we sure we always want 1 line here? */
4276 m->total_lines = 1;
4277 m->pixel_height = FRAME_LINE_HEIGHT (f);
4278 m->top_line = r->top_line + r->total_lines;
4279 m->pixel_top = r->pixel_top + r->pixel_height;
4283 fset_redisplay (f);
4287 DEFUN ("split-window-internal", Fsplit_window_internal, Ssplit_window_internal, 4, 4, 0,
4288 doc: /* Split window OLD.
4289 Second argument PIXEL-SIZE specifies the number of pixels of the
4290 new window. In any case TOTAL-SIZE must be a positive integer.
4292 Third argument SIDE nil (or `below') specifies that the new window shall
4293 be located below WINDOW. SIDE `above' means the new window shall be
4294 located above WINDOW. In both cases PIXEL-SIZE specifies the pixel
4295 height of the new window including space reserved for the mode and/or
4296 header line.
4298 SIDE t (or `right') specifies that the new window shall be located on
4299 the right side of WINDOW. SIDE `left' means the new window shall be
4300 located on the left of WINDOW. In both cases PIXEL-SIZE specifies the
4301 width of the new window including space reserved for fringes and the
4302 scrollbar or a divider column.
4304 Fourth argument NORMAL-SIZE specifies the normal size of the new window
4305 according to the SIDE argument.
4307 The new pixel and normal sizes of all involved windows must have been
4308 set correctly. See the code of `split-window' for how this is done. */)
4309 (Lisp_Object old, Lisp_Object pixel_size, Lisp_Object side, Lisp_Object normal_size)
4311 /* OLD (*o) is the window we have to split. (*p) is either OLD's
4312 parent window or an internal window we have to install as OLD's new
4313 parent. REFERENCE (*r) must denote a live window, or is set to OLD
4314 provided OLD is a leaf window, or to the frame's selected window.
4315 NEW (*n) is the new window created with some parameters taken from
4316 REFERENCE (*r). */
4317 register Lisp_Object new, frame, reference;
4318 register struct window *o, *p, *n, *r, *c;
4319 struct frame *f;
4320 bool horflag
4321 /* HORFLAG is 1 when we split side-by-side, 0 otherwise. */
4322 = EQ (side, Qt) || EQ (side, Qleft) || EQ (side, Qright);
4323 int combination_limit = 0, sum = 0;
4324 int total_size;
4326 CHECK_WINDOW (old);
4327 o = XWINDOW (old);
4328 frame = WINDOW_FRAME (o);
4329 f = XFRAME (frame);
4331 CHECK_NUMBER (pixel_size);
4332 total_size
4333 = XINT (pixel_size) / (horflag
4334 ? FRAME_COLUMN_WIDTH (f)
4335 : FRAME_LINE_HEIGHT (f));
4337 /* Set combination_limit to 1 if we have to make a new parent window.
4338 We do that if either `window-combination-limit' is t, or OLD has no
4339 parent, or OLD is ortho-combined. */
4340 combination_limit =
4341 EQ (Vwindow_combination_limit, Qt)
4342 || NILP (o->parent)
4343 || (horflag
4344 ? WINDOW_VERTICAL_COMBINATION_P (XWINDOW (o->parent))
4345 : WINDOW_HORIZONTAL_COMBINATION_P (XWINDOW (o->parent)));
4347 /* We need a live reference window to initialize some parameters. */
4348 if (WINDOW_LIVE_P (old))
4349 /* OLD is live, use it as reference window. */
4350 reference = old;
4351 else
4352 /* Use the frame's selected window as reference window. */
4353 reference = FRAME_SELECTED_WINDOW (f);
4354 r = XWINDOW (reference);
4356 /* The following bugs are caught by `split-window'. */
4357 if (MINI_WINDOW_P (o))
4358 error ("Attempt to split minibuffer window");
4359 else if (total_size < (horflag ? 2 : 1))
4360 error ("Size of new window too small (after split)");
4361 else if (!combination_limit && !NILP (Vwindow_combination_resize))
4362 /* `window-combination-resize' non-nil means try to resize OLD's siblings
4363 proportionally. */
4365 p = XWINDOW (o->parent);
4366 /* Temporarily pretend we split the parent window. */
4367 wset_new_pixel
4368 (p, make_number ((horflag ? p->pixel_width : p->pixel_height)
4369 - XINT (pixel_size)));
4370 if (!window_resize_check (p, horflag))
4371 error ("Window sizes don't fit");
4372 else
4373 /* Undo the temporary pretension. */
4374 wset_new_pixel (p, make_number (horflag ? p->pixel_width : p->pixel_height));
4376 else
4378 if (!window_resize_check (o, horflag))
4379 error ("Resizing old window failed");
4380 else if (XINT (pixel_size) + XINT (o->new_pixel)
4381 != (horflag ? o->pixel_width : o->pixel_height))
4382 error ("Sum of sizes of old and new window don't fit");
4385 /* This is our point of no return. */
4386 if (combination_limit)
4388 /* Save the old value of o->normal_cols/lines. It gets corrupted
4389 by make_parent_window and we need it below for assigning it to
4390 p->new_normal. */
4391 Lisp_Object new_normal
4392 = horflag ? o->normal_cols : o->normal_lines;
4394 make_parent_window (old, horflag);
4395 p = XWINDOW (o->parent);
4396 if (EQ (Vwindow_combination_limit, Qt))
4397 /* Store t in the new parent's combination_limit slot to avoid
4398 that its children get merged into another window. */
4399 wset_combination_limit (p, Qt);
4400 /* These get applied below. */
4401 wset_new_pixel
4402 (p, make_number (horflag ? o->pixel_width : o->pixel_height));
4403 wset_new_total
4404 (p, make_number (horflag ? o->total_cols : o->total_lines));
4405 wset_new_normal (p, new_normal);
4407 else
4408 p = XWINDOW (o->parent);
4410 fset_redisplay (f);
4411 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4412 new = make_window ();
4413 n = XWINDOW (new);
4414 wset_frame (n, frame);
4415 wset_parent (n, o->parent);
4417 if (EQ (side, Qabove) || EQ (side, Qleft))
4419 wset_prev (n, o->prev);
4420 if (NILP (n->prev))
4421 wset_combination (p, horflag, new);
4422 else
4423 wset_next (XWINDOW (n->prev), new);
4424 wset_next (n, old);
4425 wset_prev (o, new);
4427 else
4429 wset_next (n, o->next);
4430 if (!NILP (n->next))
4431 wset_prev (XWINDOW (n->next), new);
4432 wset_prev (n, old);
4433 wset_next (o, new);
4436 n->window_end_valid = 0;
4437 n->last_cursor_vpos = 0;
4439 /* Get special geometry settings from reference window. */
4440 n->left_margin_cols = r->left_margin_cols;
4441 n->right_margin_cols = r->right_margin_cols;
4442 n->left_fringe_width = r->left_fringe_width;
4443 n->right_fringe_width = r->right_fringe_width;
4444 n->fringes_outside_margins = r->fringes_outside_margins;
4445 n->scroll_bar_width = r->scroll_bar_width;
4446 n->scroll_bar_height = r->scroll_bar_height;
4447 wset_vertical_scroll_bar_type (n, r->vertical_scroll_bar_type);
4448 wset_horizontal_scroll_bar_type (n, r->horizontal_scroll_bar_type);
4450 /* Directly assign orthogonal coordinates and sizes. */
4451 if (horflag)
4453 n->pixel_top = o->pixel_top;
4454 n->top_line = o->top_line;
4455 n->pixel_height = o->pixel_height;
4456 n->total_lines = o->total_lines;
4458 else
4460 n->pixel_left = o->pixel_left;
4461 n->left_col = o->left_col;
4462 n->pixel_width = o->pixel_width;
4463 n->total_cols = o->total_cols;
4466 /* Iso-coordinates and sizes are assigned by window_resize_apply,
4467 get them ready here. */
4468 wset_new_pixel (n, pixel_size);
4469 c = XWINDOW (p->contents);
4470 while (c)
4472 if (c != n)
4473 sum = sum + XINT (c->new_total);
4474 c = NILP (c->next) ? 0 : XWINDOW (c->next);
4476 wset_new_total (n, make_number ((horflag
4477 ? p->total_cols
4478 : p->total_lines)
4479 - sum));
4480 wset_new_normal (n, normal_size);
4482 block_input ();
4483 window_resize_apply (p, horflag);
4484 adjust_frame_glyphs (f);
4485 /* Set buffer of NEW to buffer of reference window. Don't run
4486 any hooks. */
4487 set_window_buffer (new, r->contents, 0, 1);
4488 unblock_input ();
4490 /* Maybe we should run the scroll functions in Elisp (which already
4491 runs the configuration change hook). */
4492 if (! NILP (Vwindow_scroll_functions))
4493 run_hook_with_args_2 (Qwindow_scroll_functions, new,
4494 Fmarker_position (n->start));
4495 /* Return NEW. */
4496 return new;
4500 DEFUN ("delete-window-internal", Fdelete_window_internal, Sdelete_window_internal, 1, 1, 0,
4501 doc: /* Remove WINDOW from its frame.
4502 WINDOW defaults to the selected window. Return nil.
4503 Signal an error when WINDOW is the only window on its frame. */)
4504 (register Lisp_Object window)
4506 register Lisp_Object parent, sibling, frame, root;
4507 struct window *w, *p, *s, *r;
4508 struct frame *f;
4509 bool horflag, before_sibling = 0;
4511 w = decode_any_window (window);
4512 XSETWINDOW (window, w);
4513 if (NILP (w->contents))
4514 /* It's a no-op to delete an already deleted window. */
4515 return Qnil;
4517 parent = w->parent;
4518 if (NILP (parent))
4519 /* Never delete a minibuffer or frame root window. */
4520 error ("Attempt to delete minibuffer or sole ordinary window");
4521 else if (NILP (w->prev) && NILP (w->next))
4522 /* Rather bow out here, this case should be handled on the Elisp
4523 level. */
4524 error ("Attempt to delete sole window of parent");
4526 p = XWINDOW (parent);
4527 horflag = WINDOW_HORIZONTAL_COMBINATION_P (p);
4529 frame = WINDOW_FRAME (w);
4530 f = XFRAME (frame);
4532 root = FRAME_ROOT_WINDOW (f);
4533 r = XWINDOW (root);
4535 /* Unlink WINDOW from window tree. */
4536 if (NILP (w->prev))
4537 /* Get SIBLING below (on the right of) WINDOW. */
4539 /* before_sibling 1 means WINDOW is the first child of its
4540 parent and thus before the sibling. */
4541 before_sibling = 1;
4542 sibling = w->next;
4543 s = XWINDOW (sibling);
4544 wset_prev (s, Qnil);
4545 wset_combination (p, horflag, sibling);
4547 else
4548 /* Get SIBLING above (on the left of) WINDOW. */
4550 sibling = w->prev;
4551 s = XWINDOW (sibling);
4552 wset_next (s, w->next);
4553 if (!NILP (s->next))
4554 wset_prev (XWINDOW (s->next), sibling);
4557 if (window_resize_check (r, horflag)
4558 && (XINT (r->new_pixel)
4559 == (horflag ? r->pixel_width : r->pixel_height)))
4560 /* We can delete WINDOW now. */
4563 /* Block input. */
4564 block_input ();
4565 #ifdef HAVE_XWIDGETS
4566 xwidget_view_delete_all_in_window(w);
4567 #endif
4568 window_resize_apply (p, horflag);
4569 /* If this window is referred to by the dpyinfo's mouse
4570 highlight, invalidate that slot to be safe (Bug#9904). */
4571 if (!FRAME_INITIAL_P (f))
4573 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
4575 if (EQ (hlinfo->mouse_face_window, window))
4576 hlinfo->mouse_face_window = Qnil;
4579 fset_redisplay (f);
4580 Vwindow_list = Qnil;
4581 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4583 wset_next (w, Qnil); /* Don't delete w->next too. */
4584 free_window_matrices (w);
4586 if (WINDOWP (w->contents))
4588 delete_all_child_windows (w->contents);
4589 wset_combination (w, 0, Qnil);
4591 else
4593 unshow_buffer (w);
4594 unchain_marker (XMARKER (w->pointm));
4595 unchain_marker (XMARKER (w->old_pointm));
4596 unchain_marker (XMARKER (w->start));
4597 wset_buffer (w, Qnil);
4600 if (NILP (s->prev) && NILP (s->next))
4601 /* A matrjoshka where SIBLING has become the only child of
4602 PARENT. */
4604 /* Put SIBLING into PARENT's place. */
4605 replace_window (parent, sibling, 0);
4606 /* Have SIBLING inherit the following three slot values from
4607 PARENT (the combination_limit slot is not inherited). */
4608 wset_normal_cols (s, p->normal_cols);
4609 wset_normal_lines (s, p->normal_lines);
4610 /* Mark PARENT as deleted. */
4611 wset_combination (p, 0, Qnil);
4612 /* Try to merge SIBLING into its new parent. */
4613 recombine_windows (sibling);
4616 adjust_frame_glyphs (f);
4618 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f)))
4619 /* We deleted the frame's selected window. */
4621 /* Use the frame's first window as fallback ... */
4622 Lisp_Object new_selected_window = Fframe_first_window (frame);
4623 /* ... but preferably use its most recently used window. */
4624 Lisp_Object mru_window;
4626 /* `get-mru-window' might fail for some reason so play it safe
4627 - promote the first window _without recording it_ first. */
4628 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4629 Fselect_window (new_selected_window, Qt);
4630 else
4631 fset_selected_window (f, new_selected_window);
4633 unblock_input ();
4635 /* Now look whether `get-mru-window' gets us something. */
4636 mru_window = call1 (Qget_mru_window, frame);
4637 if (WINDOW_LIVE_P (mru_window)
4638 && EQ (XWINDOW (mru_window)->frame, frame))
4639 new_selected_window = mru_window;
4641 /* If all ended up well, we now promote the mru window. */
4642 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4643 Fselect_window (new_selected_window, Qnil);
4644 else
4645 fset_selected_window (f, new_selected_window);
4647 else
4648 unblock_input ();
4650 /* Must be run by the caller:
4651 run_window_configuration_change_hook (f); */
4653 else
4654 /* We failed: Relink WINDOW into window tree. */
4656 if (before_sibling)
4658 wset_prev (s, window);
4659 wset_combination (p, horflag, window);
4661 else
4663 wset_next (s, window);
4664 if (!NILP (w->next))
4665 wset_prev (XWINDOW (w->next), window);
4667 error ("Deletion failed");
4670 return Qnil;
4673 /***********************************************************************
4674 Resizing Mini-Windows
4675 ***********************************************************************/
4677 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4678 can. */
4679 void
4680 grow_mini_window (struct window *w, int delta, bool pixelwise)
4682 struct frame *f = XFRAME (w->frame);
4683 struct window *r;
4684 Lisp_Object root, height;
4685 int line_height, pixel_height;
4687 eassert (MINI_WINDOW_P (w));
4688 eassert (delta >= 0);
4690 if (delta > 0)
4692 root = FRAME_ROOT_WINDOW (f);
4693 r = XWINDOW (root);
4694 height = call3 (Qwindow_resize_root_window_vertically,
4695 root, make_number (- delta), pixelwise ? Qt : Qnil);
4696 if (INTEGERP (height) && window_resize_check (r, 0))
4698 block_input ();
4699 window_resize_apply (r, 0);
4701 if (pixelwise)
4703 pixel_height = min (-XINT (height), INT_MAX - w->pixel_height);
4704 line_height = pixel_height / FRAME_LINE_HEIGHT (f);
4706 else
4708 line_height = min (-XINT (height),
4709 ((INT_MAX - w->pixel_height)
4710 / FRAME_LINE_HEIGHT (f)));
4711 pixel_height = line_height * FRAME_LINE_HEIGHT (f);
4714 /* Grow the mini-window. */
4715 w->pixel_top = r->pixel_top + r->pixel_height;
4716 w->top_line = r->top_line + r->total_lines;
4717 /* Make sure the mini-window has always at least one line. */
4718 w->pixel_height = max (w->pixel_height + pixel_height,
4719 FRAME_LINE_HEIGHT (f));
4720 w->total_lines = max (w->total_lines + line_height, 1);
4722 /* Enforce full redisplay of the frame. */
4723 /* FIXME: Shouldn't window--resize-root-window-vertically do it? */
4724 fset_redisplay (f);
4725 adjust_frame_glyphs (f);
4726 unblock_input ();
4731 /* Shrink mini-window W to one line. */
4732 void
4733 shrink_mini_window (struct window *w, bool pixelwise)
4735 struct frame *f = XFRAME (w->frame);
4736 struct window *r;
4737 Lisp_Object root, delta;
4738 EMACS_INT height, unit;
4740 eassert (MINI_WINDOW_P (w));
4742 height = pixelwise ? w->pixel_height : w->total_lines;
4743 unit = pixelwise ? FRAME_LINE_HEIGHT (f) : 1;
4744 if (height > unit)
4746 root = FRAME_ROOT_WINDOW (f);
4747 r = XWINDOW (root);
4748 delta = call3 (Qwindow_resize_root_window_vertically,
4749 root, make_number (height - unit),
4750 pixelwise ? Qt : Qnil);
4751 if (INTEGERP (delta) && window_resize_check (r, 0))
4753 block_input ();
4754 window_resize_apply (r, 0);
4756 /* Shrink the mini-window. */
4757 w->top_line = r->top_line + r->total_lines;
4758 w->total_lines = 1;
4759 w->pixel_top = r->pixel_top + r->pixel_height;
4760 w->pixel_height = FRAME_LINE_HEIGHT (f);
4761 /* Enforce full redisplay of the frame. */
4762 /* FIXME: Shouldn't window--resize-root-window-vertically do it? */
4763 fset_redisplay (f);
4764 adjust_frame_glyphs (f);
4765 unblock_input ();
4767 /* If the above failed for whatever strange reason we must make a
4768 one window frame here. The same routine will be needed when
4769 shrinking the frame (and probably when making the initial
4770 *scratch* window). For the moment leave things as they are. */
4774 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal, Sresize_mini_window_internal, 1, 1, 0,
4775 doc: /* Resize minibuffer window WINDOW. */)
4776 (Lisp_Object window)
4778 struct window *w = XWINDOW (window);
4779 struct window *r;
4780 struct frame *f;
4781 int height;
4783 CHECK_WINDOW (window);
4784 f = XFRAME (w->frame);
4786 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w->frame)), window))
4787 error ("Not a valid minibuffer window");
4788 else if (FRAME_MINIBUF_ONLY_P (f))
4789 error ("Cannot resize a minibuffer-only frame");
4791 r = XWINDOW (FRAME_ROOT_WINDOW (f));
4792 height = r->pixel_height + w->pixel_height;
4793 if (window_resize_check (r, 0)
4794 && XINT (w->new_pixel) > 0
4795 && height == XINT (r->new_pixel) + XINT (w->new_pixel))
4797 block_input ();
4798 window_resize_apply (r, 0);
4800 w->pixel_height = XFASTINT (w->new_pixel);
4801 w->total_lines = w->pixel_height / FRAME_LINE_HEIGHT (f);
4802 w->pixel_top = r->pixel_top + r->pixel_height;
4803 w->top_line = r->top_line + r->total_lines;
4805 fset_redisplay (f);
4806 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4807 adjust_frame_glyphs (f);
4808 unblock_input ();
4809 return Qt;
4811 else
4812 error ("Failed to resize minibuffer window");
4815 /* Mark window cursors off for all windows in the window tree rooted
4816 at W by setting their phys_cursor_on_p flag to zero. Called from
4817 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4818 the frame are cleared. */
4820 void
4821 mark_window_cursors_off (struct window *w)
4823 while (w)
4825 if (WINDOWP (w->contents))
4826 mark_window_cursors_off (XWINDOW (w->contents));
4827 else
4828 w->phys_cursor_on_p = 0;
4830 w = NILP (w->next) ? 0 : XWINDOW (w->next);
4835 /* Return number of lines of text (not counting mode lines) in W. */
4838 window_internal_height (struct window *w)
4840 int ht = w->total_lines;
4842 if (!MINI_WINDOW_P (w))
4844 if (!NILP (w->parent)
4845 || WINDOWP (w->contents)
4846 || !NILP (w->next)
4847 || !NILP (w->prev)
4848 || WINDOW_WANTS_MODELINE_P (w))
4849 --ht;
4851 if (WINDOW_WANTS_HEADER_LINE_P (w))
4852 --ht;
4855 return ht;
4859 /************************************************************************
4860 Window Scrolling
4861 ***********************************************************************/
4863 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
4864 N screen-fulls, which is defined as the height of the window minus
4865 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4866 instead. Negative values of N mean scroll down. NOERROR non-zero
4867 means don't signal an error if we try to move over BEGV or ZV,
4868 respectively. */
4870 static void
4871 window_scroll (Lisp_Object window, EMACS_INT n, bool whole, int noerror)
4873 ptrdiff_t count = SPECPDL_INDEX ();
4875 immediate_quit = 1;
4876 n = clip_to_bounds (INT_MIN, n, INT_MAX);
4878 wset_redisplay (XWINDOW (window));
4880 if (whole && Vfast_but_imprecise_scrolling)
4881 specbind (Qfontification_functions, Qnil);
4883 /* If we must, use the pixel-based version which is much slower than
4884 the line-based one but can handle varying line heights. */
4885 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
4886 window_scroll_pixel_based (window, n, whole, noerror);
4887 else
4888 window_scroll_line_based (window, n, whole, noerror);
4890 unbind_to (count, Qnil);
4892 /* Bug#15957. */
4893 XWINDOW (window)->window_end_valid = 0;
4894 immediate_quit = 0;
4898 /* Implementation of window_scroll that works based on pixel line
4899 heights. See the comment of window_scroll for parameter
4900 descriptions. */
4902 static void
4903 window_scroll_pixel_based (Lisp_Object window, int n, bool whole, int noerror)
4905 struct it it;
4906 struct window *w = XWINDOW (window);
4907 struct text_pos start;
4908 int this_scroll_margin;
4909 /* True if we fiddled the window vscroll field without really scrolling. */
4910 int vscrolled = 0;
4911 int x, y, rtop, rbot, rowh, vpos;
4912 void *itdata = NULL;
4913 int window_total_lines;
4914 int frame_line_height = default_line_pixel_height (w);
4915 bool adjust_old_pointm = !NILP (Fequal (Fwindow_point (window),
4916 Fwindow_old_point (window)));
4918 SET_TEXT_POS_FROM_MARKER (start, w->start);
4919 /* Scrolling a minibuffer window via scroll bar when the echo area
4920 shows long text sometimes resets the minibuffer contents behind
4921 our backs. */
4922 if (CHARPOS (start) > ZV)
4923 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
4925 /* If PT is not visible in WINDOW, move back one half of
4926 the screen. Allow PT to be partially visible, otherwise
4927 something like (scroll-down 1) with PT in the line before
4928 the partially visible one would recenter. */
4930 if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos))
4932 itdata = bidi_shelve_cache ();
4933 /* Move backward half the height of the window. Performance note:
4934 vmotion used here is about 10% faster, but would give wrong
4935 results for variable height lines. */
4936 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4937 it.current_y = it.last_visible_y;
4938 move_it_vertically_backward (&it, window_box_height (w) / 2);
4940 /* The function move_iterator_vertically may move over more than
4941 the specified y-distance. If it->w is small, e.g. a
4942 mini-buffer window, we may end up in front of the window's
4943 display area. Start displaying at the start of the line
4944 containing PT in this case. */
4945 if (it.current_y <= 0)
4947 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4948 move_it_vertically_backward (&it, 0);
4949 it.current_y = 0;
4952 start = it.current.pos;
4953 bidi_unshelve_cache (itdata, 0);
4955 else if (auto_window_vscroll_p)
4957 if (rtop || rbot) /* Partially visible. */
4959 int px;
4960 int dy = frame_line_height;
4961 /* In the below we divide the window box height by the
4962 frame's line height to make the result predictable when
4963 the window box is not an integral multiple of the line
4964 height. This is important to ensure we get back to the
4965 same position when scrolling up, then down. */
4966 if (whole)
4967 dy = max ((window_box_height (w) / dy
4968 - next_screen_context_lines) * dy,
4969 dy);
4970 dy *= n;
4972 if (n < 0)
4974 /* Only vscroll backwards if already vscrolled forwards. */
4975 if (w->vscroll < 0 && rtop > 0)
4977 px = max (0, -w->vscroll - min (rtop, -dy));
4978 Fset_window_vscroll (window, make_number (px), Qt);
4979 return;
4982 if (n > 0)
4984 /* Do vscroll if already vscrolled or only display line. */
4985 if (rbot > 0 && (w->vscroll < 0 || vpos == 0))
4987 px = max (0, -w->vscroll + min (rbot, dy));
4988 Fset_window_vscroll (window, make_number (px), Qt);
4989 return;
4992 /* Maybe modify window start instead of scrolling. */
4993 if (rbot > 0 || w->vscroll < 0)
4995 ptrdiff_t spos;
4997 Fset_window_vscroll (window, make_number (0), Qt);
4998 /* If there are other text lines above the current row,
4999 move window start to current row. Else to next row. */
5000 if (rbot > 0)
5001 spos = XINT (Fline_beginning_position (Qnil));
5002 else
5003 spos = min (XINT (Fline_end_position (Qnil)) + 1, ZV);
5004 set_marker_restricted (w->start, make_number (spos),
5005 w->contents);
5006 w->start_at_line_beg = 1;
5007 w->update_mode_line = 1;
5008 /* Set force_start so that redisplay_window will run the
5009 window-scroll-functions. */
5010 w->force_start = 1;
5011 return;
5015 /* Cancel previous vscroll. */
5016 Fset_window_vscroll (window, make_number (0), Qt);
5019 itdata = bidi_shelve_cache ();
5020 /* If scroll_preserve_screen_position is non-nil, we try to set
5021 point in the same window line as it is now, so get that line. */
5022 if (!NILP (Vscroll_preserve_screen_position))
5024 /* We preserve the goal pixel coordinate across consecutive
5025 calls to scroll-up, scroll-down and other commands that
5026 have the `scroll-command' property. This avoids the
5027 possibility of point becoming "stuck" on a tall line when
5028 scrolling by one line. */
5029 if (window_scroll_pixel_based_preserve_y < 0
5030 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
5031 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
5033 start_display (&it, w, start);
5034 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
5035 window_scroll_pixel_based_preserve_y = it.current_y;
5036 window_scroll_pixel_based_preserve_x = it.current_x;
5039 else
5040 window_scroll_pixel_based_preserve_y
5041 = window_scroll_pixel_based_preserve_x = -1;
5043 /* Move iterator it from start the specified distance forward or
5044 backward. The result is the new window start. */
5045 start_display (&it, w, start);
5046 if (whole)
5048 ptrdiff_t start_pos = IT_CHARPOS (it);
5049 int dy = frame_line_height;
5050 /* In the below we divide the window box height by the frame's
5051 line height to make the result predictable when the window
5052 box is not an integral multiple of the line height. This is
5053 important to ensure we get back to the same position when
5054 scrolling up, then down. */
5055 dy = max ((window_box_height (w) / dy - next_screen_context_lines) * dy,
5056 dy) * n;
5058 /* Note that move_it_vertically always moves the iterator to the
5059 start of a line. So, if the last line doesn't have a newline,
5060 we would end up at the start of the line ending at ZV. */
5061 if (dy <= 0)
5063 move_it_vertically_backward (&it, -dy);
5064 /* Ensure we actually do move, e.g. in case we are currently
5065 looking at an image that is taller that the window height. */
5066 while (start_pos == IT_CHARPOS (it)
5067 && start_pos > BEGV)
5068 move_it_by_lines (&it, -1);
5070 else if (dy > 0)
5072 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
5073 MOVE_TO_POS | MOVE_TO_Y);
5074 /* Ensure we actually do move, e.g. in case we are currently
5075 looking at an image that is taller that the window height. */
5076 while (start_pos == IT_CHARPOS (it)
5077 && start_pos < ZV)
5078 move_it_by_lines (&it, 1);
5081 else
5082 move_it_by_lines (&it, n);
5084 /* We failed if we find ZV is already on the screen (scrolling up,
5085 means there's nothing past the end), or if we can't start any
5086 earlier (scrolling down, means there's nothing past the top). */
5087 if ((n > 0 && IT_CHARPOS (it) == ZV)
5088 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
5090 if (IT_CHARPOS (it) == ZV)
5092 if (it.current_y < it.last_visible_y
5093 && (it.current_y + it.max_ascent + it.max_descent
5094 > it.last_visible_y))
5096 /* The last line was only partially visible, make it fully
5097 visible. */
5098 w->vscroll = (it.last_visible_y
5099 - it.current_y + it.max_ascent + it.max_descent);
5100 adjust_frame_glyphs (it.f);
5102 else
5104 bidi_unshelve_cache (itdata, 0);
5105 if (noerror)
5106 return;
5107 else if (n < 0) /* could happen with empty buffers */
5108 xsignal0 (Qbeginning_of_buffer);
5109 else
5110 xsignal0 (Qend_of_buffer);
5113 else
5115 if (w->vscroll != 0)
5116 /* The first line was only partially visible, make it fully
5117 visible. */
5118 w->vscroll = 0;
5119 else
5121 bidi_unshelve_cache (itdata, 0);
5122 if (noerror)
5123 return;
5124 else
5125 xsignal0 (Qbeginning_of_buffer);
5129 /* If control gets here, then we vscrolled. */
5131 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
5133 /* Don't try to change the window start below. */
5134 vscrolled = 1;
5137 if (! vscrolled)
5139 ptrdiff_t pos = IT_CHARPOS (it);
5140 ptrdiff_t bytepos;
5142 /* If in the middle of a multi-glyph character move forward to
5143 the next character. */
5144 if (in_display_vector_p (&it))
5146 ++pos;
5147 move_it_to (&it, pos, -1, -1, -1, MOVE_TO_POS);
5150 /* Set the window start, and set up the window for redisplay. */
5151 set_marker_restricted_both (w->start, w->contents, IT_CHARPOS (it),
5152 IT_BYTEPOS (it));
5153 bytepos = marker_byte_position (w->start);
5154 w->start_at_line_beg = (pos == BEGV || FETCH_BYTE (bytepos - 1) == '\n');
5155 w->update_mode_line = 1;
5156 /* Set force_start so that redisplay_window will run the
5157 window-scroll-functions. */
5158 w->force_start = 1;
5161 /* The rest of this function uses current_y in a nonstandard way,
5162 not including the height of the header line if any. */
5163 it.current_y = it.vpos = 0;
5165 /* Move PT out of scroll margins.
5166 This code wants current_y to be zero at the window start position
5167 even if there is a header line. */
5168 window_total_lines
5169 = w->total_lines * WINDOW_FRAME_LINE_HEIGHT (w) / frame_line_height;
5170 this_scroll_margin = max (0, scroll_margin);
5171 this_scroll_margin
5172 = min (this_scroll_margin, window_total_lines / 4);
5173 this_scroll_margin *= frame_line_height;
5175 if (n > 0)
5177 /* We moved the window start towards ZV, so PT may be now
5178 in the scroll margin at the top. */
5179 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
5180 if (IT_CHARPOS (it) == PT && it.current_y >= this_scroll_margin
5181 && (NILP (Vscroll_preserve_screen_position)
5182 || EQ (Vscroll_preserve_screen_position, Qt)))
5183 /* We found PT at a legitimate height. Leave it alone. */
5185 else if (window_scroll_pixel_based_preserve_y >= 0)
5187 /* If we have a header line, take account of it.
5188 This is necessary because we set it.current_y to 0, above. */
5189 move_it_to (&it, -1,
5190 window_scroll_pixel_based_preserve_x,
5191 window_scroll_pixel_based_preserve_y
5192 - (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0 ),
5193 -1, MOVE_TO_Y | MOVE_TO_X);
5194 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5196 else
5198 while (it.current_y < this_scroll_margin)
5200 int prev = it.current_y;
5201 move_it_by_lines (&it, 1);
5202 if (prev == it.current_y)
5203 break;
5205 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5208 else if (n < 0)
5210 ptrdiff_t charpos, bytepos;
5211 int partial_p;
5213 /* Save our position, for the
5214 window_scroll_pixel_based_preserve_y case. */
5215 charpos = IT_CHARPOS (it);
5216 bytepos = IT_BYTEPOS (it);
5218 /* We moved the window start towards BEGV, so PT may be now
5219 in the scroll margin at the bottom. */
5220 move_it_to (&it, PT, -1,
5221 (it.last_visible_y - CURRENT_HEADER_LINE_HEIGHT (w)
5222 - this_scroll_margin - 1),
5224 MOVE_TO_POS | MOVE_TO_Y);
5226 /* Save our position, in case it's correct. */
5227 charpos = IT_CHARPOS (it);
5228 bytepos = IT_BYTEPOS (it);
5230 /* If PT is in the screen line at the last fully visible line,
5231 move_it_to will stop at X = 0 in that line, because the
5232 required Y coordinate is reached there. See if we can get to
5233 PT without descending lower in Y, and if we can, it means we
5234 reached PT before the scroll margin. */
5235 if (charpos != PT)
5237 struct it it2;
5238 void *it_data;
5240 it2 = it;
5241 it_data = bidi_shelve_cache ();
5242 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
5243 if (IT_CHARPOS (it) == PT && it.current_y == it2.current_y)
5245 charpos = IT_CHARPOS (it);
5246 bytepos = IT_BYTEPOS (it);
5247 bidi_unshelve_cache (it_data, 1);
5249 else
5251 it = it2;
5252 bidi_unshelve_cache (it_data, 0);
5256 /* See if point is on a partially visible line at the end. */
5257 if (it.what == IT_EOB)
5258 partial_p = it.current_y + it.ascent + it.descent > it.last_visible_y;
5259 else
5261 move_it_by_lines (&it, 1);
5262 partial_p = it.current_y > it.last_visible_y;
5265 if (charpos == PT && !partial_p
5266 && (NILP (Vscroll_preserve_screen_position)
5267 || EQ (Vscroll_preserve_screen_position, Qt)))
5268 /* We found PT before we found the display margin, so PT is ok. */
5270 else if (window_scroll_pixel_based_preserve_y >= 0)
5272 SET_TEXT_POS_FROM_MARKER (start, w->start);
5273 start_display (&it, w, start);
5274 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
5275 here because we called start_display again and did not
5276 alter it.current_y this time. */
5277 move_it_to (&it, -1, window_scroll_pixel_based_preserve_x,
5278 window_scroll_pixel_based_preserve_y, -1,
5279 MOVE_TO_Y | MOVE_TO_X);
5280 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5282 else
5284 if (partial_p)
5285 /* The last line was only partially visible, so back up two
5286 lines to make sure we're on a fully visible line. */
5288 move_it_by_lines (&it, -2);
5289 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5291 else
5292 /* No, the position we saved is OK, so use it. */
5293 SET_PT_BOTH (charpos, bytepos);
5296 bidi_unshelve_cache (itdata, 0);
5298 if (adjust_old_pointm)
5299 Fset_marker (w->old_pointm,
5300 ((w == XWINDOW (selected_window))
5301 ? make_number (BUF_PT (XBUFFER (w->contents)))
5302 : Fmarker_position (w->pointm)),
5303 w->contents);
5307 /* Implementation of window_scroll that works based on screen lines.
5308 See the comment of window_scroll for parameter descriptions. */
5310 static void
5311 window_scroll_line_based (Lisp_Object window, int n, bool whole, int noerror)
5313 register struct window *w = XWINDOW (window);
5314 /* Fvertical_motion enters redisplay, which can trigger
5315 fontification, which in turn can modify buffer text (e.g., if the
5316 fontification functions replace escape sequences with faces, as
5317 in `grep-mode-font-lock-keywords'). So we use a marker to record
5318 the old point position, to prevent crashes in SET_PT_BOTH. */
5319 Lisp_Object opoint_marker = Fpoint_marker ();
5320 register ptrdiff_t pos, pos_byte;
5321 register int ht = window_internal_height (w);
5322 register Lisp_Object tem;
5323 bool lose;
5324 Lisp_Object bolp;
5325 ptrdiff_t startpos = marker_position (w->start);
5326 ptrdiff_t startbyte = marker_byte_position (w->start);
5327 Lisp_Object original_pos = Qnil;
5328 bool adjust_old_pointm = !NILP (Fequal (Fwindow_point (window),
5329 Fwindow_old_point (window)));
5331 /* If scrolling screen-fulls, compute the number of lines to
5332 scroll from the window's height. */
5333 if (whole)
5334 n *= max (1, ht - next_screen_context_lines);
5336 if (!NILP (Vscroll_preserve_screen_position))
5338 if (window_scroll_preserve_vpos <= 0
5339 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
5340 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
5342 struct position posit
5343 = *compute_motion (startpos, startbyte, 0, 0, 0,
5344 PT, ht, 0, -1, w->hscroll, 0, w);
5346 window_scroll_preserve_vpos = posit.vpos;
5347 window_scroll_preserve_hpos = posit.hpos + w->hscroll;
5350 original_pos = Fcons (make_number (window_scroll_preserve_hpos),
5351 make_number (window_scroll_preserve_vpos));
5354 XSETFASTINT (tem, PT);
5355 tem = Fpos_visible_in_window_p (tem, window, Qnil);
5357 if (NILP (tem))
5359 Fvertical_motion (make_number (- (ht / 2)), window);
5360 startpos = PT;
5361 startbyte = PT_BYTE;
5364 SET_PT_BOTH (startpos, startbyte);
5365 lose = n < 0 && PT == BEGV;
5366 Fvertical_motion (make_number (n), window);
5367 pos = PT;
5368 pos_byte = PT_BYTE;
5369 bolp = Fbolp ();
5370 SET_PT_BOTH (marker_position (opoint_marker),
5371 marker_byte_position (opoint_marker));
5373 if (lose)
5375 if (noerror)
5376 return;
5377 else
5378 xsignal0 (Qbeginning_of_buffer);
5381 if (pos < ZV)
5383 /* Don't use a scroll margin that is negative or too large. */
5384 int this_scroll_margin =
5385 max (0, min (scroll_margin, w->total_lines / 4));
5387 set_marker_restricted_both (w->start, w->contents, pos, pos_byte);
5388 w->start_at_line_beg = !NILP (bolp);
5389 w->update_mode_line = 1;
5390 /* Set force_start so that redisplay_window will run
5391 the window-scroll-functions. */
5392 w->force_start = 1;
5394 if (!NILP (Vscroll_preserve_screen_position)
5395 && (whole || !EQ (Vscroll_preserve_screen_position, Qt)))
5397 SET_PT_BOTH (pos, pos_byte);
5398 Fvertical_motion (original_pos, window);
5400 /* If we scrolled forward, put point enough lines down
5401 that it is outside the scroll margin. */
5402 else if (n > 0)
5404 int top_margin;
5406 if (this_scroll_margin > 0)
5408 SET_PT_BOTH (pos, pos_byte);
5409 Fvertical_motion (make_number (this_scroll_margin), window);
5410 top_margin = PT;
5412 else
5413 top_margin = pos;
5415 if (top_margin <= marker_position (opoint_marker))
5416 SET_PT_BOTH (marker_position (opoint_marker),
5417 marker_byte_position (opoint_marker));
5418 else if (!NILP (Vscroll_preserve_screen_position))
5420 SET_PT_BOTH (pos, pos_byte);
5421 Fvertical_motion (original_pos, window);
5423 else
5424 SET_PT (top_margin);
5426 else if (n < 0)
5428 int bottom_margin;
5430 /* If we scrolled backward, put point near the end of the window
5431 but not within the scroll margin. */
5432 SET_PT_BOTH (pos, pos_byte);
5433 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
5434 if (XFASTINT (tem) == ht - this_scroll_margin)
5435 bottom_margin = PT;
5436 else
5437 bottom_margin = PT + 1;
5439 if (bottom_margin > marker_position (opoint_marker))
5440 SET_PT_BOTH (marker_position (opoint_marker),
5441 marker_byte_position (opoint_marker));
5442 else
5444 if (!NILP (Vscroll_preserve_screen_position))
5446 SET_PT_BOTH (pos, pos_byte);
5447 Fvertical_motion (original_pos, window);
5449 else
5450 Fvertical_motion (make_number (-1), window);
5454 else
5456 if (noerror)
5457 return;
5458 else
5459 xsignal0 (Qend_of_buffer);
5462 if (adjust_old_pointm)
5463 Fset_marker (w->old_pointm,
5464 ((w == XWINDOW (selected_window))
5465 ? make_number (BUF_PT (XBUFFER (w->contents)))
5466 : Fmarker_position (w->pointm)),
5467 w->contents);
5471 /* Scroll selected_window up or down. If N is nil, scroll a
5472 screen-full which is defined as the height of the window minus
5473 next_screen_context_lines. If N is the symbol `-', scroll.
5474 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
5475 up. This is the guts of Fscroll_up and Fscroll_down. */
5477 static void
5478 scroll_command (Lisp_Object n, int direction)
5480 ptrdiff_t count = SPECPDL_INDEX ();
5482 eassert (eabs (direction) == 1);
5484 /* If selected window's buffer isn't current, make it current for
5485 the moment. But don't screw up if window_scroll gets an error. */
5486 if (XBUFFER (XWINDOW (selected_window)->contents) != current_buffer)
5488 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5489 Fset_buffer (XWINDOW (selected_window)->contents);
5492 if (NILP (n))
5493 window_scroll (selected_window, direction, 1, 0);
5494 else if (EQ (n, Qminus))
5495 window_scroll (selected_window, -direction, 1, 0);
5496 else
5498 n = Fprefix_numeric_value (n);
5499 window_scroll (selected_window, XINT (n) * direction, 0, 0);
5502 unbind_to (count, Qnil);
5505 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "^P",
5506 doc: /* Scroll text of selected window upward ARG lines.
5507 If ARG is omitted or nil, scroll upward by a near full screen.
5508 A near full screen is `next-screen-context-lines' less than a full screen.
5509 Negative ARG means scroll downward.
5510 If ARG is the atom `-', scroll downward by nearly full screen.
5511 When calling from a program, supply as argument a number, nil, or `-'. */)
5512 (Lisp_Object arg)
5514 scroll_command (arg, 1);
5515 return Qnil;
5518 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "^P",
5519 doc: /* Scroll text of selected window down ARG lines.
5520 If ARG is omitted or nil, scroll down by a near full screen.
5521 A near full screen is `next-screen-context-lines' less than a full screen.
5522 Negative ARG means scroll upward.
5523 If ARG is the atom `-', scroll upward by nearly full screen.
5524 When calling from a program, supply as argument a number, nil, or `-'. */)
5525 (Lisp_Object arg)
5527 scroll_command (arg, -1);
5528 return Qnil;
5531 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
5532 doc: /* Return the other window for \"other window scroll\" commands.
5533 If `other-window-scroll-buffer' is non-nil, a window
5534 showing that buffer is used.
5535 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5536 specifies the window. This takes precedence over
5537 `other-window-scroll-buffer'. */)
5538 (void)
5540 Lisp_Object window;
5542 if (MINI_WINDOW_P (XWINDOW (selected_window))
5543 && !NILP (Vminibuf_scroll_window))
5544 window = Vminibuf_scroll_window;
5545 /* If buffer is specified and live, scroll that buffer. */
5546 else if (!NILP (Vother_window_scroll_buffer)
5547 && BUFFERP (Vother_window_scroll_buffer)
5548 && BUFFER_LIVE_P (XBUFFER (Vother_window_scroll_buffer)))
5550 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
5551 if (NILP (window))
5552 window = display_buffer (Vother_window_scroll_buffer, Qt, Qnil);
5554 else
5556 /* Nothing specified; look for a neighboring window on the same
5557 frame. */
5558 window = Fnext_window (selected_window, Qnil, Qnil);
5560 if (EQ (window, selected_window))
5561 /* That didn't get us anywhere; look for a window on another
5562 visible frame. */
5564 window = Fnext_window (window, Qnil, Qt);
5565 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
5566 && ! EQ (window, selected_window));
5569 CHECK_LIVE_WINDOW (window);
5571 if (EQ (window, selected_window))
5572 error ("There is no other window");
5574 return window;
5577 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
5578 doc: /* Scroll next window upward ARG lines; or near full screen if no ARG.
5579 A near full screen is `next-screen-context-lines' less than a full screen.
5580 The next window is the one below the current one; or the one at the top
5581 if the current one is at the bottom. Negative ARG means scroll downward.
5582 If ARG is the atom `-', scroll downward by nearly full screen.
5583 When calling from a program, supply as argument a number, nil, or `-'.
5585 If `other-window-scroll-buffer' is non-nil, scroll the window
5586 showing that buffer, popping the buffer up if necessary.
5587 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5588 specifies the window to scroll. This takes precedence over
5589 `other-window-scroll-buffer'. */)
5590 (Lisp_Object arg)
5592 Lisp_Object window;
5593 struct window *w;
5594 ptrdiff_t count = SPECPDL_INDEX ();
5596 window = Fother_window_for_scrolling ();
5597 w = XWINDOW (window);
5599 /* Don't screw up if window_scroll gets an error. */
5600 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5602 Fset_buffer (w->contents);
5603 SET_PT_BOTH (marker_position (w->pointm), marker_byte_position (w->pointm));
5604 SET_PT_BOTH (marker_position (w->old_pointm), marker_byte_position (w->old_pointm));
5606 if (NILP (arg))
5607 window_scroll (window, 1, 1, 1);
5608 else if (EQ (arg, Qminus))
5609 window_scroll (window, -1, 1, 1);
5610 else
5612 if (CONSP (arg))
5613 arg = XCAR (arg);
5614 CHECK_NUMBER (arg);
5615 window_scroll (window, XINT (arg), 0, 1);
5618 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5619 set_marker_both (w->old_pointm, Qnil, PT, PT_BYTE);
5620 unbind_to (count, Qnil);
5622 return Qnil;
5625 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "^P\np",
5626 doc: /* Scroll selected window display ARG columns left.
5627 Default for ARG is window width minus 2.
5628 Value is the total amount of leftward horizontal scrolling in
5629 effect after the change.
5630 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5631 lower bound for automatic scrolling, i.e. automatic scrolling
5632 will not scroll a window to a column less than the value returned
5633 by this function. This happens in an interactive call. */)
5634 (register Lisp_Object arg, Lisp_Object set_minimum)
5636 struct window *w = XWINDOW (selected_window);
5637 EMACS_INT requested_arg = (NILP (arg)
5638 ? window_body_width (w, 0) - 2
5639 : XINT (Fprefix_numeric_value (arg)));
5640 Lisp_Object result = set_window_hscroll (w, w->hscroll + requested_arg);
5642 if (!NILP (set_minimum))
5643 w->min_hscroll = w->hscroll;
5645 w->suspend_auto_hscroll = 1;
5647 return result;
5650 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "^P\np",
5651 doc: /* Scroll selected window display ARG columns right.
5652 Default for ARG is window width minus 2.
5653 Value is the total amount of leftward horizontal scrolling in
5654 effect after the change.
5655 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5656 lower bound for automatic scrolling, i.e. automatic scrolling
5657 will not scroll a window to a column less than the value returned
5658 by this function. This happens in an interactive call. */)
5659 (register Lisp_Object arg, Lisp_Object set_minimum)
5661 struct window *w = XWINDOW (selected_window);
5662 EMACS_INT requested_arg = (NILP (arg)
5663 ? window_body_width (w, 0) - 2
5664 : XINT (Fprefix_numeric_value (arg)));
5665 Lisp_Object result = set_window_hscroll (w, w->hscroll - requested_arg);
5667 if (!NILP (set_minimum))
5668 w->min_hscroll = w->hscroll;
5670 w->suspend_auto_hscroll = 1;
5672 return result;
5675 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window, Sminibuffer_selected_window, 0, 0, 0,
5676 doc: /* Return the window which was selected when entering the minibuffer.
5677 Returns nil, if selected window is not a minibuffer window. */)
5678 (void)
5680 if (minibuf_level > 0
5681 && MINI_WINDOW_P (XWINDOW (selected_window))
5682 && WINDOW_LIVE_P (minibuf_selected_window))
5683 return minibuf_selected_window;
5685 return Qnil;
5688 /* Value is the number of lines actually displayed in window W,
5689 as opposed to its height. */
5691 static int
5692 displayed_window_lines (struct window *w)
5694 struct it it;
5695 struct text_pos start;
5696 int height = window_box_height (w);
5697 struct buffer *old_buffer;
5698 int bottom_y;
5699 void *itdata = NULL;
5701 if (XBUFFER (w->contents) != current_buffer)
5703 old_buffer = current_buffer;
5704 set_buffer_internal (XBUFFER (w->contents));
5706 else
5707 old_buffer = NULL;
5709 /* In case W->start is out of the accessible range, do something
5710 reasonable. This happens in Info mode when Info-scroll-down
5711 calls (recenter -1) while W->start is 1. */
5712 CLIP_TEXT_POS_FROM_MARKER (start, w->start);
5714 itdata = bidi_shelve_cache ();
5715 start_display (&it, w, start);
5716 move_it_vertically (&it, height);
5717 bottom_y = line_bottom_y (&it);
5718 bidi_unshelve_cache (itdata, 0);
5720 /* rms: On a non-window display,
5721 the value of it.vpos at the bottom of the screen
5722 seems to be 1 larger than window_box_height (w).
5723 This kludge fixes a bug whereby (move-to-window-line -1)
5724 when ZV is on the last screen line
5725 moves to the previous screen line instead of the last one. */
5726 if (! FRAME_WINDOW_P (XFRAME (w->frame)))
5727 height++;
5729 /* Add in empty lines at the bottom of the window. */
5730 if (bottom_y < height)
5732 int uy = FRAME_LINE_HEIGHT (it.f);
5733 it.vpos += (height - bottom_y + uy - 1) / uy;
5736 if (old_buffer)
5737 set_buffer_internal (old_buffer);
5739 return it.vpos;
5743 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
5744 doc: /* Center point in selected window and maybe redisplay frame.
5745 With a numeric prefix argument ARG, recenter putting point on screen line ARG
5746 relative to the selected window. If ARG is negative, it counts up from the
5747 bottom of the window. (ARG should be less than the height of the window.)
5749 If ARG is omitted or nil, then recenter with point on the middle line of
5750 the selected window; if the variable `recenter-redisplay' is non-nil,
5751 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5752 is set to `grow-only', this resets the tool-bar's height to the minimum
5753 height needed); if `recenter-redisplay' has the special value `tty',
5754 then only tty frames are redrawn.
5756 Just C-u as prefix means put point in the center of the window
5757 and redisplay normally--don't erase and redraw the frame. */)
5758 (register Lisp_Object arg)
5760 struct window *w = XWINDOW (selected_window);
5761 struct buffer *buf = XBUFFER (w->contents);
5762 bool center_p = 0;
5763 ptrdiff_t charpos, bytepos;
5764 EMACS_INT iarg IF_LINT (= 0);
5765 int this_scroll_margin;
5767 if (buf != current_buffer)
5768 error ("`recenter'ing a window that does not display current-buffer.");
5770 /* If redisplay is suppressed due to an error, try again. */
5771 buf->display_error_modiff = 0;
5773 if (NILP (arg))
5775 if (!NILP (Vrecenter_redisplay)
5776 && (!EQ (Vrecenter_redisplay, Qtty)
5777 || !NILP (Ftty_type (selected_frame))))
5779 ptrdiff_t i;
5781 /* Invalidate pixel data calculated for all compositions. */
5782 for (i = 0; i < n_compositions; i++)
5783 composition_table[i]->font = NULL;
5784 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5785 WINDOW_XFRAME (w)->minimize_tool_bar_window_p = 1;
5786 #endif
5787 Fredraw_frame (WINDOW_FRAME (w));
5788 SET_FRAME_GARBAGED (WINDOW_XFRAME (w));
5791 center_p = 1;
5793 else if (CONSP (arg)) /* Just C-u. */
5794 center_p = 1;
5795 else
5797 arg = Fprefix_numeric_value (arg);
5798 CHECK_NUMBER (arg);
5799 iarg = XINT (arg);
5802 /* Do this after making BUF current
5803 in case scroll_margin is buffer-local. */
5804 this_scroll_margin
5805 = max (0, min (scroll_margin, w->total_lines / 4));
5807 /* Handle centering on a graphical frame specially. Such frames can
5808 have variable-height lines and centering point on the basis of
5809 line counts would lead to strange effects. */
5810 if (FRAME_WINDOW_P (XFRAME (w->frame)))
5812 if (center_p)
5814 struct it it;
5815 struct text_pos pt;
5816 void *itdata = bidi_shelve_cache ();
5818 SET_TEXT_POS (pt, PT, PT_BYTE);
5819 start_display (&it, w, pt);
5820 move_it_vertically_backward (&it, window_box_height (w) / 2);
5821 charpos = IT_CHARPOS (it);
5822 bytepos = IT_BYTEPOS (it);
5823 bidi_unshelve_cache (itdata, 0);
5825 else if (iarg < 0)
5827 struct it it;
5828 struct text_pos pt;
5829 ptrdiff_t nlines = min (PTRDIFF_MAX, -iarg);
5830 int extra_line_spacing;
5831 int h = window_box_height (w);
5832 void *itdata = bidi_shelve_cache ();
5834 iarg = - max (-iarg, this_scroll_margin);
5836 SET_TEXT_POS (pt, PT, PT_BYTE);
5837 start_display (&it, w, pt);
5839 /* Be sure we have the exact height of the full line containing PT. */
5840 move_it_by_lines (&it, 0);
5842 /* The amount of pixels we have to move back is the window
5843 height minus what's displayed in the line containing PT,
5844 and the lines below. */
5845 it.current_y = 0;
5846 it.vpos = 0;
5847 move_it_by_lines (&it, nlines);
5849 if (it.vpos == nlines)
5850 h -= it.current_y;
5851 else
5853 /* Last line has no newline. */
5854 h -= line_bottom_y (&it);
5855 it.vpos++;
5858 /* Don't reserve space for extra line spacing of last line. */
5859 extra_line_spacing = it.max_extra_line_spacing;
5861 /* If we can't move down NLINES lines because we hit
5862 the end of the buffer, count in some empty lines. */
5863 if (it.vpos < nlines)
5865 nlines -= it.vpos;
5866 extra_line_spacing = it.extra_line_spacing;
5867 h -= nlines * (FRAME_LINE_HEIGHT (it.f) + extra_line_spacing);
5869 if (h <= 0)
5871 bidi_unshelve_cache (itdata, 0);
5872 return Qnil;
5875 /* Now find the new top line (starting position) of the window. */
5876 start_display (&it, w, pt);
5877 it.current_y = 0;
5878 move_it_vertically_backward (&it, h);
5880 /* If extra line spacing is present, we may move too far
5881 back. This causes the last line to be only partially
5882 visible (which triggers redisplay to recenter that line
5883 in the middle), so move forward.
5884 But ignore extra line spacing on last line, as it is not
5885 considered to be part of the visible height of the line.
5887 h += extra_line_spacing;
5888 while (-it.current_y > h)
5889 move_it_by_lines (&it, 1);
5891 charpos = IT_CHARPOS (it);
5892 bytepos = IT_BYTEPOS (it);
5894 bidi_unshelve_cache (itdata, 0);
5896 else
5898 struct position pos;
5900 iarg = max (iarg, this_scroll_margin);
5902 pos = *vmotion (PT, PT_BYTE, -iarg, w);
5903 charpos = pos.bufpos;
5904 bytepos = pos.bytepos;
5907 else
5909 struct position pos;
5910 int ht = window_internal_height (w);
5912 if (center_p)
5913 iarg = ht / 2;
5914 else if (iarg < 0)
5915 iarg += ht;
5917 /* Don't let it get into the margin at either top or bottom. */
5918 iarg = clip_to_bounds (this_scroll_margin, iarg,
5919 ht - this_scroll_margin - 1);
5921 pos = *vmotion (PT, PT_BYTE, - iarg, w);
5922 charpos = pos.bufpos;
5923 bytepos = pos.bytepos;
5926 /* Set the new window start. */
5927 set_marker_both (w->start, w->contents, charpos, bytepos);
5928 w->window_end_valid = 0;
5930 w->optional_new_start = 1;
5932 w->start_at_line_beg = (bytepos == BEGV_BYTE
5933 || FETCH_BYTE (bytepos - 1) == '\n');
5935 wset_redisplay (w);
5937 return Qnil;
5940 DEFUN ("window-text-width", Fwindow_text_width, Swindow_text_width,
5941 0, 2, 0,
5942 doc: /* Return the width in columns of the text display area of WINDOW.
5943 WINDOW must be a live window and defaults to the selected one.
5945 The returned width does not include dividers, scrollbars, margins,
5946 fringes, nor any partial-width columns at the right of the text
5947 area.
5949 Optional argument PIXELWISE non-nil, means to return the width in
5950 pixels. */)
5951 (Lisp_Object window, Lisp_Object pixelwise)
5953 struct window *w = decode_live_window (window);
5955 if (NILP (pixelwise))
5956 return make_number (window_box_width (w, TEXT_AREA)
5957 / FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w)));
5958 else
5959 return make_number (window_box_width (w, TEXT_AREA));
5962 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
5963 0, 2, 0,
5964 doc: /* Return the height in lines of the text display area of WINDOW.
5965 WINDOW must be a live window and defaults to the selected one.
5967 The returned height does not include dividers, the mode line, any header
5968 line, nor any partial-height lines at the bottom of the text area.
5970 Optional argument PIXELWISE non-nil, means to return the height in
5971 pixels. */)
5972 (Lisp_Object window, Lisp_Object pixelwise)
5974 struct window *w = decode_live_window (window);
5976 if (NILP (pixelwise))
5977 return make_number (window_box_height (w)
5978 / FRAME_LINE_HEIGHT (WINDOW_XFRAME (w)));
5979 else
5980 return make_number (window_box_height (w));
5983 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
5984 1, 1, "P",
5985 doc: /* Position point relative to window.
5986 ARG nil means position point at center of window.
5987 Else, ARG specifies vertical position within the window;
5988 zero means top of window, negative means relative to bottom of window. */)
5989 (Lisp_Object arg)
5991 struct window *w = XWINDOW (selected_window);
5992 int lines, start;
5993 Lisp_Object window;
5994 #if 0
5995 int this_scroll_margin;
5996 #endif
5998 if (!(BUFFERP (w->contents) && XBUFFER (w->contents) == current_buffer))
5999 /* This test is needed to make sure PT/PT_BYTE make sense in w->contents
6000 when passed below to set_marker_both. */
6001 error ("move-to-window-line called from unrelated buffer");
6003 window = selected_window;
6004 start = marker_position (w->start);
6005 if (start < BEGV || start > ZV)
6007 int height = window_internal_height (w);
6008 Fvertical_motion (make_number (- (height / 2)), window);
6009 set_marker_both (w->start, w->contents, PT, PT_BYTE);
6010 w->start_at_line_beg = !NILP (Fbolp ());
6011 w->force_start = 1;
6013 else
6014 Fgoto_char (w->start);
6016 lines = displayed_window_lines (w);
6018 #if 0
6019 this_scroll_margin = max (0, min (scroll_margin, lines / 4));
6020 #endif
6022 if (NILP (arg))
6023 XSETFASTINT (arg, lines / 2);
6024 else
6026 EMACS_INT iarg = XINT (Fprefix_numeric_value (arg));
6028 if (iarg < 0)
6029 iarg = iarg + lines;
6031 #if 0 /* This code would prevent move-to-window-line from moving point
6032 to a place inside the scroll margins (which would cause the
6033 next redisplay to scroll). I wrote this code, but then concluded
6034 it is probably better not to install it. However, it is here
6035 inside #if 0 so as not to lose it. -- rms. */
6037 /* Don't let it get into the margin at either top or bottom. */
6038 iarg = max (iarg, this_scroll_margin);
6039 iarg = min (iarg, lines - this_scroll_margin - 1);
6040 #endif
6042 arg = make_number (iarg);
6045 /* Skip past a partially visible first line. */
6046 if (w->vscroll)
6047 XSETINT (arg, XINT (arg) + 1);
6049 return Fvertical_motion (arg, window);
6054 /***********************************************************************
6055 Window Configuration
6056 ***********************************************************************/
6058 struct save_window_data
6060 struct vectorlike_header header;
6061 Lisp_Object selected_frame;
6062 Lisp_Object current_window;
6063 Lisp_Object current_buffer;
6064 Lisp_Object minibuf_scroll_window;
6065 Lisp_Object minibuf_selected_window;
6066 Lisp_Object root_window;
6067 Lisp_Object focus_frame;
6068 /* A vector, each of whose elements is a struct saved_window
6069 for one window. */
6070 Lisp_Object saved_windows;
6072 /* All fields above are traced by the GC.
6073 From `frame-cols' down, the fields are ignored by the GC. */
6074 /* We should be able to do without the following two. */
6075 int frame_cols, frame_lines;
6076 /* These two should get eventually replaced by their pixel
6077 counterparts. */
6078 int frame_menu_bar_lines, frame_tool_bar_lines;
6079 int frame_text_width, frame_text_height;
6080 /* These are currently unused. We need them as soon as we convert
6081 to pixels. */
6082 int frame_menu_bar_height, frame_tool_bar_height;
6085 /* This is saved as a Lisp_Vector. */
6086 struct saved_window
6088 struct vectorlike_header header;
6090 Lisp_Object window, buffer, start, pointm, old_pointm;
6091 Lisp_Object pixel_left, pixel_top, pixel_height, pixel_width;
6092 Lisp_Object left_col, top_line, total_cols, total_lines;
6093 Lisp_Object normal_cols, normal_lines;
6094 Lisp_Object hscroll, min_hscroll, hscroll_whole, suspend_auto_hscroll;
6095 Lisp_Object parent, prev;
6096 Lisp_Object start_at_line_beg;
6097 Lisp_Object display_table;
6098 Lisp_Object left_margin_cols, right_margin_cols;
6099 Lisp_Object left_fringe_width, right_fringe_width, fringes_outside_margins;
6100 Lisp_Object scroll_bar_width, vertical_scroll_bar_type, dedicated;
6101 Lisp_Object scroll_bar_height, horizontal_scroll_bar_type;
6102 Lisp_Object combination_limit, window_parameters;
6105 #define SAVED_WINDOW_N(swv,n) \
6106 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
6108 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
6109 doc: /* Return t if OBJECT is a window-configuration object. */)
6110 (Lisp_Object object)
6112 return WINDOW_CONFIGURATIONP (object) ? Qt : Qnil;
6115 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
6116 doc: /* Return the frame that CONFIG, a window-configuration object, is about. */)
6117 (Lisp_Object config)
6119 register struct save_window_data *data;
6120 struct Lisp_Vector *saved_windows;
6122 CHECK_WINDOW_CONFIGURATION (config);
6124 data = (struct save_window_data *) XVECTOR (config);
6125 saved_windows = XVECTOR (data->saved_windows);
6126 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
6129 DEFUN ("set-window-configuration", Fset_window_configuration,
6130 Sset_window_configuration, 1, 1, 0,
6131 doc: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
6132 CONFIGURATION must be a value previously returned
6133 by `current-window-configuration' (which see).
6134 If CONFIGURATION was made from a frame that is now deleted,
6135 only frame-independent values can be restored. In this case,
6136 the return value is nil. Otherwise the value is t. */)
6137 (Lisp_Object configuration)
6139 register struct save_window_data *data;
6140 struct Lisp_Vector *saved_windows;
6141 Lisp_Object new_current_buffer;
6142 Lisp_Object frame;
6143 struct frame *f;
6144 ptrdiff_t old_point = -1;
6145 USE_SAFE_ALLOCA;
6147 CHECK_WINDOW_CONFIGURATION (configuration);
6149 data = (struct save_window_data *) XVECTOR (configuration);
6150 saved_windows = XVECTOR (data->saved_windows);
6152 new_current_buffer = data->current_buffer;
6153 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer)))
6154 new_current_buffer = Qnil;
6155 else
6157 if (XBUFFER (new_current_buffer) == current_buffer)
6158 /* The code further down "preserves point" by saving here PT in
6159 old_point and then setting it later back into PT. When the
6160 current-selected-window and the final-selected-window both show
6161 the current buffer, this suffers from the problem that the
6162 current PT is the window-point of the current-selected-window,
6163 while the final PT is the point of the final-selected-window, so
6164 this copy from one PT to the other would end up moving the
6165 window-point of the final-selected-window to the window-point of
6166 the current-selected-window. So we have to be careful which
6167 point of the current-buffer we copy into old_point. */
6168 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer)
6169 && WINDOWP (selected_window)
6170 && EQ (XWINDOW (selected_window)->contents, new_current_buffer)
6171 && !EQ (selected_window, data->current_window))
6172 old_point = marker_position (XWINDOW (data->current_window)->pointm);
6173 else
6174 old_point = PT;
6175 else
6176 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
6177 point in new_current_buffer as of the last time this buffer was
6178 used. This can be non-deterministic since it can be changed by
6179 things like jit-lock by mere temporary selection of some random
6180 window that happens to show this buffer.
6181 So if possible we want this arbitrary choice of "which point" to
6182 be the one from the to-be-selected-window so as to prevent this
6183 window's cursor from being copied from another window. */
6184 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer)
6185 /* If current_window = selected_window, its point is in BUF_PT. */
6186 && !EQ (selected_window, data->current_window))
6187 old_point = marker_position (XWINDOW (data->current_window)->pointm);
6188 else
6189 old_point = BUF_PT (XBUFFER (new_current_buffer));
6192 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
6193 f = XFRAME (frame);
6195 /* If f is a dead frame, don't bother rebuilding its window tree.
6196 However, there is other stuff we should still try to do below. */
6197 if (FRAME_LIVE_P (f))
6199 Lisp_Object window;
6200 Lisp_Object dead_windows = Qnil;
6201 register Lisp_Object tem, par, pers;
6202 register struct window *w;
6203 register struct saved_window *p;
6204 struct window *root_window;
6205 struct window **leaf_windows;
6206 int n_leaf_windows;
6207 ptrdiff_t k;
6208 int i, n;
6210 /* Don't do this within the main loop below: This may call Lisp
6211 code and is thus potentially unsafe while input is blocked. */
6212 for (k = 0; k < saved_windows->header.size; k++)
6214 p = SAVED_WINDOW_N (saved_windows, k);
6215 window = p->window;
6216 w = XWINDOW (window);
6217 if (BUFFERP (w->contents)
6218 && !EQ (w->contents, p->buffer)
6219 && BUFFER_LIVE_P (XBUFFER (p->buffer)))
6220 /* If a window we restore gets another buffer, record the
6221 window's old buffer. */
6222 call1 (Qrecord_window_buffer, window);
6225 /* Disallow x_set_window_size, temporarily. */
6226 f->can_x_set_window_size = false;
6227 /* The mouse highlighting code could get screwed up
6228 if it runs during this. */
6229 block_input ();
6231 /* "Swap out" point from the selected window's buffer
6232 into the window itself. (Normally the pointm of the selected
6233 window holds garbage.) We do this now, before
6234 restoring the window contents, and prevent it from
6235 being done later on when we select a new window. */
6236 if (! NILP (XWINDOW (selected_window)->contents))
6238 w = XWINDOW (selected_window);
6239 set_marker_both (w->pointm,
6240 w->contents,
6241 BUF_PT (XBUFFER (w->contents)),
6242 BUF_PT_BYTE (XBUFFER (w->contents)));
6245 fset_redisplay (f);
6246 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
6248 /* Problem: Freeing all matrices and later allocating them again
6249 is a serious redisplay flickering problem. What we would
6250 really like to do is to free only those matrices not reused
6251 below. */
6252 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
6253 int nwindows = count_windows (root_window);
6254 SAFE_NALLOCA (leaf_windows, 1, nwindows);
6255 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
6257 /* Kludge Alert!
6258 Mark all windows now on frame as "deleted".
6259 Restoring the new configuration "undeletes" any that are in it.
6261 Save their current buffers in their height fields, since we may
6262 need it later, if a buffer saved in the configuration is now
6263 dead. */
6264 delete_all_child_windows (FRAME_ROOT_WINDOW (f));
6266 for (k = 0; k < saved_windows->header.size; k++)
6268 p = SAVED_WINDOW_N (saved_windows, k);
6269 window = p->window;
6270 w = XWINDOW (window);
6271 wset_next (w, Qnil);
6273 if (!NILP (p->parent))
6274 wset_parent
6275 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->parent))->window);
6276 else
6277 wset_parent (w, Qnil);
6279 if (!NILP (p->prev))
6281 wset_prev
6282 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->prev))->window);
6283 wset_next (XWINDOW (w->prev), p->window);
6285 else
6287 wset_prev (w, Qnil);
6288 if (!NILP (w->parent))
6289 wset_combination (XWINDOW (w->parent),
6290 (XINT (p->total_cols)
6291 != XWINDOW (w->parent)->total_cols),
6292 p->window);
6295 /* If we squirreled away the buffer, restore it now. */
6296 if (BUFFERP (w->combination_limit))
6297 wset_buffer (w, w->combination_limit);
6298 w->pixel_left = XFASTINT (p->pixel_left);
6299 w->pixel_top = XFASTINT (p->pixel_top);
6300 w->pixel_width = XFASTINT (p->pixel_width);
6301 w->pixel_height = XFASTINT (p->pixel_height);
6302 w->left_col = XFASTINT (p->left_col);
6303 w->top_line = XFASTINT (p->top_line);
6304 w->total_cols = XFASTINT (p->total_cols);
6305 w->total_lines = XFASTINT (p->total_lines);
6306 wset_normal_cols (w, p->normal_cols);
6307 wset_normal_lines (w, p->normal_lines);
6308 w->hscroll = XFASTINT (p->hscroll);
6309 w->suspend_auto_hscroll = !NILP (p->suspend_auto_hscroll);
6310 w->min_hscroll = XFASTINT (p->min_hscroll);
6311 w->hscroll_whole = XFASTINT (p->hscroll_whole);
6312 wset_display_table (w, p->display_table);
6313 w->left_margin_cols = XINT (p->left_margin_cols);
6314 w->right_margin_cols = XINT (p->right_margin_cols);
6315 w->left_fringe_width = XINT (p->left_fringe_width);
6316 w->right_fringe_width = XINT (p->right_fringe_width);
6317 w->fringes_outside_margins = !NILP (p->fringes_outside_margins);
6318 w->scroll_bar_width = XINT (p->scroll_bar_width);
6319 w->scroll_bar_height = XINT (p->scroll_bar_height);
6320 wset_vertical_scroll_bar_type (w, p->vertical_scroll_bar_type);
6321 wset_horizontal_scroll_bar_type (w, p->horizontal_scroll_bar_type);
6322 wset_dedicated (w, p->dedicated);
6323 wset_combination_limit (w, p->combination_limit);
6324 /* Restore any window parameters that have been saved.
6325 Parameters that have not been saved are left alone. */
6326 for (tem = p->window_parameters; CONSP (tem); tem = XCDR (tem))
6328 pers = XCAR (tem);
6329 if (CONSP (pers))
6331 if (NILP (XCDR (pers)))
6333 par = Fassq (XCAR (pers), w->window_parameters);
6334 if (CONSP (par) && !NILP (XCDR (par)))
6335 /* Reset a parameter to nil if and only if it
6336 has a non-nil association. Don't make new
6337 associations. */
6338 Fsetcdr (par, Qnil);
6340 else
6341 /* Always restore a non-nil value. */
6342 Fset_window_parameter (window, XCAR (pers), XCDR (pers));
6346 if (BUFFERP (p->buffer) && BUFFER_LIVE_P (XBUFFER (p->buffer)))
6347 /* If saved buffer is alive, install it. */
6349 wset_buffer (w, p->buffer);
6350 w->start_at_line_beg = !NILP (p->start_at_line_beg);
6351 set_marker_restricted (w->start, p->start, w->contents);
6352 set_marker_restricted (w->pointm, p->pointm, w->contents);
6353 set_marker_restricted (w->old_pointm, p->old_pointm, w->contents);
6354 /* As documented in Fcurrent_window_configuration, don't
6355 restore the location of point in the buffer which was
6356 current when the window configuration was recorded. */
6357 if (!EQ (p->buffer, new_current_buffer)
6358 && XBUFFER (p->buffer) == current_buffer)
6359 Fgoto_char (w->pointm);
6361 else if (BUFFERP (w->contents) && BUFFER_LIVE_P (XBUFFER (w->contents)))
6362 /* Keep window's old buffer; make sure the markers are real. */
6364 /* Set window markers at start of visible range. */
6365 if (XMARKER (w->start)->buffer == 0)
6366 set_marker_restricted_both (w->start, w->contents, 0, 0);
6367 if (XMARKER (w->pointm)->buffer == 0)
6368 set_marker_restricted_both
6369 (w->pointm, w->contents,
6370 BUF_PT (XBUFFER (w->contents)),
6371 BUF_PT_BYTE (XBUFFER (w->contents)));
6372 if (XMARKER (w->old_pointm)->buffer == 0)
6373 set_marker_restricted_both
6374 (w->old_pointm, w->contents,
6375 BUF_PT (XBUFFER (w->contents)),
6376 BUF_PT_BYTE (XBUFFER (w->contents)));
6377 w->start_at_line_beg = 1;
6379 else if (!NILP (w->start))
6380 /* Leaf window has no live buffer, get one. */
6382 /* Get the buffer via other_buffer_safely in order to
6383 avoid showing an unimportant buffer and, if necessary, to
6384 recreate *scratch* in the course (part of Juanma's bs-show
6385 scenario from March 2011). */
6386 wset_buffer (w, other_buffer_safely (Fcurrent_buffer ()));
6387 /* This will set the markers to beginning of visible
6388 range. */
6389 set_marker_restricted_both (w->start, w->contents, 0, 0);
6390 set_marker_restricted_both (w->pointm, w->contents, 0, 0);
6391 set_marker_restricted_both (w->old_pointm, w->contents, 0, 0);
6392 w->start_at_line_beg = 1;
6393 if (!NILP (w->dedicated))
6394 /* Record this window as dead. */
6395 dead_windows = Fcons (window, dead_windows);
6396 /* Make sure window is no more dedicated. */
6397 wset_dedicated (w, Qnil);
6401 fset_root_window (f, data->root_window);
6402 /* Arrange *not* to restore point in the buffer that was
6403 current when the window configuration was saved. */
6404 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer))
6405 set_marker_restricted (XWINDOW (data->current_window)->pointm,
6406 make_number (old_point),
6407 XWINDOW (data->current_window)->contents);
6409 /* In the following call to `select-window', prevent "swapping out
6410 point" in the old selected window using the buffer that has
6411 been restored into it. We already swapped out that point from
6412 that window's old buffer.
6414 Do not record the buffer here. We do that in a separate call
6415 to select_window below. See also Bug#16207. */
6416 select_window (data->current_window, Qt, 1);
6417 BVAR (XBUFFER (XWINDOW (selected_window)->contents),
6418 last_selected_window)
6419 = selected_window;
6421 if (NILP (data->focus_frame)
6422 || (FRAMEP (data->focus_frame)
6423 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
6424 Fredirect_frame_focus (frame, data->focus_frame);
6426 /* Now, free glyph matrices in windows that were not reused. */
6427 for (i = n = 0; i < n_leaf_windows; ++i)
6429 if (NILP (leaf_windows[i]->contents))
6430 free_window_matrices (leaf_windows[i]);
6431 else if (EQ (leaf_windows[i]->contents, new_current_buffer))
6432 ++n;
6435 /* Allow x_set_window_size again and apply frame size changes if
6436 needed. */
6437 f->can_x_set_window_size = true;
6438 adjust_frame_size (f, -1, -1, 1, 0, Qset_window_configuration);
6440 adjust_frame_glyphs (f);
6441 unblock_input ();
6443 /* Scan dead buffer windows. */
6444 for (; CONSP (dead_windows); dead_windows = XCDR (dead_windows))
6446 window = XCAR (dead_windows);
6447 if (WINDOW_LIVE_P (window) && !EQ (window, FRAME_ROOT_WINDOW (f)))
6448 delete_deletable_window (window);
6451 /* Record the selected window's buffer here. The window should
6452 already be the selected one from the call above. */
6453 select_window (data->current_window, Qnil, 0);
6455 /* Fselect_window will have made f the selected frame, so we
6456 reselect the proper frame here. Fhandle_switch_frame will change the
6457 selected window too, but that doesn't make the call to
6458 Fselect_window above totally superfluous; it still sets f's
6459 selected window. */
6460 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
6461 do_switch_frame (data->selected_frame, 0, 0, Qnil);
6463 run_window_configuration_change_hook (f);
6466 if (!NILP (new_current_buffer))
6468 Fset_buffer (new_current_buffer);
6469 /* If the new current buffer doesn't appear in the selected
6470 window, go to its old point (see bug#12208). */
6471 if (!EQ (XWINDOW (data->current_window)->contents, new_current_buffer))
6472 Fgoto_char (make_number (old_point));
6475 Vminibuf_scroll_window = data->minibuf_scroll_window;
6476 minibuf_selected_window = data->minibuf_selected_window;
6478 SAFE_FREE ();
6479 return (FRAME_LIVE_P (f) ? Qt : Qnil);
6483 void
6484 restore_window_configuration (Lisp_Object configuration)
6486 Fset_window_configuration (configuration);
6490 /* If WINDOW is an internal window, recursively delete all child windows
6491 reachable via the next and contents slots of WINDOW. Otherwise setup
6492 WINDOW to not show any buffer. */
6494 void
6495 delete_all_child_windows (Lisp_Object window)
6497 register struct window *w;
6499 w = XWINDOW (window);
6501 if (!NILP (w->next))
6502 /* Delete WINDOW's siblings (we traverse postorderly). */
6503 delete_all_child_windows (w->next);
6505 if (WINDOWP (w->contents))
6507 delete_all_child_windows (w->contents);
6508 wset_combination (w, 0, Qnil);
6510 else if (BUFFERP (w->contents))
6512 unshow_buffer (w);
6513 unchain_marker (XMARKER (w->pointm));
6514 unchain_marker (XMARKER (w->old_pointm));
6515 unchain_marker (XMARKER (w->start));
6516 /* Since combination limit makes sense for an internal windows
6517 only, we use this slot to save the buffer for the sake of
6518 possible resurrection in Fset_window_configuration. */
6519 wset_combination_limit (w, w->contents);
6520 wset_buffer (w, Qnil);
6523 Vwindow_list = Qnil;
6526 static int
6527 count_windows (register struct window *window)
6529 register int count = 1;
6530 if (!NILP (window->next))
6531 count += count_windows (XWINDOW (window->next));
6532 if (WINDOWP (window->contents))
6533 count += count_windows (XWINDOW (window->contents));
6534 return count;
6538 /* Fill vector FLAT with leaf windows under W, starting at index I.
6539 Value is last index + 1. */
6540 static int
6541 get_leaf_windows (struct window *w, struct window **flat, int i)
6543 while (w)
6545 if (WINDOWP (w->contents))
6546 i = get_leaf_windows (XWINDOW (w->contents), flat, i);
6547 else
6548 flat[i++] = w;
6550 w = NILP (w->next) ? 0 : XWINDOW (w->next);
6553 return i;
6557 /* Return a pointer to the glyph W's physical cursor is on. Value is
6558 null if W's current matrix is invalid, so that no meaningful glyph
6559 can be returned. */
6560 struct glyph *
6561 get_phys_cursor_glyph (struct window *w)
6563 struct glyph_row *row;
6564 struct glyph *glyph;
6565 int hpos = w->phys_cursor.hpos;
6567 if (!(w->phys_cursor.vpos >= 0
6568 && w->phys_cursor.vpos < w->current_matrix->nrows))
6569 return NULL;
6571 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
6572 if (!row->enabled_p)
6573 return NULL;
6575 if (w->hscroll)
6577 /* When the window is hscrolled, cursor hpos can legitimately be
6578 out of bounds, but we draw the cursor at the corresponding
6579 window margin in that case. */
6580 if (!row->reversed_p && hpos < 0)
6581 hpos = 0;
6582 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
6583 hpos = row->used[TEXT_AREA] - 1;
6586 if (0 <= hpos && hpos < row->used[TEXT_AREA])
6587 glyph = row->glyphs[TEXT_AREA] + hpos;
6588 else
6589 glyph = NULL;
6591 return glyph;
6595 static int
6596 save_window_save (Lisp_Object window, struct Lisp_Vector *vector, int i)
6598 register struct saved_window *p;
6599 register struct window *w;
6600 register Lisp_Object tem, pers, par;
6602 for (; !NILP (window); window = w->next)
6604 p = SAVED_WINDOW_N (vector, i);
6605 w = XWINDOW (window);
6607 wset_temslot (w, make_number (i)); i++;
6608 p->window = window;
6609 p->buffer = (WINDOW_LEAF_P (w) ? w->contents : Qnil);
6610 p->pixel_left = make_number (w->pixel_left);
6611 p->pixel_top = make_number (w->pixel_top);
6612 p->pixel_width = make_number (w->pixel_width);
6613 p->pixel_height = make_number (w->pixel_height);
6614 p->left_col = make_number (w->left_col);
6615 p->top_line = make_number (w->top_line);
6616 p->total_cols = make_number (w->total_cols);
6617 p->total_lines = make_number (w->total_lines);
6618 p->normal_cols = w->normal_cols;
6619 p->normal_lines = w->normal_lines;
6620 XSETFASTINT (p->hscroll, w->hscroll);
6621 p->suspend_auto_hscroll = w->suspend_auto_hscroll ? Qt : Qnil;
6622 XSETFASTINT (p->min_hscroll, w->min_hscroll);
6623 XSETFASTINT (p->hscroll_whole, w->hscroll_whole);
6624 p->display_table = w->display_table;
6625 p->left_margin_cols = make_number (w->left_margin_cols);
6626 p->right_margin_cols = make_number (w->right_margin_cols);
6627 p->left_fringe_width = make_number (w->left_fringe_width);
6628 p->right_fringe_width = make_number (w->right_fringe_width);
6629 p->fringes_outside_margins = w->fringes_outside_margins ? Qt : Qnil;
6630 p->scroll_bar_width = make_number (w->scroll_bar_width);
6631 p->scroll_bar_height = make_number (w->scroll_bar_height);
6632 p->vertical_scroll_bar_type = w->vertical_scroll_bar_type;
6633 p->horizontal_scroll_bar_type = w->horizontal_scroll_bar_type;
6634 p->dedicated = w->dedicated;
6635 p->combination_limit = w->combination_limit;
6636 p->window_parameters = Qnil;
6638 if (!NILP (Vwindow_persistent_parameters))
6640 /* Run cycle detection on Vwindow_persistent_parameters. */
6641 Lisp_Object tortoise, hare;
6643 hare = tortoise = Vwindow_persistent_parameters;
6644 while (CONSP (hare))
6646 hare = XCDR (hare);
6647 if (!CONSP (hare))
6648 break;
6650 hare = XCDR (hare);
6651 tortoise = XCDR (tortoise);
6653 if (EQ (hare, tortoise))
6654 /* Reset Vwindow_persistent_parameters to Qnil. */
6656 Vwindow_persistent_parameters = Qnil;
6657 break;
6661 for (tem = Vwindow_persistent_parameters; CONSP (tem);
6662 tem = XCDR (tem))
6664 pers = XCAR (tem);
6665 /* Save values for persistent window parameters. */
6666 if (CONSP (pers) && !NILP (XCDR (pers)))
6668 par = Fassq (XCAR (pers), w->window_parameters);
6669 if (NILP (par))
6670 /* If the window has no value for the parameter,
6671 make one. */
6672 p->window_parameters = Fcons (Fcons (XCAR (pers), Qnil),
6673 p->window_parameters);
6674 else
6675 /* If the window has a value for the parameter,
6676 save it. */
6677 p->window_parameters = Fcons (Fcons (XCAR (par),
6678 XCDR (par)),
6679 p->window_parameters);
6684 if (BUFFERP (w->contents))
6686 /* Save w's value of point in the window configuration. If w
6687 is the selected window, then get the value of point from
6688 the buffer; pointm is garbage in the selected window. */
6689 if (EQ (window, selected_window))
6690 p->pointm = build_marker (XBUFFER (w->contents),
6691 BUF_PT (XBUFFER (w->contents)),
6692 BUF_PT_BYTE (XBUFFER (w->contents)));
6693 else
6694 p->pointm = Fcopy_marker (w->pointm, Qnil);
6695 p->old_pointm = Fcopy_marker (w->old_pointm, Qnil);
6696 XMARKER (p->pointm)->insertion_type
6697 = !NILP (buffer_local_value /* Don't signal error if void. */
6698 (Qwindow_point_insertion_type, w->contents));
6699 XMARKER (p->old_pointm)->insertion_type
6700 = !NILP (buffer_local_value /* Don't signal error if void. */
6701 (Qwindow_point_insertion_type, w->contents));
6703 p->start = Fcopy_marker (w->start, Qnil);
6704 p->start_at_line_beg = w->start_at_line_beg ? Qt : Qnil;
6706 else
6708 p->pointm = Qnil;
6709 p->old_pointm = Qnil;
6710 p->start = Qnil;
6711 p->start_at_line_beg = Qnil;
6714 p->parent = NILP (w->parent) ? Qnil : XWINDOW (w->parent)->temslot;
6715 p->prev = NILP (w->prev) ? Qnil : XWINDOW (w->prev)->temslot;
6717 if (WINDOWP (w->contents))
6718 i = save_window_save (w->contents, vector, i);
6721 return i;
6724 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
6725 Scurrent_window_configuration, 0, 1, 0,
6726 doc: /* Return an object representing the current window configuration of FRAME.
6727 If FRAME is nil or omitted, use the selected frame.
6728 This describes the number of windows, their sizes and current buffers,
6729 and for each displayed buffer, where display starts, and the position of
6730 point. An exception is made for point in the current buffer:
6731 its value is -not- saved.
6732 This also records the currently selected frame, and FRAME's focus
6733 redirection (see `redirect-frame-focus'). The variable
6734 `window-persistent-parameters' specifies which window parameters are
6735 saved by this function. */)
6736 (Lisp_Object frame)
6738 register Lisp_Object tem;
6739 register int n_windows;
6740 register struct save_window_data *data;
6741 register int i;
6742 struct frame *f = decode_live_frame (frame);
6744 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
6745 data = ALLOCATE_PSEUDOVECTOR (struct save_window_data, frame_cols,
6746 PVEC_WINDOW_CONFIGURATION);
6748 data->frame_cols = FRAME_COLS (f);
6749 data->frame_lines = FRAME_LINES (f);
6750 data->frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
6751 data->frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
6752 data->frame_text_width = FRAME_TEXT_WIDTH (f);
6753 data->frame_text_height = FRAME_TEXT_HEIGHT (f);
6754 data->frame_menu_bar_height = FRAME_MENU_BAR_HEIGHT (f);
6755 data->frame_tool_bar_height = FRAME_TOOL_BAR_HEIGHT (f);
6756 data->selected_frame = selected_frame;
6757 data->current_window = FRAME_SELECTED_WINDOW (f);
6758 XSETBUFFER (data->current_buffer, current_buffer);
6759 data->minibuf_scroll_window = minibuf_level > 0 ? Vminibuf_scroll_window : Qnil;
6760 data->minibuf_selected_window = minibuf_level > 0 ? minibuf_selected_window : Qnil;
6761 data->root_window = FRAME_ROOT_WINDOW (f);
6762 data->focus_frame = FRAME_FOCUS_FRAME (f);
6763 tem = make_uninit_vector (n_windows);
6764 data->saved_windows = tem;
6765 for (i = 0; i < n_windows; i++)
6766 ASET (tem, i,
6767 Fmake_vector (make_number (VECSIZE (struct saved_window)), Qnil));
6768 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
6769 XSETWINDOW_CONFIGURATION (tem, data);
6770 return (tem);
6773 /* Called after W's margins, fringes or scroll bars was adjusted. */
6775 static void
6776 apply_window_adjustment (struct window *w)
6778 eassert (w);
6779 clear_glyph_matrix (w->current_matrix);
6780 w->window_end_valid = 0;
6781 windows_or_buffers_changed = 30;
6782 wset_redisplay (w);
6783 adjust_frame_glyphs (XFRAME (WINDOW_FRAME (w)));
6787 /***********************************************************************
6788 Marginal Areas
6789 ***********************************************************************/
6791 static struct window *
6792 set_window_margins (struct window *w, Lisp_Object left_width,
6793 Lisp_Object right_width)
6795 int left, right;
6796 int unit = WINDOW_FRAME_COLUMN_WIDTH (w);
6798 left = (NILP (left_width) ? 0
6799 : (CHECK_NATNUM (left_width), XINT (left_width)));
6800 right = (NILP (right_width) ? 0
6801 : (CHECK_NATNUM (right_width), XINT (right_width)));
6803 if (w->left_margin_cols != left || w->right_margin_cols != right)
6805 /* Don't change anything if new margins won't fit. */
6806 if ((WINDOW_PIXEL_WIDTH (w)
6807 - WINDOW_FRINGES_WIDTH (w)
6808 - WINDOW_SCROLL_BAR_AREA_WIDTH (w)
6809 - (left + right) * unit)
6810 >= MIN_SAFE_WINDOW_PIXEL_WIDTH (w))
6812 w->left_margin_cols = left;
6813 w->right_margin_cols = right;
6815 return w;
6817 else
6818 return NULL;
6820 else
6821 return NULL;
6824 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
6825 2, 3, 0,
6826 doc: /* Set width of marginal areas of window WINDOW.
6827 WINDOW must be a live window and defaults to the selected one.
6829 Second arg LEFT-WIDTH specifies the number of character cells to
6830 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6831 does the same for the right marginal area. A nil width parameter
6832 means no margin.
6834 Return t if any margin was actually changed and nil otherwise. */)
6835 (Lisp_Object window, Lisp_Object left_width, Lisp_Object right_width)
6837 struct window *w = set_window_margins (decode_live_window (window),
6838 left_width, right_width);
6839 return w ? (apply_window_adjustment (w), Qt) : Qnil;
6843 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
6844 0, 1, 0,
6845 doc: /* Get width of marginal areas of window WINDOW.
6846 WINDOW must be a live window and defaults to the selected one.
6848 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6849 If a marginal area does not exist, its width will be returned
6850 as nil. */)
6851 (Lisp_Object window)
6853 struct window *w = decode_live_window (window);
6854 return Fcons (w->left_margin_cols
6855 ? make_number (w->left_margin_cols) : Qnil,
6856 w->right_margin_cols
6857 ? make_number (w->right_margin_cols) : Qnil);
6862 /***********************************************************************
6863 Fringes
6864 ***********************************************************************/
6866 static struct window *
6867 set_window_fringes (struct window *w, Lisp_Object left_width,
6868 Lisp_Object right_width, Lisp_Object outside_margins)
6870 int left, right, outside = !NILP (outside_margins);
6872 left = (NILP (left_width) ? -1
6873 : (CHECK_NATNUM (left_width), XINT (left_width)));
6874 right = (NILP (right_width) ? -1
6875 : (CHECK_NATNUM (right_width), XINT (right_width)));
6877 /* Do nothing on a tty or if nothing to actually change. */
6878 if (FRAME_WINDOW_P (WINDOW_XFRAME (w))
6879 && (w->left_fringe_width != left
6880 || w->right_fringe_width != right
6881 || w->fringes_outside_margins != outside))
6883 if (left > 0 || right > 0)
6885 /* Don't change anything if new fringes don't fit. */
6886 if ((WINDOW_PIXEL_WIDTH (w)
6887 - WINDOW_MARGINS_WIDTH (w)
6888 - WINDOW_SCROLL_BAR_AREA_WIDTH (w)
6889 - max (left, 0) - max (right, 0))
6890 < MIN_SAFE_WINDOW_PIXEL_WIDTH (w))
6891 return NULL;
6894 w->left_fringe_width = left;
6895 w->right_fringe_width = right;
6896 w->fringes_outside_margins = outside;
6898 return w;
6900 else
6901 return NULL;
6904 DEFUN ("set-window-fringes", Fset_window_fringes, Sset_window_fringes,
6905 2, 4, 0,
6906 doc: /* Set the fringe widths of window WINDOW.
6907 WINDOW must be a live window and defaults to the selected one.
6909 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6910 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6911 fringe width. If a fringe width arg is nil, that means to use the
6912 frame's default fringe width. Default fringe widths can be set with
6913 the command `set-fringe-style'.
6914 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6915 outside of the display margins. By default, fringes are drawn between
6916 display marginal areas and the text area.
6918 Return t if any fringe was actually changed and nil otherwise. */)
6919 (Lisp_Object window, Lisp_Object left_width,
6920 Lisp_Object right_width, Lisp_Object outside_margins)
6922 struct window *w
6923 = set_window_fringes (decode_live_window (window),
6924 left_width, right_width, outside_margins);
6925 return w ? (apply_window_adjustment (w), Qt) : Qnil;
6929 DEFUN ("window-fringes", Fwindow_fringes, Swindow_fringes,
6930 0, 1, 0,
6931 doc: /* Get width of fringes of window WINDOW.
6932 WINDOW must be a live window and defaults to the selected one.
6934 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6935 (Lisp_Object window)
6937 struct window *w = decode_live_window (window);
6939 return list3 (make_number (WINDOW_LEFT_FRINGE_WIDTH (w)),
6940 make_number (WINDOW_RIGHT_FRINGE_WIDTH (w)),
6941 WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) ? Qt : Qnil);
6946 /***********************************************************************
6947 Scroll bars
6948 ***********************************************************************/
6950 static struct window *
6951 set_window_scroll_bars (struct window *w, Lisp_Object width,
6952 Lisp_Object vertical_type, Lisp_Object height,
6953 Lisp_Object horizontal_type)
6955 int iwidth = (NILP (width) ? -1 : (CHECK_NATNUM (width), XINT (width)));
6956 bool changed = 0;
6958 if (iwidth == 0)
6959 vertical_type = Qnil;
6961 if (!(NILP (vertical_type)
6962 || EQ (vertical_type, Qleft)
6963 || EQ (vertical_type, Qright)
6964 || EQ (vertical_type, Qt)))
6965 error ("Invalid type of vertical scroll bar");
6967 if (w->scroll_bar_width != iwidth
6968 || !EQ (w->vertical_scroll_bar_type, vertical_type))
6970 /* Don't change anything if new scroll bar won't fit. */
6971 if ((WINDOW_PIXEL_WIDTH (w)
6972 - WINDOW_MARGINS_WIDTH (w)
6973 - WINDOW_FRINGES_WIDTH (w)
6974 - max (iwidth, 0))
6975 >= MIN_SAFE_WINDOW_PIXEL_WIDTH (w))
6977 w->scroll_bar_width = iwidth;
6978 wset_vertical_scroll_bar_type (w, vertical_type);
6979 changed = 1;
6983 #if USE_HORIZONTAL_SCROLL_BARS
6985 int iheight = (NILP (height) ? -1 : (CHECK_NATNUM (height), XINT (height)));
6987 if (MINI_WINDOW_P (w) || iheight == 0)
6988 horizontal_type = Qnil;
6990 if (!(NILP (horizontal_type)
6991 || EQ (horizontal_type, Qbottom)
6992 || EQ (horizontal_type, Qt)))
6993 error ("Invalid type of horizontal scroll bar");
6995 if (w->scroll_bar_height != iheight
6996 || !EQ (w->horizontal_scroll_bar_type, horizontal_type))
6998 /* Don't change anything if new scroll bar won't fit. */
6999 if ((WINDOW_PIXEL_HEIGHT (w)
7000 - WINDOW_HEADER_LINE_HEIGHT (w)
7001 - WINDOW_MODE_LINE_HEIGHT (w)
7002 - max (iheight, 0))
7003 >= MIN_SAFE_WINDOW_PIXEL_HEIGHT (w))
7005 w->scroll_bar_height = iheight;
7006 wset_horizontal_scroll_bar_type (w, horizontal_type);
7007 changed = 1;
7011 #else
7012 wset_horizontal_scroll_bar_type (w, Qnil);
7013 #endif
7015 return changed ? w : NULL;
7018 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars,
7019 Sset_window_scroll_bars, 1, 5, 0,
7020 doc: /* Set width and type of scroll bars of window WINDOW.
7021 WINDOW must be a live window and defaults to the selected one.
7023 Second parameter WIDTH specifies the pixel width for the vertical scroll
7024 bar. If WIDTH is nil, use the scroll-bar width of WINDOW's frame.
7025 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
7026 bar: left, right, or nil. If VERTICAL-TYPE is t, this means use the
7027 frame's scroll-bar type.
7029 Fourth parameter HEIGHT specifies the pixel height for the horizontal
7030 scroll bar. If HEIGHT is nil, use the scroll-bar height of WINDOW's
7031 frame. Fifth parameter HORIZONTAL-TYPE specifies the type of the
7032 horizontal scroll bar: nil, bottom, or t. If HORIZONTAL-TYPE is t, this
7033 means to use the frame's horizontal scroll-bar type.
7035 Return t if scroll bars were actually changed and nil otherwise. */)
7036 (Lisp_Object window, Lisp_Object width, Lisp_Object vertical_type,
7037 Lisp_Object height, Lisp_Object horizontal_type)
7039 struct window *w
7040 = set_window_scroll_bars (decode_live_window (window),
7041 width, vertical_type, height, horizontal_type);
7042 return w ? (apply_window_adjustment (w), Qt) : Qnil;
7046 DEFUN ("window-scroll-bars", Fwindow_scroll_bars, Swindow_scroll_bars,
7047 0, 1, 0,
7048 doc: /* Get width and type of scroll bars of window WINDOW.
7049 WINDOW must be a live window and defaults to the selected one.
7051 Value is a list of the form (WIDTH COLUMNS VERTICAL-TYPE HEIGHT LINES
7052 HORIZONTAL-TYPE). If WIDTH or HEIGHT is nil or VERTICAL-TYPE or
7053 HORIZONTAL-TYPE is t, the window is using the frame's corresponding
7054 value. */)
7055 (Lisp_Object window)
7057 struct window *w = decode_live_window (window);
7059 return Fcons (((w->scroll_bar_width >= 0)
7060 ? make_number (w->scroll_bar_width)
7061 : Qnil),
7062 list5 (make_number (WINDOW_SCROLL_BAR_COLS (w)),
7063 w->vertical_scroll_bar_type,
7064 ((w->scroll_bar_height >= 0)
7065 ? make_number (w->scroll_bar_height)
7066 : Qnil),
7067 make_number (WINDOW_SCROLL_BAR_LINES (w)),
7068 w->horizontal_scroll_bar_type));
7071 /***********************************************************************
7072 Smooth scrolling
7073 ***********************************************************************/
7075 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
7076 doc: /* Return the amount by which WINDOW is scrolled vertically.
7077 If WINDOW is omitted or nil, it defaults to the selected window.
7078 Normally, value is a multiple of the canonical character height of WINDOW;
7079 optional second arg PIXELS-P means value is measured in pixels. */)
7080 (Lisp_Object window, Lisp_Object pixels_p)
7082 Lisp_Object result;
7083 struct window *w = decode_live_window (window);
7084 struct frame *f = XFRAME (w->frame);
7086 if (FRAME_WINDOW_P (f))
7087 result = (NILP (pixels_p)
7088 ? FRAME_CANON_Y_FROM_PIXEL_Y (f, -w->vscroll)
7089 : make_number (-w->vscroll));
7090 else
7091 result = make_number (0);
7092 return result;
7096 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
7097 2, 3, 0,
7098 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
7099 WINDOW nil means use the selected window. Normally, VSCROLL is a
7100 non-negative multiple of the canonical character height of WINDOW;
7101 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
7102 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
7103 corresponds to an integral number of pixels. The return value is the
7104 result of this rounding.
7105 If PIXELS-P is non-nil, the return value is VSCROLL. */)
7106 (Lisp_Object window, Lisp_Object vscroll, Lisp_Object pixels_p)
7108 struct window *w = decode_live_window (window);
7109 struct frame *f = XFRAME (w->frame);
7111 CHECK_NUMBER_OR_FLOAT (vscroll);
7113 if (FRAME_WINDOW_P (f))
7115 int old_dy = w->vscroll;
7117 w->vscroll = - (NILP (pixels_p)
7118 ? FRAME_LINE_HEIGHT (f) * XFLOATINT (vscroll)
7119 : XFLOATINT (vscroll));
7120 w->vscroll = min (w->vscroll, 0);
7122 if (w->vscroll != old_dy)
7124 /* Adjust glyph matrix of the frame if the virtual display
7125 area becomes larger than before. */
7126 if (w->vscroll < 0 && w->vscroll < old_dy)
7127 adjust_frame_glyphs (f);
7129 /* Prevent redisplay shortcuts. */
7130 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
7134 return Fwindow_vscroll (window, pixels_p);
7138 /* Call FN for all leaf windows on frame F. FN is called with the
7139 first argument being a pointer to the leaf window, and with
7140 additional argument USER_DATA. Stops when FN returns 0. */
7142 static void
7143 foreach_window (struct frame *f, int (*fn) (struct window *, void *),
7144 void *user_data)
7146 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
7147 if (WINDOWP (FRAME_ROOT_WINDOW (f)))
7148 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
7152 /* Helper function for foreach_window. Call FN for all leaf windows
7153 reachable from W. FN is called with the first argument being a
7154 pointer to the leaf window, and with additional argument USER_DATA.
7155 Stop when FN returns 0. Value is 0 if stopped by FN. */
7157 static int
7158 foreach_window_1 (struct window *w, int (*fn) (struct window *, void *), void *user_data)
7160 int cont;
7162 for (cont = 1; w && cont;)
7164 if (WINDOWP (w->contents))
7165 cont = foreach_window_1 (XWINDOW (w->contents), fn, user_data);
7166 else
7167 cont = fn (w, user_data);
7169 w = NILP (w->next) ? 0 : XWINDOW (w->next);
7172 return cont;
7175 /***********************************************************************
7176 Initialization
7177 ***********************************************************************/
7179 /* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2
7180 describe the same state of affairs. This is used by Fequal.
7182 IGNORE_POSITIONS means ignore non-matching scroll positions
7183 and the like.
7185 This ignores a couple of things like the dedication status of
7186 window, combination_limit and the like. This might have to be
7187 fixed. */
7189 bool
7190 compare_window_configurations (Lisp_Object configuration1,
7191 Lisp_Object configuration2,
7192 bool ignore_positions)
7194 register struct save_window_data *d1, *d2;
7195 struct Lisp_Vector *sws1, *sws2;
7196 ptrdiff_t i;
7198 CHECK_WINDOW_CONFIGURATION (configuration1);
7199 CHECK_WINDOW_CONFIGURATION (configuration2);
7201 d1 = (struct save_window_data *) XVECTOR (configuration1);
7202 d2 = (struct save_window_data *) XVECTOR (configuration2);
7203 sws1 = XVECTOR (d1->saved_windows);
7204 sws2 = XVECTOR (d2->saved_windows);
7206 /* Frame settings must match. */
7207 if (d1->frame_cols != d2->frame_cols
7208 || d1->frame_lines != d2->frame_lines
7209 || d1->frame_menu_bar_lines != d2->frame_menu_bar_lines
7210 || !EQ (d1->selected_frame, d2->selected_frame)
7211 || !EQ (d1->current_buffer, d2->current_buffer)
7212 || (!ignore_positions
7213 && (!EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window)
7214 || !EQ (d1->minibuf_selected_window, d2->minibuf_selected_window)))
7215 || !EQ (d1->focus_frame, d2->focus_frame)
7216 /* Verify that the two configurations have the same number of windows. */
7217 || sws1->header.size != sws2->header.size)
7218 return 0;
7220 for (i = 0; i < sws1->header.size; i++)
7222 struct saved_window *sw1, *sw2;
7224 sw1 = SAVED_WINDOW_N (sws1, i);
7225 sw2 = SAVED_WINDOW_N (sws2, i);
7227 if (
7228 /* The "current" windows in the two configurations must
7229 correspond to each other. */
7230 EQ (d1->current_window, sw1->window)
7231 != EQ (d2->current_window, sw2->window)
7232 /* Windows' buffers must match. */
7233 || !EQ (sw1->buffer, sw2->buffer)
7234 || !EQ (sw1->pixel_left, sw2->pixel_left)
7235 || !EQ (sw1->pixel_top, sw2->pixel_top)
7236 || !EQ (sw1->pixel_height, sw2->pixel_height)
7237 || !EQ (sw1->pixel_width, sw2->pixel_width)
7238 || !EQ (sw1->left_col, sw2->left_col)
7239 || !EQ (sw1->top_line, sw2->top_line)
7240 || !EQ (sw1->total_cols, sw2->total_cols)
7241 || !EQ (sw1->total_lines, sw2->total_lines)
7242 || !EQ (sw1->display_table, sw2->display_table)
7243 /* The next two disjuncts check the window structure for
7244 equality. */
7245 || !EQ (sw1->parent, sw2->parent)
7246 || !EQ (sw1->prev, sw2->prev)
7247 || (!ignore_positions
7248 && (!EQ (sw1->hscroll, sw2->hscroll)
7249 || !EQ (sw1->min_hscroll, sw2->min_hscroll)
7250 || !EQ (sw1->start_at_line_beg, sw2->start_at_line_beg)
7251 || NILP (Fequal (sw1->start, sw2->start))
7252 || NILP (Fequal (sw1->pointm, sw2->pointm))))
7253 || !EQ (sw1->left_margin_cols, sw2->left_margin_cols)
7254 || !EQ (sw1->right_margin_cols, sw2->right_margin_cols)
7255 || !EQ (sw1->left_fringe_width, sw2->left_fringe_width)
7256 || !EQ (sw1->right_fringe_width, sw2->right_fringe_width)
7257 || !EQ (sw1->fringes_outside_margins, sw2->fringes_outside_margins)
7258 || !EQ (sw1->scroll_bar_width, sw2->scroll_bar_width)
7259 || !EQ (sw1->scroll_bar_height, sw2->scroll_bar_height)
7260 || !EQ (sw1->vertical_scroll_bar_type, sw2->vertical_scroll_bar_type)
7261 || !EQ (sw1->horizontal_scroll_bar_type, sw2->horizontal_scroll_bar_type))
7262 return 0;
7265 return 1;
7268 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
7269 Scompare_window_configurations, 2, 2, 0,
7270 doc: /* Compare two window configurations as regards the structure of windows.
7271 This function ignores details such as the values of point
7272 and scrolling positions. */)
7273 (Lisp_Object x, Lisp_Object y)
7275 if (compare_window_configurations (x, y, 1))
7276 return Qt;
7277 return Qnil;
7280 void
7281 init_window_once (void)
7283 struct frame *f = make_initial_frame ();
7284 XSETFRAME (selected_frame, f);
7285 Vterminal_frame = selected_frame;
7286 minibuf_window = f->minibuffer_window;
7287 selected_window = f->selected_window;
7290 void
7291 init_window (void)
7293 Vwindow_list = Qnil;
7296 void
7297 syms_of_window (void)
7299 DEFSYM (Qscroll_up, "scroll-up");
7300 DEFSYM (Qscroll_down, "scroll-down");
7301 DEFSYM (Qscroll_command, "scroll-command");
7303 Fput (Qscroll_up, Qscroll_command, Qt);
7304 Fput (Qscroll_down, Qscroll_command, Qt);
7306 DEFSYM (Qwindow_configuration_change_hook, "window-configuration-change-hook");
7307 DEFSYM (Qwindowp, "windowp");
7308 DEFSYM (Qwindow_configuration_p, "window-configuration-p");
7309 DEFSYM (Qwindow_live_p, "window-live-p");
7310 DEFSYM (Qwindow_valid_p, "window-valid-p");
7311 DEFSYM (Qwindow_deletable_p, "window-deletable-p");
7312 DEFSYM (Qdelete_window, "delete-window");
7313 DEFSYM (Qwindow_resize_root_window, "window--resize-root-window");
7314 DEFSYM (Qwindow_resize_root_window_vertically, "window--resize-root-window-vertically");
7315 DEFSYM (Qwindow_sanitize_window_sizes, "window--sanitize-window-sizes");
7316 DEFSYM (Qwindow_pixel_to_total, "window--pixel-to-total");
7317 DEFSYM (Qsafe, "safe");
7318 DEFSYM (Qdisplay_buffer, "display-buffer");
7319 DEFSYM (Qreplace_buffer_in_windows, "replace-buffer-in-windows");
7320 DEFSYM (Qrecord_window_buffer, "record-window-buffer");
7321 DEFSYM (Qget_mru_window, "get-mru-window");
7322 DEFSYM (Qwindow_size, "window-size");
7323 DEFSYM (Qtemp_buffer_show_hook, "temp-buffer-show-hook");
7324 DEFSYM (Qabove, "above");
7325 DEFSYM (Qbelow, "below");
7326 DEFSYM (Qclone_of, "clone-of");
7327 DEFSYM (Qfloor, "floor");
7328 DEFSYM (Qceiling, "ceiling");
7330 staticpro (&Vwindow_list);
7332 minibuf_selected_window = Qnil;
7333 staticpro (&minibuf_selected_window);
7335 window_scroll_pixel_based_preserve_x = -1;
7336 window_scroll_pixel_based_preserve_y = -1;
7337 window_scroll_preserve_hpos = -1;
7338 window_scroll_preserve_vpos = -1;
7340 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function,
7341 doc: /* Non-nil means call as function to display a help buffer.
7342 The function is called with one argument, the buffer to be displayed.
7343 Used by `with-output-to-temp-buffer'.
7344 If this function is used, then it must do the entire job of showing
7345 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
7346 Vtemp_buffer_show_function = Qnil;
7348 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window,
7349 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
7350 Vminibuf_scroll_window = Qnil;
7352 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows,
7353 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
7354 If the minibuffer is active, the `minibuffer-scroll-window' mode line
7355 is displayed in the `mode-line' face. */);
7356 mode_line_in_non_selected_windows = true;
7358 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer,
7359 doc: /* If this is a live buffer, \\[scroll-other-window] should scroll its window. */);
7360 Vother_window_scroll_buffer = Qnil;
7362 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p,
7363 doc: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
7364 auto_window_vscroll_p = true;
7366 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines,
7367 doc: /* Number of lines of continuity when scrolling by screenfuls. */);
7368 next_screen_context_lines = 2;
7370 DEFVAR_LISP ("scroll-preserve-screen-position",
7371 Vscroll_preserve_screen_position,
7372 doc: /* Controls if scroll commands move point to keep its screen position unchanged.
7373 A value of nil means point does not keep its screen position except
7374 at the scroll margin or window boundary respectively.
7375 A value of t means point keeps its screen position if the scroll
7376 command moved it vertically out of the window, e.g. when scrolling
7377 by full screens.
7378 Any other value means point always keeps its screen position.
7379 Scroll commands should have the `scroll-command' property
7380 on their symbols to be controlled by this variable. */);
7381 Vscroll_preserve_screen_position = Qnil;
7383 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type,
7384 doc: /* Type of marker to use for `window-point'. */);
7385 Vwindow_point_insertion_type = Qnil;
7386 DEFSYM (Qwindow_point_insertion_type, "window_point_insertion_type");
7388 DEFVAR_LISP ("window-configuration-change-hook",
7389 Vwindow_configuration_change_hook,
7390 doc: /* Functions to call when window configuration changes.
7391 The buffer-local part is run once per window, with the relevant window
7392 selected; while the global part is run only once for the modified frame,
7393 with the relevant frame selected. */);
7394 Vwindow_configuration_change_hook = Qnil;
7396 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay,
7397 doc: /* Non-nil means `recenter' redraws entire frame.
7398 If this option is non-nil, then the `recenter' command with a nil
7399 argument will redraw the entire frame; the special value `tty' causes
7400 the frame to be redrawn only if it is a tty frame. */);
7401 Vrecenter_redisplay = Qtty;
7403 DEFVAR_LISP ("window-combination-resize", Vwindow_combination_resize,
7404 doc: /* If t, resize window combinations proportionally.
7405 If this variable is nil, splitting a window gets the entire screen space
7406 for displaying the new window from the window to split. Deleting and
7407 resizing a window preferably resizes one adjacent window only.
7409 If this variable is t, splitting a window tries to get the space
7410 proportionally from all windows in the same combination. This also
7411 allows to split a window that is otherwise too small or of fixed size.
7412 Resizing and deleting a window proportionally resize all windows in the
7413 same combination.
7415 Other values are reserved for future use.
7417 This variable takes no effect if the variable `window-combination-limit' is
7418 non-nil. */);
7419 Vwindow_combination_resize = Qnil;
7421 DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit,
7422 doc: /* If non-nil, splitting a window makes a new parent window.
7423 The following values are recognized:
7425 nil means splitting a window will create a new parent window only if the
7426 window has no parent window or the window shall become part of a
7427 combination orthogonal to the one it is part of.
7429 `window-size' means that splitting a window for displaying a buffer
7430 makes a new parent window provided `display-buffer' is supposed to
7431 explicitly set the window's size due to the presence of a
7432 `window-height' or `window-width' entry in the alist used by
7433 `display-buffer'. Otherwise, this value is handled like nil.
7435 `temp-buffer' means that splitting a window for displaying a temporary
7436 buffer always makes a new parent window. Otherwise, this value is
7437 handled like nil.
7439 `display-buffer' means that splitting a window for displaying a buffer
7440 always makes a new parent window. Since temporary buffers are
7441 displayed by the function `display-buffer', this value is stronger
7442 than `temp-buffer'. Splitting a window for other purpose makes a
7443 new parent window only if needed.
7445 t means that splitting a window always creates a new parent window. If
7446 all splits behave this way, each frame's window tree is a binary
7447 tree and every window but the frame's root window has exactly one
7448 sibling.
7450 Other values are reserved for future use. */);
7451 Vwindow_combination_limit = Qwindow_size;
7453 DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters,
7454 doc: /* Alist of persistent window parameters.
7455 This alist specifies which window parameters shall get saved by
7456 `current-window-configuration' and `window-state-get' and subsequently
7457 restored to their previous values by `set-window-configuration' and
7458 `window-state-put'.
7460 The car of each entry of this alist is the symbol specifying the
7461 parameter. The cdr is one of the following:
7463 nil means the parameter is neither saved by `window-state-get' nor by
7464 `current-window-configuration'.
7466 t means the parameter is saved by `current-window-configuration' and,
7467 provided its WRITABLE argument is nil, by `window-state-get'.
7469 The symbol `writable' means the parameter is saved unconditionally by
7470 both `current-window-configuration' and `window-state-get'. Do not use
7471 this value for parameters without read syntax (like windows or frames).
7473 Parameters not saved by `current-window-configuration' or
7474 `window-state-get' are left alone by `set-window-configuration'
7475 respectively are not installed by `window-state-put'. */);
7476 Vwindow_persistent_parameters = list1 (Fcons (Qclone_of, Qt));
7478 DEFVAR_BOOL ("window-resize-pixelwise", window_resize_pixelwise,
7479 doc: /* Non-nil means resize windows pixelwise.
7480 This currently affects the functions: `split-window', `maximize-window',
7481 `minimize-window', `fit-window-to-buffer' and `fit-frame-to-buffer', and
7482 all functions that symmetrically resize a parent window.
7484 Note that when a frame's pixel size is not a multiple of the
7485 frame's character size, at least one window may get resized
7486 pixelwise even if this option is nil. */);
7487 window_resize_pixelwise = false;
7489 DEFVAR_BOOL ("fast-but-imprecise-scrolling",
7490 Vfast_but_imprecise_scrolling,
7491 doc: /* When non-nil, accelerate scrolling operations.
7492 This comes into play when scrolling rapidly over previously
7493 unfontified buffer regions. Only those portions of the buffer which
7494 are actually going to be displayed get fontified.
7496 Note that this optimization can cause the portion of the buffer
7497 displayed after a scrolling operation to be somewhat inaccurate. */);
7498 Vfast_but_imprecise_scrolling = false;
7500 defsubr (&Sselected_window);
7501 defsubr (&Sminibuffer_window);
7502 defsubr (&Swindow_minibuffer_p);
7503 defsubr (&Swindowp);
7504 defsubr (&Swindow_valid_p);
7505 defsubr (&Swindow_live_p);
7506 defsubr (&Swindow_frame);
7507 defsubr (&Sframe_root_window);
7508 defsubr (&Sframe_first_window);
7509 defsubr (&Sframe_selected_window);
7510 defsubr (&Sset_frame_selected_window);
7511 defsubr (&Spos_visible_in_window_p);
7512 defsubr (&Swindow_line_height);
7513 defsubr (&Swindow_buffer);
7514 defsubr (&Swindow_parent);
7515 defsubr (&Swindow_top_child);
7516 defsubr (&Swindow_left_child);
7517 defsubr (&Swindow_next_sibling);
7518 defsubr (&Swindow_prev_sibling);
7519 defsubr (&Swindow_combination_limit);
7520 defsubr (&Sset_window_combination_limit);
7521 defsubr (&Swindow_use_time);
7522 defsubr (&Swindow_pixel_width);
7523 defsubr (&Swindow_pixel_height);
7524 defsubr (&Swindow_total_width);
7525 defsubr (&Swindow_total_height);
7526 defsubr (&Swindow_normal_size);
7527 defsubr (&Swindow_new_pixel);
7528 defsubr (&Swindow_new_total);
7529 defsubr (&Swindow_new_normal);
7530 defsubr (&Swindow_pixel_left);
7531 defsubr (&Swindow_pixel_top);
7532 defsubr (&Swindow_left_column);
7533 defsubr (&Swindow_top_line);
7534 defsubr (&Sset_window_new_pixel);
7535 defsubr (&Sset_window_new_total);
7536 defsubr (&Sset_window_new_normal);
7537 defsubr (&Swindow_resize_apply);
7538 defsubr (&Swindow_resize_apply_total);
7539 defsubr (&Swindow_body_height);
7540 defsubr (&Swindow_body_width);
7541 defsubr (&Swindow_hscroll);
7542 defsubr (&Sset_window_hscroll);
7543 defsubr (&Swindow_redisplay_end_trigger);
7544 defsubr (&Sset_window_redisplay_end_trigger);
7545 defsubr (&Swindow_edges);
7546 defsubr (&Swindow_pixel_edges);
7547 defsubr (&Swindow_absolute_pixel_edges);
7548 defsubr (&Swindow_mode_line_height);
7549 defsubr (&Swindow_header_line_height);
7550 defsubr (&Swindow_right_divider_width);
7551 defsubr (&Swindow_bottom_divider_width);
7552 defsubr (&Swindow_scroll_bar_width);
7553 defsubr (&Swindow_scroll_bar_height);
7554 defsubr (&Swindow_inside_edges);
7555 defsubr (&Swindow_inside_pixel_edges);
7556 defsubr (&Swindow_inside_absolute_pixel_edges);
7557 defsubr (&Scoordinates_in_window_p);
7558 defsubr (&Swindow_at);
7559 defsubr (&Swindow_point);
7560 defsubr (&Swindow_old_point);
7561 defsubr (&Swindow_start);
7562 defsubr (&Swindow_end);
7563 defsubr (&Sset_window_point);
7564 defsubr (&Sset_window_start);
7565 defsubr (&Swindow_dedicated_p);
7566 defsubr (&Sset_window_dedicated_p);
7567 defsubr (&Swindow_display_table);
7568 defsubr (&Sset_window_display_table);
7569 defsubr (&Snext_window);
7570 defsubr (&Sprevious_window);
7571 defsubr (&Swindow__sanitize_window_sizes);
7572 defsubr (&Sget_buffer_window);
7573 defsubr (&Sdelete_other_windows_internal);
7574 defsubr (&Sdelete_window_internal);
7575 defsubr (&Sresize_mini_window_internal);
7576 defsubr (&Sset_window_buffer);
7577 defsubr (&Srun_window_configuration_change_hook);
7578 defsubr (&Srun_window_scroll_functions);
7579 defsubr (&Sselect_window);
7580 defsubr (&Sforce_window_update);
7581 defsubr (&Ssplit_window_internal);
7582 defsubr (&Sscroll_up);
7583 defsubr (&Sscroll_down);
7584 defsubr (&Sscroll_left);
7585 defsubr (&Sscroll_right);
7586 defsubr (&Sother_window_for_scrolling);
7587 defsubr (&Sscroll_other_window);
7588 defsubr (&Sminibuffer_selected_window);
7589 defsubr (&Srecenter);
7590 defsubr (&Swindow_text_width);
7591 defsubr (&Swindow_text_height);
7592 defsubr (&Smove_to_window_line);
7593 defsubr (&Swindow_configuration_p);
7594 defsubr (&Swindow_configuration_frame);
7595 defsubr (&Sset_window_configuration);
7596 defsubr (&Scurrent_window_configuration);
7597 defsubr (&Sset_window_margins);
7598 defsubr (&Swindow_margins);
7599 defsubr (&Sset_window_fringes);
7600 defsubr (&Swindow_fringes);
7601 defsubr (&Sset_window_scroll_bars);
7602 defsubr (&Swindow_scroll_bars);
7603 defsubr (&Swindow_vscroll);
7604 defsubr (&Sset_window_vscroll);
7605 defsubr (&Scompare_window_configurations);
7606 defsubr (&Swindow_list);
7607 defsubr (&Swindow_list_1);
7608 defsubr (&Swindow_prev_buffers);
7609 defsubr (&Sset_window_prev_buffers);
7610 defsubr (&Swindow_next_buffers);
7611 defsubr (&Sset_window_next_buffers);
7612 defsubr (&Swindow_parameters);
7613 defsubr (&Swindow_parameter);
7614 defsubr (&Sset_window_parameter);
7617 void
7618 keys_of_window (void)
7620 initial_define_key (control_x_map, '<', "scroll-left");
7621 initial_define_key (control_x_map, '>', "scroll-right");
7623 initial_define_key (global_map, Ctl ('V'), "scroll-up-command");
7624 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
7625 initial_define_key (meta_map, 'v', "scroll-down-command");