* src/window.c (select_window): Don't record_buffer while the invariant is
[emacs.git] / src / window.c
blob2ddf742be993ba6df18faca26115c5a93053161f
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985-1987, 1993-1998, 2000-2013 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 #define WINDOW_INLINE EXTERN_INLINE
25 #include <stdio.h>
27 #include "lisp.h"
28 #include "character.h"
29 #include "buffer.h"
30 #include "keyboard.h"
31 #include "keymap.h"
32 #include "frame.h"
33 #include "window.h"
34 #include "commands.h"
35 #include "indent.h"
36 #include "termchar.h"
37 #include "disptab.h"
38 #include "dispextern.h"
39 #include "blockinput.h"
40 #include "intervals.h"
41 #include "termhooks.h" /* For FRAME_TERMINAL. */
43 #ifdef HAVE_X_WINDOWS
44 #include "xterm.h"
45 #endif /* HAVE_X_WINDOWS */
46 #ifdef HAVE_NTGUI
47 #include "w32term.h"
48 #endif
49 #ifdef MSDOS
50 #include "msdos.h"
51 #endif
52 #ifdef HAVE_NS
53 #include "nsterm.h"
54 #endif
56 Lisp_Object Qwindowp, Qwindow_live_p;
57 static Lisp_Object Qwindow_valid_p;
58 static Lisp_Object Qwindow_configuration_p, Qrecord_window_buffer;
59 static Lisp_Object Qwindow_deletable_p, Qdelete_window, Qdisplay_buffer;
60 static Lisp_Object Qreplace_buffer_in_windows, Qget_mru_window;
61 static Lisp_Object Qwindow_resize_root_window, Qwindow_resize_root_window_vertically;
62 static Lisp_Object Qscroll_up, Qscroll_down, Qscroll_command;
63 static Lisp_Object Qsafe, Qabove, Qbelow, Qwindow_size, Qclone_of;
65 static int displayed_window_lines (struct window *);
66 static int count_windows (struct window *);
67 static int get_leaf_windows (struct window *, struct window **, int);
68 static void window_scroll (Lisp_Object, EMACS_INT, int, int);
69 static void window_scroll_pixel_based (Lisp_Object, int, int, int);
70 static void window_scroll_line_based (Lisp_Object, int, int, int);
71 static int freeze_window_start (struct window *, void *);
72 static Lisp_Object window_list (void);
73 static int add_window_to_list (struct window *, void *);
74 static int candidate_window_p (Lisp_Object, Lisp_Object, Lisp_Object,
75 Lisp_Object);
76 static Lisp_Object next_window (Lisp_Object, Lisp_Object,
77 Lisp_Object, int);
78 static void decode_next_window_args (Lisp_Object *, Lisp_Object *,
79 Lisp_Object *);
80 static void foreach_window (struct frame *,
81 int (* fn) (struct window *, void *),
82 void *);
83 static int foreach_window_1 (struct window *,
84 int (* fn) (struct window *, void *),
85 void *);
86 static Lisp_Object window_list_1 (Lisp_Object, Lisp_Object, Lisp_Object);
87 static int window_resize_check (struct window *, bool);
88 static void window_resize_apply (struct window *, bool);
89 static Lisp_Object select_window (Lisp_Object, Lisp_Object, int);
90 static void select_window_1 (Lisp_Object, bool);
92 /* This is the window in which the terminal's cursor should
93 be left when nothing is being done with it. This must
94 always be a leaf window, and its buffer is selected by
95 the top level editing loop at the end of each command.
97 This value is always the same as
98 FRAME_SELECTED_WINDOW (selected_frame). */
99 Lisp_Object selected_window;
101 /* A list of all windows for use by next_window and Fwindow_list.
102 Functions creating or deleting windows should invalidate this cache
103 by setting it to nil. */
104 Lisp_Object Vwindow_list;
106 /* The mini-buffer window of the selected frame.
107 Note that you cannot test for mini-bufferness of an arbitrary window
108 by comparing against this; but you can test for mini-bufferness of
109 the selected window. */
110 Lisp_Object minibuf_window;
112 /* Non-nil means it is the window whose mode line should be
113 shown as the selected window when the minibuffer is selected. */
114 Lisp_Object minibuf_selected_window;
116 /* Hook run at end of temp_output_buffer_show. */
117 static Lisp_Object Qtemp_buffer_show_hook;
119 /* Nonzero after init_window_once has finished. */
120 static int window_initialized;
122 /* Hook to run when window config changes. */
123 static Lisp_Object Qwindow_configuration_change_hook;
125 /* Used by the function window_scroll_pixel_based */
126 static int window_scroll_pixel_based_preserve_x;
127 static int window_scroll_pixel_based_preserve_y;
129 /* Same for window_scroll_line_based. */
130 static EMACS_INT window_scroll_preserve_hpos;
131 static EMACS_INT window_scroll_preserve_vpos;
133 /* These setters are used only in this file, so they can be private. */
134 static void
135 wset_combination_limit (struct window *w, Lisp_Object val)
137 w->combination_limit = val;
139 static void
140 wset_dedicated (struct window *w, Lisp_Object val)
142 w->dedicated = val;
144 static void
145 wset_display_table (struct window *w, Lisp_Object val)
147 w->display_table = val;
149 static void
150 wset_left_fringe_width (struct window *w, Lisp_Object val)
152 w->left_fringe_width = val;
154 static void
155 wset_left_margin_cols (struct window *w, Lisp_Object val)
157 w->left_margin_cols = val;
159 static void
160 wset_new_normal (struct window *w, Lisp_Object val)
162 w->new_normal = val;
164 static void
165 wset_new_total (struct window *w, Lisp_Object val)
167 w->new_total = val;
169 static void
170 wset_normal_cols (struct window *w, Lisp_Object val)
172 w->normal_cols = val;
174 static void
175 wset_normal_lines (struct window *w, Lisp_Object val)
177 w->normal_lines = val;
179 static void
180 wset_parent (struct window *w, Lisp_Object val)
182 w->parent = val;
184 static void
185 wset_pointm (struct window *w, Lisp_Object val)
187 w->pointm = val;
189 static void
190 wset_right_fringe_width (struct window *w, Lisp_Object val)
192 w->right_fringe_width = val;
194 static void
195 wset_right_margin_cols (struct window *w, Lisp_Object val)
197 w->right_margin_cols = val;
199 static void
200 wset_scroll_bar_width (struct window *w, Lisp_Object val)
202 w->scroll_bar_width = val;
204 static void
205 wset_start (struct window *w, Lisp_Object val)
207 w->start = val;
209 static void
210 wset_temslot (struct window *w, Lisp_Object val)
212 w->temslot = val;
214 static void
215 wset_vertical_scroll_bar_type (struct window *w, Lisp_Object val)
217 w->vertical_scroll_bar_type = val;
219 static void
220 wset_window_parameters (struct window *w, Lisp_Object val)
222 w->window_parameters = val;
224 static void
225 wset_combination (struct window *w, bool horflag, Lisp_Object val)
227 /* Since leaf windows never becomes non-leaf, there should
228 be no buffer and markers in start and pointm fields of W. */
229 eassert (!BUFFERP (w->contents) && NILP (w->start) && NILP (w->pointm));
230 w->contents = val;
231 /* When an internal window is deleted and VAL is nil, HORFLAG
232 is meaningless. */
233 if (!NILP (val))
234 w->horizontal = horflag;
237 struct window *
238 decode_live_window (register Lisp_Object window)
240 if (NILP (window))
241 return XWINDOW (selected_window);
243 CHECK_LIVE_WINDOW (window);
244 return XWINDOW (window);
247 struct window *
248 decode_any_window (register Lisp_Object window)
250 struct window *w;
252 if (NILP (window))
253 return XWINDOW (selected_window);
255 CHECK_WINDOW (window);
256 w = XWINDOW (window);
257 return w;
260 static struct window *
261 decode_valid_window (register Lisp_Object window)
263 struct window *w;
265 if (NILP (window))
266 return XWINDOW (selected_window);
268 CHECK_VALID_WINDOW (window);
269 w = XWINDOW (window);
270 return w;
273 /* Called when W's buffer slot is changed. ARG -1 means that W is about to
274 cease its buffer, and 1 means that W is about to set up the new one. */
276 static void
277 adjust_window_count (struct window *w, int arg)
279 eassert (eabs (arg) == 1);
280 if (BUFFERP (w->contents))
282 struct buffer *b = XBUFFER (w->contents);
284 if (b->base_buffer)
285 b = b->base_buffer;
286 b->window_count += arg;
287 eassert (b->window_count >= 0);
288 /* These should be recalculated by redisplay code. */
289 w->window_end_valid = 0;
290 w->base_line_pos = 0;
294 /* Set W's buffer slot to VAL and recompute number
295 of windows showing VAL if it is a buffer. */
297 void
298 wset_buffer (struct window *w, Lisp_Object val)
300 adjust_window_count (w, -1);
301 if (BUFFERP (val))
302 /* Make sure that we do not assign the buffer
303 to an internal window. */
304 eassert (MARKERP (w->start) && MARKERP (w->pointm));
305 w->contents = val;
306 adjust_window_count (w, 1);
309 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
310 doc: /* Return t if OBJECT is a window and nil otherwise. */)
311 (Lisp_Object object)
313 return WINDOWP (object) ? Qt : Qnil;
316 DEFUN ("window-valid-p", Fwindow_valid_p, Swindow_valid_p, 1, 1, 0,
317 doc: /* Return t if OBJECT is a valid window and nil otherwise.
318 A valid window is either a window that displays a buffer or an internal
319 window. Deleted windows are not live. */)
320 (Lisp_Object object)
322 return WINDOW_VALID_P (object) ? Qt : Qnil;
325 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
326 doc: /* Return t if OBJECT is a live window and nil otherwise.
327 A live window is a window that displays a buffer.
328 Internal windows and deleted windows are not live. */)
329 (Lisp_Object object)
331 return WINDOW_LIVE_P (object) ? Qt : Qnil;
334 /* Frames and windows. */
335 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 0, 1, 0,
336 doc: /* Return the frame that window WINDOW is on.
337 WINDOW must be a valid window and defaults to the selected one. */)
338 (Lisp_Object window)
340 return decode_valid_window (window)->frame;
343 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
344 doc: /* Return the root window of FRAME-OR-WINDOW.
345 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
346 With a frame argument, return that frame's root window.
347 With a window argument, return the root window of that window's frame. */)
348 (Lisp_Object frame_or_window)
350 Lisp_Object window;
352 if (NILP (frame_or_window))
353 window = SELECTED_FRAME ()->root_window;
354 else if (WINDOW_VALID_P (frame_or_window))
355 window = XFRAME (XWINDOW (frame_or_window)->frame)->root_window;
356 else
358 CHECK_LIVE_FRAME (frame_or_window);
359 window = XFRAME (frame_or_window)->root_window;
362 return window;
365 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
366 doc: /* Return the minibuffer window for frame FRAME.
367 If FRAME is omitted or nil, it defaults to the selected frame. */)
368 (Lisp_Object frame)
370 return FRAME_MINIBUF_WINDOW (decode_live_frame (frame));
373 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p,
374 Swindow_minibuffer_p, 0, 1, 0,
375 doc: /* Return non-nil if WINDOW is a minibuffer window.
376 WINDOW must be a valid window and defaults to the selected one. */)
377 (Lisp_Object window)
379 return MINI_WINDOW_P (decode_valid_window (window)) ? Qt : Qnil;
382 /* Don't move this to window.el - this must be a safe routine. */
383 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
384 doc: /* Return the topmost, leftmost live window on FRAME-OR-WINDOW.
385 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
386 Else if FRAME-OR-WINDOW denotes a valid window, return the first window
387 of that window's frame. If FRAME-OR-WINDOW denotes a live frame, return
388 the first window of that frame. */)
389 (Lisp_Object frame_or_window)
391 Lisp_Object window;
393 if (NILP (frame_or_window))
394 window = SELECTED_FRAME ()->root_window;
395 else if (WINDOW_VALID_P (frame_or_window))
396 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->root_window;
397 else
399 CHECK_LIVE_FRAME (frame_or_window);
400 window = XFRAME (frame_or_window)->root_window;
403 while (WINDOWP (XWINDOW (window)->contents))
404 window = XWINDOW (window)->contents;
406 return window;
409 DEFUN ("frame-selected-window", Fframe_selected_window,
410 Sframe_selected_window, 0, 1, 0,
411 doc: /* Return the selected window of FRAME-OR-WINDOW.
412 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
413 Else if FRAME-OR-WINDOW denotes a valid window, return the selected
414 window of that window's frame. If FRAME-OR-WINDOW denotes a live frame,
415 return the selected window of that frame. */)
416 (Lisp_Object frame_or_window)
418 Lisp_Object window;
420 if (NILP (frame_or_window))
421 window = SELECTED_FRAME ()->selected_window;
422 else if (WINDOW_VALID_P (frame_or_window))
423 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->selected_window;
424 else
426 CHECK_LIVE_FRAME (frame_or_window);
427 window = XFRAME (frame_or_window)->selected_window;
430 return window;
433 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
434 Sset_frame_selected_window, 2, 3, 0,
435 doc: /* Set selected window of FRAME to WINDOW.
436 FRAME must be a live frame and defaults to the selected one. If FRAME
437 is the selected frame, this makes WINDOW the selected window. Optional
438 argument NORECORD non-nil means to neither change the order of recently
439 selected windows nor the buffer list. WINDOW must denote a live window.
440 Return WINDOW. */)
441 (Lisp_Object frame, Lisp_Object window, Lisp_Object norecord)
443 if (NILP (frame))
444 frame = selected_frame;
446 CHECK_LIVE_FRAME (frame);
447 CHECK_LIVE_WINDOW (window);
449 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
450 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
452 if (EQ (frame, selected_frame))
453 return Fselect_window (window, norecord);
454 else
456 fset_selected_window (XFRAME (frame), window);
457 return window;
461 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
462 doc: /* Return the selected window.
463 The selected window is the window in which the standard cursor for
464 selected windows appears and to which many commands apply. */)
465 (void)
467 return selected_window;
470 int window_select_count;
472 /* If select_window is called with inhibit_point_swap non-zero it will
473 not store point of the old selected window's buffer back into that
474 window's pointm slot. This is needed by Fset_window_configuration to
475 avoid that the display routine is called with selected_window set to
476 Qnil causing a subsequent crash. */
477 static Lisp_Object
478 select_window (Lisp_Object window, Lisp_Object norecord, int inhibit_point_swap)
480 register struct window *w;
481 struct frame *sf;
483 CHECK_LIVE_WINDOW (window);
485 w = XWINDOW (window);
486 w->frozen_window_start_p = 0;
488 /* Make the selected window's buffer current. */
489 Fset_buffer (w->contents);
491 if (EQ (window, selected_window) && !inhibit_point_swap)
492 return window;
494 sf = SELECTED_FRAME ();
495 if (XFRAME (WINDOW_FRAME (w)) != sf)
497 fset_selected_window (XFRAME (WINDOW_FRAME (w)), window);
498 /* Use this rather than Fhandle_switch_frame
499 so that FRAME_FOCUS_FRAME is moved appropriately as we
500 move around in the state where a minibuffer in a separate
501 frame is active. */
502 Fselect_frame (WINDOW_FRAME (w), norecord);
503 /* Fselect_frame called us back so we've done all the work already. */
504 eassert (EQ (window, selected_window));
505 return window;
507 else
508 fset_selected_window (sf, window);
510 select_window_1 (window, inhibit_point_swap);
512 /* record_buffer can run QUIT, so make sure it is run only after we have
513 re-established the invariant between selected_window and selected_frame,
514 otherwise the temporary broken invariant might "escape" (bug#14161). */
515 if (NILP (norecord))
517 w->use_time = ++window_select_count;
518 record_buffer (w->contents);
521 bset_last_selected_window (XBUFFER (w->contents), window);
522 windows_or_buffers_changed++;
523 return window;
526 /* Select window with a minimum of fuss, i.e. don't record the change anywhere
527 (not even for redisplay's benefit), and assume that the window's frame is
528 already selected. */
529 static void
530 select_window_1 (Lisp_Object window, bool inhibit_point_swap)
532 /* Store the old selected window's buffer's point in pointm of the old
533 selected window. It belongs to that window, and when the window is
534 not selected, must be in the window. */
535 if (!inhibit_point_swap)
537 struct window *ow = XWINDOW (selected_window);
538 if (BUFFERP (ow->contents))
539 set_marker_both (ow->pointm, ow->contents,
540 BUF_PT (XBUFFER (ow->contents)),
541 BUF_PT_BYTE (XBUFFER (ow->contents)));
544 selected_window = window;
546 /* Go to the point recorded in the window.
547 This is important when the buffer is in more
548 than one window. It also matters when
549 redisplay_window has altered point after scrolling,
550 because it makes the change only in the window. */
552 register ptrdiff_t new_point = marker_position (XWINDOW (window)->pointm);
553 if (new_point < BEGV)
554 SET_PT (BEGV);
555 else if (new_point > ZV)
556 SET_PT (ZV);
557 else
558 SET_PT (new_point);
562 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
563 doc: /* Select WINDOW which must be a live window.
564 Also make WINDOW's frame the selected frame and WINDOW that frame's
565 selected window. In addition, make WINDOW's buffer current and set that
566 buffer's value of `point' to the value of WINDOW's `window-point'.
567 Return WINDOW.
569 Optional second arg NORECORD non-nil means do not put this buffer at the
570 front of the buffer list and do not make this window the most recently
571 selected one.
573 Note that the main editor command loop sets the current buffer to the
574 buffer of the selected window before each command. */)
575 (register Lisp_Object window, Lisp_Object norecord)
577 return select_window (window, norecord, 0);
580 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
581 doc: /* Return the buffer displayed in window WINDOW.
582 If WINDOW is omitted or nil, it defaults to the selected window.
583 Return nil for an internal window or a deleted window. */)
584 (Lisp_Object window)
586 struct window *w = decode_any_window (window);
587 return WINDOW_LEAF_P (w) ? w->contents : Qnil;
590 DEFUN ("window-parent", Fwindow_parent, Swindow_parent, 0, 1, 0,
591 doc: /* Return the parent window of window WINDOW.
592 WINDOW must be a valid window and defaults to the selected one.
593 Return nil for a window with no parent (e.g. a root window). */)
594 (Lisp_Object window)
596 return decode_valid_window (window)->parent;
599 DEFUN ("window-top-child", Fwindow_top_child, Swindow_top_child, 0, 1, 0,
600 doc: /* Return the topmost child window of window WINDOW.
601 WINDOW must be a valid window and defaults to the selected one.
602 Return nil if WINDOW is a live window (live windows have no children).
603 Return nil if WINDOW is an internal window whose children form a
604 horizontal combination. */)
605 (Lisp_Object window)
607 struct window *w = decode_valid_window (window);
608 return WINDOW_VERTICAL_COMBINATION_P (w) ? w->contents : Qnil;
611 DEFUN ("window-left-child", Fwindow_left_child, Swindow_left_child, 0, 1, 0,
612 doc: /* Return the leftmost child window of window WINDOW.
613 WINDOW must be a valid window and defaults to the selected one.
614 Return nil if WINDOW is a live window (live windows have no children).
615 Return nil if WINDOW is an internal window whose children form a
616 vertical combination. */)
617 (Lisp_Object window)
619 struct window *w = decode_valid_window (window);
620 return WINDOW_HORIZONTAL_COMBINATION_P (w) ? w->contents : Qnil;
623 DEFUN ("window-next-sibling", Fwindow_next_sibling, Swindow_next_sibling, 0, 1, 0,
624 doc: /* Return the next sibling window of window WINDOW.
625 WINDOW must be a valid window and defaults to the selected one.
626 Return nil if WINDOW has no next sibling. */)
627 (Lisp_Object window)
629 return decode_valid_window (window)->next;
632 DEFUN ("window-prev-sibling", Fwindow_prev_sibling, Swindow_prev_sibling, 0, 1, 0,
633 doc: /* Return the previous sibling window of window WINDOW.
634 WINDOW must be a valid window and defaults to the selected one.
635 Return nil if WINDOW has no previous sibling. */)
636 (Lisp_Object window)
638 return decode_valid_window (window)->prev;
641 DEFUN ("window-combination-limit", Fwindow_combination_limit, Swindow_combination_limit, 1, 1, 0,
642 doc: /* Return combination limit of window WINDOW.
643 WINDOW must be a valid window used in horizontal or vertical combination.
644 If the return value is nil, child windows of WINDOW can be recombined with
645 WINDOW's siblings. A return value of t means that child windows of
646 WINDOW are never \(re-)combined with WINDOW's siblings. */)
647 (Lisp_Object window)
649 struct window *w;
651 CHECK_VALID_WINDOW (window);
652 w = XWINDOW (window);
653 if (WINDOW_LEAF_P (w))
654 error ("Combination limit is meaningful for internal windows only");
655 return w->combination_limit;
658 DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0,
659 doc: /* Set combination limit of window WINDOW to LIMIT; return LIMIT.
660 WINDOW must be a valid window used in horizontal or vertical combination.
661 If LIMIT is nil, child windows of WINDOW can be recombined with WINDOW's
662 siblings. LIMIT t means that child windows of WINDOW are never
663 \(re-)combined with WINDOW's siblings. Other values are reserved for
664 future use. */)
665 (Lisp_Object window, Lisp_Object limit)
667 struct window *w;
669 CHECK_VALID_WINDOW (window);
670 w = XWINDOW (window);
671 if (WINDOW_LEAF_P (w))
672 error ("Combination limit is meaningful for internal windows only");
673 wset_combination_limit (w, limit);
674 return limit;
677 DEFUN ("window-use-time", Fwindow_use_time, Swindow_use_time, 0, 1, 0,
678 doc: /* Return the use time of window WINDOW.
679 WINDOW must be a live window and defaults to the selected one.
680 The window with the highest use time is the most recently selected
681 one. The window with the lowest use time is the least recently
682 selected one. */)
683 (Lisp_Object window)
685 return make_number (decode_live_window (window)->use_time);
688 DEFUN ("window-total-height", Fwindow_total_height, Swindow_total_height, 0, 1, 0,
689 doc: /* Return the total height, in lines, of window WINDOW.
690 WINDOW must be a valid window and defaults to the selected one.
692 The return value includes the mode line and header line, if any.
693 If WINDOW is an internal window, the total height is the height
694 of the screen areas spanned by its children.
696 On a graphical display, this total height is reported as an
697 integer multiple of the default character height. */)
698 (Lisp_Object window)
700 return make_number (decode_valid_window (window)->total_lines);
703 DEFUN ("window-total-width", Fwindow_total_width, Swindow_total_width, 0, 1, 0,
704 doc: /* Return the total width, in columns, of window WINDOW.
705 WINDOW must be a valid window and defaults to the selected one.
707 The return value includes any vertical dividers or scroll bars
708 belonging to WINDOW. If WINDOW is an internal window, the total width
709 is the width of the screen areas spanned by its children.
711 On a graphical display, this total width is reported as an
712 integer multiple of the default character width. */)
713 (Lisp_Object window)
715 return make_number (decode_valid_window (window)->total_cols);
718 DEFUN ("window-new-total", Fwindow_new_total, Swindow_new_total, 0, 1, 0,
719 doc: /* Return the new total size of window WINDOW.
720 WINDOW must be a valid window and defaults to the selected one. */)
721 (Lisp_Object window)
723 return decode_valid_window (window)->new_total;
726 DEFUN ("window-normal-size", Fwindow_normal_size, Swindow_normal_size, 0, 2, 0,
727 doc: /* Return the normal height of window WINDOW.
728 WINDOW must be a valid window and defaults to the selected one.
729 If HORIZONTAL is non-nil, return the normal width of WINDOW. */)
730 (Lisp_Object window, Lisp_Object horizontal)
732 struct window *w = decode_valid_window (window);
734 return NILP (horizontal) ? w->normal_lines : w->normal_cols;
737 DEFUN ("window-new-normal", Fwindow_new_normal, Swindow_new_normal, 0, 1, 0,
738 doc: /* Return new normal size of window WINDOW.
739 WINDOW must be a valid window and defaults to the selected one. */)
740 (Lisp_Object window)
742 return decode_valid_window (window)->new_normal;
745 DEFUN ("window-left-column", Fwindow_left_column, Swindow_left_column, 0, 1, 0,
746 doc: /* Return left column of window WINDOW.
747 This is the distance, in columns, between the left edge of WINDOW and
748 the left edge of the frame's window area. For instance, the return
749 value is 0 if there is no window to the left of WINDOW.
751 WINDOW must be a valid window and defaults to the selected one. */)
752 (Lisp_Object window)
754 return make_number (decode_valid_window (window)->left_col);
757 DEFUN ("window-top-line", Fwindow_top_line, Swindow_top_line, 0, 1, 0,
758 doc: /* Return top line of window WINDOW.
759 This is the distance, in lines, between the top of WINDOW and the top
760 of the frame's window area. For instance, the return value is 0 if
761 there is no window above WINDOW.
763 WINDOW must be a valid window and defaults to the selected one. */)
764 (Lisp_Object window)
766 return make_number (decode_valid_window (window)->top_line);
769 /* Return the number of lines of W's body. Don't count any mode or
770 header line of W. */
772 static int
773 window_body_lines (struct window *w)
775 int height = w->total_lines;
777 if (!MINI_WINDOW_P (w))
779 if (WINDOW_WANTS_MODELINE_P (w))
780 --height;
781 if (WINDOW_WANTS_HEADER_LINE_P (w))
782 --height;
785 return height;
788 /* Return the number of columns of W's body. Don't count columns
789 occupied by the scroll bar or the vertical bar separating W from its
790 right sibling. On window-systems don't count fringes or display
791 margins either. */
794 window_body_cols (struct window *w)
796 struct frame *f = XFRAME (WINDOW_FRAME (w));
797 int width = w->total_cols;
799 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
800 /* Scroll bars occupy a few columns. */
801 width -= WINDOW_CONFIG_SCROLL_BAR_COLS (w);
802 else if (!FRAME_WINDOW_P (f)
803 && !WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
804 /* The column of `|' characters separating side-by-side windows
805 occupies one column only. */
806 width -= 1;
808 /* Display margins cannot be used for normal text. */
809 width -= WINDOW_LEFT_MARGIN_COLS (w) + WINDOW_RIGHT_MARGIN_COLS (w);
811 if (FRAME_WINDOW_P (f))
812 /* On window-systems, fringes cannot be used for normal text. */
813 width -= WINDOW_FRINGE_COLS (w);
815 return width;
818 DEFUN ("window-body-height", Fwindow_body_height, Swindow_body_height, 0, 1, 0,
819 doc: /* Return the height, in lines, of WINDOW's text area.
820 WINDOW must be a live window and defaults to the selected one.
822 The returned height does not include the mode line or header line.
823 On a graphical display, the height is expressed as an integer multiple
824 of the default character height. If a line at the bottom of the text
825 area is only partially visible, that counts as a whole line; to
826 exclude partially-visible lines, use `window-text-height'. */)
827 (Lisp_Object window)
829 return make_number (window_body_lines (decode_live_window (window)));
832 DEFUN ("window-body-width", Fwindow_body_width, Swindow_body_width, 0, 1, 0,
833 doc: /* Return the width, in columns, of WINDOW's text area.
834 WINDOW must be a live window and defaults to the selected one.
836 The return value does not include any vertical dividers, fringe or
837 marginal areas, or scroll bars. On a graphical display, the width is
838 expressed as an integer multiple of the default character width. */)
839 (Lisp_Object window)
841 return make_number (window_body_cols (decode_live_window (window)));
844 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
845 doc: /* Return the number of columns by which WINDOW is scrolled from left margin.
846 WINDOW must be a live window and defaults to the selected one. */)
847 (Lisp_Object window)
849 return make_number (decode_live_window (window)->hscroll);
852 /* Set W's horizontal scroll amount to HSCROLL clipped to a reasonable
853 range, returning the new amount as a fixnum. */
854 static Lisp_Object
855 set_window_hscroll (struct window *w, EMACS_INT hscroll)
857 /* Horizontal scrolling has problems with large scroll amounts.
858 It's too slow with long lines, and even with small lines the
859 display can be messed up. For now, though, impose only the limits
860 required by the internal representation: horizontal scrolling must
861 fit in fixnum (since it's visible to Elisp) and into ptrdiff_t
862 (since it's stored in a ptrdiff_t). */
863 ptrdiff_t hscroll_max = min (MOST_POSITIVE_FIXNUM, PTRDIFF_MAX);
864 ptrdiff_t new_hscroll = clip_to_bounds (0, hscroll, hscroll_max);
866 /* Prevent redisplay shortcuts when changing the hscroll. */
867 if (w->hscroll != new_hscroll)
868 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
870 w->hscroll = new_hscroll;
871 return make_number (new_hscroll);
874 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
875 doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
876 WINDOW must be a live window and defaults to the selected one.
877 Clip the number to a reasonable value if out of range.
878 Return the new number. NCOL should be zero or positive.
880 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
881 window so that the location of point moves off-window. */)
882 (Lisp_Object window, Lisp_Object ncol)
884 CHECK_NUMBER (ncol);
885 return set_window_hscroll (decode_live_window (window), XINT (ncol));
888 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
889 Swindow_redisplay_end_trigger, 0, 1, 0,
890 doc: /* Return WINDOW's redisplay end trigger value.
891 WINDOW must be a live window and defaults to the selected one.
892 See `set-window-redisplay-end-trigger' for more information. */)
893 (Lisp_Object window)
895 return decode_live_window (window)->redisplay_end_trigger;
898 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
899 Sset_window_redisplay_end_trigger, 2, 2, 0,
900 doc: /* Set WINDOW's redisplay end trigger value to VALUE.
901 WINDOW must be a live window and defaults to the selected one. VALUE
902 should be a buffer position (typically a marker) or nil. If it is a
903 buffer position, then if redisplay in WINDOW reaches a position beyond
904 VALUE, the functions in `redisplay-end-trigger-functions' are called
905 with two arguments: WINDOW, and the end trigger value. Afterwards the
906 end-trigger value is reset to nil. */)
907 (register Lisp_Object window, Lisp_Object value)
909 wset_redisplay_end_trigger (decode_live_window (window), value);
910 return value;
913 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
914 doc: /* Return a list of the edge coordinates of WINDOW.
915 WINDOW must be a valid window and defaults to the selected one.
917 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
918 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
919 0 at top left corner of frame.
921 RIGHT is one more than the rightmost column occupied by WINDOW. BOTTOM
922 is one more than the bottommost row occupied by WINDOW. The edges
923 include the space used by WINDOW's scroll bar, display margins, fringes,
924 header line, and/or mode line. For the edges of just the text area, use
925 `window-inside-edges'. */)
926 (Lisp_Object window)
928 register struct window *w = decode_valid_window (window);
930 return list4i (WINDOW_LEFT_EDGE_COL (w), WINDOW_TOP_EDGE_LINE (w),
931 WINDOW_RIGHT_EDGE_COL (w), WINDOW_BOTTOM_EDGE_LINE (w));
934 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, Swindow_pixel_edges, 0, 1, 0,
935 doc: /* Return a list of the edge pixel coordinates of WINDOW.
936 WINDOW must be a valid window and defaults to the selected one.
938 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
939 0, 0 at the top left corner of the frame.
941 RIGHT is one more than the rightmost x position occupied by WINDOW.
942 BOTTOM is one more than the bottommost y position occupied by WINDOW.
943 The pixel edges include the space used by WINDOW's scroll bar, display
944 margins, fringes, header line, and/or mode line. For the pixel edges
945 of just the text area, use `window-inside-pixel-edges'. */)
946 (Lisp_Object window)
948 register struct window *w = decode_valid_window (window);
950 return list4i (WINDOW_LEFT_EDGE_X (w), WINDOW_TOP_EDGE_Y (w),
951 WINDOW_RIGHT_EDGE_X (w), WINDOW_BOTTOM_EDGE_Y (w));
954 static void
955 calc_absolute_offset (struct window *w, int *add_x, int *add_y)
957 struct frame *f = XFRAME (w->frame);
958 *add_y = f->top_pos;
959 #ifdef FRAME_MENUBAR_HEIGHT
960 *add_y += FRAME_MENUBAR_HEIGHT (f);
961 #endif
962 #ifdef FRAME_TOOLBAR_TOP_HEIGHT
963 *add_y += FRAME_TOOLBAR_TOP_HEIGHT (f);
964 #elif FRAME_TOOLBAR_HEIGHT
965 *add_y += FRAME_TOOLBAR_HEIGHT (f);
966 #endif
967 #ifdef FRAME_NS_TITLEBAR_HEIGHT
968 *add_y += FRAME_NS_TITLEBAR_HEIGHT (f);
969 #endif
970 *add_x = f->left_pos;
971 #ifdef FRAME_TOOLBAR_LEFT_WIDTH
972 *add_x += FRAME_TOOLBAR_LEFT_WIDTH (f);
973 #endif
976 DEFUN ("window-absolute-pixel-edges", Fwindow_absolute_pixel_edges,
977 Swindow_absolute_pixel_edges, 0, 1, 0,
978 doc: /* Return a list of the edge pixel coordinates of WINDOW.
979 WINDOW must be a valid window and defaults to the selected one.
981 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
982 0, 0 at the top left corner of the display.
984 RIGHT is one more than the rightmost x position occupied by WINDOW.
985 BOTTOM is one more than the bottommost y position occupied by WINDOW.
986 The pixel edges include the space used by WINDOW's scroll bar, display
987 margins, fringes, header line, and/or mode line. For the pixel edges
988 of just the text area, use `window-inside-absolute-pixel-edges'. */)
989 (Lisp_Object window)
991 register struct window *w = decode_valid_window (window);
992 int add_x, add_y;
994 calc_absolute_offset (w, &add_x, &add_y);
996 return list4i (WINDOW_LEFT_EDGE_X (w) + add_x,
997 WINDOW_TOP_EDGE_Y (w) + add_y,
998 WINDOW_RIGHT_EDGE_X (w) + add_x,
999 WINDOW_BOTTOM_EDGE_Y (w) + add_y);
1002 DEFUN ("window-inside-edges", Fwindow_inside_edges, Swindow_inside_edges, 0, 1, 0,
1003 doc: /* Return a list of the edge coordinates of WINDOW.
1004 WINDOW must be a live window and defaults to the selected one.
1006 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
1007 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
1008 0 at top left corner of frame.
1010 RIGHT is one more than the rightmost column of WINDOW's text area.
1011 BOTTOM is one more than the bottommost row of WINDOW's text area. The
1012 inside edges do not include the space used by the WINDOW's scroll bar,
1013 display margins, fringes, header line, and/or mode line. */)
1014 (Lisp_Object window)
1016 register struct window *w = decode_live_window (window);
1018 return list4i ((WINDOW_BOX_LEFT_EDGE_COL (w)
1019 + WINDOW_LEFT_MARGIN_COLS (w)
1020 + WINDOW_LEFT_FRINGE_COLS (w)),
1021 (WINDOW_TOP_EDGE_LINE (w)
1022 + WINDOW_HEADER_LINE_LINES (w)),
1023 (WINDOW_BOX_RIGHT_EDGE_COL (w)
1024 - WINDOW_RIGHT_MARGIN_COLS (w)
1025 - WINDOW_RIGHT_FRINGE_COLS (w)),
1026 (WINDOW_BOTTOM_EDGE_LINE (w)
1027 - WINDOW_MODE_LINE_LINES (w)));
1030 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges, Swindow_inside_pixel_edges, 0, 1, 0,
1031 doc: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1032 WINDOW must be a live window and defaults to the selected one.
1034 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1035 (0,0) at the top left corner of the frame's window area.
1037 RIGHT is one more than the rightmost x position of WINDOW's text area.
1038 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1039 The inside edges do not include the space used by WINDOW's scroll bar,
1040 display margins, fringes, header line, and/or mode line. */)
1041 (Lisp_Object window)
1043 register struct window *w = decode_live_window (window);
1045 return list4i ((WINDOW_BOX_LEFT_EDGE_X (w)
1046 + WINDOW_LEFT_MARGIN_WIDTH (w)
1047 + WINDOW_LEFT_FRINGE_WIDTH (w)),
1048 (WINDOW_TOP_EDGE_Y (w)
1049 + WINDOW_HEADER_LINE_HEIGHT (w)),
1050 (WINDOW_BOX_RIGHT_EDGE_X (w)
1051 - WINDOW_RIGHT_MARGIN_WIDTH (w)
1052 - WINDOW_RIGHT_FRINGE_WIDTH (w)),
1053 (WINDOW_BOTTOM_EDGE_Y (w)
1054 - WINDOW_MODE_LINE_HEIGHT (w)));
1057 DEFUN ("window-inside-absolute-pixel-edges",
1058 Fwindow_inside_absolute_pixel_edges,
1059 Swindow_inside_absolute_pixel_edges, 0, 1, 0,
1060 doc: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1061 WINDOW must be a live window and defaults to the selected one.
1063 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1064 (0,0) at the top left corner of the frame's window area.
1066 RIGHT is one more than the rightmost x position of WINDOW's text area.
1067 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1068 The inside edges do not include the space used by WINDOW's scroll bar,
1069 display margins, fringes, header line, and/or mode line. */)
1070 (Lisp_Object window)
1072 register struct window *w = decode_live_window (window);
1073 int add_x, add_y;
1075 calc_absolute_offset (w, &add_x, &add_y);
1077 return list4i ((WINDOW_BOX_LEFT_EDGE_X (w)
1078 + WINDOW_LEFT_MARGIN_WIDTH (w)
1079 + WINDOW_LEFT_FRINGE_WIDTH (w) + add_x),
1080 (WINDOW_TOP_EDGE_Y (w)
1081 + WINDOW_HEADER_LINE_HEIGHT (w) + add_y),
1082 (WINDOW_BOX_RIGHT_EDGE_X (w)
1083 - WINDOW_RIGHT_MARGIN_WIDTH (w)
1084 - WINDOW_RIGHT_FRINGE_WIDTH (w) + add_x),
1085 (WINDOW_BOTTOM_EDGE_Y (w)
1086 - WINDOW_MODE_LINE_HEIGHT (w) + add_y));
1089 /* Test if the character at column X, row Y is within window W.
1090 If it is not, return ON_NOTHING;
1091 if it is in the window's text area, return ON_TEXT;
1092 if it is on the window's modeline, return ON_MODE_LINE;
1093 if it is on the border between the window and its right sibling,
1094 return ON_VERTICAL_BORDER.
1095 if it is on a scroll bar, return ON_SCROLL_BAR.
1096 if it is on the window's top line, return ON_HEADER_LINE;
1097 if it is in left or right fringe of the window,
1098 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
1099 if it is in the marginal area to the left/right of the window,
1100 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
1102 X and Y are frame relative pixel coordinates. */
1104 static enum window_part
1105 coordinates_in_window (register struct window *w, int x, int y)
1107 struct frame *f = XFRAME (WINDOW_FRAME (w));
1108 enum window_part part;
1109 int ux = FRAME_COLUMN_WIDTH (f);
1110 int left_x = WINDOW_LEFT_EDGE_X (w);
1111 int right_x = WINDOW_RIGHT_EDGE_X (w);
1112 int top_y = WINDOW_TOP_EDGE_Y (w);
1113 int bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
1114 /* The width of the area where the vertical line can be dragged.
1115 (Between mode lines for instance. */
1116 int grabbable_width = ux;
1117 int lmargin_width, rmargin_width, text_left, text_right;
1119 /* Outside any interesting row or column? */
1120 if (y < top_y || y >= bottom_y || x < left_x || x >= right_x)
1121 return ON_NOTHING;
1123 /* On the mode line or header line? */
1124 if ((WINDOW_WANTS_MODELINE_P (w)
1125 && y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w)
1126 && (part = ON_MODE_LINE))
1127 || (WINDOW_WANTS_HEADER_LINE_P (w)
1128 && y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
1129 && (part = ON_HEADER_LINE)))
1131 /* If it's under/over the scroll bar portion of the mode/header
1132 line, say it's on the vertical line. That's to be able to
1133 resize windows horizontally in case we're using toolkit scroll
1134 bars. Note: If scrollbars are on the left, the window that
1135 must be eventually resized is that on the left of WINDOW. */
1136 if ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1137 && !WINDOW_LEFTMOST_P (w)
1138 && eabs (x - left_x) < grabbable_width)
1139 || (!WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1140 && !WINDOW_RIGHTMOST_P (w)
1141 && eabs (x - right_x) < grabbable_width))
1142 return ON_VERTICAL_BORDER;
1143 else
1144 return part;
1147 /* In what's below, we subtract 1 when computing right_x because we
1148 want the rightmost pixel, which is given by left_pixel+width-1. */
1149 if (w->pseudo_window_p)
1151 left_x = 0;
1152 right_x = WINDOW_TOTAL_WIDTH (w) - 1;
1154 else
1156 left_x = WINDOW_BOX_LEFT_EDGE_X (w);
1157 right_x = WINDOW_BOX_RIGHT_EDGE_X (w) - 1;
1160 /* Outside any interesting column? */
1161 if (x < left_x || x > right_x)
1162 return ON_SCROLL_BAR;
1164 lmargin_width = window_box_width (w, LEFT_MARGIN_AREA);
1165 rmargin_width = window_box_width (w, RIGHT_MARGIN_AREA);
1167 text_left = window_box_left (w, TEXT_AREA);
1168 text_right = text_left + window_box_width (w, TEXT_AREA);
1170 if (FRAME_WINDOW_P (f))
1172 if (!w->pseudo_window_p
1173 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
1174 && !WINDOW_RIGHTMOST_P (w)
1175 && (eabs (x - right_x) < grabbable_width))
1176 return ON_VERTICAL_BORDER;
1178 /* Need to say "x > right_x" rather than >=, since on character
1179 terminals, the vertical line's x coordinate is right_x. */
1180 else if (!w->pseudo_window_p
1181 && !WINDOW_RIGHTMOST_P (w)
1182 && x > right_x - ux)
1183 return ON_VERTICAL_BORDER;
1185 if (x < text_left)
1187 if (lmargin_width > 0
1188 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1189 ? (x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w))
1190 : (x < left_x + lmargin_width)))
1191 return ON_LEFT_MARGIN;
1193 return ON_LEFT_FRINGE;
1196 if (x >= text_right)
1198 if (rmargin_width > 0
1199 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1200 ? (x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w))
1201 : (x >= right_x - rmargin_width)))
1202 return ON_RIGHT_MARGIN;
1204 return ON_RIGHT_FRINGE;
1207 /* Everything special ruled out - must be on text area */
1208 return ON_TEXT;
1211 /* Take X is the frame-relative pixel x-coordinate, and return the
1212 x-coordinate relative to part PART of window W. */
1214 window_relative_x_coord (struct window *w, enum window_part part, int x)
1216 int left_x = (w->pseudo_window_p) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w);
1218 switch (part)
1220 case ON_TEXT:
1221 return x - window_box_left (w, TEXT_AREA);
1223 case ON_LEFT_FRINGE:
1224 return x - left_x;
1226 case ON_RIGHT_FRINGE:
1227 return x - left_x - WINDOW_LEFT_FRINGE_WIDTH (w);
1229 case ON_LEFT_MARGIN:
1230 return (x - left_x
1231 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1232 ? WINDOW_LEFT_FRINGE_WIDTH (w) : 0));
1234 case ON_RIGHT_MARGIN:
1235 return (x + 1
1236 - ((w->pseudo_window_p)
1237 ? WINDOW_TOTAL_WIDTH (w)
1238 : WINDOW_BOX_RIGHT_EDGE_X (w))
1239 + window_box_width (w, RIGHT_MARGIN_AREA)
1240 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1241 ? WINDOW_RIGHT_FRINGE_WIDTH (w) : 0));
1244 /* ON_SCROLL_BAR, ON_NOTHING, and ON_VERTICAL_BORDER: */
1245 return 0;
1249 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
1250 Scoordinates_in_window_p, 2, 2, 0,
1251 doc: /* Return non-nil if COORDINATES are in WINDOW.
1252 WINDOW must be a live window and defaults to the selected one.
1253 COORDINATES is a cons of the form (X . Y), X and Y being distances
1254 measured in characters from the upper-left corner of the frame.
1255 \(0 . 0) denotes the character in the upper left corner of the
1256 frame.
1257 If COORDINATES are in the text portion of WINDOW,
1258 the coordinates relative to the window are returned.
1259 If they are in the mode line of WINDOW, `mode-line' is returned.
1260 If they are in the top mode line of WINDOW, `header-line' is returned.
1261 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1262 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1263 If they are on the border between WINDOW and its right sibling,
1264 `vertical-line' is returned.
1265 If they are in the windows's left or right marginal areas, `left-margin'\n\
1266 or `right-margin' is returned. */)
1267 (register Lisp_Object coordinates, Lisp_Object window)
1269 struct window *w;
1270 struct frame *f;
1271 int x, y;
1272 Lisp_Object lx, ly;
1274 w = decode_live_window (window);
1275 f = XFRAME (w->frame);
1276 CHECK_CONS (coordinates);
1277 lx = Fcar (coordinates);
1278 ly = Fcdr (coordinates);
1279 CHECK_NUMBER_OR_FLOAT (lx);
1280 CHECK_NUMBER_OR_FLOAT (ly);
1281 x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f);
1282 y = FRAME_PIXEL_Y_FROM_CANON_Y (f, ly) + FRAME_INTERNAL_BORDER_WIDTH (f);
1284 switch (coordinates_in_window (w, x, y))
1286 case ON_NOTHING:
1287 return Qnil;
1289 case ON_TEXT:
1290 /* Convert X and Y to window relative pixel coordinates, and
1291 return the canonical char units. */
1292 x -= window_box_left (w, TEXT_AREA);
1293 y -= WINDOW_TOP_EDGE_Y (w);
1294 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x),
1295 FRAME_CANON_Y_FROM_PIXEL_Y (f, y));
1297 case ON_MODE_LINE:
1298 return Qmode_line;
1300 case ON_VERTICAL_BORDER:
1301 return Qvertical_line;
1303 case ON_HEADER_LINE:
1304 return Qheader_line;
1306 case ON_LEFT_FRINGE:
1307 return Qleft_fringe;
1309 case ON_RIGHT_FRINGE:
1310 return Qright_fringe;
1312 case ON_LEFT_MARGIN:
1313 return Qleft_margin;
1315 case ON_RIGHT_MARGIN:
1316 return Qright_margin;
1318 case ON_SCROLL_BAR:
1319 /* Historically we are supposed to return nil in this case. */
1320 return Qnil;
1322 default:
1323 emacs_abort ();
1328 /* Callback for foreach_window, used in window_from_coordinates.
1329 Check if window W contains coordinates specified by USER_DATA which
1330 is actually a pointer to a struct check_window_data CW.
1332 Check if window W contains coordinates *CW->x and *CW->y. If it
1333 does, return W in *CW->window, as Lisp_Object, and return in
1334 *CW->part the part of the window under coordinates *X,*Y. Return
1335 zero from this function to stop iterating over windows. */
1337 struct check_window_data
1339 Lisp_Object *window;
1340 int x, y;
1341 enum window_part *part;
1344 static int
1345 check_window_containing (struct window *w, void *user_data)
1347 struct check_window_data *cw = (struct check_window_data *) user_data;
1348 enum window_part found;
1349 int continue_p = 1;
1351 found = coordinates_in_window (w, cw->x, cw->y);
1352 if (found != ON_NOTHING)
1354 *cw->part = found;
1355 XSETWINDOW (*cw->window, w);
1356 continue_p = 0;
1359 return continue_p;
1363 /* Find the window containing frame-relative pixel position X/Y and
1364 return it as a Lisp_Object.
1366 If X, Y is on one of the window's special `window_part' elements,
1367 set *PART to the id of that element.
1369 If there is no window under X, Y return nil and leave *PART
1370 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
1372 This function was previously implemented with a loop cycling over
1373 windows with Fnext_window, and starting with the frame's selected
1374 window. It turned out that this doesn't work with an
1375 implementation of next_window using Vwindow_list, because
1376 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1377 tree of F when this function is called asynchronously from
1378 note_mouse_highlight. The original loop didn't terminate in this
1379 case. */
1381 Lisp_Object
1382 window_from_coordinates (struct frame *f, int x, int y,
1383 enum window_part *part, bool tool_bar_p)
1385 Lisp_Object window;
1386 struct check_window_data cw;
1387 enum window_part dummy;
1389 if (part == 0)
1390 part = &dummy;
1392 window = Qnil;
1393 cw.window = &window, cw.x = x, cw.y = y; cw.part = part;
1394 foreach_window (f, check_window_containing, &cw);
1396 /* If not found above, see if it's in the tool bar window, if a tool
1397 bar exists. */
1398 if (NILP (window)
1399 && tool_bar_p
1400 && WINDOWP (f->tool_bar_window)
1401 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0
1402 && (coordinates_in_window (XWINDOW (f->tool_bar_window), x, y)
1403 != ON_NOTHING))
1405 *part = ON_TEXT;
1406 window = f->tool_bar_window;
1409 return window;
1412 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
1413 doc: /* Return window containing coordinates X and Y on FRAME.
1414 FRAME must be a live frame and defaults to the selected one.
1415 The top left corner of the frame is considered to be row 0,
1416 column 0. */)
1417 (Lisp_Object x, Lisp_Object y, Lisp_Object frame)
1419 struct frame *f = decode_live_frame (frame);
1421 /* Check that arguments are integers or floats. */
1422 CHECK_NUMBER_OR_FLOAT (x);
1423 CHECK_NUMBER_OR_FLOAT (y);
1425 return window_from_coordinates (f,
1426 (FRAME_PIXEL_X_FROM_CANON_X (f, x)
1427 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1428 (FRAME_PIXEL_Y_FROM_CANON_Y (f, y)
1429 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1430 0, 0);
1433 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
1434 doc: /* Return current value of point in WINDOW.
1435 WINDOW must be a live window and defaults to the selected one.
1437 For a nonselected window, this is the value point would have if that
1438 window were selected.
1440 Note that, when WINDOW is selected, the value returned is the same as
1441 that returned by `point' for WINDOW's buffer. It would be more strictly
1442 correct to return the top-level value of `point', outside of any
1443 `save-excursion' forms. But that is hard to define. */)
1444 (Lisp_Object window)
1446 register struct window *w = decode_live_window (window);
1448 if (w == XWINDOW (selected_window))
1449 return make_number (BUF_PT (XBUFFER (w->contents)));
1450 else
1451 return Fmarker_position (w->pointm);
1454 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
1455 doc: /* Return position at which display currently starts in WINDOW.
1456 WINDOW must be a live window and defaults to the selected one.
1457 This is updated by redisplay or by calling `set-window-start'. */)
1458 (Lisp_Object window)
1460 return Fmarker_position (decode_live_window (window)->start);
1463 /* This is text temporarily removed from the doc string below.
1465 This function returns nil if the position is not currently known.
1466 That happens when redisplay is preempted and doesn't finish.
1467 If in that case you want to compute where the end of the window would
1468 have been if redisplay had finished, do this:
1469 (save-excursion
1470 (goto-char (window-start window))
1471 (vertical-motion (1- (window-height window)) window)
1472 (point))") */
1474 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
1475 doc: /* Return position at which display currently ends in WINDOW.
1476 WINDOW must be a live window and defaults to the selected one.
1477 This is updated by redisplay, when it runs to completion.
1478 Simply changing the buffer text or setting `window-start'
1479 does not update this value.
1480 Return nil if there is no recorded value. (This can happen if the
1481 last redisplay of WINDOW was preempted, and did not finish.)
1482 If UPDATE is non-nil, compute the up-to-date position
1483 if it isn't already recorded. */)
1484 (Lisp_Object window, Lisp_Object update)
1486 Lisp_Object value;
1487 struct window *w = decode_live_window (window);
1488 Lisp_Object buf;
1489 struct buffer *b;
1491 buf = w->contents;
1492 CHECK_BUFFER (buf);
1493 b = XBUFFER (buf);
1495 if (! NILP (update)
1496 && (windows_or_buffers_changed || !w->window_end_valid)
1497 && !noninteractive)
1499 struct text_pos startp;
1500 ptrdiff_t charpos = marker_position (w->start);
1501 struct it it;
1502 struct buffer *old_buffer = NULL;
1503 void *itdata = NULL;
1505 /* Cannot use Fvertical_motion because that function doesn't
1506 cope with variable-height lines. */
1507 if (b != current_buffer)
1509 old_buffer = current_buffer;
1510 set_buffer_internal (b);
1513 /* In case W->start is out of the range, use something
1514 reasonable. This situation occurred when loading a file with
1515 `-l' containing a call to `rmail' with subsequent other
1516 commands. At the end, W->start happened to be BEG, while
1517 rmail had already narrowed the buffer. */
1518 if (charpos < BEGV)
1519 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
1520 else if (charpos > ZV)
1521 SET_TEXT_POS (startp, ZV, ZV_BYTE);
1522 else
1523 SET_TEXT_POS_FROM_MARKER (startp, w->start);
1525 itdata = bidi_shelve_cache ();
1526 start_display (&it, w, startp);
1527 move_it_vertically (&it, window_box_height (w));
1528 if (it.current_y < it.last_visible_y)
1529 move_it_past_eol (&it);
1530 value = make_number (IT_CHARPOS (it));
1531 bidi_unshelve_cache (itdata, 0);
1533 if (old_buffer)
1534 set_buffer_internal (old_buffer);
1536 else
1537 XSETINT (value, BUF_Z (b) - XFASTINT (w->window_end_pos));
1539 return value;
1542 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
1543 doc: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1544 WINDOW must be a live window and defaults to the selected one.
1545 Return POS. */)
1546 (Lisp_Object window, Lisp_Object pos)
1548 register struct window *w = decode_live_window (window);
1550 /* Type of POS is checked by Fgoto_char or set_marker_restricted ... */
1552 if (w == XWINDOW (selected_window))
1554 if (XBUFFER (w->contents) == current_buffer)
1555 Fgoto_char (pos);
1556 else
1558 struct buffer *old_buffer = current_buffer;
1560 /* ... but here we want to catch type error before buffer change. */
1561 CHECK_NUMBER_COERCE_MARKER (pos);
1562 set_buffer_internal (XBUFFER (w->contents));
1563 Fgoto_char (pos);
1564 set_buffer_internal (old_buffer);
1567 else
1569 set_marker_restricted (w->pointm, pos, w->contents);
1570 /* We have to make sure that redisplay updates the window to show
1571 the new value of point. */
1572 ++windows_or_buffers_changed;
1575 return pos;
1578 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
1579 doc: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1580 WINDOW must be a live window and defaults to the selected one. Return
1581 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1582 overriding motion of point in order to display at this exact start. */)
1583 (Lisp_Object window, Lisp_Object pos, Lisp_Object noforce)
1585 register struct window *w = decode_live_window (window);
1587 set_marker_restricted (w->start, pos, w->contents);
1588 /* This is not right, but much easier than doing what is right. */
1589 w->start_at_line_beg = 0;
1590 if (NILP (noforce))
1591 w->force_start = 1;
1592 w->update_mode_line = 1;
1593 w->last_modified = 0;
1594 w->last_overlay_modified = 0;
1595 if (!EQ (window, selected_window))
1596 windows_or_buffers_changed++;
1598 return pos;
1601 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
1602 Spos_visible_in_window_p, 0, 3, 0,
1603 doc: /* Return non-nil if position POS is currently on the frame in WINDOW.
1604 WINDOW must be a live window and defaults to the selected one.
1606 Return nil if that position is scrolled vertically out of view. If a
1607 character is only partially visible, nil is returned, unless the
1608 optional argument PARTIALLY is non-nil. If POS is only out of view
1609 because of horizontal scrolling, return non-nil. If POS is t, it
1610 specifies the position of the last visible glyph in WINDOW. POS
1611 defaults to point in WINDOW; WINDOW defaults to the selected window.
1613 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1614 return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1615 where X and Y are the pixel coordinates relative to the top left corner
1616 of the window. The remaining elements are omitted if the character after
1617 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1618 off-window at the top and bottom of the row, ROWH is the height of the
1619 display row, and VPOS is the row number (0-based) containing POS. */)
1620 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially)
1622 register struct window *w;
1623 register EMACS_INT posint;
1624 register struct buffer *buf;
1625 struct text_pos top;
1626 Lisp_Object in_window = Qnil;
1627 int rtop, rbot, rowh, vpos, fully_p = 1;
1628 int x, y;
1630 w = decode_live_window (window);
1631 buf = XBUFFER (w->contents);
1632 SET_TEXT_POS_FROM_MARKER (top, w->start);
1634 if (EQ (pos, Qt))
1635 posint = -1;
1636 else if (!NILP (pos))
1638 CHECK_NUMBER_COERCE_MARKER (pos);
1639 posint = XINT (pos);
1641 else if (w == XWINDOW (selected_window))
1642 posint = PT;
1643 else
1644 posint = marker_position (w->pointm);
1646 /* If position is above window start or outside buffer boundaries,
1647 or if window start is out of range, position is not visible. */
1648 if ((EQ (pos, Qt)
1649 || (posint >= CHARPOS (top) && posint <= BUF_ZV (buf)))
1650 && CHARPOS (top) >= BUF_BEGV (buf)
1651 && CHARPOS (top) <= BUF_ZV (buf)
1652 && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos)
1653 && (fully_p = !rtop && !rbot, (!NILP (partially) || fully_p)))
1654 in_window = Qt;
1656 if (!NILP (in_window) && !NILP (partially))
1658 Lisp_Object part = Qnil;
1659 if (!fully_p)
1660 part = list4i (rtop, rbot, rowh, vpos);
1661 in_window = Fcons (make_number (x),
1662 Fcons (make_number (y), part));
1665 return in_window;
1668 DEFUN ("window-line-height", Fwindow_line_height,
1669 Swindow_line_height, 0, 2, 0,
1670 doc: /* Return height in pixels of text line LINE in window WINDOW.
1671 WINDOW must be a live window and defaults to the selected one.
1673 Return height of current line if LINE is omitted or nil. Return height of
1674 header or mode line if LINE is `header-line' or `mode-line'.
1675 Otherwise, LINE is a text line number starting from 0. A negative number
1676 counts from the end of the window.
1678 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1679 in pixels of the visible part of the line, VPOS and YPOS are the
1680 vertical position in lines and pixels of the line, relative to the top
1681 of the first text line, and OFFBOT is the number of off-window pixels at
1682 the bottom of the text line. If there are off-window pixels at the top
1683 of the (first) text line, YPOS is negative.
1685 Return nil if window display is not up-to-date. In that case, use
1686 `pos-visible-in-window-p' to obtain the information. */)
1687 (Lisp_Object line, Lisp_Object window)
1689 register struct window *w;
1690 register struct buffer *b;
1691 struct glyph_row *row, *end_row;
1692 int max_y, crop, i;
1693 EMACS_INT n;
1695 w = decode_live_window (window);
1697 if (noninteractive || w->pseudo_window_p)
1698 return Qnil;
1700 CHECK_BUFFER (w->contents);
1701 b = XBUFFER (w->contents);
1703 /* Fail if current matrix is not up-to-date. */
1704 if (!w->window_end_valid
1705 || current_buffer->clip_changed
1706 || current_buffer->prevent_redisplay_optimizations_p
1707 || w->last_modified < BUF_MODIFF (b)
1708 || w->last_overlay_modified < BUF_OVERLAY_MODIFF (b))
1709 return Qnil;
1711 if (NILP (line))
1713 i = w->cursor.vpos;
1714 if (i < 0 || i >= w->current_matrix->nrows
1715 || (row = MATRIX_ROW (w->current_matrix, i), !row->enabled_p))
1716 return Qnil;
1717 max_y = window_text_bottom_y (w);
1718 goto found_row;
1721 if (EQ (line, Qheader_line))
1723 if (!WINDOW_WANTS_HEADER_LINE_P (w))
1724 return Qnil;
1725 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
1726 return row->enabled_p ? list4i (row->height, 0, 0, 0) : Qnil;
1729 if (EQ (line, Qmode_line))
1731 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
1732 return (row->enabled_p ?
1733 list4i (row->height,
1734 0, /* not accurate */
1735 (WINDOW_HEADER_LINE_HEIGHT (w)
1736 + window_text_bottom_y (w)),
1738 : Qnil);
1741 CHECK_NUMBER (line);
1742 n = XINT (line);
1744 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
1745 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
1746 max_y = window_text_bottom_y (w);
1747 i = 0;
1749 while ((n < 0 || i < n)
1750 && row <= end_row && row->enabled_p
1751 && row->y + row->height < max_y)
1752 row++, i++;
1754 if (row > end_row || !row->enabled_p)
1755 return Qnil;
1757 if (++n < 0)
1759 if (-n > i)
1760 return Qnil;
1761 row += n;
1762 i += n;
1765 found_row:
1766 crop = max (0, (row->y + row->height) - max_y);
1767 return list4i (row->height + min (0, row->y) - crop, i, row->y, crop);
1770 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
1771 0, 1, 0,
1772 doc: /* Return non-nil when WINDOW is dedicated to its buffer.
1773 More precisely, return the value assigned by the last call of
1774 `set-window-dedicated-p' for WINDOW. Return nil if that function was
1775 never called with WINDOW as its argument, or the value set by that
1776 function was internally reset since its last call. WINDOW must be a
1777 live window and defaults to the selected one.
1779 When a window is dedicated to its buffer, `display-buffer' will refrain
1780 from displaying another buffer in it. `get-lru-window' and
1781 `get-largest-window' treat dedicated windows specially.
1782 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
1783 `kill-buffer' can delete a dedicated window and the containing frame.
1785 Functions like `set-window-buffer' may change the buffer displayed by a
1786 window, unless that window is "strongly" dedicated to its buffer, that
1787 is the value returned by `window-dedicated-p' is t. */)
1788 (Lisp_Object window)
1790 return decode_live_window (window)->dedicated;
1793 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
1794 Sset_window_dedicated_p, 2, 2, 0,
1795 doc: /* Mark WINDOW as dedicated according to FLAG.
1796 WINDOW must be a live window and defaults to the selected one. FLAG
1797 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
1798 mark WINDOW as non-dedicated. Return FLAG.
1800 When a window is dedicated to its buffer, `display-buffer' will refrain
1801 from displaying another buffer in it. `get-lru-window' and
1802 `get-largest-window' treat dedicated windows specially.
1803 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
1804 `quit-restore-window' and `kill-buffer' can delete a dedicated window
1805 and the containing frame.
1807 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
1808 its buffer. Functions like `set-window-buffer' may change the buffer
1809 displayed by a window, unless that window is strongly dedicated to its
1810 buffer. If and when `set-window-buffer' displays another buffer in a
1811 window, it also makes sure that the window is no more dedicated. */)
1812 (Lisp_Object window, Lisp_Object flag)
1814 wset_dedicated (decode_live_window (window), flag);
1815 return flag;
1818 DEFUN ("window-prev-buffers", Fwindow_prev_buffers, Swindow_prev_buffers,
1819 0, 1, 0,
1820 doc: /* Return buffers previously shown in WINDOW.
1821 WINDOW must be a live window and defaults to the selected one.
1823 The return value is a list of elements (BUFFER WINDOW-START POS),
1824 where BUFFER is a buffer, WINDOW-START is the start position of the
1825 window for that buffer, and POS is a window-specific point value. */)
1826 (Lisp_Object window)
1828 return decode_live_window (window)->prev_buffers;
1831 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers,
1832 Sset_window_prev_buffers, 2, 2, 0,
1833 doc: /* Set WINDOW's previous buffers to PREV-BUFFERS.
1834 WINDOW must be a live window and defaults to the selected one.
1836 PREV-BUFFERS should be a list of elements (BUFFER WINDOW-START POS),
1837 where BUFFER is a buffer, WINDOW-START is the start position of the
1838 window for that buffer, and POS is a window-specific point value. */)
1839 (Lisp_Object window, Lisp_Object prev_buffers)
1841 wset_prev_buffers (decode_live_window (window), prev_buffers);
1842 return prev_buffers;
1845 DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers,
1846 0, 1, 0,
1847 doc: /* Return list of buffers recently re-shown in WINDOW.
1848 WINDOW must be a live window and defaults to the selected one. */)
1849 (Lisp_Object window)
1851 return decode_live_window (window)->next_buffers;
1854 DEFUN ("set-window-next-buffers", Fset_window_next_buffers,
1855 Sset_window_next_buffers, 2, 2, 0,
1856 doc: /* Set WINDOW's next buffers to NEXT-BUFFERS.
1857 WINDOW must be a live window and defaults to the selected one.
1858 NEXT-BUFFERS should be a list of buffers. */)
1859 (Lisp_Object window, Lisp_Object next_buffers)
1861 wset_next_buffers (decode_live_window (window), next_buffers);
1862 return next_buffers;
1865 DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,
1866 0, 1, 0,
1867 doc: /* Return the parameters of WINDOW and their values.
1868 WINDOW must be a valid window and defaults to the selected one. The
1869 return value is a list of elements of the form (PARAMETER . VALUE). */)
1870 (Lisp_Object window)
1872 return Fcopy_alist (decode_valid_window (window)->window_parameters);
1875 DEFUN ("window-parameter", Fwindow_parameter, Swindow_parameter,
1876 2, 2, 0,
1877 doc: /* Return WINDOW's value for PARAMETER.
1878 WINDOW can be any window and defaults to the selected one. */)
1879 (Lisp_Object window, Lisp_Object parameter)
1881 Lisp_Object result;
1883 result = Fassq (parameter, decode_any_window (window)->window_parameters);
1884 return CDR_SAFE (result);
1887 DEFUN ("set-window-parameter", Fset_window_parameter,
1888 Sset_window_parameter, 3, 3, 0,
1889 doc: /* Set WINDOW's value of PARAMETER to VALUE.
1890 WINDOW can be any window and defaults to the selected one.
1891 Return VALUE. */)
1892 (Lisp_Object window, Lisp_Object parameter, Lisp_Object value)
1894 register struct window *w = decode_any_window (window);
1895 Lisp_Object old_alist_elt;
1897 old_alist_elt = Fassq (parameter, w->window_parameters);
1898 if (NILP (old_alist_elt))
1899 wset_window_parameters
1900 (w, Fcons (Fcons (parameter, value), w->window_parameters));
1901 else
1902 Fsetcdr (old_alist_elt, value);
1903 return value;
1906 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
1907 0, 1, 0,
1908 doc: /* Return the display-table that WINDOW is using.
1909 WINDOW must be a live window and defaults to the selected one. */)
1910 (Lisp_Object window)
1912 return decode_live_window (window)->display_table;
1915 /* Get the display table for use on window W. This is either W's
1916 display table or W's buffer's display table. Ignore the specified
1917 tables if they are not valid; if no valid table is specified,
1918 return 0. */
1920 struct Lisp_Char_Table *
1921 window_display_table (struct window *w)
1923 struct Lisp_Char_Table *dp = NULL;
1925 if (DISP_TABLE_P (w->display_table))
1926 dp = XCHAR_TABLE (w->display_table);
1927 else if (BUFFERP (w->contents))
1929 struct buffer *b = XBUFFER (w->contents);
1931 if (DISP_TABLE_P (BVAR (b, display_table)))
1932 dp = XCHAR_TABLE (BVAR (b, display_table));
1933 else if (DISP_TABLE_P (Vstandard_display_table))
1934 dp = XCHAR_TABLE (Vstandard_display_table);
1937 return dp;
1940 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
1941 doc: /* Set WINDOW's display-table to TABLE.
1942 WINDOW must be a live window and defaults to the selected one. */)
1943 (register Lisp_Object window, Lisp_Object table)
1945 wset_display_table (decode_live_window (window), table);
1946 return table;
1949 /* Record info on buffer window W is displaying
1950 when it is about to cease to display that buffer. */
1951 static void
1952 unshow_buffer (register struct window *w)
1954 Lisp_Object buf = w->contents;
1955 struct buffer *b = XBUFFER (buf);
1957 eassert (b == XMARKER (w->pointm)->buffer);
1959 #if 0
1960 if (w == XWINDOW (selected_window)
1961 || ! EQ (buf, XWINDOW (selected_window)->contents))
1962 /* Do this except when the selected window's buffer
1963 is being removed from some other window. */
1964 #endif
1965 /* last_window_start records the start position that this buffer
1966 had in the last window to be disconnected from it.
1967 Now that this statement is unconditional,
1968 it is possible for the buffer to be displayed in the
1969 selected window, while last_window_start reflects another
1970 window which was recently showing the same buffer.
1971 Some people might say that might be a good thing. Let's see. */
1972 b->last_window_start = marker_position (w->start);
1974 /* Point in the selected window's buffer
1975 is actually stored in that buffer, and the window's pointm isn't used.
1976 So don't clobber point in that buffer. */
1977 if (! EQ (buf, XWINDOW (selected_window)->contents)
1978 /* Don't clobber point in current buffer either (this could be
1979 useful in connection with bug#12208).
1980 && XBUFFER (buf) != current_buffer */
1981 /* This line helps to fix Horsley's testbug.el bug. */
1982 && !(WINDOWP (BVAR (b, last_selected_window))
1983 && w != XWINDOW (BVAR (b, last_selected_window))
1984 && EQ (buf, XWINDOW (BVAR (b, last_selected_window))->contents)))
1985 temp_set_point_both (b,
1986 clip_to_bounds (BUF_BEGV (b),
1987 marker_position (w->pointm),
1988 BUF_ZV (b)),
1989 clip_to_bounds (BUF_BEGV_BYTE (b),
1990 marker_byte_position (w->pointm),
1991 BUF_ZV_BYTE (b)));
1993 if (WINDOWP (BVAR (b, last_selected_window))
1994 && w == XWINDOW (BVAR (b, last_selected_window)))
1995 bset_last_selected_window (b, Qnil);
1998 /* Put NEW into the window structure in place of OLD. SETFLAG zero
1999 means change window structure only. Otherwise store geometry and
2000 other settings as well. */
2001 static void
2002 replace_window (Lisp_Object old, Lisp_Object new, int setflag)
2004 register Lisp_Object tem;
2005 register struct window *o = XWINDOW (old), *n = XWINDOW (new);
2007 /* If OLD is its frame's root window, then NEW is the new
2008 root window for that frame. */
2009 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
2010 fset_root_window (XFRAME (o->frame), new);
2012 if (setflag)
2014 n->left_col = o->left_col;
2015 n->top_line = o->top_line;
2016 n->total_cols = o->total_cols;
2017 n->total_lines = o->total_lines;
2018 wset_normal_cols (n, o->normal_cols);
2019 wset_normal_cols (o, make_float (1.0));
2020 wset_normal_lines (n, o->normal_lines);
2021 wset_normal_lines (o, make_float (1.0));
2022 n->desired_matrix = n->current_matrix = 0;
2023 n->vscroll = 0;
2024 memset (&n->cursor, 0, sizeof (n->cursor));
2025 memset (&n->last_cursor, 0, sizeof (n->last_cursor));
2026 memset (&n->phys_cursor, 0, sizeof (n->phys_cursor));
2027 n->phys_cursor_type = -1;
2028 n->phys_cursor_width = -1;
2029 n->must_be_updated_p = 0;
2030 n->pseudo_window_p = 0;
2031 wset_window_end_vpos (n, make_number (0));
2032 wset_window_end_pos (n, make_number (0));
2033 n->window_end_valid = 0;
2034 n->frozen_window_start_p = 0;
2037 tem = o->next;
2038 wset_next (n, tem);
2039 if (!NILP (tem))
2040 wset_prev (XWINDOW (tem), new);
2042 tem = o->prev;
2043 wset_prev (n, tem);
2044 if (!NILP (tem))
2045 wset_next (XWINDOW (tem), new);
2047 tem = o->parent;
2048 wset_parent (n, tem);
2049 if (!NILP (tem) && EQ (XWINDOW (tem)->contents, old))
2050 wset_combination (XWINDOW (tem), XWINDOW (tem)->horizontal, new);
2053 /* If window WINDOW and its parent window are iso-combined, merge
2054 WINDOW's children into those of its parent window and mark WINDOW as
2055 deleted. */
2057 static void
2058 recombine_windows (Lisp_Object window)
2060 struct window *w, *p, *c;
2061 Lisp_Object parent, child;
2062 bool horflag;
2064 w = XWINDOW (window);
2065 parent = w->parent;
2066 if (!NILP (parent) && NILP (w->combination_limit))
2068 p = XWINDOW (parent);
2069 if (WINDOWP (p->contents) && WINDOWP (w->contents)
2070 && p->horizontal == w->horizontal)
2071 /* WINDOW and PARENT are both either a vertical or a horizontal
2072 combination. */
2074 horflag = WINDOW_HORIZONTAL_COMBINATION_P (w);
2075 child = w->contents;
2076 c = XWINDOW (child);
2078 /* Splice WINDOW's children into its parent's children and
2079 assign new normal sizes. */
2080 if (NILP (w->prev))
2081 wset_combination (p, horflag, child);
2082 else
2084 wset_prev (c, w->prev);
2085 wset_next (XWINDOW (w->prev), child);
2088 while (c)
2090 wset_parent (c, parent);
2092 if (horflag)
2093 wset_normal_cols (c,
2094 make_float ((double) c->total_cols
2095 / (double) p->total_cols));
2096 else
2097 wset_normal_lines (c,
2098 make_float ((double) c->total_lines
2099 / (double) p->total_lines));
2101 if (NILP (c->next))
2103 if (!NILP (w->next))
2105 wset_next (c, w->next);
2106 wset_prev (XWINDOW (c->next), child);
2109 c = 0;
2111 else
2113 child = c->next;
2114 c = XWINDOW (child);
2118 /* WINDOW can be deleted now. */
2119 wset_combination (w, 0, Qnil);
2124 /* If WINDOW can be deleted, delete it. */
2125 static void
2126 delete_deletable_window (Lisp_Object window)
2128 if (!NILP (call1 (Qwindow_deletable_p, window)))
2129 call1 (Qdelete_window, window);
2132 /***********************************************************************
2133 Window List
2134 ***********************************************************************/
2136 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
2137 pointer. This is a callback function for foreach_window, used in
2138 the window_list function. */
2140 static int
2141 add_window_to_list (struct window *w, void *user_data)
2143 Lisp_Object *list = (Lisp_Object *) user_data;
2144 Lisp_Object window;
2145 XSETWINDOW (window, w);
2146 *list = Fcons (window, *list);
2147 return 1;
2151 /* Return a list of all windows, for use by next_window. If
2152 Vwindow_list is a list, return that list. Otherwise, build a new
2153 list, cache it in Vwindow_list, and return that. */
2155 static Lisp_Object
2156 window_list (void)
2158 if (!CONSP (Vwindow_list))
2160 Lisp_Object tail, frame;
2162 Vwindow_list = Qnil;
2163 FOR_EACH_FRAME (tail, frame)
2165 Lisp_Object args[2];
2167 /* We are visiting windows in canonical order, and add
2168 new windows at the front of args[1], which means we
2169 have to reverse this list at the end. */
2170 args[1] = Qnil;
2171 foreach_window (XFRAME (frame), add_window_to_list, &args[1]);
2172 args[0] = Vwindow_list;
2173 args[1] = Fnreverse (args[1]);
2174 Vwindow_list = Fnconc (2, args);
2178 return Vwindow_list;
2182 /* Value is non-zero if WINDOW satisfies the constraints given by
2183 OWINDOW, MINIBUF and ALL_FRAMES.
2185 MINIBUF t means WINDOW may be minibuffer windows.
2186 `lambda' means WINDOW may not be a minibuffer window.
2187 a window means a specific minibuffer window
2189 ALL_FRAMES t means search all frames,
2190 nil means search just current frame,
2191 `visible' means search just visible frames on the
2192 current terminal,
2193 0 means search visible and iconified frames on the
2194 current terminal,
2195 a window means search the frame that window belongs to,
2196 a frame means consider windows on that frame, only. */
2198 static int
2199 candidate_window_p (Lisp_Object window, Lisp_Object owindow, Lisp_Object minibuf, Lisp_Object all_frames)
2201 struct window *w = XWINDOW (window);
2202 struct frame *f = XFRAME (w->frame);
2203 int candidate_p = 1;
2205 if (!BUFFERP (w->contents))
2206 candidate_p = 0;
2207 else if (MINI_WINDOW_P (w)
2208 && (EQ (minibuf, Qlambda)
2209 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
2211 /* If MINIBUF is `lambda' don't consider any mini-windows.
2212 If it is a window, consider only that one. */
2213 candidate_p = 0;
2215 else if (EQ (all_frames, Qt))
2216 candidate_p = 1;
2217 else if (NILP (all_frames))
2219 eassert (WINDOWP (owindow));
2220 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
2222 else if (EQ (all_frames, Qvisible))
2224 candidate_p = FRAME_VISIBLE_P (f)
2225 && (FRAME_TERMINAL (XFRAME (w->frame))
2226 == FRAME_TERMINAL (XFRAME (selected_frame)));
2229 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
2231 candidate_p = (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)
2232 #ifdef HAVE_X_WINDOWS
2233 /* Yuck!! If we've just created the frame and the
2234 window-manager requested the user to place it
2235 manually, the window may still not be considered
2236 `visible'. I'd argue it should be at least
2237 something like `iconified', but don't know how to do
2238 that yet. --Stef */
2239 || (FRAME_X_P (f) && f->output_data.x->asked_for_visible
2240 && !f->output_data.x->has_been_visible)
2241 #endif
2243 && (FRAME_TERMINAL (XFRAME (w->frame))
2244 == FRAME_TERMINAL (XFRAME (selected_frame)));
2246 else if (WINDOWP (all_frames))
2247 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
2248 || EQ (XWINDOW (all_frames)->frame, w->frame)
2249 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
2250 else if (FRAMEP (all_frames))
2251 candidate_p = EQ (all_frames, w->frame);
2253 return candidate_p;
2257 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2258 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2259 MINIBUF, and ALL_FRAMES. */
2261 static void
2262 decode_next_window_args (Lisp_Object *window, Lisp_Object *minibuf, Lisp_Object *all_frames)
2264 struct window *w = decode_live_window (*window);
2266 XSETWINDOW (*window, w);
2267 /* MINIBUF nil may or may not include minibuffers. Decide if it
2268 does. */
2269 if (NILP (*minibuf))
2270 *minibuf = minibuf_level ? minibuf_window : Qlambda;
2271 else if (!EQ (*minibuf, Qt))
2272 *minibuf = Qlambda;
2274 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2275 => count none of them, or a specific minibuffer window (the
2276 active one) to count. */
2278 /* ALL_FRAMES nil doesn't specify which frames to include. */
2279 if (NILP (*all_frames))
2280 *all_frames
2281 = (!EQ (*minibuf, Qlambda)
2282 ? FRAME_MINIBUF_WINDOW (XFRAME (w->frame))
2283 : Qnil);
2284 else if (EQ (*all_frames, Qvisible))
2286 else if (EQ (*all_frames, make_number (0)))
2288 else if (FRAMEP (*all_frames))
2290 else if (!EQ (*all_frames, Qt))
2291 *all_frames = Qnil;
2295 /* Return the next or previous window of WINDOW in cyclic ordering
2296 of windows. NEXT_P non-zero means return the next window. See the
2297 documentation string of next-window for the meaning of MINIBUF and
2298 ALL_FRAMES. */
2300 static Lisp_Object
2301 next_window (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames, int next_p)
2303 decode_next_window_args (&window, &minibuf, &all_frames);
2305 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2306 return the first window on the frame. */
2307 if (FRAMEP (all_frames)
2308 && !EQ (all_frames, XWINDOW (window)->frame))
2309 return Fframe_first_window (all_frames);
2311 if (next_p)
2313 Lisp_Object list;
2315 /* Find WINDOW in the list of all windows. */
2316 list = Fmemq (window, window_list ());
2318 /* Scan forward from WINDOW to the end of the window list. */
2319 if (CONSP (list))
2320 for (list = XCDR (list); CONSP (list); list = XCDR (list))
2321 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2322 break;
2324 /* Scan from the start of the window list up to WINDOW. */
2325 if (!CONSP (list))
2326 for (list = Vwindow_list;
2327 CONSP (list) && !EQ (XCAR (list), window);
2328 list = XCDR (list))
2329 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2330 break;
2332 if (CONSP (list))
2333 window = XCAR (list);
2335 else
2337 Lisp_Object candidate, list;
2339 /* Scan through the list of windows for candidates. If there are
2340 candidate windows in front of WINDOW, the last one of these
2341 is the one we want. If there are candidates following WINDOW
2342 in the list, again the last one of these is the one we want. */
2343 candidate = Qnil;
2344 for (list = window_list (); CONSP (list); list = XCDR (list))
2346 if (EQ (XCAR (list), window))
2348 if (WINDOWP (candidate))
2349 break;
2351 else if (candidate_window_p (XCAR (list), window, minibuf,
2352 all_frames))
2353 candidate = XCAR (list);
2356 if (WINDOWP (candidate))
2357 window = candidate;
2360 return window;
2364 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
2365 doc: /* Return live window after WINDOW in the cyclic ordering of windows.
2366 WINDOW must be a live window and defaults to the selected one. The
2367 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2368 consider.
2370 MINIBUF nil or omitted means consider the minibuffer window only if the
2371 minibuffer is active. MINIBUF t means consider the minibuffer window
2372 even if the minibuffer is not active. Any other value means do not
2373 consider the minibuffer window even if the minibuffer is active.
2375 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2376 plus the minibuffer window if specified by the MINIBUF argument. If the
2377 minibuffer counts, consider all windows on all frames that share that
2378 minibuffer too. The following non-nil values of ALL-FRAMES have special
2379 meanings:
2381 - t means consider all windows on all existing frames.
2383 - `visible' means consider all windows on all visible frames.
2385 - 0 (the number zero) means consider all windows on all visible and
2386 iconified frames.
2388 - A frame means consider all windows on that frame only.
2390 Anything else means consider all windows on WINDOW's frame and no
2391 others.
2393 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2394 `next-window' to iterate through the entire cycle of acceptable
2395 windows, eventually ending up back at the window you started with.
2396 `previous-window' traverses the same cycle, in the reverse order. */)
2397 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2399 return next_window (window, minibuf, all_frames, 1);
2403 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
2404 doc: /* Return live window before WINDOW in the cyclic ordering of windows.
2405 WINDOW must be a live window and defaults to the selected one. The
2406 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2407 consider.
2409 MINIBUF nil or omitted means consider the minibuffer window only if the
2410 minibuffer is active. MINIBUF t means consider the minibuffer window
2411 even if the minibuffer is not active. Any other value means do not
2412 consider the minibuffer window even if the minibuffer is active.
2414 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2415 plus the minibuffer window if specified by the MINIBUF argument. If the
2416 minibuffer counts, consider all windows on all frames that share that
2417 minibuffer too. The following non-nil values of ALL-FRAMES have special
2418 meanings:
2420 - t means consider all windows on all existing frames.
2422 - `visible' means consider all windows on all visible frames.
2424 - 0 (the number zero) means consider all windows on all visible and
2425 iconified frames.
2427 - A frame means consider all windows on that frame only.
2429 Anything else means consider all windows on WINDOW's frame and no
2430 others.
2432 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2433 use `previous-window' to iterate through the entire cycle of
2434 acceptable windows, eventually ending up back at the window you
2435 started with. `next-window' traverses the same cycle, in the
2436 reverse order. */)
2437 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2439 return next_window (window, minibuf, all_frames, 0);
2443 /* Return a list of windows in cyclic ordering. Arguments are like
2444 for `next-window'. */
2446 static Lisp_Object
2447 window_list_1 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2449 Lisp_Object tail, list, rest;
2451 decode_next_window_args (&window, &minibuf, &all_frames);
2452 list = Qnil;
2454 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
2455 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
2456 list = Fcons (XCAR (tail), list);
2458 /* Rotate the list to start with WINDOW. */
2459 list = Fnreverse (list);
2460 rest = Fmemq (window, list);
2461 if (!NILP (rest) && !EQ (rest, list))
2463 for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail))
2465 XSETCDR (tail, Qnil);
2466 list = nconc2 (rest, list);
2468 return list;
2472 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
2473 doc: /* Return a list of windows on FRAME, starting with WINDOW.
2474 FRAME nil or omitted means use the selected frame.
2475 WINDOW nil or omitted means use the window selected within FRAME.
2476 MINIBUF t means include the minibuffer window, even if it isn't active.
2477 MINIBUF nil or omitted means include the minibuffer window only
2478 if it's active.
2479 MINIBUF neither nil nor t means never include the minibuffer window. */)
2480 (Lisp_Object frame, Lisp_Object minibuf, Lisp_Object window)
2482 if (NILP (window))
2483 window = FRAMEP (frame) ? XFRAME (frame)->selected_window : selected_window;
2484 CHECK_WINDOW (window);
2485 if (NILP (frame))
2486 frame = selected_frame;
2488 if (!EQ (frame, XWINDOW (window)->frame))
2489 error ("Window is on a different frame");
2491 return window_list_1 (window, minibuf, frame);
2495 DEFUN ("window-list-1", Fwindow_list_1, Swindow_list_1, 0, 3, 0,
2496 doc: /* Return a list of all live windows.
2497 WINDOW specifies the first window to list and defaults to the selected
2498 window.
2500 Optional argument MINIBUF nil or omitted means consider the minibuffer
2501 window only if the minibuffer is active. MINIBUF t means consider the
2502 minibuffer window even if the minibuffer is not active. Any other value
2503 means do not consider the minibuffer window even if the minibuffer is
2504 active.
2506 Optional argument ALL-FRAMES nil or omitted means consider all windows
2507 on WINDOW's frame, plus the minibuffer window if specified by the
2508 MINIBUF argument. If the minibuffer counts, consider all windows on all
2509 frames that share that minibuffer too. The following non-nil values of
2510 ALL-FRAMES have special meanings:
2512 - t means consider all windows on all existing frames.
2514 - `visible' means consider all windows on all visible frames.
2516 - 0 (the number zero) means consider all windows on all visible and
2517 iconified frames.
2519 - A frame means consider all windows on that frame only.
2521 Anything else means consider all windows on WINDOW's frame and no
2522 others.
2524 If WINDOW is not on the list of windows returned, some other window will
2525 be listed first but no error is signaled. */)
2526 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2528 return window_list_1 (window, minibuf, all_frames);
2531 /* Look at all windows, performing an operation specified by TYPE
2532 with argument OBJ.
2533 If FRAMES is Qt, look at all frames;
2534 Qnil, look at just the selected frame;
2535 Qvisible, look at visible frames;
2536 a frame, just look at windows on that frame.
2537 If MINI is non-zero, perform the operation on minibuffer windows too. */
2539 enum window_loop
2541 WINDOW_LOOP_UNUSED,
2542 GET_BUFFER_WINDOW, /* Arg is buffer */
2543 REPLACE_BUFFER_IN_WINDOWS_SAFELY, /* Arg is buffer */
2544 REDISPLAY_BUFFER_WINDOWS, /* Arg is buffer */
2545 CHECK_ALL_WINDOWS /* Arg is ignored */
2548 static Lisp_Object
2549 window_loop (enum window_loop type, Lisp_Object obj, int mini, Lisp_Object frames)
2551 Lisp_Object window, windows, best_window, frame_arg;
2552 int frame_best_window_flag = 0;
2553 struct frame *f;
2554 struct gcpro gcpro1;
2556 /* If we're only looping through windows on a particular frame,
2557 frame points to that frame. If we're looping through windows
2558 on all frames, frame is 0. */
2559 if (FRAMEP (frames))
2560 f = XFRAME (frames);
2561 else if (NILP (frames))
2562 f = SELECTED_FRAME ();
2563 else
2564 f = NULL;
2566 if (f)
2567 frame_arg = Qlambda;
2568 else if (EQ (frames, make_number (0)))
2569 frame_arg = frames;
2570 else if (EQ (frames, Qvisible))
2571 frame_arg = frames;
2572 else
2573 frame_arg = Qt;
2575 /* frame_arg is Qlambda to stick to one frame,
2576 Qvisible to consider all visible frames,
2577 or Qt otherwise. */
2579 /* Pick a window to start with. */
2580 if (WINDOWP (obj))
2581 window = obj;
2582 else if (f)
2583 window = FRAME_SELECTED_WINDOW (f);
2584 else
2585 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2587 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
2588 GCPRO1 (windows);
2589 best_window = Qnil;
2591 for (; CONSP (windows); windows = XCDR (windows))
2593 struct window *w;
2595 window = XCAR (windows);
2596 w = XWINDOW (window);
2598 /* Note that we do not pay attention here to whether the frame
2599 is visible, since Fwindow_list skips non-visible frames if
2600 that is desired, under the control of frame_arg. */
2601 if (!MINI_WINDOW_P (w)
2602 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2603 consider all windows. */
2604 || type == REPLACE_BUFFER_IN_WINDOWS_SAFELY
2605 || (mini && minibuf_level > 0))
2606 switch (type)
2608 case GET_BUFFER_WINDOW:
2609 if (EQ (w->contents, obj)
2610 /* Don't find any minibuffer window except the one that
2611 is currently in use. */
2612 && (MINI_WINDOW_P (w) ? EQ (window, minibuf_window) : 1))
2614 if (EQ (window, selected_window))
2615 /* Preferably return the selected window. */
2616 RETURN_UNGCPRO (window);
2617 else if (EQ (XWINDOW (window)->frame, selected_frame)
2618 && !frame_best_window_flag)
2619 /* Prefer windows on the current frame (but don't
2620 choose another one if we have one already). */
2622 best_window = window;
2623 frame_best_window_flag = 1;
2625 else if (NILP (best_window))
2626 best_window = window;
2628 break;
2630 case REPLACE_BUFFER_IN_WINDOWS_SAFELY:
2631 /* We could simply check whether the buffer shown by window
2632 is live, and show another buffer in case it isn't. */
2633 if (EQ (w->contents, obj))
2635 /* Undedicate WINDOW. */
2636 wset_dedicated (w, Qnil);
2637 /* Make WINDOW show the buffer returned by
2638 other_buffer_safely, don't run any hooks. */
2639 set_window_buffer
2640 (window, other_buffer_safely (w->contents), 0, 0);
2641 /* If WINDOW is the selected window, make its buffer
2642 current. But do so only if the window shows the
2643 current buffer (Bug#6454). */
2644 if (EQ (window, selected_window)
2645 && XBUFFER (w->contents) == current_buffer)
2646 Fset_buffer (w->contents);
2648 break;
2650 case REDISPLAY_BUFFER_WINDOWS:
2651 if (EQ (w->contents, obj))
2653 mark_window_display_accurate (window, 0);
2654 w->update_mode_line = 1;
2655 XBUFFER (obj)->prevent_redisplay_optimizations_p = 1;
2656 ++update_mode_lines;
2657 best_window = window;
2659 break;
2661 /* Check for a leaf window that has a killed buffer
2662 or broken markers. */
2663 case CHECK_ALL_WINDOWS:
2664 if (BUFFERP (w->contents))
2666 struct buffer *b = XBUFFER (w->contents);
2668 if (!BUFFER_LIVE_P (b))
2669 emacs_abort ();
2670 if (!MARKERP (w->start) || XMARKER (w->start)->buffer != b)
2671 emacs_abort ();
2672 if (!MARKERP (w->pointm) || XMARKER (w->pointm)->buffer != b)
2673 emacs_abort ();
2675 break;
2677 case WINDOW_LOOP_UNUSED:
2678 break;
2682 UNGCPRO;
2683 return best_window;
2686 /* Used for debugging. Abort if any window has a dead buffer. */
2688 extern void check_all_windows (void) EXTERNALLY_VISIBLE;
2689 void
2690 check_all_windows (void)
2692 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
2695 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 0, 2, 0,
2696 doc: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2697 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2698 the current buffer.
2700 The optional argument ALL-FRAMES specifies the frames to consider:
2702 - t means consider all windows on all existing frames.
2704 - `visible' means consider all windows on all visible frames.
2706 - 0 (the number zero) means consider all windows on all visible
2707 and iconified frames.
2709 - A frame means consider all windows on that frame only.
2711 Any other value of ALL-FRAMES means consider all windows on the
2712 selected frame and no others. */)
2713 (Lisp_Object buffer_or_name, Lisp_Object all_frames)
2715 Lisp_Object buffer;
2717 if (NILP (buffer_or_name))
2718 buffer = Fcurrent_buffer ();
2719 else
2720 buffer = Fget_buffer (buffer_or_name);
2722 if (BUFFERP (buffer))
2723 return window_loop (GET_BUFFER_WINDOW, buffer, 1, all_frames);
2724 else
2725 return Qnil;
2728 static Lisp_Object
2729 resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore)
2731 return call4 (Qwindow_resize_root_window, window, delta, horizontal, ignore);
2735 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal,
2736 Sdelete_other_windows_internal, 0, 2, "",
2737 doc: /* Make WINDOW fill its frame.
2738 Only the frame WINDOW is on is affected. WINDOW must be a valid window
2739 and defaults to the selected one.
2741 Optional argument ROOT, if non-nil, must specify an internal window such
2742 that WINDOW is in its window subtree. If this is the case, replace ROOT
2743 by WINDOW and leave alone any windows not part of ROOT's subtree.
2745 When WINDOW is live try to reduce display jumps by keeping the text
2746 previously visible in WINDOW in the same place on the frame. Doing this
2747 depends on the value of (window-start WINDOW), so if calling this
2748 function in a program gives strange scrolling, make sure the
2749 window-start value is reasonable when this function is called. */)
2750 (Lisp_Object window, Lisp_Object root)
2752 struct window *w, *r, *s;
2753 struct frame *f;
2754 Lisp_Object sibling, pwindow, swindow IF_LINT (= Qnil), delta;
2755 ptrdiff_t startpos IF_LINT (= 0), startbyte IF_LINT (= 0);
2756 int top IF_LINT (= 0), new_top, resize_failed;
2758 w = decode_valid_window (window);
2759 XSETWINDOW (window, w);
2760 f = XFRAME (w->frame);
2762 if (NILP (root))
2763 /* ROOT is the frame's root window. */
2765 root = FRAME_ROOT_WINDOW (f);
2766 r = XWINDOW (root);
2768 else
2769 /* ROOT must be an ancestor of WINDOW. */
2771 r = decode_valid_window (root);
2772 pwindow = XWINDOW (window)->parent;
2773 while (!NILP (pwindow))
2774 if (EQ (pwindow, root))
2775 break;
2776 else
2777 pwindow = XWINDOW (pwindow)->parent;
2778 if (!EQ (pwindow, root))
2779 error ("Specified root is not an ancestor of specified window");
2782 if (EQ (window, root))
2783 /* A noop. */
2784 return Qnil;
2785 /* I don't understand the "top > 0" part below. If we deal with a
2786 standalone minibuffer it would have been caught by the preceding
2787 test. */
2788 else if (MINI_WINDOW_P (w)) /* && top > 0) */
2789 error ("Can't expand minibuffer to full frame");
2791 if (BUFFERP (w->contents))
2793 startpos = marker_position (w->start);
2794 startbyte = marker_byte_position (w->start);
2795 top = WINDOW_TOP_EDGE_LINE (w)
2796 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2797 /* Make sure WINDOW is the frame's selected window. */
2798 if (!EQ (window, FRAME_SELECTED_WINDOW (f)))
2800 if (EQ (selected_frame, w->frame))
2801 Fselect_window (window, Qnil);
2802 else
2803 fset_selected_window (f, window);
2806 else
2808 /* See if the frame's selected window is a part of the window
2809 subtree rooted at WINDOW, by finding all the selected window's
2810 parents and comparing each one with WINDOW. If it isn't we
2811 need a new selected window for this frame. */
2812 swindow = FRAME_SELECTED_WINDOW (f);
2813 while (1)
2815 pwindow = swindow;
2816 while (!NILP (pwindow) && !EQ (window, pwindow))
2817 pwindow = XWINDOW (pwindow)->parent;
2819 if (EQ (window, pwindow))
2820 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
2821 as the new selected window. */
2822 break;
2823 else
2824 /* Else try the previous window of SWINDOW. */
2825 swindow = Fprevious_window (swindow, Qlambda, Qnil);
2828 if (!EQ (swindow, FRAME_SELECTED_WINDOW (f)))
2830 if (EQ (selected_frame, w->frame))
2831 Fselect_window (swindow, Qnil);
2832 else
2833 fset_selected_window (f, swindow);
2837 block_input ();
2838 if (!FRAME_INITIAL_P (f))
2840 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
2842 /* We are going to free the glyph matrices of WINDOW, and with
2843 that we might lose any information about glyph rows that have
2844 some of their glyphs highlighted in mouse face. (These rows
2845 are marked with a non-zero mouse_face_p flag.) If WINDOW
2846 indeed has some glyphs highlighted in mouse face, signal to
2847 frame's up-to-date hook that mouse highlight was overwritten,
2848 so that it will arrange for redisplaying the highlight. */
2849 if (EQ (hlinfo->mouse_face_window, window))
2851 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
2852 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
2853 hlinfo->mouse_face_window = Qnil;
2856 free_window_matrices (r);
2858 windows_or_buffers_changed++;
2859 Vwindow_list = Qnil;
2860 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
2861 resize_failed = 0;
2863 if (!WINDOW_LEAF_P (w))
2865 /* Resize child windows vertically. */
2866 XSETINT (delta, r->total_lines - w->total_lines);
2867 w->top_line = r->top_line;
2868 resize_root_window (window, delta, Qnil, Qnil);
2869 if (window_resize_check (w, 0))
2870 window_resize_apply (w, 0);
2871 else
2873 resize_root_window (window, delta, Qnil, Qt);
2874 if (window_resize_check (w, 0))
2875 window_resize_apply (w, 0);
2876 else
2877 resize_failed = 1;
2880 /* Resize child windows horizontally. */
2881 if (!resize_failed)
2883 w->left_col = r->left_col;
2884 XSETINT (delta, r->total_cols - w->total_cols);
2885 resize_root_window (window, delta, Qt, Qnil);
2886 if (window_resize_check (w, 1))
2887 window_resize_apply (w, 1);
2888 else
2890 resize_root_window (window, delta, Qt, Qt);
2891 if (window_resize_check (w, 1))
2892 window_resize_apply (w, 1);
2893 else
2894 resize_failed = 1;
2898 if (resize_failed)
2899 /* Play safe, if we still can ... */
2901 window = swindow;
2902 w = XWINDOW (window);
2906 /* Cleanly unlink WINDOW from window-tree. */
2907 if (!NILP (w->prev))
2908 /* Get SIBLING above (on the left of) WINDOW. */
2910 sibling = w->prev;
2911 s = XWINDOW (sibling);
2912 wset_next (s, w->next);
2913 if (!NILP (s->next))
2914 wset_prev (XWINDOW (s->next), sibling);
2916 else
2917 /* Get SIBLING below (on the right of) WINDOW. */
2919 sibling = w->next;
2920 s = XWINDOW (sibling);
2921 wset_prev (s, Qnil);
2922 wset_combination (XWINDOW (w->parent),
2923 XWINDOW (w->parent)->horizontal, sibling);
2926 /* Delete ROOT and all child windows of ROOT. */
2927 if (WINDOWP (r->contents))
2929 delete_all_child_windows (r->contents);
2930 wset_combination (r, 0, Qnil);
2933 replace_window (root, window, 1);
2935 /* This must become SWINDOW anyway ....... */
2936 if (BUFFERP (w->contents) && !resize_failed)
2938 /* Try to minimize scrolling, by setting the window start to the
2939 point will cause the text at the old window start to be at the
2940 same place on the frame. But don't try to do this if the
2941 window start is outside the visible portion (as might happen
2942 when the display is not current, due to typeahead). */
2943 new_top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2944 if (new_top != top
2945 && startpos >= BUF_BEGV (XBUFFER (w->contents))
2946 && startpos <= BUF_ZV (XBUFFER (w->contents)))
2948 struct position pos;
2949 struct buffer *obuf = current_buffer;
2951 Fset_buffer (w->contents);
2952 /* This computation used to temporarily move point, but that
2953 can have unwanted side effects due to text properties. */
2954 pos = *vmotion (startpos, startbyte, -top, w);
2956 set_marker_both (w->start, w->contents, pos.bufpos, pos.bytepos);
2957 w->window_end_valid = 0;
2958 w->start_at_line_beg = (pos.bytepos == BEGV_BYTE
2959 || FETCH_BYTE (pos.bytepos - 1) == '\n');
2960 /* We need to do this, so that the window-scroll-functions
2961 get called. */
2962 w->optional_new_start = 1;
2964 set_buffer_internal (obuf);
2968 adjust_glyphs (f);
2969 unblock_input ();
2971 run_window_configuration_change_hook (f);
2973 return Qnil;
2977 void
2978 replace_buffer_in_windows (Lisp_Object buffer)
2980 call1 (Qreplace_buffer_in_windows, buffer);
2983 /* If BUFFER is shown in a window, safely replace it with some other
2984 buffer in all windows of all frames, even those on other keyboards. */
2986 void
2987 replace_buffer_in_windows_safely (Lisp_Object buffer)
2989 if (buffer_window_count (XBUFFER (buffer)))
2991 Lisp_Object tail, frame;
2993 /* A single call to window_loop won't do the job because it only
2994 considers frames on the current keyboard. So loop manually over
2995 frames, and handle each one. */
2996 FOR_EACH_FRAME (tail, frame)
2997 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY, buffer, 1, frame);
3001 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
3002 minimum allowable size. */
3004 void
3005 check_frame_size (FRAME_PTR frame, int *rows, int *cols)
3007 /* For height, we have to see:
3008 how many windows the frame has at minimum (one or two),
3009 and whether it has a menu bar or other special stuff at the top. */
3010 int min_height
3011 = ((FRAME_MINIBUF_ONLY_P (frame) || ! FRAME_HAS_MINIBUF_P (frame))
3012 ? MIN_SAFE_WINDOW_HEIGHT
3013 : 2 * MIN_SAFE_WINDOW_HEIGHT);
3015 if (FRAME_TOP_MARGIN (frame) > 0)
3016 min_height += FRAME_TOP_MARGIN (frame);
3018 if (*rows < min_height)
3019 *rows = min_height;
3020 if (*cols < MIN_SAFE_WINDOW_WIDTH)
3021 *cols = MIN_SAFE_WINDOW_WIDTH;
3024 /* Adjust the margins of window W if text area is too small.
3025 Return 1 if window width is ok after adjustment; 0 if window
3026 is still too narrow. */
3028 static int
3029 adjust_window_margins (struct window *w)
3031 int box_cols = (WINDOW_TOTAL_COLS (w)
3032 - WINDOW_FRINGE_COLS (w)
3033 - WINDOW_SCROLL_BAR_COLS (w));
3034 int margin_cols = (WINDOW_LEFT_MARGIN_COLS (w)
3035 + WINDOW_RIGHT_MARGIN_COLS (w));
3037 if (box_cols - margin_cols >= MIN_SAFE_WINDOW_WIDTH)
3038 return 1;
3040 if (margin_cols < 0 || box_cols < MIN_SAFE_WINDOW_WIDTH)
3041 return 0;
3043 /* Window's text area is too narrow, but reducing the window
3044 margins will fix that. */
3045 margin_cols = box_cols - MIN_SAFE_WINDOW_WIDTH;
3046 if (WINDOW_RIGHT_MARGIN_COLS (w) > 0)
3048 if (WINDOW_LEFT_MARGIN_COLS (w) > 0)
3050 wset_left_margin_cols (w, make_number (margin_cols / 2));
3051 wset_right_margin_cols (w, make_number (margin_cols / 2));
3053 else
3054 wset_right_margin_cols (w, make_number (margin_cols));
3056 else
3057 wset_left_margin_cols (w, make_number (margin_cols));
3058 return 1;
3061 /* The following three routines are needed for running a window's
3062 configuration change hook. */
3063 static void
3064 run_funs (Lisp_Object funs)
3066 for (; CONSP (funs); funs = XCDR (funs))
3067 if (!EQ (XCAR (funs), Qt))
3068 call0 (XCAR (funs));
3071 static Lisp_Object
3072 select_window_norecord (Lisp_Object window)
3074 return WINDOW_LIVE_P (window)
3075 ? Fselect_window (window, Qt) : selected_window;
3078 static Lisp_Object
3079 select_frame_norecord (Lisp_Object frame)
3081 return FRAME_LIVE_P (XFRAME (frame))
3082 ? Fselect_frame (frame, Qt) : selected_frame;
3085 void
3086 run_window_configuration_change_hook (struct frame *f)
3088 ptrdiff_t count = SPECPDL_INDEX ();
3089 Lisp_Object frame, global_wcch
3090 = Fdefault_value (Qwindow_configuration_change_hook);
3091 XSETFRAME (frame, f);
3093 if (NILP (Vrun_hooks) || !NILP (inhibit_lisp_code))
3094 return;
3096 /* Use the right buffer. Matters when running the local hooks. */
3097 if (current_buffer != XBUFFER (Fwindow_buffer (Qnil)))
3099 record_unwind_current_buffer ();
3100 Fset_buffer (Fwindow_buffer (Qnil));
3103 if (SELECTED_FRAME () != f)
3105 record_unwind_protect (select_frame_norecord, Fselected_frame ());
3106 select_frame_norecord (frame);
3109 /* Look for buffer-local values. */
3111 Lisp_Object windows = Fwindow_list (frame, Qlambda, Qnil);
3112 for (; CONSP (windows); windows = XCDR (windows))
3114 Lisp_Object window = XCAR (windows);
3115 Lisp_Object buffer = Fwindow_buffer (window);
3116 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook,
3117 buffer)))
3119 ptrdiff_t inner_count = SPECPDL_INDEX ();
3120 record_unwind_protect (select_window_norecord, Fselected_window ());
3121 select_window_norecord (window);
3122 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook,
3123 buffer));
3124 unbind_to (inner_count, Qnil);
3129 run_funs (global_wcch);
3130 unbind_to (count, Qnil);
3133 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook,
3134 Srun_window_configuration_change_hook, 0, 1, 0,
3135 doc: /* Run `window-configuration-change-hook' for FRAME.
3136 If FRAME is omitted or nil, it defaults to the selected frame. */)
3137 (Lisp_Object frame)
3139 run_window_configuration_change_hook (decode_live_frame (frame));
3140 return Qnil;
3143 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
3144 means it's allowed to run hooks. See make_frame for a case where
3145 it's not allowed. KEEP_MARGINS_P non-zero means that the current
3146 margins, fringes, and scroll-bar settings of the window are not
3147 reset from the buffer's local settings. */
3149 void
3150 set_window_buffer (Lisp_Object window, Lisp_Object buffer,
3151 bool run_hooks_p, bool keep_margins_p)
3153 struct window *w = XWINDOW (window);
3154 struct buffer *b = XBUFFER (buffer);
3155 ptrdiff_t count = SPECPDL_INDEX ();
3156 int samebuf = EQ (buffer, w->contents);
3158 wset_buffer (w, buffer);
3160 if (EQ (window, selected_window))
3161 bset_last_selected_window (b, window);
3163 /* Let redisplay errors through. */
3164 b->display_error_modiff = 0;
3166 /* Update time stamps of buffer display. */
3167 if (INTEGERP (BVAR (b, display_count)))
3168 bset_display_count (b, make_number (XINT (BVAR (b, display_count)) + 1));
3169 bset_display_time (b, Fcurrent_time ());
3171 wset_window_end_pos (w, make_number (0));
3172 wset_window_end_vpos (w, make_number (0));
3173 memset (&w->last_cursor, 0, sizeof w->last_cursor);
3175 if (!(keep_margins_p && samebuf))
3176 { /* If we're not actually changing the buffer, don't reset hscroll and
3177 vscroll. This case happens for example when called from
3178 change_frame_size_1, where we use a dummy call to
3179 Fset_window_buffer on the frame's selected window (and no other)
3180 just in order to run window-configuration-change-hook.
3181 Resetting hscroll and vscroll here is problematic for things like
3182 image-mode and doc-view-mode since it resets the image's position
3183 whenever we resize the frame. */
3184 w->hscroll = w->min_hscroll = 0;
3185 w->vscroll = 0;
3186 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3187 set_marker_restricted (w->start,
3188 make_number (b->last_window_start),
3189 buffer);
3190 w->start_at_line_beg = 0;
3191 w->force_start = 0;
3192 w->last_modified = 0;
3193 w->last_overlay_modified = 0;
3195 /* Maybe we could move this into the `if' but it's not obviously safe and
3196 I doubt it's worth the trouble. */
3197 windows_or_buffers_changed++;
3199 /* We must select BUFFER for running the window-scroll-functions. */
3200 /* We can't check ! NILP (Vwindow_scroll_functions) here
3201 because that might itself be a local variable. */
3202 if (window_initialized)
3204 record_unwind_current_buffer ();
3205 Fset_buffer (buffer);
3208 XMARKER (w->pointm)->insertion_type = !NILP (Vwindow_point_insertion_type);
3210 if (!keep_margins_p)
3212 /* Set left and right marginal area width etc. from buffer. */
3214 /* This may call adjust_window_margins three times, so
3215 temporarily disable window margins. */
3216 Lisp_Object save_left = w->left_margin_cols;
3217 Lisp_Object save_right = w->right_margin_cols;
3219 wset_left_margin_cols (w, Qnil);
3220 wset_right_margin_cols (w, Qnil);
3222 Fset_window_fringes (window,
3223 BVAR (b, left_fringe_width), BVAR (b, right_fringe_width),
3224 BVAR (b, fringes_outside_margins));
3226 Fset_window_scroll_bars (window,
3227 BVAR (b, scroll_bar_width),
3228 BVAR (b, vertical_scroll_bar_type), Qnil);
3230 wset_left_margin_cols (w, save_left);
3231 wset_right_margin_cols (w, save_right);
3233 Fset_window_margins (window,
3234 BVAR (b, left_margin_cols), BVAR (b, right_margin_cols));
3237 if (run_hooks_p)
3239 if (! NILP (Vwindow_scroll_functions))
3240 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3241 Fmarker_position (w->start));
3242 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w)));
3245 unbind_to (count, Qnil);
3248 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 3, 0,
3249 doc: /* Make WINDOW display BUFFER-OR-NAME as its contents.
3250 WINDOW must be a live window and defaults to the selected one.
3251 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3253 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3254 display margins, fringe widths, and scroll bar settings are preserved;
3255 the default is to reset these from the local settings for BUFFER-OR-NAME
3256 or the frame defaults. Return nil.
3258 This function throws an error when WINDOW is strongly dedicated to its
3259 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3260 already display BUFFER-OR-NAME.
3262 This function runs `window-scroll-functions' before running
3263 `window-configuration-change-hook'. */)
3264 (register Lisp_Object window, Lisp_Object buffer_or_name, Lisp_Object keep_margins)
3266 register Lisp_Object tem, buffer;
3267 register struct window *w = decode_live_window (window);
3269 XSETWINDOW (window, w);
3270 buffer = Fget_buffer (buffer_or_name);
3271 CHECK_BUFFER (buffer);
3272 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
3273 error ("Attempt to display deleted buffer");
3275 tem = w->contents;
3276 if (NILP (tem))
3277 error ("Window is deleted");
3278 else
3280 if (!EQ (tem, buffer))
3282 if (EQ (w->dedicated, Qt))
3283 /* WINDOW is strongly dedicated to its buffer, signal an
3284 error. */
3285 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem), name)));
3286 else
3287 /* WINDOW is weakly dedicated to its buffer, reset
3288 dedication. */
3289 wset_dedicated (w, Qnil);
3291 call1 (Qrecord_window_buffer, window);
3294 unshow_buffer (w);
3297 set_window_buffer (window, buffer, 1, !NILP (keep_margins));
3299 return Qnil;
3302 static Lisp_Object
3303 display_buffer (Lisp_Object buffer, Lisp_Object not_this_window_p, Lisp_Object override_frame)
3305 return call3 (Qdisplay_buffer, buffer, not_this_window_p, override_frame);
3308 DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
3309 0, 1, 0,
3310 doc: /* Force all windows to be updated on next redisplay.
3311 If optional arg OBJECT is a window, force redisplay of that window only.
3312 If OBJECT is a buffer or buffer name, force redisplay of all windows
3313 displaying that buffer. */)
3314 (Lisp_Object object)
3316 if (NILP (object))
3318 windows_or_buffers_changed++;
3319 update_mode_lines++;
3320 return Qt;
3323 if (WINDOWP (object))
3325 struct window *w = XWINDOW (object);
3326 mark_window_display_accurate (object, 0);
3327 w->update_mode_line = 1;
3328 if (BUFFERP (w->contents))
3329 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
3330 ++update_mode_lines;
3331 return Qt;
3334 if (STRINGP (object))
3335 object = Fget_buffer (object);
3336 if (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object))
3337 && buffer_window_count (XBUFFER (object)))
3339 /* If buffer is live and shown in at least one window, find
3340 all windows showing this buffer and force update of them. */
3341 object = window_loop (REDISPLAY_BUFFER_WINDOWS, object, 0, Qvisible);
3342 return NILP (object) ? Qnil : Qt;
3345 /* If nothing suitable was found, just return.
3346 We could signal an error, but this feature will typically be used
3347 asynchronously in timers or process sentinels, so we don't. */
3348 return Qnil;
3351 /* Obsolete since 24.3. */
3352 void
3353 temp_output_buffer_show (register Lisp_Object buf)
3355 register struct buffer *old = current_buffer;
3356 register Lisp_Object window;
3357 register struct window *w;
3359 bset_directory (XBUFFER (buf), BVAR (current_buffer, directory));
3361 Fset_buffer (buf);
3362 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3363 BEGV = BEG;
3364 ZV = Z;
3365 SET_PT (BEG);
3366 set_buffer_internal (old);
3368 if (!NILP (Vtemp_buffer_show_function))
3369 call1 (Vtemp_buffer_show_function, buf);
3370 else
3372 window = display_buffer (buf, Qnil, Qnil);
3374 if (!EQ (XWINDOW (window)->frame, selected_frame))
3375 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3376 Vminibuf_scroll_window = window;
3377 w = XWINDOW (window);
3378 w->hscroll = 0;
3379 w->min_hscroll = 0;
3380 set_marker_restricted_both (w->start, buf, BEG, BEG);
3381 set_marker_restricted_both (w->pointm, buf, BEG, BEG);
3383 /* Run temp-buffer-show-hook, with the chosen window selected
3384 and its buffer current. */
3386 ptrdiff_t count = SPECPDL_INDEX ();
3387 Lisp_Object prev_window, prev_buffer;
3388 prev_window = selected_window;
3389 XSETBUFFER (prev_buffer, old);
3391 /* Select the window that was chosen, for running the hook.
3392 Note: Both Fselect_window and select_window_norecord may
3393 set-buffer to the buffer displayed in the window,
3394 so we need to save the current buffer. --stef */
3395 record_unwind_protect (Fset_buffer, prev_buffer);
3396 record_unwind_protect (select_window_norecord, prev_window);
3397 Fselect_window (window, Qt);
3398 Fset_buffer (w->contents);
3399 Frun_hooks (1, &Qtemp_buffer_show_hook);
3400 unbind_to (count, Qnil);
3405 /* Make new window, have it replace WINDOW in window-tree, and make
3406 WINDOW its only vertical child (HORFLAG 1 means make WINDOW its only
3407 horizontal child). */
3408 static void
3409 make_parent_window (Lisp_Object window, bool horflag)
3411 Lisp_Object parent;
3412 register struct window *o, *p;
3414 o = XWINDOW (window);
3415 p = allocate_window ();
3416 memcpy ((char *) p + sizeof (struct vectorlike_header),
3417 (char *) o + sizeof (struct vectorlike_header),
3418 word_size * VECSIZE (struct window));
3419 /* P's buffer slot may change from nil to a buffer... */
3420 adjust_window_count (p, 1);
3421 XSETWINDOW (parent, p);
3423 replace_window (window, parent, 1);
3425 wset_next (o, Qnil);
3426 wset_prev (o, Qnil);
3427 wset_parent (o, parent);
3428 /* ...but now P becomes an internal window. */
3429 wset_start (p, Qnil);
3430 wset_pointm (p, Qnil);
3431 wset_buffer (p, Qnil);
3432 wset_combination (p, horflag, window);
3433 wset_combination_limit (p, Qnil);
3434 wset_window_parameters (p, Qnil);
3437 /* Make new window from scratch. */
3438 Lisp_Object
3439 make_window (void)
3441 Lisp_Object window;
3442 register struct window *w;
3444 w = allocate_window ();
3445 /* Initialize Lisp data. Note that allocate_window initializes all
3446 Lisp data to nil, so do it only for slots which should not be nil. */
3447 wset_normal_lines (w, make_float (1.0));
3448 wset_normal_cols (w, make_float (1.0));
3449 wset_new_total (w, make_number (0));
3450 wset_new_normal (w, make_number (0));
3451 wset_start (w, Fmake_marker ());
3452 wset_pointm (w, Fmake_marker ());
3453 wset_vertical_scroll_bar_type (w, Qt);
3454 wset_window_end_pos (w, make_number (0));
3455 wset_window_end_vpos (w, make_number (0));
3456 /* These Lisp fields are marked specially so they're not set to nil by
3457 allocate_window. */
3458 wset_prev_buffers (w, Qnil);
3459 wset_next_buffers (w, Qnil);
3461 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3462 non-Lisp data, so do it only for slots which should not be zero. */
3463 w->nrows_scale_factor = w->ncols_scale_factor = 1;
3464 w->phys_cursor_type = -1;
3465 w->phys_cursor_width = -1;
3466 w->column_number_displayed = -1;
3468 /* Reset window_list. */
3469 Vwindow_list = Qnil;
3470 /* Return window. */
3471 XSETWINDOW (window, w);
3472 return window;
3475 DEFUN ("set-window-new-total", Fset_window_new_total, Sset_window_new_total, 2, 3, 0,
3476 doc: /* Set new total size of WINDOW to SIZE.
3477 WINDOW must be a valid window and defaults to the selected one.
3478 Return SIZE.
3480 Optional argument ADD non-nil means add SIZE to the new total size of
3481 WINDOW and return the sum.
3483 Note: This function does not operate on any child windows of WINDOW. */)
3484 (Lisp_Object window, Lisp_Object size, Lisp_Object add)
3486 struct window *w = decode_valid_window (window);
3488 CHECK_NUMBER (size);
3489 if (NILP (add))
3490 wset_new_total (w, size);
3491 else
3492 wset_new_total (w, make_number (XINT (w->new_total) + XINT (size)));
3494 return w->new_total;
3497 DEFUN ("set-window-new-normal", Fset_window_new_normal, Sset_window_new_normal, 1, 2, 0,
3498 doc: /* Set new normal size of WINDOW to SIZE.
3499 WINDOW must be a valid window and defaults to the selected one.
3500 Return SIZE.
3502 Note: This function does not operate on any child windows of WINDOW. */)
3503 (Lisp_Object window, Lisp_Object size)
3505 wset_new_normal (decode_valid_window (window), size);
3506 return size;
3509 /* Return 1 if setting w->total_lines (w->total_cols if HORFLAG is
3510 non-zero) to w->new_total would result in correct heights (widths)
3511 for window W and recursively all child windows of W.
3513 Note: This function does not check any of `window-fixed-size-p',
3514 `window-min-height' or `window-min-width'. It does check that window
3515 sizes do not drop below one line (two columns). */
3516 static int
3517 window_resize_check (struct window *w, bool horflag)
3519 struct window *c;
3521 if (WINDOW_VERTICAL_COMBINATION_P (w))
3522 /* W is a vertical combination. */
3524 c = XWINDOW (w->contents);
3525 if (horflag)
3526 /* All child windows of W must have the same width as W. */
3528 while (c)
3530 if ((XINT (c->new_total) != XINT (w->new_total))
3531 || !window_resize_check (c, horflag))
3532 return 0;
3533 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3535 return 1;
3537 else
3538 /* The sum of the heights of the child windows of W must equal
3539 W's height. */
3541 int sum_of_sizes = 0;
3542 while (c)
3544 if (!window_resize_check (c, horflag))
3545 return 0;
3546 sum_of_sizes = sum_of_sizes + XINT (c->new_total);
3547 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3549 return (sum_of_sizes == XINT (w->new_total));
3552 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3553 /* W is a horizontal combination. */
3555 c = XWINDOW (w->contents);
3556 if (horflag)
3557 /* The sum of the widths of the child windows of W must equal W's
3558 width. */
3560 int sum_of_sizes = 0;
3561 while (c)
3563 if (!window_resize_check (c, horflag))
3564 return 0;
3565 sum_of_sizes = sum_of_sizes + XINT (c->new_total);
3566 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3568 return (sum_of_sizes == XINT (w->new_total));
3570 else
3571 /* All child windows of W must have the same height as W. */
3573 while (c)
3575 if ((XINT (c->new_total) != XINT (w->new_total))
3576 || !window_resize_check (c, horflag))
3577 return 0;
3578 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3580 return 1;
3583 else
3584 /* A leaf window. Make sure it's not too small. The following
3585 hardcodes the values of `window-safe-min-width' (2) and
3586 `window-safe-min-height' (1) which are defined in window.el. */
3587 return XINT (w->new_total) >= (horflag ? 2 : 1);
3590 /* Set w->total_lines (w->total_cols if HORIZONTAL is non-zero) to
3591 w->new_total for window W and recursively all child windows of W.
3592 Also calculate and assign the new vertical (horizontal) start
3593 positions of each of these windows.
3595 This function does not perform any error checks. Make sure you have
3596 run window_resize_check on W before applying this function. */
3597 static void
3598 window_resize_apply (struct window *w, bool horflag)
3600 struct window *c;
3601 int pos;
3603 /* Note: Assigning new_normal requires that the new total size of the
3604 parent window has been set *before*. */
3605 if (horflag)
3607 w->total_cols = XFASTINT (w->new_total);
3608 if (NUMBERP (w->new_normal))
3609 wset_normal_cols (w, w->new_normal);
3611 pos = w->left_col;
3613 else
3615 w->total_lines = XFASTINT (w->new_total);
3616 if (NUMBERP (w->new_normal))
3617 wset_normal_lines (w, w->new_normal);
3619 pos = w->top_line;
3622 if (WINDOW_VERTICAL_COMBINATION_P (w))
3623 /* W is a vertical combination. */
3625 c = XWINDOW (w->contents);
3626 while (c)
3628 if (horflag)
3629 c->left_col = pos;
3630 else
3631 c->top_line = pos;
3632 window_resize_apply (c, horflag);
3633 if (!horflag)
3634 pos = pos + c->total_lines;
3635 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3638 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3639 /* W is a horizontal combination. */
3641 c = XWINDOW (w->contents);
3642 while (c)
3644 if (horflag)
3645 c->left_col = pos;
3646 else
3647 c->top_line = pos;
3648 window_resize_apply (c, horflag);
3649 if (horflag)
3650 pos = pos + c->total_cols;
3651 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3655 /* Clear out some redisplay caches. */
3656 w->last_modified = 0;
3657 w->last_overlay_modified = 0;
3661 DEFUN ("window-resize-apply", Fwindow_resize_apply, Swindow_resize_apply, 0, 2, 0,
3662 doc: /* Apply requested size values for window-tree of FRAME.
3663 If FRAME is omitted or nil, it defaults to the selected frame.
3665 Optional argument HORIZONTAL omitted or nil means apply requested
3666 height values. HORIZONTAL non-nil means apply requested width values.
3668 This function checks whether the requested values sum up to a valid
3669 window layout, recursively assigns the new sizes of all child windows
3670 and calculates and assigns the new start positions of these windows.
3672 Note: This function does not check any of `window-fixed-size-p',
3673 `window-min-height' or `window-min-width'. All these checks have to
3674 be applied on the Elisp level. */)
3675 (Lisp_Object frame, Lisp_Object horizontal)
3677 struct frame *f = decode_live_frame (frame);
3678 struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
3679 bool horflag = !NILP (horizontal);
3681 if (!window_resize_check (r, horflag)
3682 || (XINT (r->new_total)
3683 != (horflag ? r->total_cols : r->total_lines)))
3684 return Qnil;
3686 block_input ();
3687 window_resize_apply (r, horflag);
3689 windows_or_buffers_changed++;
3690 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3692 adjust_glyphs (f);
3693 unblock_input ();
3695 run_window_configuration_change_hook (f);
3697 return Qt;
3701 /* Resize frame F's windows when number of lines of F is set to SIZE.
3702 HORFLAG 1 means resize windows when number of columns of F is set to
3703 SIZE.
3705 This function can delete all windows but the selected one in order to
3706 satisfy the request. The result will be meaningful if and only if
3707 F's windows have meaningful sizes when you call this. */
3708 void
3709 resize_frame_windows (struct frame *f, int size, bool horflag)
3711 Lisp_Object root = f->root_window;
3712 struct window *r = XWINDOW (root);
3713 Lisp_Object mini = f->minibuffer_window;
3714 struct window *m;
3715 /* new_size is the new size of the frame's root window. */
3716 int new_size = (horflag
3717 ? size
3718 : (size
3719 - FRAME_TOP_MARGIN (f)
3720 - ((FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
3721 ? 1 : 0)));
3723 r->top_line = FRAME_TOP_MARGIN (f);
3724 if (WINDOW_LEAF_P (r))
3725 /* For a leaf root window just set the size. */
3726 if (horflag)
3727 r->total_cols = new_size;
3728 else
3729 r->total_lines = new_size;
3730 else
3732 /* old_size is the old size of the frame's root window. */
3733 int old_size = horflag ? r->total_cols : r->total_lines;
3734 Lisp_Object delta;
3736 XSETINT (delta, new_size - old_size);
3737 /* Try a "normal" resize first. */
3738 resize_root_window (root, delta, horflag ? Qt : Qnil, Qnil);
3739 if (window_resize_check (r, horflag)
3740 && new_size == XINT (r->new_total))
3741 window_resize_apply (r, horflag);
3742 else
3744 /* Try with "reasonable" minimum sizes next. */
3745 resize_root_window (root, delta, horflag ? Qt : Qnil, Qt);
3746 if (window_resize_check (r, horflag)
3747 && new_size == XINT (r->new_total))
3748 window_resize_apply (r, horflag);
3749 else
3751 /* Finally, try with "safe" minimum sizes. */
3752 resize_root_window (root, delta, horflag ? Qt : Qnil, Qsafe);
3753 if (window_resize_check (r, horflag)
3754 && new_size == XINT (r->new_total))
3755 window_resize_apply (r, horflag);
3756 else
3758 /* We lost. Delete all windows but the frame's
3759 selected one. */
3760 root = f->selected_window;
3761 Fdelete_other_windows_internal (root, Qnil);
3762 if (horflag)
3763 XWINDOW (root)->total_cols = new_size;
3764 else
3765 XWINDOW (root)->total_lines = new_size;
3771 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
3773 m = XWINDOW (mini);
3774 if (horflag)
3775 m->total_cols = size;
3776 else
3778 /* Are we sure we always want 1 line here? */
3779 m->total_lines = 1;
3780 m->top_line = r->top_line + r->total_lines;
3784 windows_or_buffers_changed++;
3788 DEFUN ("split-window-internal", Fsplit_window_internal, Ssplit_window_internal, 4, 4, 0,
3789 doc: /* Split window OLD.
3790 Second argument TOTAL-SIZE specifies the number of lines or columns of the
3791 new window. In any case TOTAL-SIZE must be a positive integer.
3793 Third argument SIDE nil (or `below') specifies that the new window shall
3794 be located below WINDOW. SIDE `above' means the new window shall be
3795 located above WINDOW. In both cases TOTAL-SIZE specifies the number of
3796 lines of the new window including space reserved for the mode and/or
3797 header line.
3799 SIDE t (or `right') specifies that the new window shall be located on
3800 the right side of WINDOW. SIDE `left' means the new window shall be
3801 located on the left of WINDOW. In both cases TOTAL-SIZE specifies the
3802 number of columns of the new window including space reserved for fringes
3803 and the scrollbar or a divider column.
3805 Fourth argument NORMAL-SIZE specifies the normal size of the new window
3806 according to the SIDE argument.
3808 The new total and normal sizes of all involved windows must have been
3809 set correctly. See the code of `split-window' for how this is done. */)
3810 (Lisp_Object old, Lisp_Object total_size, Lisp_Object side, Lisp_Object normal_size)
3812 /* OLD (*o) is the window we have to split. (*p) is either OLD's
3813 parent window or an internal window we have to install as OLD's new
3814 parent. REFERENCE (*r) must denote a live window, or is set to OLD
3815 provided OLD is a leaf window, or to the frame's selected window.
3816 NEW (*n) is the new window created with some parameters taken from
3817 REFERENCE (*r). */
3818 register Lisp_Object new, frame, reference;
3819 register struct window *o, *p, *n, *r;
3820 struct frame *f;
3821 bool horflag
3822 /* HORFLAG is 1 when we split side-by-side, 0 otherwise. */
3823 = EQ (side, Qt) || EQ (side, Qleft) || EQ (side, Qright);
3824 int combination_limit = 0;
3826 CHECK_WINDOW (old);
3827 o = XWINDOW (old);
3828 frame = WINDOW_FRAME (o);
3829 f = XFRAME (frame);
3831 CHECK_NUMBER (total_size);
3833 /* Set combination_limit to 1 if we have to make a new parent window.
3834 We do that if either `window-combination-limit' is t, or OLD has no
3835 parent, or OLD is ortho-combined. */
3836 combination_limit =
3837 EQ (Vwindow_combination_limit, Qt)
3838 || NILP (o->parent)
3839 || (horflag
3840 ? WINDOW_VERTICAL_COMBINATION_P (XWINDOW (o->parent))
3841 : WINDOW_HORIZONTAL_COMBINATION_P (XWINDOW (o->parent)));
3843 /* We need a live reference window to initialize some parameters. */
3844 if (WINDOW_LIVE_P (old))
3845 /* OLD is live, use it as reference window. */
3846 reference = old;
3847 else
3848 /* Use the frame's selected window as reference window. */
3849 reference = FRAME_SELECTED_WINDOW (f);
3850 r = XWINDOW (reference);
3852 /* The following bugs are caught by `split-window'. */
3853 if (MINI_WINDOW_P (o))
3854 error ("Attempt to split minibuffer window");
3855 else if (XINT (total_size) < (horflag ? 2 : 1))
3856 error ("Size of new window too small (after split)");
3857 else if (!combination_limit && !NILP (Vwindow_combination_resize))
3858 /* `window-combination-resize' non-nil means try to resize OLD's siblings
3859 proportionally. */
3861 p = XWINDOW (o->parent);
3862 /* Temporarily pretend we split the parent window. */
3863 wset_new_total
3864 (p, make_number ((horflag ? p->total_cols : p->total_lines)
3865 - XINT (total_size)));
3866 if (!window_resize_check (p, horflag))
3867 error ("Window sizes don't fit");
3868 else
3869 /* Undo the temporary pretension. */
3870 wset_new_total (p, make_number
3871 (horflag ? p->total_cols : p->total_lines));
3873 else
3875 if (!window_resize_check (o, horflag))
3876 error ("Resizing old window failed");
3877 else if (XINT (total_size) + XINT (o->new_total)
3878 != (horflag ? o->total_cols : o->total_lines))
3879 error ("Sum of sizes of old and new window don't fit");
3882 /* This is our point of no return. */
3883 if (combination_limit)
3885 /* Save the old value of o->normal_cols/lines. It gets corrupted
3886 by make_parent_window and we need it below for assigning it to
3887 p->new_normal. */
3888 Lisp_Object new_normal
3889 = horflag ? o->normal_cols : o->normal_lines;
3891 make_parent_window (old, horflag);
3892 p = XWINDOW (o->parent);
3893 if (EQ (Vwindow_combination_limit, Qt))
3894 /* Store t in the new parent's combination_limit slot to avoid
3895 that its children get merged into another window. */
3896 wset_combination_limit (p, Qt);
3897 /* These get applied below. */
3898 wset_new_total (p, make_number
3899 (horflag ? o->total_cols : o->total_lines));
3900 wset_new_normal (p, new_normal);
3902 else
3903 p = XWINDOW (o->parent);
3905 windows_or_buffers_changed++;
3906 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3907 new = make_window ();
3908 n = XWINDOW (new);
3909 wset_frame (n, frame);
3910 wset_parent (n, o->parent);
3912 if (EQ (side, Qabove) || EQ (side, Qleft))
3914 wset_prev (n, o->prev);
3915 if (NILP (n->prev))
3916 wset_combination (p, horflag, new);
3917 else
3918 wset_next (XWINDOW (n->prev), new);
3919 wset_next (n, old);
3920 wset_prev (o, new);
3922 else
3924 wset_next (n, o->next);
3925 if (!NILP (n->next))
3926 wset_prev (XWINDOW (n->next), new);
3927 wset_prev (n, old);
3928 wset_next (o, new);
3931 n->window_end_valid = 0;
3932 memset (&n->last_cursor, 0, sizeof n->last_cursor);
3934 /* Get special geometry settings from reference window. */
3935 wset_left_margin_cols (n, r->left_margin_cols);
3936 wset_right_margin_cols (n, r->right_margin_cols);
3937 wset_left_fringe_width (n, r->left_fringe_width);
3938 wset_right_fringe_width (n, r->right_fringe_width);
3939 n->fringes_outside_margins = r->fringes_outside_margins;
3940 wset_scroll_bar_width (n, r->scroll_bar_width);
3941 wset_vertical_scroll_bar_type (n, r->vertical_scroll_bar_type);
3943 /* Directly assign orthogonal coordinates and sizes. */
3944 if (horflag)
3946 n->top_line = o->top_line;
3947 n->total_lines = o->total_lines;
3949 else
3951 n->left_col = o->left_col;
3952 n->total_cols = o->total_cols;
3955 /* Iso-coordinates and sizes are assigned by window_resize_apply,
3956 get them ready here. */
3957 wset_new_total (n, total_size);
3958 wset_new_normal (n, normal_size);
3960 block_input ();
3961 window_resize_apply (p, horflag);
3962 adjust_glyphs (f);
3963 /* Set buffer of NEW to buffer of reference window. Don't run
3964 any hooks. */
3965 set_window_buffer (new, r->contents, 0, 1);
3966 unblock_input ();
3968 /* Maybe we should run the scroll functions in Elisp (which already
3969 runs the configuration change hook). */
3970 if (! NILP (Vwindow_scroll_functions))
3971 run_hook_with_args_2 (Qwindow_scroll_functions, new,
3972 Fmarker_position (n->start));
3973 /* Return NEW. */
3974 return new;
3978 DEFUN ("delete-window-internal", Fdelete_window_internal, Sdelete_window_internal, 1, 1, 0,
3979 doc: /* Remove WINDOW from its frame.
3980 WINDOW defaults to the selected window. Return nil.
3981 Signal an error when WINDOW is the only window on its frame. */)
3982 (register Lisp_Object window)
3984 register Lisp_Object parent, sibling, frame, root;
3985 struct window *w, *p, *s, *r;
3986 struct frame *f;
3987 bool horflag, before_sibling = 0;
3989 w = decode_any_window (window);
3990 XSETWINDOW (window, w);
3991 if (NILP (w->contents))
3992 /* It's a no-op to delete an already deleted window. */
3993 return Qnil;
3995 parent = w->parent;
3996 if (NILP (parent))
3997 /* Never delete a minibuffer or frame root window. */
3998 error ("Attempt to delete minibuffer or sole ordinary window");
3999 else if (NILP (w->prev) && NILP (w->next))
4000 /* Rather bow out here, this case should be handled on the Elisp
4001 level. */
4002 error ("Attempt to delete sole window of parent");
4004 p = XWINDOW (parent);
4005 horflag = WINDOW_HORIZONTAL_COMBINATION_P (p);
4007 frame = WINDOW_FRAME (w);
4008 f = XFRAME (frame);
4010 root = FRAME_ROOT_WINDOW (f);
4011 r = XWINDOW (root);
4013 /* Unlink WINDOW from window tree. */
4014 if (NILP (w->prev))
4015 /* Get SIBLING below (on the right of) WINDOW. */
4017 /* before_sibling 1 means WINDOW is the first child of its
4018 parent and thus before the sibling. */
4019 before_sibling = 1;
4020 sibling = w->next;
4021 s = XWINDOW (sibling);
4022 wset_prev (s, Qnil);
4023 wset_combination (p, horflag, sibling);
4025 else
4026 /* Get SIBLING above (on the left of) WINDOW. */
4028 sibling = w->prev;
4029 s = XWINDOW (sibling);
4030 wset_next (s, w->next);
4031 if (!NILP (s->next))
4032 wset_prev (XWINDOW (s->next), sibling);
4035 if (window_resize_check (r, horflag)
4036 && (XINT (r->new_total)
4037 == (horflag ? r->total_cols : r->total_lines)))
4038 /* We can delete WINDOW now. */
4041 /* Block input. */
4042 block_input ();
4043 window_resize_apply (p, horflag);
4045 /* If this window is referred to by the dpyinfo's mouse
4046 highlight, invalidate that slot to be safe (Bug#9904). */
4047 if (!FRAME_INITIAL_P (f))
4049 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
4051 if (EQ (hlinfo->mouse_face_window, window))
4052 hlinfo->mouse_face_window = Qnil;
4055 windows_or_buffers_changed++;
4056 Vwindow_list = Qnil;
4057 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4059 wset_next (w, Qnil); /* Don't delete w->next too. */
4060 free_window_matrices (w);
4062 if (WINDOWP (w->contents))
4064 delete_all_child_windows (w->contents);
4065 wset_combination (w, 0, Qnil);
4067 else
4069 unshow_buffer (w);
4070 unchain_marker (XMARKER (w->pointm));
4071 unchain_marker (XMARKER (w->start));
4072 wset_buffer (w, Qnil);
4075 if (NILP (s->prev) && NILP (s->next))
4076 /* A matrjoshka where SIBLING has become the only child of
4077 PARENT. */
4079 /* Put SIBLING into PARENT's place. */
4080 replace_window (parent, sibling, 0);
4081 /* Have SIBLING inherit the following three slot values from
4082 PARENT (the combination_limit slot is not inherited). */
4083 wset_normal_cols (s, p->normal_cols);
4084 wset_normal_lines (s, p->normal_lines);
4085 /* Mark PARENT as deleted. */
4086 wset_combination (p, 0, Qnil);
4087 /* Try to merge SIBLING into its new parent. */
4088 recombine_windows (sibling);
4091 adjust_glyphs (f);
4093 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f)))
4094 /* We deleted the frame's selected window. */
4096 /* Use the frame's first window as fallback ... */
4097 Lisp_Object new_selected_window = Fframe_first_window (frame);
4098 /* ... but preferably use its most recently used window. */
4099 Lisp_Object mru_window;
4101 /* `get-mru-window' might fail for some reason so play it safe
4102 - promote the first window _without recording it_ first. */
4103 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4104 Fselect_window (new_selected_window, Qt);
4105 else
4106 fset_selected_window (f, new_selected_window);
4108 unblock_input ();
4110 /* Now look whether `get-mru-window' gets us something. */
4111 mru_window = call1 (Qget_mru_window, frame);
4112 if (WINDOW_LIVE_P (mru_window)
4113 && EQ (XWINDOW (mru_window)->frame, frame))
4114 new_selected_window = mru_window;
4116 /* If all ended up well, we now promote the mru window. */
4117 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4118 Fselect_window (new_selected_window, Qnil);
4119 else
4120 fset_selected_window (f, new_selected_window);
4122 else
4123 unblock_input ();
4125 /* Must be run by the caller:
4126 run_window_configuration_change_hook (f); */
4128 else
4129 /* We failed: Relink WINDOW into window tree. */
4131 if (before_sibling)
4133 wset_prev (s, window);
4134 wset_combination (p, horflag, window);
4136 else
4138 wset_next (s, window);
4139 if (!NILP (w->next))
4140 wset_prev (XWINDOW (w->next), window);
4142 error ("Deletion failed");
4145 return Qnil;
4148 /***********************************************************************
4149 Resizing Mini-Windows
4150 ***********************************************************************/
4152 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4153 can. */
4154 void
4155 grow_mini_window (struct window *w, int delta)
4157 struct frame *f = XFRAME (w->frame);
4158 struct window *r;
4159 Lisp_Object root, value;
4161 eassert (MINI_WINDOW_P (w));
4162 eassert (delta >= 0);
4164 root = FRAME_ROOT_WINDOW (f);
4165 r = XWINDOW (root);
4166 value = call2 (Qwindow_resize_root_window_vertically,
4167 root, make_number (- delta));
4168 if (INTEGERP (value) && window_resize_check (r, 0))
4170 block_input ();
4171 window_resize_apply (r, 0);
4173 /* Grow the mini-window. */
4174 w->top_line = r->top_line + r->total_lines;
4175 w->total_lines -= XINT (value);
4176 w->last_modified = 0;
4177 w->last_overlay_modified = 0;
4179 windows_or_buffers_changed++;
4180 adjust_glyphs (f);
4181 unblock_input ();
4186 /* Shrink mini-window W. */
4187 void
4188 shrink_mini_window (struct window *w)
4190 struct frame *f = XFRAME (w->frame);
4191 struct window *r;
4192 Lisp_Object root, value;
4193 EMACS_INT size;
4195 eassert (MINI_WINDOW_P (w));
4197 size = w->total_lines;
4198 if (size > 1)
4200 root = FRAME_ROOT_WINDOW (f);
4201 r = XWINDOW (root);
4202 value = call2 (Qwindow_resize_root_window_vertically,
4203 root, make_number (size - 1));
4204 if (INTEGERP (value) && window_resize_check (r, 0))
4206 block_input ();
4207 window_resize_apply (r, 0);
4209 /* Shrink the mini-window. */
4210 w->top_line = r->top_line + r->total_lines;
4211 w->total_lines = 1;
4213 w->last_modified = 0;
4214 w->last_overlay_modified = 0;
4216 windows_or_buffers_changed++;
4217 adjust_glyphs (f);
4218 unblock_input ();
4220 /* If the above failed for whatever strange reason we must make a
4221 one window frame here. The same routine will be needed when
4222 shrinking the frame (and probably when making the initial
4223 *scratch* window). For the moment leave things as they are. */
4227 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal, Sresize_mini_window_internal, 1, 1, 0,
4228 doc: /* Resize minibuffer window WINDOW. */)
4229 (Lisp_Object window)
4231 struct window *w = XWINDOW (window);
4232 struct window *r;
4233 struct frame *f;
4234 int height;
4236 CHECK_WINDOW (window);
4237 f = XFRAME (w->frame);
4239 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w->frame)), window))
4240 error ("Not a valid minibuffer window");
4241 else if (FRAME_MINIBUF_ONLY_P (f))
4242 error ("Cannot resize a minibuffer-only frame");
4244 r = XWINDOW (FRAME_ROOT_WINDOW (f));
4245 height = r->total_lines + w->total_lines;
4246 if (window_resize_check (r, 0)
4247 && XINT (w->new_total) > 0
4248 && height == XINT (r->new_total) + XINT (w->new_total))
4250 block_input ();
4251 window_resize_apply (r, 0);
4253 w->total_lines = XFASTINT (w->new_total);
4254 w->top_line = r->top_line + r->total_lines;
4256 windows_or_buffers_changed++;
4257 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4258 adjust_glyphs (f);
4259 unblock_input ();
4261 run_window_configuration_change_hook (f);
4262 return Qt;
4264 else error ("Failed to resize minibuffer window");
4267 /* Mark window cursors off for all windows in the window tree rooted
4268 at W by setting their phys_cursor_on_p flag to zero. Called from
4269 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4270 the frame are cleared. */
4272 void
4273 mark_window_cursors_off (struct window *w)
4275 while (w)
4277 if (WINDOWP (w->contents))
4278 mark_window_cursors_off (XWINDOW (w->contents));
4279 else
4280 w->phys_cursor_on_p = 0;
4282 w = NILP (w->next) ? 0 : XWINDOW (w->next);
4287 /* Return number of lines of text (not counting mode lines) in W. */
4290 window_internal_height (struct window *w)
4292 int ht = w->total_lines;
4294 if (!MINI_WINDOW_P (w))
4296 if (!NILP (w->parent)
4297 || WINDOWP (w->contents)
4298 || !NILP (w->next)
4299 || !NILP (w->prev)
4300 || WINDOW_WANTS_MODELINE_P (w))
4301 --ht;
4303 if (WINDOW_WANTS_HEADER_LINE_P (w))
4304 --ht;
4307 return ht;
4310 /************************************************************************
4311 Window Scrolling
4312 ***********************************************************************/
4314 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
4315 N screen-fulls, which is defined as the height of the window minus
4316 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4317 instead. Negative values of N mean scroll down. NOERROR non-zero
4318 means don't signal an error if we try to move over BEGV or ZV,
4319 respectively. */
4321 static void
4322 window_scroll (Lisp_Object window, EMACS_INT n, int whole, int noerror)
4324 immediate_quit = 1;
4325 n = clip_to_bounds (INT_MIN, n, INT_MAX);
4327 /* If we must, use the pixel-based version which is much slower than
4328 the line-based one but can handle varying line heights. */
4329 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
4330 window_scroll_pixel_based (window, n, whole, noerror);
4331 else
4332 window_scroll_line_based (window, n, whole, noerror);
4334 immediate_quit = 0;
4338 /* Implementation of window_scroll that works based on pixel line
4339 heights. See the comment of window_scroll for parameter
4340 descriptions. */
4342 static void
4343 window_scroll_pixel_based (Lisp_Object window, int n, int whole, int noerror)
4345 struct it it;
4346 struct window *w = XWINDOW (window);
4347 struct text_pos start;
4348 int this_scroll_margin;
4349 /* True if we fiddled the window vscroll field without really scrolling. */
4350 int vscrolled = 0;
4351 int x, y, rtop, rbot, rowh, vpos;
4352 void *itdata = NULL;
4354 SET_TEXT_POS_FROM_MARKER (start, w->start);
4355 /* Scrolling a minibuffer window via scroll bar when the echo area
4356 shows long text sometimes resets the minibuffer contents behind
4357 our backs. */
4358 if (CHARPOS (start) > ZV)
4359 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
4361 /* If PT is not visible in WINDOW, move back one half of
4362 the screen. Allow PT to be partially visible, otherwise
4363 something like (scroll-down 1) with PT in the line before
4364 the partially visible one would recenter. */
4366 if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos))
4368 itdata = bidi_shelve_cache ();
4369 /* Move backward half the height of the window. Performance note:
4370 vmotion used here is about 10% faster, but would give wrong
4371 results for variable height lines. */
4372 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4373 it.current_y = it.last_visible_y;
4374 move_it_vertically_backward (&it, window_box_height (w) / 2);
4376 /* The function move_iterator_vertically may move over more than
4377 the specified y-distance. If it->w is small, e.g. a
4378 mini-buffer window, we may end up in front of the window's
4379 display area. This is the case when Start displaying at the
4380 start of the line containing PT in this case. */
4381 if (it.current_y <= 0)
4383 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4384 move_it_vertically_backward (&it, 0);
4385 it.current_y = 0;
4388 start = it.current.pos;
4389 bidi_unshelve_cache (itdata, 0);
4391 else if (auto_window_vscroll_p)
4393 if (rtop || rbot) /* partially visible */
4395 int px;
4396 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
4397 if (whole)
4398 dy = max ((window_box_height (w)
4399 - next_screen_context_lines * dy),
4400 dy);
4401 dy *= n;
4403 if (n < 0)
4405 /* Only vscroll backwards if already vscrolled forwards. */
4406 if (w->vscroll < 0 && rtop > 0)
4408 px = max (0, -w->vscroll - min (rtop, -dy));
4409 Fset_window_vscroll (window, make_number (px), Qt);
4410 return;
4413 if (n > 0)
4415 /* Do vscroll if already vscrolled or only display line. */
4416 if (rbot > 0 && (w->vscroll < 0 || vpos == 0))
4418 px = max (0, -w->vscroll + min (rbot, dy));
4419 Fset_window_vscroll (window, make_number (px), Qt);
4420 return;
4423 /* Maybe modify window start instead of scrolling. */
4424 if (rbot > 0 || w->vscroll < 0)
4426 ptrdiff_t spos;
4428 Fset_window_vscroll (window, make_number (0), Qt);
4429 /* If there are other text lines above the current row,
4430 move window start to current row. Else to next row. */
4431 if (rbot > 0)
4432 spos = XINT (Fline_beginning_position (Qnil));
4433 else
4434 spos = min (XINT (Fline_end_position (Qnil)) + 1, ZV);
4435 set_marker_restricted (w->start, make_number (spos),
4436 w->contents);
4437 w->start_at_line_beg = 1;
4438 w->update_mode_line = 1;
4439 w->last_modified = 0;
4440 w->last_overlay_modified = 0;
4441 /* Set force_start so that redisplay_window will run the
4442 window-scroll-functions. */
4443 w->force_start = 1;
4444 return;
4448 /* Cancel previous vscroll. */
4449 Fset_window_vscroll (window, make_number (0), Qt);
4452 itdata = bidi_shelve_cache ();
4453 /* If scroll_preserve_screen_position is non-nil, we try to set
4454 point in the same window line as it is now, so get that line. */
4455 if (!NILP (Vscroll_preserve_screen_position))
4457 /* We preserve the goal pixel coordinate across consecutive
4458 calls to scroll-up, scroll-down and other commands that
4459 have the `scroll-command' property. This avoids the
4460 possibility of point becoming "stuck" on a tall line when
4461 scrolling by one line. */
4462 if (window_scroll_pixel_based_preserve_y < 0
4463 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
4464 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
4466 start_display (&it, w, start);
4467 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4468 window_scroll_pixel_based_preserve_y = it.current_y;
4469 window_scroll_pixel_based_preserve_x = it.current_x;
4472 else
4473 window_scroll_pixel_based_preserve_y
4474 = window_scroll_pixel_based_preserve_x = -1;
4476 /* Move iterator it from start the specified distance forward or
4477 backward. The result is the new window start. */
4478 start_display (&it, w, start);
4479 if (whole)
4481 ptrdiff_t start_pos = IT_CHARPOS (it);
4482 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
4483 dy = max ((window_box_height (w)
4484 - next_screen_context_lines * dy),
4485 dy) * n;
4487 /* Note that move_it_vertically always moves the iterator to the
4488 start of a line. So, if the last line doesn't have a newline,
4489 we would end up at the start of the line ending at ZV. */
4490 if (dy <= 0)
4492 move_it_vertically_backward (&it, -dy);
4493 /* Ensure we actually do move, e.g. in case we are currently
4494 looking at an image that is taller that the window height. */
4495 while (start_pos == IT_CHARPOS (it)
4496 && start_pos > BEGV)
4497 move_it_by_lines (&it, -1);
4499 else if (dy > 0)
4501 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4502 MOVE_TO_POS | MOVE_TO_Y);
4503 /* Ensure we actually do move, e.g. in case we are currently
4504 looking at an image that is taller that the window height. */
4505 while (start_pos == IT_CHARPOS (it)
4506 && start_pos < ZV)
4507 move_it_by_lines (&it, 1);
4510 else
4511 move_it_by_lines (&it, n);
4513 /* We failed if we find ZV is already on the screen (scrolling up,
4514 means there's nothing past the end), or if we can't start any
4515 earlier (scrolling down, means there's nothing past the top). */
4516 if ((n > 0 && IT_CHARPOS (it) == ZV)
4517 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4519 if (IT_CHARPOS (it) == ZV)
4521 if (it.current_y < it.last_visible_y
4522 && (it.current_y + it.max_ascent + it.max_descent
4523 > it.last_visible_y))
4525 /* The last line was only partially visible, make it fully
4526 visible. */
4527 w->vscroll = (it.last_visible_y
4528 - it.current_y + it.max_ascent + it.max_descent);
4529 adjust_glyphs (it.f);
4531 else
4533 bidi_unshelve_cache (itdata, 0);
4534 if (noerror)
4535 return;
4536 else if (n < 0) /* could happen with empty buffers */
4537 xsignal0 (Qbeginning_of_buffer);
4538 else
4539 xsignal0 (Qend_of_buffer);
4542 else
4544 if (w->vscroll != 0)
4545 /* The first line was only partially visible, make it fully
4546 visible. */
4547 w->vscroll = 0;
4548 else
4550 bidi_unshelve_cache (itdata, 0);
4551 if (noerror)
4552 return;
4553 else
4554 xsignal0 (Qbeginning_of_buffer);
4558 /* If control gets here, then we vscrolled. */
4560 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
4562 /* Don't try to change the window start below. */
4563 vscrolled = 1;
4566 if (! vscrolled)
4568 ptrdiff_t pos = IT_CHARPOS (it);
4569 ptrdiff_t bytepos;
4571 /* If in the middle of a multi-glyph character move forward to
4572 the next character. */
4573 if (in_display_vector_p (&it))
4575 ++pos;
4576 move_it_to (&it, pos, -1, -1, -1, MOVE_TO_POS);
4579 /* Set the window start, and set up the window for redisplay. */
4580 set_marker_restricted_both (w->start, w->contents, IT_CHARPOS (it),
4581 IT_BYTEPOS (it));
4582 bytepos = marker_byte_position (w->start);
4583 w->start_at_line_beg = (pos == BEGV || FETCH_BYTE (bytepos - 1) == '\n');
4584 w->update_mode_line = 1;
4585 w->last_modified = 0;
4586 w->last_overlay_modified = 0;
4587 /* Set force_start so that redisplay_window will run the
4588 window-scroll-functions. */
4589 w->force_start = 1;
4592 /* The rest of this function uses current_y in a nonstandard way,
4593 not including the height of the header line if any. */
4594 it.current_y = it.vpos = 0;
4596 /* Move PT out of scroll margins.
4597 This code wants current_y to be zero at the window start position
4598 even if there is a header line. */
4599 this_scroll_margin = max (0, scroll_margin);
4600 this_scroll_margin
4601 = min (this_scroll_margin, w->total_lines / 4);
4602 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
4604 if (n > 0)
4606 /* We moved the window start towards ZV, so PT may be now
4607 in the scroll margin at the top. */
4608 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4609 if (IT_CHARPOS (it) == PT && it.current_y >= this_scroll_margin
4610 && (NILP (Vscroll_preserve_screen_position)
4611 || EQ (Vscroll_preserve_screen_position, Qt)))
4612 /* We found PT at a legitimate height. Leave it alone. */
4614 else if (window_scroll_pixel_based_preserve_y >= 0)
4616 /* If we have a header line, take account of it.
4617 This is necessary because we set it.current_y to 0, above. */
4618 move_it_to (&it, -1,
4619 window_scroll_pixel_based_preserve_x,
4620 window_scroll_pixel_based_preserve_y
4621 - (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0 ),
4622 -1, MOVE_TO_Y | MOVE_TO_X);
4623 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4625 else
4627 while (it.current_y < this_scroll_margin)
4629 int prev = it.current_y;
4630 move_it_by_lines (&it, 1);
4631 if (prev == it.current_y)
4632 break;
4634 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4637 else if (n < 0)
4639 ptrdiff_t charpos, bytepos;
4640 int partial_p;
4642 /* Save our position, for the
4643 window_scroll_pixel_based_preserve_y case. */
4644 charpos = IT_CHARPOS (it);
4645 bytepos = IT_BYTEPOS (it);
4647 /* We moved the window start towards BEGV, so PT may be now
4648 in the scroll margin at the bottom. */
4649 move_it_to (&it, PT, -1,
4650 (it.last_visible_y - CURRENT_HEADER_LINE_HEIGHT (w)
4651 - this_scroll_margin - 1),
4653 MOVE_TO_POS | MOVE_TO_Y);
4655 /* Save our position, in case it's correct. */
4656 charpos = IT_CHARPOS (it);
4657 bytepos = IT_BYTEPOS (it);
4659 /* See if point is on a partially visible line at the end. */
4660 if (it.what == IT_EOB)
4661 partial_p = it.current_y + it.ascent + it.descent > it.last_visible_y;
4662 else
4664 move_it_by_lines (&it, 1);
4665 partial_p = it.current_y > it.last_visible_y;
4668 if (charpos == PT && !partial_p
4669 && (NILP (Vscroll_preserve_screen_position)
4670 || EQ (Vscroll_preserve_screen_position, Qt)))
4671 /* We found PT before we found the display margin, so PT is ok. */
4673 else if (window_scroll_pixel_based_preserve_y >= 0)
4675 SET_TEXT_POS_FROM_MARKER (start, w->start);
4676 start_display (&it, w, start);
4677 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
4678 here because we called start_display again and did not
4679 alter it.current_y this time. */
4680 move_it_to (&it, -1, window_scroll_pixel_based_preserve_x,
4681 window_scroll_pixel_based_preserve_y, -1,
4682 MOVE_TO_Y | MOVE_TO_X);
4683 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4685 else
4687 if (partial_p)
4688 /* The last line was only partially visible, so back up two
4689 lines to make sure we're on a fully visible line. */
4691 move_it_by_lines (&it, -2);
4692 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4694 else
4695 /* No, the position we saved is OK, so use it. */
4696 SET_PT_BOTH (charpos, bytepos);
4699 bidi_unshelve_cache (itdata, 0);
4703 /* Implementation of window_scroll that works based on screen lines.
4704 See the comment of window_scroll for parameter descriptions. */
4706 static void
4707 window_scroll_line_based (Lisp_Object window, int n, int whole, int noerror)
4709 register struct window *w = XWINDOW (window);
4710 /* Fvertical_motion enters redisplay, which can trigger
4711 fontification, which in turn can modify buffer text (e.g., if the
4712 fontification functions replace escape sequences with faces, as
4713 in `grep-mode-font-lock-keywords'). So we use a marker to record
4714 the old point position, to prevent crashes in SET_PT_BOTH. */
4715 Lisp_Object opoint_marker = Fpoint_marker ();
4716 register ptrdiff_t pos, pos_byte;
4717 register int ht = window_internal_height (w);
4718 register Lisp_Object tem;
4719 int lose;
4720 Lisp_Object bolp;
4721 ptrdiff_t startpos = marker_position (w->start);
4722 ptrdiff_t startbyte = marker_byte_position (w->start);
4723 Lisp_Object original_pos = Qnil;
4725 /* If scrolling screen-fulls, compute the number of lines to
4726 scroll from the window's height. */
4727 if (whole)
4728 n *= max (1, ht - next_screen_context_lines);
4730 if (!NILP (Vscroll_preserve_screen_position))
4732 if (window_scroll_preserve_vpos <= 0
4733 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
4734 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
4736 struct position posit
4737 = *compute_motion (startpos, startbyte, 0, 0, 0,
4738 PT, ht, 0, -1, w->hscroll, 0, w);
4739 window_scroll_preserve_vpos = posit.vpos;
4740 window_scroll_preserve_hpos = posit.hpos + w->hscroll;
4743 original_pos = Fcons (make_number (window_scroll_preserve_hpos),
4744 make_number (window_scroll_preserve_vpos));
4747 XSETFASTINT (tem, PT);
4748 tem = Fpos_visible_in_window_p (tem, window, Qnil);
4750 if (NILP (tem))
4752 Fvertical_motion (make_number (- (ht / 2)), window);
4753 startpos = PT;
4754 startbyte = PT_BYTE;
4757 SET_PT_BOTH (startpos, startbyte);
4758 lose = n < 0 && PT == BEGV;
4759 Fvertical_motion (make_number (n), window);
4760 pos = PT;
4761 pos_byte = PT_BYTE;
4762 bolp = Fbolp ();
4763 SET_PT_BOTH (marker_position (opoint_marker),
4764 marker_byte_position (opoint_marker));
4766 if (lose)
4768 if (noerror)
4769 return;
4770 else
4771 xsignal0 (Qbeginning_of_buffer);
4774 if (pos < ZV)
4776 /* Don't use a scroll margin that is negative or too large. */
4777 int this_scroll_margin =
4778 max (0, min (scroll_margin, w->total_lines / 4));
4780 set_marker_restricted_both (w->start, w->contents, pos, pos_byte);
4781 w->start_at_line_beg = !NILP (bolp);
4782 w->update_mode_line = 1;
4783 w->last_modified = 0;
4784 w->last_overlay_modified = 0;
4785 /* Set force_start so that redisplay_window will run
4786 the window-scroll-functions. */
4787 w->force_start = 1;
4789 if (!NILP (Vscroll_preserve_screen_position)
4790 && (whole || !EQ (Vscroll_preserve_screen_position, Qt)))
4792 SET_PT_BOTH (pos, pos_byte);
4793 Fvertical_motion (original_pos, window);
4795 /* If we scrolled forward, put point enough lines down
4796 that it is outside the scroll margin. */
4797 else if (n > 0)
4799 int top_margin;
4801 if (this_scroll_margin > 0)
4803 SET_PT_BOTH (pos, pos_byte);
4804 Fvertical_motion (make_number (this_scroll_margin), window);
4805 top_margin = PT;
4807 else
4808 top_margin = pos;
4810 if (top_margin <= marker_position (opoint_marker))
4811 SET_PT_BOTH (marker_position (opoint_marker),
4812 marker_byte_position (opoint_marker));
4813 else if (!NILP (Vscroll_preserve_screen_position))
4815 SET_PT_BOTH (pos, pos_byte);
4816 Fvertical_motion (original_pos, window);
4818 else
4819 SET_PT (top_margin);
4821 else if (n < 0)
4823 int bottom_margin;
4825 /* If we scrolled backward, put point near the end of the window
4826 but not within the scroll margin. */
4827 SET_PT_BOTH (pos, pos_byte);
4828 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
4829 if (XFASTINT (tem) == ht - this_scroll_margin)
4830 bottom_margin = PT;
4831 else
4832 bottom_margin = PT + 1;
4834 if (bottom_margin > marker_position (opoint_marker))
4835 SET_PT_BOTH (marker_position (opoint_marker),
4836 marker_byte_position (opoint_marker));
4837 else
4839 if (!NILP (Vscroll_preserve_screen_position))
4841 SET_PT_BOTH (pos, pos_byte);
4842 Fvertical_motion (original_pos, window);
4844 else
4845 Fvertical_motion (make_number (-1), window);
4849 else
4851 if (noerror)
4852 return;
4853 else
4854 xsignal0 (Qend_of_buffer);
4859 /* Scroll selected_window up or down. If N is nil, scroll a
4860 screen-full which is defined as the height of the window minus
4861 next_screen_context_lines. If N is the symbol `-', scroll.
4862 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4863 up. This is the guts of Fscroll_up and Fscroll_down. */
4865 static void
4866 scroll_command (Lisp_Object n, int direction)
4868 ptrdiff_t count = SPECPDL_INDEX ();
4870 eassert (eabs (direction) == 1);
4872 /* If selected window's buffer isn't current, make it current for
4873 the moment. But don't screw up if window_scroll gets an error. */
4874 if (XBUFFER (XWINDOW (selected_window)->contents) != current_buffer)
4876 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4877 Fset_buffer (XWINDOW (selected_window)->contents);
4879 /* Make redisplay consider other windows than just selected_window. */
4880 ++windows_or_buffers_changed;
4883 if (NILP (n))
4884 window_scroll (selected_window, direction, 1, 0);
4885 else if (EQ (n, Qminus))
4886 window_scroll (selected_window, -direction, 1, 0);
4887 else
4889 n = Fprefix_numeric_value (n);
4890 window_scroll (selected_window, XINT (n) * direction, 0, 0);
4893 unbind_to (count, Qnil);
4896 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "^P",
4897 doc: /* Scroll text of selected window upward ARG lines.
4898 If ARG is omitted or nil, scroll upward by a near full screen.
4899 A near full screen is `next-screen-context-lines' less than a full screen.
4900 Negative ARG means scroll downward.
4901 If ARG is the atom `-', scroll downward by nearly full screen.
4902 When calling from a program, supply as argument a number, nil, or `-'. */)
4903 (Lisp_Object arg)
4905 scroll_command (arg, 1);
4906 return Qnil;
4909 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "^P",
4910 doc: /* Scroll text of selected window down ARG lines.
4911 If ARG is omitted or nil, scroll down by a near full screen.
4912 A near full screen is `next-screen-context-lines' less than a full screen.
4913 Negative ARG means scroll upward.
4914 If ARG is the atom `-', scroll upward by nearly full screen.
4915 When calling from a program, supply as argument a number, nil, or `-'. */)
4916 (Lisp_Object arg)
4918 scroll_command (arg, -1);
4919 return Qnil;
4922 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4923 doc: /* Return the other window for \"other window scroll\" commands.
4924 If `other-window-scroll-buffer' is non-nil, a window
4925 showing that buffer is used.
4926 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4927 specifies the window. This takes precedence over
4928 `other-window-scroll-buffer'. */)
4929 (void)
4931 Lisp_Object window;
4933 if (MINI_WINDOW_P (XWINDOW (selected_window))
4934 && !NILP (Vminibuf_scroll_window))
4935 window = Vminibuf_scroll_window;
4936 /* If buffer is specified, scroll that buffer. */
4937 else if (!NILP (Vother_window_scroll_buffer))
4939 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
4940 if (NILP (window))
4941 window = display_buffer (Vother_window_scroll_buffer, Qt, Qnil);
4943 else
4945 /* Nothing specified; look for a neighboring window on the same
4946 frame. */
4947 window = Fnext_window (selected_window, Qnil, Qnil);
4949 if (EQ (window, selected_window))
4950 /* That didn't get us anywhere; look for a window on another
4951 visible frame. */
4953 window = Fnext_window (window, Qnil, Qt);
4954 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4955 && ! EQ (window, selected_window));
4958 CHECK_LIVE_WINDOW (window);
4960 if (EQ (window, selected_window))
4961 error ("There is no other window");
4963 return window;
4966 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4967 doc: /* Scroll next window upward ARG lines; or near full screen if no ARG.
4968 A near full screen is `next-screen-context-lines' less than a full screen.
4969 The next window is the one below the current one; or the one at the top
4970 if the current one is at the bottom. Negative ARG means scroll downward.
4971 If ARG is the atom `-', scroll downward by nearly full screen.
4972 When calling from a program, supply as argument a number, nil, or `-'.
4974 If `other-window-scroll-buffer' is non-nil, scroll the window
4975 showing that buffer, popping the buffer up if necessary.
4976 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4977 specifies the window to scroll. This takes precedence over
4978 `other-window-scroll-buffer'. */)
4979 (Lisp_Object arg)
4981 Lisp_Object window;
4982 struct window *w;
4983 ptrdiff_t count = SPECPDL_INDEX ();
4985 window = Fother_window_for_scrolling ();
4986 w = XWINDOW (window);
4988 /* Don't screw up if window_scroll gets an error. */
4989 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4990 ++windows_or_buffers_changed;
4992 Fset_buffer (w->contents);
4993 SET_PT_BOTH (marker_position (w->pointm), marker_byte_position (w->pointm));
4995 if (NILP (arg))
4996 window_scroll (window, 1, 1, 1);
4997 else if (EQ (arg, Qminus))
4998 window_scroll (window, -1, 1, 1);
4999 else
5001 if (CONSP (arg))
5002 arg = XCAR (arg);
5003 CHECK_NUMBER (arg);
5004 window_scroll (window, XINT (arg), 0, 1);
5007 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5008 unbind_to (count, Qnil);
5010 return Qnil;
5013 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "^P\np",
5014 doc: /* Scroll selected window display ARG columns left.
5015 Default for ARG is window width minus 2.
5016 Value is the total amount of leftward horizontal scrolling in
5017 effect after the change.
5018 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5019 lower bound for automatic scrolling, i.e. automatic scrolling
5020 will not scroll a window to a column less than the value returned
5021 by this function. This happens in an interactive call. */)
5022 (register Lisp_Object arg, Lisp_Object set_minimum)
5024 struct window *w = XWINDOW (selected_window);
5025 EMACS_INT requested_arg = (NILP (arg)
5026 ? window_body_cols (w) - 2
5027 : XINT (Fprefix_numeric_value (arg)));
5028 Lisp_Object result = set_window_hscroll (w, w->hscroll + requested_arg);
5030 if (!NILP (set_minimum))
5031 w->min_hscroll = w->hscroll;
5033 return result;
5036 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "^P\np",
5037 doc: /* Scroll selected window display ARG columns right.
5038 Default for ARG is window width minus 2.
5039 Value is the total amount of leftward horizontal scrolling in
5040 effect after the change.
5041 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5042 lower bound for automatic scrolling, i.e. automatic scrolling
5043 will not scroll a window to a column less than the value returned
5044 by this function. This happens in an interactive call. */)
5045 (register Lisp_Object arg, Lisp_Object set_minimum)
5047 struct window *w = XWINDOW (selected_window);
5048 EMACS_INT requested_arg = (NILP (arg)
5049 ? window_body_cols (w) - 2
5050 : XINT (Fprefix_numeric_value (arg)));
5051 Lisp_Object result = set_window_hscroll (w, w->hscroll - requested_arg);
5053 if (!NILP (set_minimum))
5054 w->min_hscroll = w->hscroll;
5056 return result;
5059 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window, Sminibuffer_selected_window, 0, 0, 0,
5060 doc: /* Return the window which was selected when entering the minibuffer.
5061 Returns nil, if selected window is not a minibuffer window. */)
5062 (void)
5064 if (minibuf_level > 0
5065 && MINI_WINDOW_P (XWINDOW (selected_window))
5066 && WINDOW_LIVE_P (minibuf_selected_window))
5067 return minibuf_selected_window;
5069 return Qnil;
5072 /* Value is the number of lines actually displayed in window W,
5073 as opposed to its height. */
5075 static int
5076 displayed_window_lines (struct window *w)
5078 struct it it;
5079 struct text_pos start;
5080 ptrdiff_t charpos = marker_position (w->start);
5081 int height = window_box_height (w);
5082 struct buffer *old_buffer;
5083 int bottom_y;
5084 void *itdata = NULL;
5086 if (XBUFFER (w->contents) != current_buffer)
5088 old_buffer = current_buffer;
5089 set_buffer_internal (XBUFFER (w->contents));
5091 else
5092 old_buffer = NULL;
5094 /* In case W->start is out of the accessible range, do something
5095 reasonable. This happens in Info mode when Info-scroll-down
5096 calls (recenter -1) while W->start is 1. */
5097 if (charpos < BEGV)
5098 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
5099 else if (charpos > ZV)
5100 SET_TEXT_POS (start, ZV, ZV_BYTE);
5101 else
5102 SET_TEXT_POS_FROM_MARKER (start, w->start);
5104 itdata = bidi_shelve_cache ();
5105 start_display (&it, w, start);
5106 move_it_vertically (&it, height);
5107 bottom_y = line_bottom_y (&it);
5108 bidi_unshelve_cache (itdata, 0);
5110 /* rms: On a non-window display,
5111 the value of it.vpos at the bottom of the screen
5112 seems to be 1 larger than window_box_height (w).
5113 This kludge fixes a bug whereby (move-to-window-line -1)
5114 when ZV is on the last screen line
5115 moves to the previous screen line instead of the last one. */
5116 if (! FRAME_WINDOW_P (XFRAME (w->frame)))
5117 height++;
5119 /* Add in empty lines at the bottom of the window. */
5120 if (bottom_y < height)
5122 int uy = FRAME_LINE_HEIGHT (it.f);
5123 it.vpos += (height - bottom_y + uy - 1) / uy;
5126 if (old_buffer)
5127 set_buffer_internal (old_buffer);
5129 return it.vpos;
5133 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
5134 doc: /* Center point in selected window and maybe redisplay frame.
5135 With a numeric prefix argument ARG, recenter putting point on screen line ARG
5136 relative to the selected window. If ARG is negative, it counts up from the
5137 bottom of the window. (ARG should be less than the height of the window.)
5139 If ARG is omitted or nil, then recenter with point on the middle line of
5140 the selected window; if the variable `recenter-redisplay' is non-nil,
5141 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5142 is set to `grow-only', this resets the tool-bar's height to the minimum
5143 height needed); if `recenter-redisplay' has the special value `tty',
5144 then only tty frames are redrawn.
5146 Just C-u as prefix means put point in the center of the window
5147 and redisplay normally--don't erase and redraw the frame. */)
5148 (register Lisp_Object arg)
5150 struct window *w = XWINDOW (selected_window);
5151 struct buffer *buf = XBUFFER (w->contents);
5152 struct buffer *obuf = current_buffer;
5153 int center_p = 0;
5154 ptrdiff_t charpos, bytepos;
5155 EMACS_INT iarg IF_LINT (= 0);
5156 int this_scroll_margin;
5158 /* If redisplay is suppressed due to an error, try again. */
5159 obuf->display_error_modiff = 0;
5161 if (NILP (arg))
5163 if (!NILP (Vrecenter_redisplay)
5164 && (!EQ (Vrecenter_redisplay, Qtty)
5165 || !NILP (Ftty_type (selected_frame))))
5167 ptrdiff_t i;
5169 /* Invalidate pixel data calculated for all compositions. */
5170 for (i = 0; i < n_compositions; i++)
5171 composition_table[i]->font = NULL;
5173 WINDOW_XFRAME (w)->minimize_tool_bar_window_p = 1;
5175 Fredraw_frame (WINDOW_FRAME (w));
5176 SET_FRAME_GARBAGED (WINDOW_XFRAME (w));
5179 center_p = 1;
5181 else if (CONSP (arg)) /* Just C-u. */
5182 center_p = 1;
5183 else
5185 arg = Fprefix_numeric_value (arg);
5186 CHECK_NUMBER (arg);
5187 iarg = XINT (arg);
5190 set_buffer_internal (buf);
5192 /* Do this after making BUF current
5193 in case scroll_margin is buffer-local. */
5194 this_scroll_margin =
5195 max (0, min (scroll_margin, w->total_lines / 4));
5197 /* Handle centering on a graphical frame specially. Such frames can
5198 have variable-height lines and centering point on the basis of
5199 line counts would lead to strange effects. */
5200 if (FRAME_WINDOW_P (XFRAME (w->frame)))
5202 if (center_p)
5204 struct it it;
5205 struct text_pos pt;
5206 void *itdata = bidi_shelve_cache ();
5208 SET_TEXT_POS (pt, PT, PT_BYTE);
5209 start_display (&it, w, pt);
5210 move_it_vertically_backward (&it, window_box_height (w) / 2);
5211 charpos = IT_CHARPOS (it);
5212 bytepos = IT_BYTEPOS (it);
5213 bidi_unshelve_cache (itdata, 0);
5215 else if (iarg < 0)
5217 struct it it;
5218 struct text_pos pt;
5219 ptrdiff_t nlines = min (PTRDIFF_MAX, -iarg);
5220 int extra_line_spacing;
5221 int h = window_box_height (w);
5222 void *itdata = bidi_shelve_cache ();
5224 iarg = - max (-iarg, this_scroll_margin);
5226 SET_TEXT_POS (pt, PT, PT_BYTE);
5227 start_display (&it, w, pt);
5229 /* Be sure we have the exact height of the full line containing PT. */
5230 move_it_by_lines (&it, 0);
5232 /* The amount of pixels we have to move back is the window
5233 height minus what's displayed in the line containing PT,
5234 and the lines below. */
5235 it.current_y = 0;
5236 it.vpos = 0;
5237 move_it_by_lines (&it, nlines);
5239 if (it.vpos == nlines)
5240 h -= it.current_y;
5241 else
5243 /* Last line has no newline */
5244 h -= line_bottom_y (&it);
5245 it.vpos++;
5248 /* Don't reserve space for extra line spacing of last line. */
5249 extra_line_spacing = it.max_extra_line_spacing;
5251 /* If we can't move down NLINES lines because we hit
5252 the end of the buffer, count in some empty lines. */
5253 if (it.vpos < nlines)
5255 nlines -= it.vpos;
5256 extra_line_spacing = it.extra_line_spacing;
5257 h -= nlines * (FRAME_LINE_HEIGHT (it.f) + extra_line_spacing);
5259 if (h <= 0)
5261 bidi_unshelve_cache (itdata, 0);
5262 return Qnil;
5265 /* Now find the new top line (starting position) of the window. */
5266 start_display (&it, w, pt);
5267 it.current_y = 0;
5268 move_it_vertically_backward (&it, h);
5270 /* If extra line spacing is present, we may move too far
5271 back. This causes the last line to be only partially
5272 visible (which triggers redisplay to recenter that line
5273 in the middle), so move forward.
5274 But ignore extra line spacing on last line, as it is not
5275 considered to be part of the visible height of the line.
5277 h += extra_line_spacing;
5278 while (-it.current_y > h)
5279 move_it_by_lines (&it, 1);
5281 charpos = IT_CHARPOS (it);
5282 bytepos = IT_BYTEPOS (it);
5284 bidi_unshelve_cache (itdata, 0);
5286 else
5288 struct position pos;
5290 iarg = max (iarg, this_scroll_margin);
5292 pos = *vmotion (PT, PT_BYTE, -iarg, w);
5293 charpos = pos.bufpos;
5294 bytepos = pos.bytepos;
5297 else
5299 struct position pos;
5300 int ht = window_internal_height (w);
5302 if (center_p)
5303 iarg = ht / 2;
5304 else if (iarg < 0)
5305 iarg += ht;
5307 /* Don't let it get into the margin at either top or bottom. */
5308 iarg = clip_to_bounds (this_scroll_margin, iarg,
5309 ht - this_scroll_margin - 1);
5311 pos = *vmotion (PT, PT_BYTE, - iarg, w);
5312 charpos = pos.bufpos;
5313 bytepos = pos.bytepos;
5316 /* Set the new window start. */
5317 set_marker_both (w->start, w->contents, charpos, bytepos);
5318 w->window_end_valid = 0;
5320 w->optional_new_start = 1;
5322 w->start_at_line_beg = (bytepos == BEGV_BYTE ||
5323 FETCH_BYTE (bytepos - 1) == '\n');
5325 set_buffer_internal (obuf);
5326 return Qnil;
5329 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
5330 0, 1, 0,
5331 doc: /* Return the height in lines of the text display area of WINDOW.
5332 WINDOW must be a live window and defaults to the selected one.
5334 The returned height does not include the mode line, any header line,
5335 nor any partial-height lines at the bottom of the text area. */)
5336 (Lisp_Object window)
5338 struct window *w = decode_live_window (window);
5339 int pixel_height = window_box_height (w);
5340 int line_height = pixel_height / FRAME_LINE_HEIGHT (XFRAME (w->frame));
5341 return make_number (line_height);
5346 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
5347 1, 1, "P",
5348 doc: /* Position point relative to window.
5349 ARG nil means position point at center of window.
5350 Else, ARG specifies vertical position within the window;
5351 zero means top of window, negative means relative to bottom of window. */)
5352 (Lisp_Object arg)
5354 struct window *w = XWINDOW (selected_window);
5355 int lines, start;
5356 Lisp_Object window;
5357 #if 0
5358 int this_scroll_margin;
5359 #endif
5361 if (!(BUFFERP (w->contents) && XBUFFER (w->contents) == current_buffer))
5362 /* This test is needed to make sure PT/PT_BYTE make sense in w->contents
5363 when passed below to set_marker_both. */
5364 error ("move-to-window-line called from unrelated buffer");
5366 window = selected_window;
5367 start = marker_position (w->start);
5368 if (start < BEGV || start > ZV)
5370 int height = window_internal_height (w);
5371 Fvertical_motion (make_number (- (height / 2)), window);
5372 set_marker_both (w->start, w->contents, PT, PT_BYTE);
5373 w->start_at_line_beg = !NILP (Fbolp ());
5374 w->force_start = 1;
5376 else
5377 Fgoto_char (w->start);
5379 lines = displayed_window_lines (w);
5381 #if 0
5382 this_scroll_margin = max (0, min (scroll_margin, lines / 4));
5383 #endif
5385 if (NILP (arg))
5386 XSETFASTINT (arg, lines / 2);
5387 else
5389 EMACS_INT iarg = XINT (Fprefix_numeric_value (arg));
5391 if (iarg < 0)
5392 iarg = iarg + lines;
5394 #if 0 /* This code would prevent move-to-window-line from moving point
5395 to a place inside the scroll margins (which would cause the
5396 next redisplay to scroll). I wrote this code, but then concluded
5397 it is probably better not to install it. However, it is here
5398 inside #if 0 so as not to lose it. -- rms. */
5400 /* Don't let it get into the margin at either top or bottom. */
5401 iarg = max (iarg, this_scroll_margin);
5402 iarg = min (iarg, lines - this_scroll_margin - 1);
5403 #endif
5405 arg = make_number (iarg);
5408 /* Skip past a partially visible first line. */
5409 if (w->vscroll)
5410 XSETINT (arg, XINT (arg) + 1);
5412 return Fvertical_motion (arg, window);
5417 /***********************************************************************
5418 Window Configuration
5419 ***********************************************************************/
5421 struct save_window_data
5423 struct vectorlike_header header;
5424 Lisp_Object selected_frame;
5425 Lisp_Object current_window;
5426 Lisp_Object current_buffer;
5427 Lisp_Object minibuf_scroll_window;
5428 Lisp_Object minibuf_selected_window;
5429 Lisp_Object root_window;
5430 Lisp_Object focus_frame;
5431 /* A vector, each of whose elements is a struct saved_window
5432 for one window. */
5433 Lisp_Object saved_windows;
5435 /* All fields above are traced by the GC.
5436 From `fame-cols' down, the fields are ignored by the GC. */
5438 int frame_cols, frame_lines, frame_menu_bar_lines;
5439 int frame_tool_bar_lines;
5442 /* This is saved as a Lisp_Vector */
5443 struct saved_window
5445 struct vectorlike_header header;
5447 Lisp_Object window, buffer, start, pointm, mark;
5448 Lisp_Object left_col, top_line, total_cols, total_lines;
5449 Lisp_Object normal_cols, normal_lines;
5450 Lisp_Object hscroll, min_hscroll;
5451 Lisp_Object parent, prev;
5452 Lisp_Object start_at_line_beg;
5453 Lisp_Object display_table;
5454 Lisp_Object left_margin_cols, right_margin_cols;
5455 Lisp_Object left_fringe_width, right_fringe_width, fringes_outside_margins;
5456 Lisp_Object scroll_bar_width, vertical_scroll_bar_type, dedicated;
5457 Lisp_Object combination_limit, window_parameters;
5460 #define SAVED_WINDOW_N(swv,n) \
5461 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
5463 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
5464 doc: /* Return t if OBJECT is a window-configuration object. */)
5465 (Lisp_Object object)
5467 return WINDOW_CONFIGURATIONP (object) ? Qt : Qnil;
5470 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
5471 doc: /* Return the frame that CONFIG, a window-configuration object, is about. */)
5472 (Lisp_Object config)
5474 register struct save_window_data *data;
5475 struct Lisp_Vector *saved_windows;
5477 CHECK_WINDOW_CONFIGURATION (config);
5479 data = (struct save_window_data *) XVECTOR (config);
5480 saved_windows = XVECTOR (data->saved_windows);
5481 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
5484 DEFUN ("set-window-configuration", Fset_window_configuration,
5485 Sset_window_configuration, 1, 1, 0,
5486 doc: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
5487 CONFIGURATION must be a value previously returned
5488 by `current-window-configuration' (which see).
5489 If CONFIGURATION was made from a frame that is now deleted,
5490 only frame-independent values can be restored. In this case,
5491 the return value is nil. Otherwise the value is t. */)
5492 (Lisp_Object configuration)
5494 register struct save_window_data *data;
5495 struct Lisp_Vector *saved_windows;
5496 Lisp_Object new_current_buffer;
5497 Lisp_Object frame;
5498 FRAME_PTR f;
5499 ptrdiff_t old_point = -1;
5501 CHECK_WINDOW_CONFIGURATION (configuration);
5503 data = (struct save_window_data *) XVECTOR (configuration);
5504 saved_windows = XVECTOR (data->saved_windows);
5506 new_current_buffer = data->current_buffer;
5507 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer)))
5508 new_current_buffer = Qnil;
5509 else
5511 if (XBUFFER (new_current_buffer) == current_buffer)
5512 /* The code further down "preserves point" by saving here PT in
5513 old_point and then setting it later back into PT. When the
5514 current-selected-window and the final-selected-window both show
5515 the current buffer, this suffers from the problem that the
5516 current PT is the window-point of the current-selected-window,
5517 while the final PT is the point of the final-selected-window, so
5518 this copy from one PT to the other would end up moving the
5519 window-point of the final-selected-window to the window-point of
5520 the current-selected-window. So we have to be careful which
5521 point of the current-buffer we copy into old_point. */
5522 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer)
5523 && WINDOWP (selected_window)
5524 && EQ (XWINDOW (selected_window)->contents, new_current_buffer)
5525 && !EQ (selected_window, data->current_window))
5526 old_point = marker_position (XWINDOW (data->current_window)->pointm);
5527 else
5528 old_point = PT;
5529 else
5530 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
5531 point in new_current_buffer as of the last time this buffer was
5532 used. This can be non-deterministic since it can be changed by
5533 things like jit-lock by mere temporary selection of some random
5534 window that happens to show this buffer.
5535 So if possible we want this arbitrary choice of "which point" to
5536 be the one from the to-be-selected-window so as to prevent this
5537 window's cursor from being copied from another window. */
5538 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer)
5539 /* If current_window = selected_window, its point is in BUF_PT. */
5540 && !EQ (selected_window, data->current_window))
5541 old_point = marker_position (XWINDOW (data->current_window)->pointm);
5542 else
5543 old_point = BUF_PT (XBUFFER (new_current_buffer));
5546 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
5547 f = XFRAME (frame);
5549 /* If f is a dead frame, don't bother rebuilding its window tree.
5550 However, there is other stuff we should still try to do below. */
5551 if (FRAME_LIVE_P (f))
5553 Lisp_Object window;
5554 Lisp_Object dead_windows = Qnil;
5555 register Lisp_Object tem, par, pers;
5556 register struct window *w;
5557 register struct saved_window *p;
5558 struct window *root_window;
5559 struct window **leaf_windows;
5560 int n_leaf_windows;
5561 ptrdiff_t k;
5562 int i, n;
5564 /* If the frame has been resized since this window configuration was
5565 made, we change the frame to the size specified in the
5566 configuration, restore the configuration, and then resize it
5567 back. We keep track of the prevailing height in these variables. */
5568 int previous_frame_lines = FRAME_LINES (f);
5569 int previous_frame_cols = FRAME_COLS (f);
5570 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
5571 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
5573 /* Don't do this within the main loop below: This may call Lisp
5574 code and is thus potentially unsafe while input is blocked. */
5575 for (k = 0; k < saved_windows->header.size; k++)
5577 p = SAVED_WINDOW_N (saved_windows, k);
5578 window = p->window;
5579 w = XWINDOW (window);
5580 if (BUFFERP (w->contents)
5581 && !EQ (w->contents, p->buffer)
5582 && BUFFER_LIVE_P (XBUFFER (p->buffer)))
5583 /* If a window we restore gets another buffer, record the
5584 window's old buffer. */
5585 call1 (Qrecord_window_buffer, window);
5588 /* The mouse highlighting code could get screwed up
5589 if it runs during this. */
5590 block_input ();
5592 if (data->frame_lines != previous_frame_lines
5593 || data->frame_cols != previous_frame_cols)
5594 change_frame_size (f, data->frame_lines,
5595 data->frame_cols, 0, 0, 0);
5596 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5597 if (data->frame_menu_bar_lines
5598 != previous_frame_menu_bar_lines)
5599 x_set_menu_bar_lines (f, make_number (data->frame_menu_bar_lines),
5600 make_number (0));
5601 #ifdef HAVE_WINDOW_SYSTEM
5602 if (data->frame_tool_bar_lines
5603 != previous_frame_tool_bar_lines)
5604 x_set_tool_bar_lines (f, make_number (data->frame_tool_bar_lines),
5605 make_number (0));
5606 #endif
5607 #endif
5609 /* "Swap out" point from the selected window's buffer
5610 into the window itself. (Normally the pointm of the selected
5611 window holds garbage.) We do this now, before
5612 restoring the window contents, and prevent it from
5613 being done later on when we select a new window. */
5614 if (! NILP (XWINDOW (selected_window)->contents))
5616 w = XWINDOW (selected_window);
5617 set_marker_both (w->pointm,
5618 w->contents,
5619 BUF_PT (XBUFFER (w->contents)),
5620 BUF_PT_BYTE (XBUFFER (w->contents)));
5623 windows_or_buffers_changed++;
5624 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
5626 /* Problem: Freeing all matrices and later allocating them again
5627 is a serious redisplay flickering problem. What we would
5628 really like to do is to free only those matrices not reused
5629 below. */
5630 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
5631 leaf_windows = alloca (count_windows (root_window)
5632 * sizeof *leaf_windows);
5633 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
5635 /* Kludge Alert!
5636 Mark all windows now on frame as "deleted".
5637 Restoring the new configuration "undeletes" any that are in it.
5639 Save their current buffers in their height fields, since we may
5640 need it later, if a buffer saved in the configuration is now
5641 dead. */
5642 delete_all_child_windows (FRAME_ROOT_WINDOW (f));
5644 for (k = 0; k < saved_windows->header.size; k++)
5646 p = SAVED_WINDOW_N (saved_windows, k);
5647 window = p->window;
5648 w = XWINDOW (window);
5649 wset_next (w, Qnil);
5651 if (!NILP (p->parent))
5652 wset_parent
5653 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->parent))->window);
5654 else
5655 wset_parent (w, Qnil);
5657 if (!NILP (p->prev))
5659 wset_prev
5660 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->prev))->window);
5661 wset_next (XWINDOW (w->prev), p->window);
5663 else
5665 wset_prev (w, Qnil);
5666 if (!NILP (w->parent))
5667 wset_combination (XWINDOW (w->parent),
5668 (XINT (p->total_cols)
5669 != XWINDOW (w->parent)->total_cols),
5670 p->window);
5673 /* If we squirreled away the buffer, restore it now. */
5674 if (BUFFERP (w->combination_limit))
5675 wset_buffer (w, w->combination_limit);
5676 w->left_col = XFASTINT (p->left_col);
5677 w->top_line = XFASTINT (p->top_line);
5678 w->total_cols = XFASTINT (p->total_cols);
5679 w->total_lines = XFASTINT (p->total_lines);
5680 wset_normal_cols (w, p->normal_cols);
5681 wset_normal_lines (w, p->normal_lines);
5682 w->hscroll = XFASTINT (p->hscroll);
5683 w->min_hscroll = XFASTINT (p->min_hscroll);
5684 wset_display_table (w, p->display_table);
5685 wset_left_margin_cols (w, p->left_margin_cols);
5686 wset_right_margin_cols (w, p->right_margin_cols);
5687 wset_left_fringe_width (w, p->left_fringe_width);
5688 wset_right_fringe_width (w, p->right_fringe_width);
5689 w->fringes_outside_margins = !NILP (p->fringes_outside_margins);
5690 wset_scroll_bar_width (w, p->scroll_bar_width);
5691 wset_vertical_scroll_bar_type (w, p->vertical_scroll_bar_type);
5692 wset_dedicated (w, p->dedicated);
5693 wset_combination_limit (w, p->combination_limit);
5694 /* Restore any window parameters that have been saved.
5695 Parameters that have not been saved are left alone. */
5696 for (tem = p->window_parameters; CONSP (tem); tem = XCDR (tem))
5698 pers = XCAR (tem);
5699 if (CONSP (pers))
5701 if (NILP (XCDR (pers)))
5703 par = Fassq (XCAR (pers), w->window_parameters);
5704 if (CONSP (par) && !NILP (XCDR (par)))
5705 /* Reset a parameter to nil if and only if it
5706 has a non-nil association. Don't make new
5707 associations. */
5708 Fsetcdr (par, Qnil);
5710 else
5711 /* Always restore a non-nil value. */
5712 Fset_window_parameter (window, XCAR (pers), XCDR (pers));
5716 w->last_modified = 0;
5717 w->last_overlay_modified = 0;
5719 if (BUFFERP (p->buffer) && BUFFER_LIVE_P (XBUFFER (p->buffer)))
5720 /* If saved buffer is alive, install it. */
5722 wset_buffer (w, p->buffer);
5723 w->start_at_line_beg = !NILP (p->start_at_line_beg);
5724 set_marker_restricted (w->start, p->start, w->contents);
5725 set_marker_restricted (w->pointm, p->pointm,
5726 w->contents);
5727 Fset_marker (BVAR (XBUFFER (w->contents), mark),
5728 p->mark, w->contents);
5730 /* As documented in Fcurrent_window_configuration, don't
5731 restore the location of point in the buffer which was
5732 current when the window configuration was recorded. */
5733 if (!EQ (p->buffer, new_current_buffer)
5734 && XBUFFER (p->buffer) == current_buffer)
5735 Fgoto_char (w->pointm);
5737 else if (BUFFERP (w->contents) && BUFFER_LIVE_P (XBUFFER (w->contents)))
5738 /* Keep window's old buffer; make sure the markers are real. */
5740 /* Set window markers at start of visible range. */
5741 if (XMARKER (w->start)->buffer == 0)
5742 set_marker_restricted_both (w->start, w->contents, 0, 0);
5743 if (XMARKER (w->pointm)->buffer == 0)
5744 set_marker_restricted_both
5745 (w->pointm, w->contents,
5746 BUF_PT (XBUFFER (w->contents)),
5747 BUF_PT_BYTE (XBUFFER (w->contents)));
5748 w->start_at_line_beg = 1;
5750 else if (!NILP (w->start))
5751 /* Leaf window has no live buffer, get one. */
5753 /* Get the buffer via other_buffer_safely in order to
5754 avoid showing an unimportant buffer and, if necessary, to
5755 recreate *scratch* in the course (part of Juanma's bs-show
5756 scenario from March 2011). */
5757 wset_buffer (w, other_buffer_safely (Fcurrent_buffer ()));
5758 /* This will set the markers to beginning of visible
5759 range. */
5760 set_marker_restricted_both (w->start, w->contents, 0, 0);
5761 set_marker_restricted_both (w->pointm, w->contents, 0, 0);
5762 w->start_at_line_beg = 1;
5763 if (!NILP (w->dedicated))
5764 /* Record this window as dead. */
5765 dead_windows = Fcons (window, dead_windows);
5766 /* Make sure window is no more dedicated. */
5767 wset_dedicated (w, Qnil);
5771 fset_root_window (f, data->root_window);
5772 /* Arrange *not* to restore point in the buffer that was
5773 current when the window configuration was saved. */
5774 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer))
5775 set_marker_restricted (XWINDOW (data->current_window)->pointm,
5776 make_number (old_point),
5777 XWINDOW (data->current_window)->contents);
5779 /* In the following call to `select-window', prevent "swapping out
5780 point" in the old selected window using the buffer that has
5781 been restored into it. We already swapped out that point from
5782 that window's old buffer. */
5783 select_window (data->current_window, Qnil, 1);
5784 BVAR (XBUFFER (XWINDOW (selected_window)->contents), last_selected_window)
5785 = selected_window;
5787 if (NILP (data->focus_frame)
5788 || (FRAMEP (data->focus_frame)
5789 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
5790 Fredirect_frame_focus (frame, data->focus_frame);
5792 /* Set the screen height to the value it had before this function. */
5793 if (previous_frame_lines != FRAME_LINES (f)
5794 || previous_frame_cols != FRAME_COLS (f))
5795 change_frame_size (f, previous_frame_lines, previous_frame_cols,
5796 0, 0, 0);
5797 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5798 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
5799 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
5800 make_number (0));
5801 #ifdef HAVE_WINDOW_SYSTEM
5802 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
5803 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
5804 make_number (0));
5805 #endif
5806 #endif
5808 /* Now, free glyph matrices in windows that were not reused. */
5809 for (i = n = 0; i < n_leaf_windows; ++i)
5811 if (NILP (leaf_windows[i]->contents))
5812 free_window_matrices (leaf_windows[i]);
5813 else if (EQ (leaf_windows[i]->contents, new_current_buffer))
5814 ++n;
5817 adjust_glyphs (f);
5818 unblock_input ();
5820 /* Scan dead buffer windows. */
5821 for (; CONSP (dead_windows); dead_windows = XCDR (dead_windows))
5823 window = XCAR (dead_windows);
5824 if (WINDOW_LIVE_P (window) && !EQ (window, FRAME_ROOT_WINDOW (f)))
5825 delete_deletable_window (window);
5828 /* Fselect_window will have made f the selected frame, so we
5829 reselect the proper frame here. Fhandle_switch_frame will change the
5830 selected window too, but that doesn't make the call to
5831 Fselect_window above totally superfluous; it still sets f's
5832 selected window. */
5833 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
5834 do_switch_frame (data->selected_frame, 0, 0, Qnil);
5836 run_window_configuration_change_hook (f);
5839 if (!NILP (new_current_buffer))
5841 Fset_buffer (new_current_buffer);
5842 /* If the new current buffer doesn't appear in the selected
5843 window, go to its old point (see bug#12208). */
5844 if (!EQ (XWINDOW (data->current_window)->contents, new_current_buffer))
5845 Fgoto_char (make_number (old_point));
5848 Vminibuf_scroll_window = data->minibuf_scroll_window;
5849 minibuf_selected_window = data->minibuf_selected_window;
5851 return (FRAME_LIVE_P (f) ? Qt : Qnil);
5855 /* If WINDOW is an internal window, recursively delete all child windows
5856 reachable via the next and contents slots of WINDOW. Otherwise setup
5857 WINDOW to not show any buffer. */
5859 void
5860 delete_all_child_windows (Lisp_Object window)
5862 register struct window *w;
5864 w = XWINDOW (window);
5866 if (!NILP (w->next))
5867 /* Delete WINDOW's siblings (we traverse postorderly). */
5868 delete_all_child_windows (w->next);
5870 if (WINDOWP (w->contents))
5872 delete_all_child_windows (w->contents);
5873 wset_combination (w, 0, Qnil);
5875 else if (BUFFERP (w->contents))
5877 unshow_buffer (w);
5878 unchain_marker (XMARKER (w->pointm));
5879 unchain_marker (XMARKER (w->start));
5880 /* Since combination limit makes sense for an internal windows
5881 only, we use this slot to save the buffer for the sake of
5882 possible resurrection in Fset_window_configuration. */
5883 wset_combination_limit (w, w->contents);
5884 wset_buffer (w, Qnil);
5887 Vwindow_list = Qnil;
5890 static int
5891 count_windows (register struct window *window)
5893 register int count = 1;
5894 if (!NILP (window->next))
5895 count += count_windows (XWINDOW (window->next));
5896 if (WINDOWP (window->contents))
5897 count += count_windows (XWINDOW (window->contents));
5898 return count;
5902 /* Fill vector FLAT with leaf windows under W, starting at index I.
5903 Value is last index + 1. */
5904 static int
5905 get_leaf_windows (struct window *w, struct window **flat, int i)
5907 while (w)
5909 if (WINDOWP (w->contents))
5910 i = get_leaf_windows (XWINDOW (w->contents), flat, i);
5911 else
5912 flat[i++] = w;
5914 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5917 return i;
5921 /* Return a pointer to the glyph W's physical cursor is on. Value is
5922 null if W's current matrix is invalid, so that no meaningful glyph
5923 can be returned. */
5924 struct glyph *
5925 get_phys_cursor_glyph (struct window *w)
5927 struct glyph_row *row;
5928 struct glyph *glyph;
5929 int hpos = w->phys_cursor.hpos;
5931 if (!(w->phys_cursor.vpos >= 0
5932 && w->phys_cursor.vpos < w->current_matrix->nrows))
5933 return NULL;
5935 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5936 if (!row->enabled_p)
5937 return NULL;
5939 if (w->hscroll)
5941 /* When the window is hscrolled, cursor hpos can legitimately be
5942 out of bounds, but we draw the cursor at the corresponding
5943 window margin in that case. */
5944 if (!row->reversed_p && hpos < 0)
5945 hpos = 0;
5946 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
5947 hpos = row->used[TEXT_AREA] - 1;
5950 if (0 <= hpos && hpos < row->used[TEXT_AREA])
5951 glyph = row->glyphs[TEXT_AREA] + hpos;
5952 else
5953 glyph = NULL;
5955 return glyph;
5959 static int
5960 save_window_save (Lisp_Object window, struct Lisp_Vector *vector, int i)
5962 register struct saved_window *p;
5963 register struct window *w;
5964 register Lisp_Object tem, pers, par;
5966 for (; !NILP (window); window = w->next)
5968 p = SAVED_WINDOW_N (vector, i);
5969 w = XWINDOW (window);
5971 wset_temslot (w, make_number (i)); i++;
5972 p->window = window;
5973 p->buffer = (WINDOW_LEAF_P (w) ? w->contents : Qnil);
5974 p->left_col = make_number (w->left_col);
5975 p->top_line = make_number (w->top_line);
5976 p->total_cols = make_number (w->total_cols);
5977 p->total_lines = make_number (w->total_lines);
5978 p->normal_cols = w->normal_cols;
5979 p->normal_lines = w->normal_lines;
5980 XSETFASTINT (p->hscroll, w->hscroll);
5981 XSETFASTINT (p->min_hscroll, w->min_hscroll);
5982 p->display_table = w->display_table;
5983 p->left_margin_cols = w->left_margin_cols;
5984 p->right_margin_cols = w->right_margin_cols;
5985 p->left_fringe_width = w->left_fringe_width;
5986 p->right_fringe_width = w->right_fringe_width;
5987 p->fringes_outside_margins = w->fringes_outside_margins ? Qt : Qnil;
5988 p->scroll_bar_width = w->scroll_bar_width;
5989 p->vertical_scroll_bar_type = w->vertical_scroll_bar_type;
5990 p->dedicated = w->dedicated;
5991 p->combination_limit = w->combination_limit;
5992 p->window_parameters = Qnil;
5994 if (!NILP (Vwindow_persistent_parameters))
5996 /* Run cycle detection on Vwindow_persistent_parameters. */
5997 Lisp_Object tortoise, hare;
5999 hare = tortoise = Vwindow_persistent_parameters;
6000 while (CONSP (hare))
6002 hare = XCDR (hare);
6003 if (!CONSP (hare))
6004 break;
6006 hare = XCDR (hare);
6007 tortoise = XCDR (tortoise);
6009 if (EQ (hare, tortoise))
6010 /* Reset Vwindow_persistent_parameters to Qnil. */
6012 Vwindow_persistent_parameters = Qnil;
6013 break;
6017 for (tem = Vwindow_persistent_parameters; CONSP (tem);
6018 tem = XCDR (tem))
6020 pers = XCAR (tem);
6021 /* Save values for persistent window parameters. */
6022 if (CONSP (pers) && !NILP (XCDR (pers)))
6024 par = Fassq (XCAR (pers), w->window_parameters);
6025 if (NILP (par))
6026 /* If the window has no value for the parameter,
6027 make one. */
6028 p->window_parameters = Fcons (Fcons (XCAR (pers), Qnil),
6029 p->window_parameters);
6030 else
6031 /* If the window has a value for the parameter,
6032 save it. */
6033 p->window_parameters = Fcons (Fcons (XCAR (par),
6034 XCDR (par)),
6035 p->window_parameters);
6040 if (BUFFERP (w->contents))
6042 /* Save w's value of point in the window configuration. If w
6043 is the selected window, then get the value of point from
6044 the buffer; pointm is garbage in the selected window. */
6045 if (EQ (window, selected_window))
6046 p->pointm = build_marker (XBUFFER (w->contents),
6047 BUF_PT (XBUFFER (w->contents)),
6048 BUF_PT_BYTE (XBUFFER (w->contents)));
6049 else
6050 p->pointm = Fcopy_marker (w->pointm, Qnil);
6051 XMARKER (p->pointm)->insertion_type
6052 = !NILP (Vwindow_point_insertion_type);
6054 p->start = Fcopy_marker (w->start, Qnil);
6055 p->start_at_line_beg = w->start_at_line_beg ? Qt : Qnil;
6057 tem = BVAR (XBUFFER (w->contents), mark);
6058 p->mark = Fcopy_marker (tem, Qnil);
6060 else
6062 p->pointm = Qnil;
6063 p->start = Qnil;
6064 p->mark = Qnil;
6065 p->start_at_line_beg = Qnil;
6068 if (NILP (w->parent))
6069 p->parent = Qnil;
6070 else
6071 p->parent = XWINDOW (w->parent)->temslot;
6073 if (NILP (w->prev))
6074 p->prev = Qnil;
6075 else
6076 p->prev = XWINDOW (w->prev)->temslot;
6078 if (WINDOWP (w->contents))
6079 i = save_window_save (w->contents, vector, i);
6082 return i;
6085 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
6086 Scurrent_window_configuration, 0, 1, 0,
6087 doc: /* Return an object representing the current window configuration of FRAME.
6088 If FRAME is nil or omitted, use the selected frame.
6089 This describes the number of windows, their sizes and current buffers,
6090 and for each displayed buffer, where display starts, and the positions of
6091 point and mark. An exception is made for point in the current buffer:
6092 its value is -not- saved.
6093 This also records the currently selected frame, and FRAME's focus
6094 redirection (see `redirect-frame-focus'). The variable
6095 `window-persistent-parameters' specifies which window parameters are
6096 saved by this function. */)
6097 (Lisp_Object frame)
6099 register Lisp_Object tem;
6100 register int n_windows;
6101 register struct save_window_data *data;
6102 register int i;
6103 struct frame *f = decode_live_frame (frame);
6105 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
6106 data = ALLOCATE_PSEUDOVECTOR (struct save_window_data, frame_cols,
6107 PVEC_WINDOW_CONFIGURATION);
6109 data->frame_cols = FRAME_COLS (f);
6110 data->frame_lines = FRAME_LINES (f);
6111 data->frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
6112 data->frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
6113 data->selected_frame = selected_frame;
6114 data->current_window = FRAME_SELECTED_WINDOW (f);
6115 XSETBUFFER (data->current_buffer, current_buffer);
6116 data->minibuf_scroll_window = minibuf_level > 0 ? Vminibuf_scroll_window : Qnil;
6117 data->minibuf_selected_window = minibuf_level > 0 ? minibuf_selected_window : Qnil;
6118 data->root_window = FRAME_ROOT_WINDOW (f);
6119 data->focus_frame = FRAME_FOCUS_FRAME (f);
6120 tem = make_uninit_vector (n_windows);
6121 data->saved_windows = tem;
6122 for (i = 0; i < n_windows; i++)
6123 ASET (tem, i,
6124 Fmake_vector (make_number (VECSIZE (struct saved_window)), Qnil));
6125 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
6126 XSETWINDOW_CONFIGURATION (tem, data);
6127 return (tem);
6130 /***********************************************************************
6131 Marginal Areas
6132 ***********************************************************************/
6134 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
6135 2, 3, 0,
6136 doc: /* Set width of marginal areas of window WINDOW.
6137 WINDOW must be a live window and defaults to the selected one.
6139 Second arg LEFT-WIDTH specifies the number of character cells to
6140 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6141 does the same for the right marginal area. A nil width parameter
6142 means no margin. */)
6143 (Lisp_Object window, Lisp_Object left_width, Lisp_Object right_width)
6145 struct window *w = decode_live_window (window);
6147 /* Translate negative or zero widths to nil.
6148 Margins that are too wide have to be checked elsewhere. */
6150 if (!NILP (left_width))
6152 CHECK_NUMBER (left_width);
6153 if (XINT (left_width) <= 0)
6154 left_width = Qnil;
6157 if (!NILP (right_width))
6159 CHECK_NUMBER (right_width);
6160 if (XINT (right_width) <= 0)
6161 right_width = Qnil;
6164 if (!EQ (w->left_margin_cols, left_width)
6165 || !EQ (w->right_margin_cols, right_width))
6167 wset_left_margin_cols (w, left_width);
6168 wset_right_margin_cols (w, right_width);
6170 adjust_window_margins (w);
6172 ++windows_or_buffers_changed;
6173 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6176 return Qnil;
6180 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
6181 0, 1, 0,
6182 doc: /* Get width of marginal areas of window WINDOW.
6183 WINDOW must be a live window and defaults to the selected one.
6185 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6186 If a marginal area does not exist, its width will be returned
6187 as nil. */)
6188 (Lisp_Object window)
6190 struct window *w = decode_live_window (window);
6191 return Fcons (w->left_margin_cols, w->right_margin_cols);
6196 /***********************************************************************
6197 Fringes
6198 ***********************************************************************/
6200 DEFUN ("set-window-fringes", Fset_window_fringes, Sset_window_fringes,
6201 2, 4, 0,
6202 doc: /* Set the fringe widths of window WINDOW.
6203 WINDOW must be a live window and defaults to the selected one.
6205 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6206 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6207 fringe width. If a fringe width arg is nil, that means to use the
6208 frame's default fringe width. Default fringe widths can be set with
6209 the command `set-fringe-style'.
6210 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6211 outside of the display margins. By default, fringes are drawn between
6212 display marginal areas and the text area. */)
6213 (Lisp_Object window, Lisp_Object left_width, Lisp_Object right_width, Lisp_Object outside_margins)
6215 struct window *w = decode_live_window (window);
6216 int outside = !NILP (outside_margins);
6218 if (!NILP (left_width))
6219 CHECK_NATNUM (left_width);
6220 if (!NILP (right_width))
6221 CHECK_NATNUM (right_width);
6223 /* Do nothing on a tty. */
6224 if (FRAME_WINDOW_P (WINDOW_XFRAME (w))
6225 && (!EQ (w->left_fringe_width, left_width)
6226 || !EQ (w->right_fringe_width, right_width)
6227 || w->fringes_outside_margins != outside))
6229 wset_left_fringe_width (w, left_width);
6230 wset_right_fringe_width (w, right_width);
6231 w->fringes_outside_margins = outside;
6233 adjust_window_margins (w);
6235 clear_glyph_matrix (w->current_matrix);
6236 w->window_end_valid = 0;
6238 ++windows_or_buffers_changed;
6239 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6242 return Qnil;
6246 DEFUN ("window-fringes", Fwindow_fringes, Swindow_fringes,
6247 0, 1, 0,
6248 doc: /* Get width of fringes of window WINDOW.
6249 WINDOW must be a live window and defaults to the selected one.
6251 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6252 (Lisp_Object window)
6254 struct window *w = decode_live_window (window);
6256 return list3 (make_number (WINDOW_LEFT_FRINGE_WIDTH (w)),
6257 make_number (WINDOW_RIGHT_FRINGE_WIDTH (w)),
6258 WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) ? Qt : Qnil);
6263 /***********************************************************************
6264 Scroll bars
6265 ***********************************************************************/
6267 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars,
6268 Sset_window_scroll_bars, 2, 4, 0,
6269 doc: /* Set width and type of scroll bars of window WINDOW.
6270 WINDOW must be a live window and defaults to the selected one.
6272 Second parameter WIDTH specifies the pixel width for the scroll bar;
6273 this is automatically adjusted to a multiple of the frame column width.
6274 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6275 bar: left, right, or nil.
6276 If WIDTH is nil, use the frame's scroll-bar width.
6277 If VERTICAL-TYPE is t, use the frame's scroll-bar type.
6278 Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6279 (Lisp_Object window, Lisp_Object width, Lisp_Object vertical_type, Lisp_Object horizontal_type)
6281 struct window *w = decode_live_window (window);
6283 if (!NILP (width))
6285 CHECK_RANGED_INTEGER (width, 0, INT_MAX);
6287 if (XINT (width) == 0)
6288 vertical_type = Qnil;
6291 if (!(NILP (vertical_type)
6292 || EQ (vertical_type, Qleft)
6293 || EQ (vertical_type, Qright)
6294 || EQ (vertical_type, Qt)))
6295 error ("Invalid type of vertical scroll bar");
6297 if (!EQ (w->scroll_bar_width, width)
6298 || !EQ (w->vertical_scroll_bar_type, vertical_type))
6300 wset_scroll_bar_width (w, width);
6301 wset_vertical_scroll_bar_type (w, vertical_type);
6303 adjust_window_margins (w);
6305 clear_glyph_matrix (w->current_matrix);
6306 w->window_end_valid = 0;
6308 ++windows_or_buffers_changed;
6309 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6312 return Qnil;
6316 DEFUN ("window-scroll-bars", Fwindow_scroll_bars, Swindow_scroll_bars,
6317 0, 1, 0,
6318 doc: /* Get width and type of scroll bars of window WINDOW.
6319 WINDOW must be a live window and defaults to the selected one.
6321 Value is a list of the form (WIDTH COLS VERTICAL-TYPE HORIZONTAL-TYPE).
6322 If WIDTH is nil or TYPE is t, the window is using the frame's corresponding
6323 value. */)
6324 (Lisp_Object window)
6326 struct window *w = decode_live_window (window);
6328 return list4 (make_number ((WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
6329 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
6330 : WINDOW_SCROLL_BAR_AREA_WIDTH (w))),
6331 make_number (WINDOW_SCROLL_BAR_COLS (w)),
6332 w->vertical_scroll_bar_type, Qnil);
6337 /***********************************************************************
6338 Smooth scrolling
6339 ***********************************************************************/
6341 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
6342 doc: /* Return the amount by which WINDOW is scrolled vertically.
6343 If WINDOW is omitted or nil, it defaults to the selected window.
6344 Normally, value is a multiple of the canonical character height of WINDOW;
6345 optional second arg PIXELS-P means value is measured in pixels. */)
6346 (Lisp_Object window, Lisp_Object pixels_p)
6348 Lisp_Object result;
6349 struct window *w = decode_live_window (window);
6350 struct frame *f = XFRAME (w->frame);
6352 if (FRAME_WINDOW_P (f))
6353 result = (NILP (pixels_p)
6354 ? FRAME_CANON_Y_FROM_PIXEL_Y (f, -w->vscroll)
6355 : make_number (-w->vscroll));
6356 else
6357 result = make_number (0);
6358 return result;
6362 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
6363 2, 3, 0,
6364 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6365 WINDOW nil means use the selected window. Normally, VSCROLL is a
6366 non-negative multiple of the canonical character height of WINDOW;
6367 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6368 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6369 corresponds to an integral number of pixels. The return value is the
6370 result of this rounding.
6371 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6372 (Lisp_Object window, Lisp_Object vscroll, Lisp_Object pixels_p)
6374 struct window *w = decode_live_window (window);
6375 struct frame *f = XFRAME (w->frame);
6377 CHECK_NUMBER_OR_FLOAT (vscroll);
6379 if (FRAME_WINDOW_P (f))
6381 int old_dy = w->vscroll;
6383 w->vscroll = - (NILP (pixels_p)
6384 ? FRAME_LINE_HEIGHT (f) * XFLOATINT (vscroll)
6385 : XFLOATINT (vscroll));
6386 w->vscroll = min (w->vscroll, 0);
6388 if (w->vscroll != old_dy)
6390 /* Adjust glyph matrix of the frame if the virtual display
6391 area becomes larger than before. */
6392 if (w->vscroll < 0 && w->vscroll < old_dy)
6393 adjust_glyphs (f);
6395 /* Prevent redisplay shortcuts. */
6396 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = 1;
6400 return Fwindow_vscroll (window, pixels_p);
6404 /* Call FN for all leaf windows on frame F. FN is called with the
6405 first argument being a pointer to the leaf window, and with
6406 additional argument USER_DATA. Stops when FN returns 0. */
6408 static void
6409 foreach_window (struct frame *f, int (*fn) (struct window *, void *),
6410 void *user_data)
6412 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
6413 if (WINDOWP (FRAME_ROOT_WINDOW (f)))
6414 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
6418 /* Helper function for foreach_window. Call FN for all leaf windows
6419 reachable from W. FN is called with the first argument being a
6420 pointer to the leaf window, and with additional argument USER_DATA.
6421 Stop when FN returns 0. Value is 0 if stopped by FN. */
6423 static int
6424 foreach_window_1 (struct window *w, int (*fn) (struct window *, void *), void *user_data)
6426 int cont;
6428 for (cont = 1; w && cont;)
6430 if (WINDOWP (w->contents))
6431 cont = foreach_window_1 (XWINDOW (w->contents), fn, user_data);
6432 else
6433 cont = fn (w, user_data);
6435 w = NILP (w->next) ? 0 : XWINDOW (w->next);
6438 return cont;
6442 /* Freeze or unfreeze the window start of W unless it is a
6443 mini-window or the selected window. FREEZE_P non-null means freeze
6444 the window start. */
6446 static int
6447 freeze_window_start (struct window *w, void *freeze_p)
6449 if (MINI_WINDOW_P (w)
6450 || (WINDOWP (selected_window) /* Can be nil in corner cases. */
6451 && (w == XWINDOW (selected_window)
6452 || (MINI_WINDOW_P (XWINDOW (selected_window))
6453 && ! NILP (Vminibuf_scroll_window)
6454 && w == XWINDOW (Vminibuf_scroll_window)))))
6455 freeze_p = NULL;
6457 w->frozen_window_start_p = freeze_p != NULL;
6458 return 1;
6462 /* Freeze or unfreeze the window starts of all leaf windows on frame
6463 F, except the selected window and a mini-window. FREEZE_P non-zero
6464 means freeze the window start. */
6466 void
6467 freeze_window_starts (struct frame *f, bool freeze_p)
6469 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
6473 /***********************************************************************
6474 Initialization
6475 ***********************************************************************/
6477 /* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2
6478 describe the same state of affairs. This is used by Fequal.
6480 IGNORE_POSITIONS means ignore non-matching scroll positions
6481 and the like.
6483 This ignores a couple of things like the dedication status of
6484 window, combination_limit and the like. This might have to be
6485 fixed. */
6487 bool
6488 compare_window_configurations (Lisp_Object configuration1,
6489 Lisp_Object configuration2,
6490 bool ignore_positions)
6492 register struct save_window_data *d1, *d2;
6493 struct Lisp_Vector *sws1, *sws2;
6494 ptrdiff_t i;
6496 CHECK_WINDOW_CONFIGURATION (configuration1);
6497 CHECK_WINDOW_CONFIGURATION (configuration2);
6499 d1 = (struct save_window_data *) XVECTOR (configuration1);
6500 d2 = (struct save_window_data *) XVECTOR (configuration2);
6501 sws1 = XVECTOR (d1->saved_windows);
6502 sws2 = XVECTOR (d2->saved_windows);
6504 /* Frame settings must match. */
6505 if (d1->frame_cols != d2->frame_cols
6506 || d1->frame_lines != d2->frame_lines
6507 || d1->frame_menu_bar_lines != d2->frame_menu_bar_lines
6508 || !EQ (d1->selected_frame, d2->selected_frame)
6509 || !EQ (d1->current_buffer, d2->current_buffer)
6510 || (!ignore_positions
6511 && (!EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window)
6512 || !EQ (d1->minibuf_selected_window, d2->minibuf_selected_window)))
6513 || !EQ (d1->focus_frame, d2->focus_frame)
6514 /* Verify that the two configurations have the same number of windows. */
6515 || sws1->header.size != sws2->header.size)
6516 return 0;
6518 for (i = 0; i < sws1->header.size; i++)
6520 struct saved_window *sw1, *sw2;
6522 sw1 = SAVED_WINDOW_N (sws1, i);
6523 sw2 = SAVED_WINDOW_N (sws2, i);
6525 if (
6526 /* The "current" windows in the two configurations must
6527 correspond to each other. */
6528 EQ (d1->current_window, sw1->window)
6529 != EQ (d2->current_window, sw2->window)
6530 /* Windows' buffers must match. */
6531 || !EQ (sw1->buffer, sw2->buffer)
6532 || !EQ (sw1->left_col, sw2->left_col)
6533 || !EQ (sw1->top_line, sw2->top_line)
6534 || !EQ (sw1->total_cols, sw2->total_cols)
6535 || !EQ (sw1->total_lines, sw2->total_lines)
6536 || !EQ (sw1->display_table, sw2->display_table)
6537 /* The next two disjuncts check the window structure for
6538 equality. */
6539 || !EQ (sw1->parent, sw2->parent)
6540 || !EQ (sw1->prev, sw2->prev)
6541 || (!ignore_positions
6542 && (!EQ (sw1->hscroll, sw2->hscroll)
6543 || !EQ (sw1->min_hscroll, sw2->min_hscroll)
6544 || !EQ (sw1->start_at_line_beg, sw2->start_at_line_beg)
6545 || NILP (Fequal (sw1->start, sw2->start))
6546 || NILP (Fequal (sw1->pointm, sw2->pointm))
6547 || NILP (Fequal (sw1->mark, sw2->mark))))
6548 || !EQ (sw1->left_margin_cols, sw2->left_margin_cols)
6549 || !EQ (sw1->right_margin_cols, sw2->right_margin_cols)
6550 || !EQ (sw1->left_fringe_width, sw2->left_fringe_width)
6551 || !EQ (sw1->right_fringe_width, sw2->right_fringe_width)
6552 || !EQ (sw1->fringes_outside_margins, sw2->fringes_outside_margins)
6553 || !EQ (sw1->scroll_bar_width, sw2->scroll_bar_width)
6554 || !EQ (sw1->vertical_scroll_bar_type, sw2->vertical_scroll_bar_type))
6555 return 0;
6558 return 1;
6561 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
6562 Scompare_window_configurations, 2, 2, 0,
6563 doc: /* Compare two window configurations as regards the structure of windows.
6564 This function ignores details such as the values of point and mark
6565 and scrolling positions. */)
6566 (Lisp_Object x, Lisp_Object y)
6568 if (compare_window_configurations (x, y, 1))
6569 return Qt;
6570 return Qnil;
6573 void
6574 init_window_once (void)
6576 struct frame *f = make_initial_frame ();
6577 XSETFRAME (selected_frame, f);
6578 Vterminal_frame = selected_frame;
6579 minibuf_window = f->minibuffer_window;
6580 selected_window = f->selected_window;
6581 last_nonminibuf_frame = f;
6583 window_initialized = 1;
6586 void
6587 init_window (void)
6589 Vwindow_list = Qnil;
6592 void
6593 syms_of_window (void)
6595 DEFSYM (Qscroll_up, "scroll-up");
6596 DEFSYM (Qscroll_down, "scroll-down");
6597 DEFSYM (Qscroll_command, "scroll-command");
6599 Fput (Qscroll_up, Qscroll_command, Qt);
6600 Fput (Qscroll_down, Qscroll_command, Qt);
6602 DEFSYM (Qwindow_configuration_change_hook, "window-configuration-change-hook");
6603 DEFSYM (Qwindowp, "windowp");
6604 DEFSYM (Qwindow_configuration_p, "window-configuration-p");
6605 DEFSYM (Qwindow_live_p, "window-live-p");
6606 DEFSYM (Qwindow_valid_p, "window-valid-p");
6607 DEFSYM (Qwindow_deletable_p, "window-deletable-p");
6608 DEFSYM (Qdelete_window, "delete-window");
6609 DEFSYM (Qwindow_resize_root_window, "window--resize-root-window");
6610 DEFSYM (Qwindow_resize_root_window_vertically, "window--resize-root-window-vertically");
6611 DEFSYM (Qsafe, "safe");
6612 DEFSYM (Qdisplay_buffer, "display-buffer");
6613 DEFSYM (Qreplace_buffer_in_windows, "replace-buffer-in-windows");
6614 DEFSYM (Qrecord_window_buffer, "record-window-buffer");
6615 DEFSYM (Qget_mru_window, "get-mru-window");
6616 DEFSYM (Qwindow_size, "window-size");
6617 DEFSYM (Qtemp_buffer_show_hook, "temp-buffer-show-hook");
6618 DEFSYM (Qabove, "above");
6619 DEFSYM (Qbelow, "below");
6620 DEFSYM (Qclone_of, "clone-of");
6622 staticpro (&Vwindow_list);
6624 minibuf_selected_window = Qnil;
6625 staticpro (&minibuf_selected_window);
6627 window_scroll_pixel_based_preserve_x = -1;
6628 window_scroll_pixel_based_preserve_y = -1;
6629 window_scroll_preserve_hpos = -1;
6630 window_scroll_preserve_vpos = -1;
6632 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function,
6633 doc: /* Non-nil means call as function to display a help buffer.
6634 The function is called with one argument, the buffer to be displayed.
6635 Used by `with-output-to-temp-buffer'.
6636 If this function is used, then it must do the entire job of showing
6637 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
6638 Vtemp_buffer_show_function = Qnil;
6640 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window,
6641 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
6642 Vminibuf_scroll_window = Qnil;
6644 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows,
6645 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
6646 If the minibuffer is active, the `minibuffer-scroll-window' mode line
6647 is displayed in the `mode-line' face. */);
6648 mode_line_in_non_selected_windows = 1;
6650 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer,
6651 doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
6652 Vother_window_scroll_buffer = Qnil;
6654 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p,
6655 doc: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
6656 auto_window_vscroll_p = 1;
6658 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines,
6659 doc: /* Number of lines of continuity when scrolling by screenfuls. */);
6660 next_screen_context_lines = 2;
6662 DEFVAR_LISP ("scroll-preserve-screen-position",
6663 Vscroll_preserve_screen_position,
6664 doc: /* Controls if scroll commands move point to keep its screen position unchanged.
6665 A value of nil means point does not keep its screen position except
6666 at the scroll margin or window boundary respectively.
6667 A value of t means point keeps its screen position if the scroll
6668 command moved it vertically out of the window, e.g. when scrolling
6669 by full screens.
6670 Any other value means point always keeps its screen position.
6671 Scroll commands should have the `scroll-command' property
6672 on their symbols to be controlled by this variable. */);
6673 Vscroll_preserve_screen_position = Qnil;
6675 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type,
6676 doc: /* Type of marker to use for `window-point'. */);
6677 Vwindow_point_insertion_type = Qnil;
6679 DEFVAR_LISP ("window-configuration-change-hook",
6680 Vwindow_configuration_change_hook,
6681 doc: /* Functions to call when window configuration changes.
6682 The buffer-local part is run once per window, with the relevant window
6683 selected; while the global part is run only once for the modified frame,
6684 with the relevant frame selected. */);
6685 Vwindow_configuration_change_hook = Qnil;
6687 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay,
6688 doc: /* Non-nil means `recenter' redraws entire frame.
6689 If this option is non-nil, then the `recenter' command with a nil
6690 argument will redraw the entire frame; the special value `tty' causes
6691 the frame to be redrawn only if it is a tty frame. */);
6692 Vrecenter_redisplay = Qtty;
6694 DEFVAR_LISP ("window-combination-resize", Vwindow_combination_resize,
6695 doc: /* If t, resize window combinations proportionally.
6696 If this variable is nil, splitting a window gets the entire screen space
6697 for displaying the new window from the window to split. Deleting and
6698 resizing a window preferably resizes one adjacent window only.
6700 If this variable is t, splitting a window tries to get the space
6701 proportionally from all windows in the same combination. This also
6702 allows to split a window that is otherwise too small or of fixed size.
6703 Resizing and deleting a window proportionally resize all windows in the
6704 same combination.
6706 Other values are reserved for future use.
6708 This variable takes no effect if the variable `window-combination-limit' is
6709 non-nil. */);
6710 Vwindow_combination_resize = Qnil;
6712 DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit,
6713 doc: /* If non-nil, splitting a window makes a new parent window.
6714 The following values are recognized:
6716 nil means splitting a window will create a new parent window only if the
6717 window has no parent window or the window shall become part of a
6718 combination orthogonal to the one it is part of.
6720 `window-size' means that splitting a window for displaying a buffer
6721 makes a new parent window provided `display-buffer' is supposed to
6722 explicitly set the window's size due to the presence of a
6723 `window-height' or `window-width' entry in the alist used by
6724 `display-buffer'. Otherwise, this value is handled like nil.
6726 `temp-buffer' means that splitting a window for displaying a temporary
6727 buffer always makes a new parent window. Otherwise, this value is
6728 handled like nil.
6730 `display-buffer' means that splitting a window for displaying a buffer
6731 always makes a new parent window. Since temporary buffers are
6732 displayed by the function `display-buffer', this value is stronger
6733 than `temp-buffer'. Splitting a window for other purpose makes a
6734 new parent window only if needed.
6736 t means that splitting a window always creates a new parent window. If
6737 all splits behave this way, each frame's window tree is a binary
6738 tree and every window but the frame's root window has exactly one
6739 sibling.
6741 Other values are reserved for future use. */);
6742 Vwindow_combination_limit = Qwindow_size;
6744 DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters,
6745 doc: /* Alist of persistent window parameters.
6746 This alist specifies which window parameters shall get saved by
6747 `current-window-configuration' and `window-state-get' and subsequently
6748 restored to their previous values by `set-window-configuration' and
6749 `window-state-put'.
6751 The car of each entry of this alist is the symbol specifying the
6752 parameter. The cdr is one of the following:
6754 nil means the parameter is neither saved by `window-state-get' nor by
6755 `current-window-configuration'.
6757 t means the parameter is saved by `current-window-configuration' and,
6758 provided its WRITABLE argument is nil, by `window-state-get'.
6760 The symbol `writable' means the parameter is saved unconditionally by
6761 both `current-window-configuration' and `window-state-get'. Do not use
6762 this value for parameters without read syntax (like windows or frames).
6764 Parameters not saved by `current-window-configuration' or
6765 `window-state-get' are left alone by `set-window-configuration'
6766 respectively are not installed by `window-state-put'. */);
6767 Vwindow_persistent_parameters = list1 (Fcons (Qclone_of, Qt));
6769 defsubr (&Sselected_window);
6770 defsubr (&Sminibuffer_window);
6771 defsubr (&Swindow_minibuffer_p);
6772 defsubr (&Swindowp);
6773 defsubr (&Swindow_valid_p);
6774 defsubr (&Swindow_live_p);
6775 defsubr (&Swindow_frame);
6776 defsubr (&Sframe_root_window);
6777 defsubr (&Sframe_first_window);
6778 defsubr (&Sframe_selected_window);
6779 defsubr (&Sset_frame_selected_window);
6780 defsubr (&Spos_visible_in_window_p);
6781 defsubr (&Swindow_line_height);
6782 defsubr (&Swindow_buffer);
6783 defsubr (&Swindow_parent);
6784 defsubr (&Swindow_top_child);
6785 defsubr (&Swindow_left_child);
6786 defsubr (&Swindow_next_sibling);
6787 defsubr (&Swindow_prev_sibling);
6788 defsubr (&Swindow_combination_limit);
6789 defsubr (&Sset_window_combination_limit);
6790 defsubr (&Swindow_use_time);
6791 defsubr (&Swindow_top_line);
6792 defsubr (&Swindow_left_column);
6793 defsubr (&Swindow_total_height);
6794 defsubr (&Swindow_total_width);
6795 defsubr (&Swindow_normal_size);
6796 defsubr (&Swindow_new_total);
6797 defsubr (&Swindow_new_normal);
6798 defsubr (&Sset_window_new_total);
6799 defsubr (&Sset_window_new_normal);
6800 defsubr (&Swindow_resize_apply);
6801 defsubr (&Swindow_body_height);
6802 defsubr (&Swindow_body_width);
6803 defsubr (&Swindow_hscroll);
6804 defsubr (&Sset_window_hscroll);
6805 defsubr (&Swindow_redisplay_end_trigger);
6806 defsubr (&Sset_window_redisplay_end_trigger);
6807 defsubr (&Swindow_edges);
6808 defsubr (&Swindow_pixel_edges);
6809 defsubr (&Swindow_absolute_pixel_edges);
6810 defsubr (&Swindow_inside_edges);
6811 defsubr (&Swindow_inside_pixel_edges);
6812 defsubr (&Swindow_inside_absolute_pixel_edges);
6813 defsubr (&Scoordinates_in_window_p);
6814 defsubr (&Swindow_at);
6815 defsubr (&Swindow_point);
6816 defsubr (&Swindow_start);
6817 defsubr (&Swindow_end);
6818 defsubr (&Sset_window_point);
6819 defsubr (&Sset_window_start);
6820 defsubr (&Swindow_dedicated_p);
6821 defsubr (&Sset_window_dedicated_p);
6822 defsubr (&Swindow_display_table);
6823 defsubr (&Sset_window_display_table);
6824 defsubr (&Snext_window);
6825 defsubr (&Sprevious_window);
6826 defsubr (&Sget_buffer_window);
6827 defsubr (&Sdelete_other_windows_internal);
6828 defsubr (&Sdelete_window_internal);
6829 defsubr (&Sresize_mini_window_internal);
6830 defsubr (&Sset_window_buffer);
6831 defsubr (&Srun_window_configuration_change_hook);
6832 defsubr (&Sselect_window);
6833 defsubr (&Sforce_window_update);
6834 defsubr (&Ssplit_window_internal);
6835 defsubr (&Sscroll_up);
6836 defsubr (&Sscroll_down);
6837 defsubr (&Sscroll_left);
6838 defsubr (&Sscroll_right);
6839 defsubr (&Sother_window_for_scrolling);
6840 defsubr (&Sscroll_other_window);
6841 defsubr (&Sminibuffer_selected_window);
6842 defsubr (&Srecenter);
6843 defsubr (&Swindow_text_height);
6844 defsubr (&Smove_to_window_line);
6845 defsubr (&Swindow_configuration_p);
6846 defsubr (&Swindow_configuration_frame);
6847 defsubr (&Sset_window_configuration);
6848 defsubr (&Scurrent_window_configuration);
6849 defsubr (&Sset_window_margins);
6850 defsubr (&Swindow_margins);
6851 defsubr (&Sset_window_fringes);
6852 defsubr (&Swindow_fringes);
6853 defsubr (&Sset_window_scroll_bars);
6854 defsubr (&Swindow_scroll_bars);
6855 defsubr (&Swindow_vscroll);
6856 defsubr (&Sset_window_vscroll);
6857 defsubr (&Scompare_window_configurations);
6858 defsubr (&Swindow_list);
6859 defsubr (&Swindow_list_1);
6860 defsubr (&Swindow_prev_buffers);
6861 defsubr (&Sset_window_prev_buffers);
6862 defsubr (&Swindow_next_buffers);
6863 defsubr (&Sset_window_next_buffers);
6864 defsubr (&Swindow_parameters);
6865 defsubr (&Swindow_parameter);
6866 defsubr (&Sset_window_parameter);
6869 void
6870 keys_of_window (void)
6872 initial_define_key (control_x_map, '<', "scroll-left");
6873 initial_define_key (control_x_map, '>', "scroll-right");
6875 initial_define_key (global_map, Ctl ('V'), "scroll-up-command");
6876 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
6877 initial_define_key (meta_map, 'v', "scroll-down-command");