* progmodes/cfengine.el: Use symbol motion commands instead of extending the word...
[emacs.git] / src / window.c
blob875d77702772a58e31c28db79af911d2aa2ca134
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_hchild (struct window *w, Lisp_Object val)
152 w->hchild = val;
154 static void
155 wset_left_fringe_width (struct window *w, Lisp_Object val)
157 w->left_fringe_width = val;
159 static void
160 wset_left_margin_cols (struct window *w, Lisp_Object val)
162 w->left_margin_cols = val;
164 static void
165 wset_new_normal (struct window *w, Lisp_Object val)
167 w->new_normal = val;
169 static void
170 wset_new_total (struct window *w, Lisp_Object val)
172 w->new_total = val;
174 static void
175 wset_normal_cols (struct window *w, Lisp_Object val)
177 w->normal_cols = val;
179 static void
180 wset_normal_lines (struct window *w, Lisp_Object val)
182 w->normal_lines = val;
184 static void
185 wset_parent (struct window *w, Lisp_Object val)
187 w->parent = val;
189 static void
190 wset_pointm (struct window *w, Lisp_Object val)
192 w->pointm = val;
194 static void
195 wset_right_fringe_width (struct window *w, Lisp_Object val)
197 w->right_fringe_width = val;
199 static void
200 wset_right_margin_cols (struct window *w, Lisp_Object val)
202 w->right_margin_cols = val;
204 static void
205 wset_scroll_bar_width (struct window *w, Lisp_Object val)
207 w->scroll_bar_width = val;
209 static void
210 wset_start (struct window *w, Lisp_Object val)
212 w->start = val;
214 static void
215 wset_temslot (struct window *w, Lisp_Object val)
217 w->temslot = val;
219 static void
220 wset_vchild (struct window *w, Lisp_Object val)
222 w->vchild = val;
224 static void
225 wset_vertical_scroll_bar_type (struct window *w, Lisp_Object val)
227 w->vertical_scroll_bar_type = val;
229 static void
230 wset_window_parameters (struct window *w, Lisp_Object val)
232 w->window_parameters = val;
235 struct window *
236 decode_live_window (register Lisp_Object window)
238 if (NILP (window))
239 return XWINDOW (selected_window);
241 CHECK_LIVE_WINDOW (window);
242 return XWINDOW (window);
245 struct window *
246 decode_any_window (register Lisp_Object window)
248 struct window *w;
250 if (NILP (window))
251 return XWINDOW (selected_window);
253 CHECK_WINDOW (window);
254 w = XWINDOW (window);
255 return w;
258 static struct window *
259 decode_valid_window (register Lisp_Object window)
261 struct window *w;
263 if (NILP (window))
264 return XWINDOW (selected_window);
266 CHECK_VALID_WINDOW (window);
267 w = XWINDOW (window);
268 return w;
271 /* Called when W's buffer slot is changed. ARG -1 means that W is about to
272 cease its buffer, and 1 means that W is about to set up the new one. */
274 static void
275 adjust_window_count (struct window *w, int arg)
277 eassert (eabs (arg) == 1);
278 if (BUFFERP (w->buffer))
280 struct buffer *b = XBUFFER (w->buffer);
282 if (b->base_buffer)
283 b = b->base_buffer;
284 b->window_count += arg;
285 eassert (b->window_count >= 0);
286 /* These should be recalculated by redisplay code. */
287 w->window_end_valid = 0;
288 w->base_line_pos = 0;
292 /* Set W's buffer slot to VAL and recompute number
293 of windows showing VAL if it is a buffer. */
295 void
296 wset_buffer (struct window *w, Lisp_Object val)
298 adjust_window_count (w, -1);
299 w->buffer = val;
300 adjust_window_count (w, 1);
303 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
304 doc: /* Return t if OBJECT is a window and nil otherwise. */)
305 (Lisp_Object object)
307 return WINDOWP (object) ? Qt : Qnil;
310 DEFUN ("window-valid-p", Fwindow_valid_p, Swindow_valid_p, 1, 1, 0,
311 doc: /* Return t if OBJECT is a valid window and nil otherwise.
312 A valid window is either a window that displays a buffer or an internal
313 window. Deleted windows are not live. */)
314 (Lisp_Object object)
316 return WINDOW_VALID_P (object) ? Qt : Qnil;
319 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
320 doc: /* Return t if OBJECT is a live window and nil otherwise.
321 A live window is a window that displays a buffer.
322 Internal windows and deleted windows are not live. */)
323 (Lisp_Object object)
325 return WINDOW_LIVE_P (object) ? Qt : Qnil;
328 /* Frames and windows. */
329 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 0, 1, 0,
330 doc: /* Return the frame that window WINDOW is on.
331 WINDOW must be a valid window and defaults to the selected one. */)
332 (Lisp_Object window)
334 return decode_valid_window (window)->frame;
337 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
338 doc: /* Return the root window of FRAME-OR-WINDOW.
339 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
340 With a frame argument, return that frame's root window.
341 With a window argument, return the root window of that window's frame. */)
342 (Lisp_Object frame_or_window)
344 Lisp_Object window;
346 if (NILP (frame_or_window))
347 window = SELECTED_FRAME ()->root_window;
348 else if (WINDOW_VALID_P (frame_or_window))
349 window = XFRAME (XWINDOW (frame_or_window)->frame)->root_window;
350 else
352 CHECK_LIVE_FRAME (frame_or_window);
353 window = XFRAME (frame_or_window)->root_window;
356 return window;
359 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
360 doc: /* Return the minibuffer window for frame FRAME.
361 If FRAME is omitted or nil, it defaults to the selected frame. */)
362 (Lisp_Object frame)
364 return FRAME_MINIBUF_WINDOW (decode_live_frame (frame));
367 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p,
368 Swindow_minibuffer_p, 0, 1, 0,
369 doc: /* Return non-nil if WINDOW is a minibuffer window.
370 WINDOW must be a valid window and defaults to the selected one. */)
371 (Lisp_Object window)
373 return MINI_WINDOW_P (decode_valid_window (window)) ? Qt : Qnil;
376 /* Don't move this to window.el - this must be a safe routine. */
377 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
378 doc: /* Return the topmost, leftmost live window on FRAME-OR-WINDOW.
379 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
380 Else if FRAME-OR-WINDOW denotes a valid window, return the first window
381 of that window's frame. If FRAME-OR-WINDOW denotes a live frame, return
382 the first window of that frame. */)
383 (Lisp_Object frame_or_window)
385 Lisp_Object window;
387 if (NILP (frame_or_window))
388 window = SELECTED_FRAME ()->root_window;
389 else if (WINDOW_VALID_P (frame_or_window))
390 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->root_window;
391 else
393 CHECK_LIVE_FRAME (frame_or_window);
394 window = XFRAME (frame_or_window)->root_window;
397 while (NILP (XWINDOW (window)->buffer))
399 if (! NILP (XWINDOW (window)->hchild))
400 window = XWINDOW (window)->hchild;
401 else if (! NILP (XWINDOW (window)->vchild))
402 window = XWINDOW (window)->vchild;
403 else
404 emacs_abort ();
407 return window;
410 DEFUN ("frame-selected-window", Fframe_selected_window,
411 Sframe_selected_window, 0, 1, 0,
412 doc: /* Return the selected window of FRAME-OR-WINDOW.
413 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
414 Else if FRAME-OR-WINDOW denotes a valid window, return the selected
415 window of that window's frame. If FRAME-OR-WINDOW denotes a live frame,
416 return the selected window of that frame. */)
417 (Lisp_Object frame_or_window)
419 Lisp_Object window;
421 if (NILP (frame_or_window))
422 window = SELECTED_FRAME ()->selected_window;
423 else if (WINDOW_VALID_P (frame_or_window))
424 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->selected_window;
425 else
427 CHECK_LIVE_FRAME (frame_or_window);
428 window = XFRAME (frame_or_window)->selected_window;
431 return window;
434 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
435 Sset_frame_selected_window, 2, 3, 0,
436 doc: /* Set selected window of FRAME to WINDOW.
437 FRAME must be a live frame and defaults to the selected one. If FRAME
438 is the selected frame, this makes WINDOW the selected window. Optional
439 argument NORECORD non-nil means to neither change the order of recently
440 selected windows nor the buffer list. WINDOW must denote a live window.
441 Return WINDOW. */)
442 (Lisp_Object frame, Lisp_Object window, Lisp_Object norecord)
444 if (NILP (frame))
445 frame = selected_frame;
447 CHECK_LIVE_FRAME (frame);
448 CHECK_LIVE_WINDOW (window);
450 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
451 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
453 if (EQ (frame, selected_frame))
454 return Fselect_window (window, norecord);
455 else
457 fset_selected_window (XFRAME (frame), window);
458 return window;
462 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
463 doc: /* Return the selected window.
464 The selected window is the window in which the standard cursor for
465 selected windows appears and to which many commands apply. */)
466 (void)
468 return selected_window;
471 int window_select_count;
473 /* If select_window is called with inhibit_point_swap non-zero it will
474 not store point of the old selected window's buffer back into that
475 window's pointm slot. This is needed by Fset_window_configuration to
476 avoid that the display routine is called with selected_window set to
477 Qnil causing a subsequent crash. */
478 static Lisp_Object
479 select_window (Lisp_Object window, Lisp_Object norecord, int inhibit_point_swap)
481 register struct window *w;
482 struct frame *sf;
484 CHECK_LIVE_WINDOW (window);
486 w = XWINDOW (window);
487 w->frozen_window_start_p = 0;
489 if (NILP (norecord))
491 w->use_time = ++window_select_count;
492 record_buffer (w->buffer);
495 /* Make the selected window's buffer current. */
496 Fset_buffer (w->buffer);
498 if (EQ (window, selected_window) && !inhibit_point_swap)
499 return window;
501 sf = SELECTED_FRAME ();
502 if (XFRAME (WINDOW_FRAME (w)) != sf)
504 fset_selected_window (XFRAME (WINDOW_FRAME (w)), window);
505 /* Use this rather than Fhandle_switch_frame
506 so that FRAME_FOCUS_FRAME is moved appropriately as we
507 move around in the state where a minibuffer in a separate
508 frame is active. */
509 Fselect_frame (WINDOW_FRAME (w), norecord);
510 /* Fselect_frame called us back so we've done all the work already. */
511 eassert (EQ (window, selected_window));
512 return window;
514 else
515 fset_selected_window (sf, window);
517 select_window_1 (window, inhibit_point_swap);
519 bset_last_selected_window (XBUFFER (w->buffer), window);
520 windows_or_buffers_changed++;
521 return window;
524 /* Select window with a minimum of fuss, i.e. don't record the change anywhere
525 (not even for redisplay's benefit), and assume that the window's frame is
526 already selected. */
527 static void
528 select_window_1 (Lisp_Object window, bool inhibit_point_swap)
530 /* Store the old selected window's buffer's point in pointm of the old
531 selected window. It belongs to that window, and when the window is
532 not selected, must be in the window. */
533 if (!inhibit_point_swap)
535 struct window *ow = XWINDOW (selected_window);
536 if (! NILP (ow->buffer))
537 set_marker_both (ow->pointm, ow->buffer,
538 BUF_PT (XBUFFER (ow->buffer)),
539 BUF_PT_BYTE (XBUFFER (ow->buffer)));
542 selected_window = window;
544 /* Go to the point recorded in the window.
545 This is important when the buffer is in more
546 than one window. It also matters when
547 redisplay_window has altered point after scrolling,
548 because it makes the change only in the window. */
550 register ptrdiff_t new_point = marker_position (XWINDOW (window)->pointm);
551 if (new_point < BEGV)
552 SET_PT (BEGV);
553 else if (new_point > ZV)
554 SET_PT (ZV);
555 else
556 SET_PT (new_point);
560 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
561 doc: /* Select WINDOW which must be a live window.
562 Also make WINDOW's frame the selected frame and WINDOW that frame's
563 selected window. In addition, make WINDOW's buffer current and set that
564 buffer's value of `point' to the value of WINDOW's `window-point'.
565 Return WINDOW.
567 Optional second arg NORECORD non-nil means do not put this buffer at the
568 front of the buffer list and do not make this window the most recently
569 selected one.
571 Note that the main editor command loop sets the current buffer to the
572 buffer of the selected window before each command. */)
573 (register Lisp_Object window, Lisp_Object norecord)
575 return select_window (window, norecord, 0);
578 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
579 doc: /* Return the buffer displayed in window WINDOW.
580 If WINDOW is omitted or nil, it defaults to the selected window.
581 Return nil for an internal window or a deleted window. */)
582 (Lisp_Object window)
584 return decode_any_window (window)->buffer;
587 DEFUN ("window-parent", Fwindow_parent, Swindow_parent, 0, 1, 0,
588 doc: /* Return the parent window of window WINDOW.
589 WINDOW must be a valid window and defaults to the selected one.
590 Return nil for a window with no parent (e.g. a root window). */)
591 (Lisp_Object window)
593 return decode_valid_window (window)->parent;
596 DEFUN ("window-top-child", Fwindow_top_child, Swindow_top_child, 0, 1, 0,
597 doc: /* Return the topmost child window of window WINDOW.
598 WINDOW must be a valid window and defaults to the selected one.
599 Return nil if WINDOW is a live window (live windows have no children).
600 Return nil if WINDOW is an internal window whose children form a
601 horizontal combination. */)
602 (Lisp_Object window)
604 return decode_valid_window (window)->vchild;
607 DEFUN ("window-left-child", Fwindow_left_child, Swindow_left_child, 0, 1, 0,
608 doc: /* Return the leftmost child window of window WINDOW.
609 WINDOW must be a valid window and defaults to the selected one.
610 Return nil if WINDOW is a live window (live windows have no children).
611 Return nil if WINDOW is an internal window whose children form a
612 vertical combination. */)
613 (Lisp_Object window)
615 return decode_valid_window (window)->hchild;
618 DEFUN ("window-next-sibling", Fwindow_next_sibling, Swindow_next_sibling, 0, 1, 0,
619 doc: /* Return the next sibling window of window WINDOW.
620 WINDOW must be a valid window and defaults to the selected one.
621 Return nil if WINDOW has no next sibling. */)
622 (Lisp_Object window)
624 return decode_valid_window (window)->next;
627 DEFUN ("window-prev-sibling", Fwindow_prev_sibling, Swindow_prev_sibling, 0, 1, 0,
628 doc: /* Return the previous sibling window of window WINDOW.
629 WINDOW must be a valid window and defaults to the selected one.
630 Return nil if WINDOW has no previous sibling. */)
631 (Lisp_Object window)
633 return decode_valid_window (window)->prev;
636 DEFUN ("window-combination-limit", Fwindow_combination_limit, Swindow_combination_limit, 1, 1, 0,
637 doc: /* Return combination limit of window WINDOW.
638 WINDOW must be a valid window used in horizontal or vertical combination.
639 If the return value is nil, child windows of WINDOW can be recombined with
640 WINDOW's siblings. A return value of t means that child windows of
641 WINDOW are never \(re-)combined with WINDOW's siblings. */)
642 (Lisp_Object window)
644 struct window *w;
646 CHECK_VALID_WINDOW (window);
647 w = XWINDOW (window);
648 if (!NILP (w->buffer))
649 error ("Combination limit is meaningful for internal windows only");
650 return XWINDOW (window)->combination_limit;
653 DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0,
654 doc: /* Set combination limit of window WINDOW to LIMIT; return LIMIT.
655 WINDOW must be a valid window used in horizontal or vertical combination.
656 If LIMIT is nil, child windows of WINDOW can be recombined with WINDOW's
657 siblings. LIMIT t means that child windows of WINDOW are never
658 \(re-)combined with WINDOW's siblings. Other values are reserved for
659 future use. */)
660 (Lisp_Object window, Lisp_Object limit)
662 struct window *w;
664 CHECK_VALID_WINDOW (window);
665 w = XWINDOW (window);
666 if (!NILP (w->buffer))
667 error ("Combination limit is meaningful for internal windows only");
668 wset_combination_limit (w, limit);
669 return limit;
672 DEFUN ("window-use-time", Fwindow_use_time, Swindow_use_time, 0, 1, 0,
673 doc: /* Return the use time of window WINDOW.
674 WINDOW must be a live window and defaults to the selected one.
675 The window with the highest use time is the most recently selected
676 one. The window with the lowest use time is the least recently
677 selected one. */)
678 (Lisp_Object window)
680 return make_number (decode_live_window (window)->use_time);
683 DEFUN ("window-total-height", Fwindow_total_height, Swindow_total_height, 0, 1, 0,
684 doc: /* Return the total height, in lines, of window WINDOW.
685 WINDOW must be a valid window and defaults to the selected one.
687 The return value includes the mode line and header line, if any.
688 If WINDOW is an internal window, the total height is the height
689 of the screen areas spanned by its children.
691 On a graphical display, this total height is reported as an
692 integer multiple of the default character height. */)
693 (Lisp_Object window)
695 return make_number (decode_valid_window (window)->total_lines);
698 DEFUN ("window-total-width", Fwindow_total_width, Swindow_total_width, 0, 1, 0,
699 doc: /* Return the total width, in columns, of window WINDOW.
700 WINDOW must be a valid window and defaults to the selected one.
702 The return value includes any vertical dividers or scroll bars
703 belonging to WINDOW. If WINDOW is an internal window, the total width
704 is the width of the screen areas spanned by its children.
706 On a graphical display, this total width is reported as an
707 integer multiple of the default character width. */)
708 (Lisp_Object window)
710 return make_number (decode_valid_window (window)->total_cols);
713 DEFUN ("window-new-total", Fwindow_new_total, Swindow_new_total, 0, 1, 0,
714 doc: /* Return the new total size of window WINDOW.
715 WINDOW must be a valid window and defaults to the selected one. */)
716 (Lisp_Object window)
718 return decode_valid_window (window)->new_total;
721 DEFUN ("window-normal-size", Fwindow_normal_size, Swindow_normal_size, 0, 2, 0,
722 doc: /* Return the normal height of window WINDOW.
723 WINDOW must be a valid window and defaults to the selected one.
724 If HORIZONTAL is non-nil, return the normal width of WINDOW. */)
725 (Lisp_Object window, Lisp_Object horizontal)
727 struct window *w = decode_valid_window (window);
729 return NILP (horizontal) ? w->normal_lines : w->normal_cols;
732 DEFUN ("window-new-normal", Fwindow_new_normal, Swindow_new_normal, 0, 1, 0,
733 doc: /* Return new normal size of window WINDOW.
734 WINDOW must be a valid window and defaults to the selected one. */)
735 (Lisp_Object window)
737 return decode_valid_window (window)->new_normal;
740 DEFUN ("window-left-column", Fwindow_left_column, Swindow_left_column, 0, 1, 0,
741 doc: /* Return left column of window WINDOW.
742 This is the distance, in columns, between the left edge of WINDOW and
743 the left edge of the frame's window area. For instance, the return
744 value is 0 if there is no window to the left of WINDOW.
746 WINDOW must be a valid window and defaults to the selected one. */)
747 (Lisp_Object window)
749 return make_number (decode_valid_window (window)->left_col);
752 DEFUN ("window-top-line", Fwindow_top_line, Swindow_top_line, 0, 1, 0,
753 doc: /* Return top line of window WINDOW.
754 This is the distance, in lines, between the top of WINDOW and the top
755 of the frame's window area. For instance, the return value is 0 if
756 there is no window above WINDOW.
758 WINDOW must be a valid window and defaults to the selected one. */)
759 (Lisp_Object window)
761 return make_number (decode_valid_window (window)->top_line);
764 /* Return the number of lines of W's body. Don't count any mode or
765 header line of W. */
767 static int
768 window_body_lines (struct window *w)
770 int height = w->total_lines;
772 if (!MINI_WINDOW_P (w))
774 if (WINDOW_WANTS_MODELINE_P (w))
775 --height;
776 if (WINDOW_WANTS_HEADER_LINE_P (w))
777 --height;
780 return height;
783 /* Return the number of columns of W's body. Don't count columns
784 occupied by the scroll bar or the vertical bar separating W from its
785 right sibling. On window-systems don't count fringes or display
786 margins either. */
789 window_body_cols (struct window *w)
791 struct frame *f = XFRAME (WINDOW_FRAME (w));
792 int width = w->total_cols;
794 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w))
795 /* Scroll bars occupy a few columns. */
796 width -= WINDOW_CONFIG_SCROLL_BAR_COLS (w);
797 else if (!FRAME_WINDOW_P (f)
798 && !WINDOW_RIGHTMOST_P (w) && !WINDOW_FULL_WIDTH_P (w))
799 /* The column of `|' characters separating side-by-side windows
800 occupies one column only. */
801 width -= 1;
803 /* Display margins cannot be used for normal text. */
804 width -= WINDOW_LEFT_MARGIN_COLS (w) + WINDOW_RIGHT_MARGIN_COLS (w);
806 if (FRAME_WINDOW_P (f))
807 /* On window-systems, fringes cannot be used for normal text. */
808 width -= WINDOW_FRINGE_COLS (w);
810 return width;
813 DEFUN ("window-body-height", Fwindow_body_height, Swindow_body_height, 0, 1, 0,
814 doc: /* Return the height, in lines, of WINDOW's text area.
815 WINDOW must be a live window and defaults to the selected one.
817 The returned height does not include the mode line or header line.
818 On a graphical display, the height is expressed as an integer multiple
819 of the default character height. If a line at the bottom of the text
820 area is only partially visible, that counts as a whole line; to
821 exclude partially-visible lines, use `window-text-height'. */)
822 (Lisp_Object window)
824 return make_number (window_body_lines (decode_live_window (window)));
827 DEFUN ("window-body-width", Fwindow_body_width, Swindow_body_width, 0, 1, 0,
828 doc: /* Return the width, in columns, of WINDOW's text area.
829 WINDOW must be a live window and defaults to the selected one.
831 The return value does not include any vertical dividers, fringe or
832 marginal areas, or scroll bars. On a graphical display, the width is
833 expressed as an integer multiple of the default character width. */)
834 (Lisp_Object window)
836 return make_number (window_body_cols (decode_live_window (window)));
839 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
840 doc: /* Return the number of columns by which WINDOW is scrolled from left margin.
841 WINDOW must be a live window and defaults to the selected one. */)
842 (Lisp_Object window)
844 return make_number (decode_live_window (window)->hscroll);
847 /* Set W's horizontal scroll amount to HSCROLL clipped to a reasonable
848 range, returning the new amount as a fixnum. */
849 static Lisp_Object
850 set_window_hscroll (struct window *w, EMACS_INT hscroll)
852 /* Horizontal scrolling has problems with large scroll amounts.
853 It's too slow with long lines, and even with small lines the
854 display can be messed up. For now, though, impose only the limits
855 required by the internal representation: horizontal scrolling must
856 fit in fixnum (since it's visible to Elisp) and into ptrdiff_t
857 (since it's stored in a ptrdiff_t). */
858 ptrdiff_t hscroll_max = min (MOST_POSITIVE_FIXNUM, PTRDIFF_MAX);
859 ptrdiff_t new_hscroll = clip_to_bounds (0, hscroll, hscroll_max);
861 /* Prevent redisplay shortcuts when changing the hscroll. */
862 if (w->hscroll != new_hscroll)
863 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
865 w->hscroll = new_hscroll;
866 return make_number (new_hscroll);
869 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
870 doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
871 WINDOW must be a live window and defaults to the selected one.
872 Clip the number to a reasonable value if out of range.
873 Return the new number. NCOL should be zero or positive.
875 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
876 window so that the location of point moves off-window. */)
877 (Lisp_Object window, Lisp_Object ncol)
879 CHECK_NUMBER (ncol);
880 return set_window_hscroll (decode_live_window (window), XINT (ncol));
883 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
884 Swindow_redisplay_end_trigger, 0, 1, 0,
885 doc: /* Return WINDOW's redisplay end trigger value.
886 WINDOW must be a live window and defaults to the selected one.
887 See `set-window-redisplay-end-trigger' for more information. */)
888 (Lisp_Object window)
890 return decode_live_window (window)->redisplay_end_trigger;
893 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
894 Sset_window_redisplay_end_trigger, 2, 2, 0,
895 doc: /* Set WINDOW's redisplay end trigger value to VALUE.
896 WINDOW must be a live window and defaults to the selected one. VALUE
897 should be a buffer position (typically a marker) or nil. If it is a
898 buffer position, then if redisplay in WINDOW reaches a position beyond
899 VALUE, the functions in `redisplay-end-trigger-functions' are called
900 with two arguments: WINDOW, and the end trigger value. Afterwards the
901 end-trigger value is reset to nil. */)
902 (register Lisp_Object window, Lisp_Object value)
904 wset_redisplay_end_trigger (decode_live_window (window), value);
905 return value;
908 DEFUN ("window-edges", Fwindow_edges, Swindow_edges, 0, 1, 0,
909 doc: /* Return a list of the edge coordinates of WINDOW.
910 WINDOW must be a valid window and defaults to the selected one.
912 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
913 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
914 0 at top left corner of frame.
916 RIGHT is one more than the rightmost column occupied by WINDOW. BOTTOM
917 is one more than the bottommost row occupied by WINDOW. The edges
918 include the space used by WINDOW's scroll bar, display margins, fringes,
919 header line, and/or mode line. For the edges of just the text area, use
920 `window-inside-edges'. */)
921 (Lisp_Object window)
923 register struct window *w = decode_valid_window (window);
925 return list4i (WINDOW_LEFT_EDGE_COL (w), WINDOW_TOP_EDGE_LINE (w),
926 WINDOW_RIGHT_EDGE_COL (w), WINDOW_BOTTOM_EDGE_LINE (w));
929 DEFUN ("window-pixel-edges", Fwindow_pixel_edges, Swindow_pixel_edges, 0, 1, 0,
930 doc: /* Return a list of the edge pixel coordinates of WINDOW.
931 WINDOW must be a valid window and defaults to the selected one.
933 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
934 0, 0 at the top left corner of the frame.
936 RIGHT is one more than the rightmost x position occupied by WINDOW.
937 BOTTOM is one more than the bottommost y position occupied by WINDOW.
938 The pixel edges include the space used by WINDOW's scroll bar, display
939 margins, fringes, header line, and/or mode line. For the pixel edges
940 of just the text area, use `window-inside-pixel-edges'. */)
941 (Lisp_Object window)
943 register struct window *w = decode_valid_window (window);
945 return list4i (WINDOW_LEFT_EDGE_X (w), WINDOW_TOP_EDGE_Y (w),
946 WINDOW_RIGHT_EDGE_X (w), WINDOW_BOTTOM_EDGE_Y (w));
949 static void
950 calc_absolute_offset (struct window *w, int *add_x, int *add_y)
952 struct frame *f = XFRAME (w->frame);
953 *add_y = f->top_pos;
954 #ifdef FRAME_MENUBAR_HEIGHT
955 *add_y += FRAME_MENUBAR_HEIGHT (f);
956 #endif
957 #ifdef FRAME_TOOLBAR_TOP_HEIGHT
958 *add_y += FRAME_TOOLBAR_TOP_HEIGHT (f);
959 #elif FRAME_TOOLBAR_HEIGHT
960 *add_y += FRAME_TOOLBAR_HEIGHT (f);
961 #endif
962 #ifdef FRAME_NS_TITLEBAR_HEIGHT
963 *add_y += FRAME_NS_TITLEBAR_HEIGHT (f);
964 #endif
965 *add_x = f->left_pos;
966 #ifdef FRAME_TOOLBAR_LEFT_WIDTH
967 *add_x += FRAME_TOOLBAR_LEFT_WIDTH (f);
968 #endif
971 DEFUN ("window-absolute-pixel-edges", Fwindow_absolute_pixel_edges,
972 Swindow_absolute_pixel_edges, 0, 1, 0,
973 doc: /* Return a list of the edge pixel coordinates of WINDOW.
974 WINDOW must be a valid window and defaults to the selected one.
976 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
977 0, 0 at the top left corner of the display.
979 RIGHT is one more than the rightmost x position occupied by WINDOW.
980 BOTTOM is one more than the bottommost y position occupied by WINDOW.
981 The pixel edges include the space used by WINDOW's scroll bar, display
982 margins, fringes, header line, and/or mode line. For the pixel edges
983 of just the text area, use `window-inside-absolute-pixel-edges'. */)
984 (Lisp_Object window)
986 register struct window *w = decode_valid_window (window);
987 int add_x, add_y;
989 calc_absolute_offset (w, &add_x, &add_y);
991 return list4i (WINDOW_LEFT_EDGE_X (w) + add_x,
992 WINDOW_TOP_EDGE_Y (w) + add_y,
993 WINDOW_RIGHT_EDGE_X (w) + add_x,
994 WINDOW_BOTTOM_EDGE_Y (w) + add_y);
997 DEFUN ("window-inside-edges", Fwindow_inside_edges, Swindow_inside_edges, 0, 1, 0,
998 doc: /* Return a list of the edge coordinates of WINDOW.
999 WINDOW must be a live window and defaults to the selected one.
1001 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
1002 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
1003 0 at top left corner of frame.
1005 RIGHT is one more than the rightmost column of WINDOW's text area.
1006 BOTTOM is one more than the bottommost row of WINDOW's text area. The
1007 inside edges do not include the space used by the WINDOW's scroll bar,
1008 display margins, fringes, header line, and/or mode line. */)
1009 (Lisp_Object window)
1011 register struct window *w = decode_live_window (window);
1013 return list4i ((WINDOW_BOX_LEFT_EDGE_COL (w)
1014 + WINDOW_LEFT_MARGIN_COLS (w)
1015 + WINDOW_LEFT_FRINGE_COLS (w)),
1016 (WINDOW_TOP_EDGE_LINE (w)
1017 + WINDOW_HEADER_LINE_LINES (w)),
1018 (WINDOW_BOX_RIGHT_EDGE_COL (w)
1019 - WINDOW_RIGHT_MARGIN_COLS (w)
1020 - WINDOW_RIGHT_FRINGE_COLS (w)),
1021 (WINDOW_BOTTOM_EDGE_LINE (w)
1022 - WINDOW_MODE_LINE_LINES (w)));
1025 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges, Swindow_inside_pixel_edges, 0, 1, 0,
1026 doc: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1027 WINDOW must be a live window and defaults to the selected one.
1029 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1030 (0,0) at the top left corner of the frame's window area.
1032 RIGHT is one more than the rightmost x position of WINDOW's text area.
1033 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1034 The inside edges do not include the space used by WINDOW's scroll bar,
1035 display margins, fringes, header line, and/or mode line. */)
1036 (Lisp_Object window)
1038 register struct window *w = decode_live_window (window);
1040 return list4i ((WINDOW_BOX_LEFT_EDGE_X (w)
1041 + WINDOW_LEFT_MARGIN_WIDTH (w)
1042 + WINDOW_LEFT_FRINGE_WIDTH (w)),
1043 (WINDOW_TOP_EDGE_Y (w)
1044 + WINDOW_HEADER_LINE_HEIGHT (w)),
1045 (WINDOW_BOX_RIGHT_EDGE_X (w)
1046 - WINDOW_RIGHT_MARGIN_WIDTH (w)
1047 - WINDOW_RIGHT_FRINGE_WIDTH (w)),
1048 (WINDOW_BOTTOM_EDGE_Y (w)
1049 - WINDOW_MODE_LINE_HEIGHT (w)));
1052 DEFUN ("window-inside-absolute-pixel-edges",
1053 Fwindow_inside_absolute_pixel_edges,
1054 Swindow_inside_absolute_pixel_edges, 0, 1, 0,
1055 doc: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1056 WINDOW must be a live window and defaults to the selected one.
1058 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1059 (0,0) at the top left corner of the frame's window area.
1061 RIGHT is one more than the rightmost x position of WINDOW's text area.
1062 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1063 The inside edges do not include the space used by WINDOW's scroll bar,
1064 display margins, fringes, header line, and/or mode line. */)
1065 (Lisp_Object window)
1067 register struct window *w = decode_live_window (window);
1068 int add_x, add_y;
1070 calc_absolute_offset (w, &add_x, &add_y);
1072 return list4i ((WINDOW_BOX_LEFT_EDGE_X (w)
1073 + WINDOW_LEFT_MARGIN_WIDTH (w)
1074 + WINDOW_LEFT_FRINGE_WIDTH (w) + add_x),
1075 (WINDOW_TOP_EDGE_Y (w)
1076 + WINDOW_HEADER_LINE_HEIGHT (w) + add_y),
1077 (WINDOW_BOX_RIGHT_EDGE_X (w)
1078 - WINDOW_RIGHT_MARGIN_WIDTH (w)
1079 - WINDOW_RIGHT_FRINGE_WIDTH (w) + add_x),
1080 (WINDOW_BOTTOM_EDGE_Y (w)
1081 - WINDOW_MODE_LINE_HEIGHT (w) + add_y));
1084 /* Test if the character at column X, row Y is within window W.
1085 If it is not, return ON_NOTHING;
1086 if it is in the window's text area, return ON_TEXT;
1087 if it is on the window's modeline, return ON_MODE_LINE;
1088 if it is on the border between the window and its right sibling,
1089 return ON_VERTICAL_BORDER.
1090 if it is on a scroll bar, return ON_SCROLL_BAR.
1091 if it is on the window's top line, return ON_HEADER_LINE;
1092 if it is in left or right fringe of the window,
1093 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
1094 if it is in the marginal area to the left/right of the window,
1095 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
1097 X and Y are frame relative pixel coordinates. */
1099 static enum window_part
1100 coordinates_in_window (register struct window *w, int x, int y)
1102 struct frame *f = XFRAME (WINDOW_FRAME (w));
1103 enum window_part part;
1104 int ux = FRAME_COLUMN_WIDTH (f);
1105 int left_x = WINDOW_LEFT_EDGE_X (w);
1106 int right_x = WINDOW_RIGHT_EDGE_X (w);
1107 int top_y = WINDOW_TOP_EDGE_Y (w);
1108 int bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
1109 /* The width of the area where the vertical line can be dragged.
1110 (Between mode lines for instance. */
1111 int grabbable_width = ux;
1112 int lmargin_width, rmargin_width, text_left, text_right;
1114 /* Outside any interesting row or column? */
1115 if (y < top_y || y >= bottom_y || x < left_x || x >= right_x)
1116 return ON_NOTHING;
1118 /* On the mode line or header line? */
1119 if ((WINDOW_WANTS_MODELINE_P (w)
1120 && y >= bottom_y - CURRENT_MODE_LINE_HEIGHT (w)
1121 && (part = ON_MODE_LINE))
1122 || (WINDOW_WANTS_HEADER_LINE_P (w)
1123 && y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
1124 && (part = ON_HEADER_LINE)))
1126 /* If it's under/over the scroll bar portion of the mode/header
1127 line, say it's on the vertical line. That's to be able to
1128 resize windows horizontally in case we're using toolkit scroll
1129 bars. Note: If scrollbars are on the left, the window that
1130 must be eventually resized is that on the left of WINDOW. */
1131 if ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1132 && !WINDOW_LEFTMOST_P (w)
1133 && eabs (x - left_x) < grabbable_width)
1134 || (!WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1135 && !WINDOW_RIGHTMOST_P (w)
1136 && eabs (x - right_x) < grabbable_width))
1137 return ON_VERTICAL_BORDER;
1138 else
1139 return part;
1142 /* In what's below, we subtract 1 when computing right_x because we
1143 want the rightmost pixel, which is given by left_pixel+width-1. */
1144 if (w->pseudo_window_p)
1146 left_x = 0;
1147 right_x = WINDOW_TOTAL_WIDTH (w) - 1;
1149 else
1151 left_x = WINDOW_BOX_LEFT_EDGE_X (w);
1152 right_x = WINDOW_BOX_RIGHT_EDGE_X (w) - 1;
1155 /* Outside any interesting column? */
1156 if (x < left_x || x > right_x)
1157 return ON_SCROLL_BAR;
1159 lmargin_width = window_box_width (w, LEFT_MARGIN_AREA);
1160 rmargin_width = window_box_width (w, RIGHT_MARGIN_AREA);
1162 text_left = window_box_left (w, TEXT_AREA);
1163 text_right = text_left + window_box_width (w, TEXT_AREA);
1165 if (FRAME_WINDOW_P (f))
1167 if (!w->pseudo_window_p
1168 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
1169 && !WINDOW_RIGHTMOST_P (w)
1170 && (eabs (x - right_x) < grabbable_width))
1171 return ON_VERTICAL_BORDER;
1173 /* Need to say "x > right_x" rather than >=, since on character
1174 terminals, the vertical line's x coordinate is right_x. */
1175 else if (!w->pseudo_window_p
1176 && !WINDOW_RIGHTMOST_P (w)
1177 && x > right_x - ux)
1178 return ON_VERTICAL_BORDER;
1180 if (x < text_left)
1182 if (lmargin_width > 0
1183 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1184 ? (x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w))
1185 : (x < left_x + lmargin_width)))
1186 return ON_LEFT_MARGIN;
1188 return ON_LEFT_FRINGE;
1191 if (x >= text_right)
1193 if (rmargin_width > 0
1194 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1195 ? (x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w))
1196 : (x >= right_x - rmargin_width)))
1197 return ON_RIGHT_MARGIN;
1199 return ON_RIGHT_FRINGE;
1202 /* Everything special ruled out - must be on text area */
1203 return ON_TEXT;
1206 /* Take X is the frame-relative pixel x-coordinate, and return the
1207 x-coordinate relative to part PART of window W. */
1209 window_relative_x_coord (struct window *w, enum window_part part, int x)
1211 int left_x = (w->pseudo_window_p) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w);
1213 switch (part)
1215 case ON_TEXT:
1216 return x - window_box_left (w, TEXT_AREA);
1218 case ON_LEFT_FRINGE:
1219 return x - left_x;
1221 case ON_RIGHT_FRINGE:
1222 return x - left_x - WINDOW_LEFT_FRINGE_WIDTH (w);
1224 case ON_LEFT_MARGIN:
1225 return (x - left_x
1226 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1227 ? WINDOW_LEFT_FRINGE_WIDTH (w) : 0));
1229 case ON_RIGHT_MARGIN:
1230 return (x + 1
1231 - ((w->pseudo_window_p)
1232 ? WINDOW_TOTAL_WIDTH (w)
1233 : WINDOW_BOX_RIGHT_EDGE_X (w))
1234 + window_box_width (w, RIGHT_MARGIN_AREA)
1235 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1236 ? WINDOW_RIGHT_FRINGE_WIDTH (w) : 0));
1239 /* ON_SCROLL_BAR, ON_NOTHING, and ON_VERTICAL_BORDER: */
1240 return 0;
1244 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
1245 Scoordinates_in_window_p, 2, 2, 0,
1246 doc: /* Return non-nil if COORDINATES are in WINDOW.
1247 WINDOW must be a live window and defaults to the selected one.
1248 COORDINATES is a cons of the form (X . Y), X and Y being distances
1249 measured in characters from the upper-left corner of the frame.
1250 \(0 . 0) denotes the character in the upper left corner of the
1251 frame.
1252 If COORDINATES are in the text portion of WINDOW,
1253 the coordinates relative to the window are returned.
1254 If they are in the mode line of WINDOW, `mode-line' is returned.
1255 If they are in the top mode line of WINDOW, `header-line' is returned.
1256 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1257 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1258 If they are on the border between WINDOW and its right sibling,
1259 `vertical-line' is returned.
1260 If they are in the windows's left or right marginal areas, `left-margin'\n\
1261 or `right-margin' is returned. */)
1262 (register Lisp_Object coordinates, Lisp_Object window)
1264 struct window *w;
1265 struct frame *f;
1266 int x, y;
1267 Lisp_Object lx, ly;
1269 w = decode_live_window (window);
1270 f = XFRAME (w->frame);
1271 CHECK_CONS (coordinates);
1272 lx = Fcar (coordinates);
1273 ly = Fcdr (coordinates);
1274 CHECK_NUMBER_OR_FLOAT (lx);
1275 CHECK_NUMBER_OR_FLOAT (ly);
1276 x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f);
1277 y = FRAME_PIXEL_Y_FROM_CANON_Y (f, ly) + FRAME_INTERNAL_BORDER_WIDTH (f);
1279 switch (coordinates_in_window (w, x, y))
1281 case ON_NOTHING:
1282 return Qnil;
1284 case ON_TEXT:
1285 /* Convert X and Y to window relative pixel coordinates, and
1286 return the canonical char units. */
1287 x -= window_box_left (w, TEXT_AREA);
1288 y -= WINDOW_TOP_EDGE_Y (w);
1289 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x),
1290 FRAME_CANON_Y_FROM_PIXEL_Y (f, y));
1292 case ON_MODE_LINE:
1293 return Qmode_line;
1295 case ON_VERTICAL_BORDER:
1296 return Qvertical_line;
1298 case ON_HEADER_LINE:
1299 return Qheader_line;
1301 case ON_LEFT_FRINGE:
1302 return Qleft_fringe;
1304 case ON_RIGHT_FRINGE:
1305 return Qright_fringe;
1307 case ON_LEFT_MARGIN:
1308 return Qleft_margin;
1310 case ON_RIGHT_MARGIN:
1311 return Qright_margin;
1313 case ON_SCROLL_BAR:
1314 /* Historically we are supposed to return nil in this case. */
1315 return Qnil;
1317 default:
1318 emacs_abort ();
1323 /* Callback for foreach_window, used in window_from_coordinates.
1324 Check if window W contains coordinates specified by USER_DATA which
1325 is actually a pointer to a struct check_window_data CW.
1327 Check if window W contains coordinates *CW->x and *CW->y. If it
1328 does, return W in *CW->window, as Lisp_Object, and return in
1329 *CW->part the part of the window under coordinates *X,*Y. Return
1330 zero from this function to stop iterating over windows. */
1332 struct check_window_data
1334 Lisp_Object *window;
1335 int x, y;
1336 enum window_part *part;
1339 static int
1340 check_window_containing (struct window *w, void *user_data)
1342 struct check_window_data *cw = (struct check_window_data *) user_data;
1343 enum window_part found;
1344 int continue_p = 1;
1346 found = coordinates_in_window (w, cw->x, cw->y);
1347 if (found != ON_NOTHING)
1349 *cw->part = found;
1350 XSETWINDOW (*cw->window, w);
1351 continue_p = 0;
1354 return continue_p;
1358 /* Find the window containing frame-relative pixel position X/Y and
1359 return it as a Lisp_Object.
1361 If X, Y is on one of the window's special `window_part' elements,
1362 set *PART to the id of that element.
1364 If there is no window under X, Y return nil and leave *PART
1365 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
1367 This function was previously implemented with a loop cycling over
1368 windows with Fnext_window, and starting with the frame's selected
1369 window. It turned out that this doesn't work with an
1370 implementation of next_window using Vwindow_list, because
1371 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1372 tree of F when this function is called asynchronously from
1373 note_mouse_highlight. The original loop didn't terminate in this
1374 case. */
1376 Lisp_Object
1377 window_from_coordinates (struct frame *f, int x, int y,
1378 enum window_part *part, bool tool_bar_p)
1380 Lisp_Object window;
1381 struct check_window_data cw;
1382 enum window_part dummy;
1384 if (part == 0)
1385 part = &dummy;
1387 window = Qnil;
1388 cw.window = &window, cw.x = x, cw.y = y; cw.part = part;
1389 foreach_window (f, check_window_containing, &cw);
1391 /* If not found above, see if it's in the tool bar window, if a tool
1392 bar exists. */
1393 if (NILP (window)
1394 && tool_bar_p
1395 && WINDOWP (f->tool_bar_window)
1396 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0
1397 && (coordinates_in_window (XWINDOW (f->tool_bar_window), x, y)
1398 != ON_NOTHING))
1400 *part = ON_TEXT;
1401 window = f->tool_bar_window;
1404 return window;
1407 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
1408 doc: /* Return window containing coordinates X and Y on FRAME.
1409 FRAME must be a live frame and defaults to the selected one.
1410 The top left corner of the frame is considered to be row 0,
1411 column 0. */)
1412 (Lisp_Object x, Lisp_Object y, Lisp_Object frame)
1414 struct frame *f = decode_live_frame (frame);
1416 /* Check that arguments are integers or floats. */
1417 CHECK_NUMBER_OR_FLOAT (x);
1418 CHECK_NUMBER_OR_FLOAT (y);
1420 return window_from_coordinates (f,
1421 (FRAME_PIXEL_X_FROM_CANON_X (f, x)
1422 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1423 (FRAME_PIXEL_Y_FROM_CANON_Y (f, y)
1424 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1425 0, 0);
1428 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
1429 doc: /* Return current value of point in WINDOW.
1430 WINDOW must be a live window and defaults to the selected one.
1432 For a nonselected window, this is the value point would have if that
1433 window were selected.
1435 Note that, when WINDOW is selected, the value returned is the same as
1436 that returned by `point' for WINDOW's buffer. It would be more strictly
1437 correct to return the top-level value of `point', outside of any
1438 `save-excursion' forms. But that is hard to define. */)
1439 (Lisp_Object window)
1441 register struct window *w = decode_live_window (window);
1443 if (w == XWINDOW (selected_window))
1444 return make_number (BUF_PT (XBUFFER (w->buffer)));
1445 else
1446 return Fmarker_position (w->pointm);
1449 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
1450 doc: /* Return position at which display currently starts in WINDOW.
1451 WINDOW must be a live window and defaults to the selected one.
1452 This is updated by redisplay or by calling `set-window-start'. */)
1453 (Lisp_Object window)
1455 return Fmarker_position (decode_live_window (window)->start);
1458 /* This is text temporarily removed from the doc string below.
1460 This function returns nil if the position is not currently known.
1461 That happens when redisplay is preempted and doesn't finish.
1462 If in that case you want to compute where the end of the window would
1463 have been if redisplay had finished, do this:
1464 (save-excursion
1465 (goto-char (window-start window))
1466 (vertical-motion (1- (window-height window)) window)
1467 (point))") */
1469 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
1470 doc: /* Return position at which display currently ends in WINDOW.
1471 WINDOW must be a live window and defaults to the selected one.
1472 This is updated by redisplay, when it runs to completion.
1473 Simply changing the buffer text or setting `window-start'
1474 does not update this value.
1475 Return nil if there is no recorded value. (This can happen if the
1476 last redisplay of WINDOW was preempted, and did not finish.)
1477 If UPDATE is non-nil, compute the up-to-date position
1478 if it isn't already recorded. */)
1479 (Lisp_Object window, Lisp_Object update)
1481 Lisp_Object value;
1482 struct window *w = decode_live_window (window);
1483 Lisp_Object buf;
1484 struct buffer *b;
1486 buf = w->buffer;
1487 CHECK_BUFFER (buf);
1488 b = XBUFFER (buf);
1490 if (! NILP (update)
1491 && (windows_or_buffers_changed || !w->window_end_valid)
1492 && !noninteractive)
1494 struct text_pos startp;
1495 ptrdiff_t charpos = marker_position (w->start);
1496 struct it it;
1497 struct buffer *old_buffer = NULL;
1498 void *itdata = NULL;
1500 /* Cannot use Fvertical_motion because that function doesn't
1501 cope with variable-height lines. */
1502 if (b != current_buffer)
1504 old_buffer = current_buffer;
1505 set_buffer_internal (b);
1508 /* In case W->start is out of the range, use something
1509 reasonable. This situation occurred when loading a file with
1510 `-l' containing a call to `rmail' with subsequent other
1511 commands. At the end, W->start happened to be BEG, while
1512 rmail had already narrowed the buffer. */
1513 if (charpos < BEGV)
1514 SET_TEXT_POS (startp, BEGV, BEGV_BYTE);
1515 else if (charpos > ZV)
1516 SET_TEXT_POS (startp, ZV, ZV_BYTE);
1517 else
1518 SET_TEXT_POS_FROM_MARKER (startp, w->start);
1520 itdata = bidi_shelve_cache ();
1521 start_display (&it, w, startp);
1522 move_it_vertically (&it, window_box_height (w));
1523 if (it.current_y < it.last_visible_y)
1524 move_it_past_eol (&it);
1525 value = make_number (IT_CHARPOS (it));
1526 bidi_unshelve_cache (itdata, 0);
1528 if (old_buffer)
1529 set_buffer_internal (old_buffer);
1531 else
1532 XSETINT (value, BUF_Z (b) - XFASTINT (w->window_end_pos));
1534 return value;
1537 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
1538 doc: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1539 WINDOW must be a live window and defaults to the selected one.
1540 Return POS. */)
1541 (Lisp_Object window, Lisp_Object pos)
1543 register struct window *w = decode_live_window (window);
1545 /* Type of POS is checked by Fgoto_char or set_marker_restricted ... */
1547 if (w == XWINDOW (selected_window))
1549 if (XBUFFER (w->buffer) == current_buffer)
1550 Fgoto_char (pos);
1551 else
1553 struct buffer *old_buffer = current_buffer;
1555 /* ... but here we want to catch type error before buffer change. */
1556 CHECK_NUMBER_COERCE_MARKER (pos);
1557 set_buffer_internal (XBUFFER (w->buffer));
1558 Fgoto_char (pos);
1559 set_buffer_internal (old_buffer);
1562 else
1564 set_marker_restricted (w->pointm, pos, w->buffer);
1565 /* We have to make sure that redisplay updates the window to show
1566 the new value of point. */
1567 ++windows_or_buffers_changed;
1570 return pos;
1573 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
1574 doc: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1575 WINDOW must be a live window and defaults to the selected one. Return
1576 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1577 overriding motion of point in order to display at this exact start. */)
1578 (Lisp_Object window, Lisp_Object pos, Lisp_Object noforce)
1580 register struct window *w = decode_live_window (window);
1582 set_marker_restricted (w->start, pos, w->buffer);
1583 /* This is not right, but much easier than doing what is right. */
1584 w->start_at_line_beg = 0;
1585 if (NILP (noforce))
1586 w->force_start = 1;
1587 w->update_mode_line = 1;
1588 w->last_modified = 0;
1589 w->last_overlay_modified = 0;
1590 if (!EQ (window, selected_window))
1591 windows_or_buffers_changed++;
1593 return pos;
1596 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
1597 Spos_visible_in_window_p, 0, 3, 0,
1598 doc: /* Return non-nil if position POS is currently on the frame in WINDOW.
1599 WINDOW must be a live window and defaults to the selected one.
1601 Return nil if that position is scrolled vertically out of view. If a
1602 character is only partially visible, nil is returned, unless the
1603 optional argument PARTIALLY is non-nil. If POS is only out of view
1604 because of horizontal scrolling, return non-nil. If POS is t, it
1605 specifies the position of the last visible glyph in WINDOW. POS
1606 defaults to point in WINDOW; WINDOW defaults to the selected window.
1608 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1609 return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1610 where X and Y are the pixel coordinates relative to the top left corner
1611 of the window. The remaining elements are omitted if the character after
1612 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1613 off-window at the top and bottom of the row, ROWH is the height of the
1614 display row, and VPOS is the row number (0-based) containing POS. */)
1615 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially)
1617 register struct window *w;
1618 register EMACS_INT posint;
1619 register struct buffer *buf;
1620 struct text_pos top;
1621 Lisp_Object in_window = Qnil;
1622 int rtop, rbot, rowh, vpos, fully_p = 1;
1623 int x, y;
1625 w = decode_live_window (window);
1626 buf = XBUFFER (w->buffer);
1627 SET_TEXT_POS_FROM_MARKER (top, w->start);
1629 if (EQ (pos, Qt))
1630 posint = -1;
1631 else if (!NILP (pos))
1633 CHECK_NUMBER_COERCE_MARKER (pos);
1634 posint = XINT (pos);
1636 else if (w == XWINDOW (selected_window))
1637 posint = PT;
1638 else
1639 posint = marker_position (w->pointm);
1641 /* If position is above window start or outside buffer boundaries,
1642 or if window start is out of range, position is not visible. */
1643 if ((EQ (pos, Qt)
1644 || (posint >= CHARPOS (top) && posint <= BUF_ZV (buf)))
1645 && CHARPOS (top) >= BUF_BEGV (buf)
1646 && CHARPOS (top) <= BUF_ZV (buf)
1647 && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos)
1648 && (fully_p = !rtop && !rbot, (!NILP (partially) || fully_p)))
1649 in_window = Qt;
1651 if (!NILP (in_window) && !NILP (partially))
1653 Lisp_Object part = Qnil;
1654 if (!fully_p)
1655 part = list4i (rtop, rbot, rowh, vpos);
1656 in_window = Fcons (make_number (x),
1657 Fcons (make_number (y), part));
1660 return in_window;
1663 DEFUN ("window-line-height", Fwindow_line_height,
1664 Swindow_line_height, 0, 2, 0,
1665 doc: /* Return height in pixels of text line LINE in window WINDOW.
1666 WINDOW must be a live window and defaults to the selected one.
1668 Return height of current line if LINE is omitted or nil. Return height of
1669 header or mode line if LINE is `header-line' or `mode-line'.
1670 Otherwise, LINE is a text line number starting from 0. A negative number
1671 counts from the end of the window.
1673 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1674 in pixels of the visible part of the line, VPOS and YPOS are the
1675 vertical position in lines and pixels of the line, relative to the top
1676 of the first text line, and OFFBOT is the number of off-window pixels at
1677 the bottom of the text line. If there are off-window pixels at the top
1678 of the (first) text line, YPOS is negative.
1680 Return nil if window display is not up-to-date. In that case, use
1681 `pos-visible-in-window-p' to obtain the information. */)
1682 (Lisp_Object line, Lisp_Object window)
1684 register struct window *w;
1685 register struct buffer *b;
1686 struct glyph_row *row, *end_row;
1687 int max_y, crop, i;
1688 EMACS_INT n;
1690 w = decode_live_window (window);
1692 if (noninteractive || w->pseudo_window_p)
1693 return Qnil;
1695 CHECK_BUFFER (w->buffer);
1696 b = XBUFFER (w->buffer);
1698 /* Fail if current matrix is not up-to-date. */
1699 if (!w->window_end_valid
1700 || current_buffer->clip_changed
1701 || current_buffer->prevent_redisplay_optimizations_p
1702 || w->last_modified < BUF_MODIFF (b)
1703 || w->last_overlay_modified < BUF_OVERLAY_MODIFF (b))
1704 return Qnil;
1706 if (NILP (line))
1708 i = w->cursor.vpos;
1709 if (i < 0 || i >= w->current_matrix->nrows
1710 || (row = MATRIX_ROW (w->current_matrix, i), !row->enabled_p))
1711 return Qnil;
1712 max_y = window_text_bottom_y (w);
1713 goto found_row;
1716 if (EQ (line, Qheader_line))
1718 if (!WINDOW_WANTS_HEADER_LINE_P (w))
1719 return Qnil;
1720 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
1721 return row->enabled_p ? list4i (row->height, 0, 0, 0) : Qnil;
1724 if (EQ (line, Qmode_line))
1726 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
1727 return (row->enabled_p ?
1728 list4i (row->height,
1729 0, /* not accurate */
1730 (WINDOW_HEADER_LINE_HEIGHT (w)
1731 + window_text_bottom_y (w)),
1733 : Qnil);
1736 CHECK_NUMBER (line);
1737 n = XINT (line);
1739 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
1740 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
1741 max_y = window_text_bottom_y (w);
1742 i = 0;
1744 while ((n < 0 || i < n)
1745 && row <= end_row && row->enabled_p
1746 && row->y + row->height < max_y)
1747 row++, i++;
1749 if (row > end_row || !row->enabled_p)
1750 return Qnil;
1752 if (++n < 0)
1754 if (-n > i)
1755 return Qnil;
1756 row += n;
1757 i += n;
1760 found_row:
1761 crop = max (0, (row->y + row->height) - max_y);
1762 return list4i (row->height + min (0, row->y) - crop, i, row->y, crop);
1765 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
1766 0, 1, 0,
1767 doc: /* Return non-nil when WINDOW is dedicated to its buffer.
1768 More precisely, return the value assigned by the last call of
1769 `set-window-dedicated-p' for WINDOW. Return nil if that function was
1770 never called with WINDOW as its argument, or the value set by that
1771 function was internally reset since its last call. WINDOW must be a
1772 live window and defaults to the selected one.
1774 When a window is dedicated to its buffer, `display-buffer' will refrain
1775 from displaying another buffer in it. `get-lru-window' and
1776 `get-largest-window' treat dedicated windows specially.
1777 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
1778 `kill-buffer' can delete a dedicated window and the containing frame.
1780 Functions like `set-window-buffer' may change the buffer displayed by a
1781 window, unless that window is "strongly" dedicated to its buffer, that
1782 is the value returned by `window-dedicated-p' is t. */)
1783 (Lisp_Object window)
1785 return decode_live_window (window)->dedicated;
1788 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
1789 Sset_window_dedicated_p, 2, 2, 0,
1790 doc: /* Mark WINDOW as dedicated according to FLAG.
1791 WINDOW must be a live window and defaults to the selected one. FLAG
1792 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
1793 mark WINDOW as non-dedicated. Return FLAG.
1795 When a window is dedicated to its buffer, `display-buffer' will refrain
1796 from displaying another buffer in it. `get-lru-window' and
1797 `get-largest-window' treat dedicated windows specially.
1798 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
1799 `quit-restore-window' and `kill-buffer' can delete a dedicated window
1800 and the containing frame.
1802 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
1803 its buffer. Functions like `set-window-buffer' may change the buffer
1804 displayed by a window, unless that window is strongly dedicated to its
1805 buffer. If and when `set-window-buffer' displays another buffer in a
1806 window, it also makes sure that the window is no more dedicated. */)
1807 (Lisp_Object window, Lisp_Object flag)
1809 wset_dedicated (decode_live_window (window), flag);
1810 return flag;
1813 DEFUN ("window-prev-buffers", Fwindow_prev_buffers, Swindow_prev_buffers,
1814 0, 1, 0,
1815 doc: /* Return buffers previously shown in WINDOW.
1816 WINDOW must be a live window and defaults to the selected one.
1818 The return value is a list of elements (BUFFER WINDOW-START POS),
1819 where BUFFER is a buffer, WINDOW-START is the start position of the
1820 window for that buffer, and POS is a window-specific point value. */)
1821 (Lisp_Object window)
1823 return decode_live_window (window)->prev_buffers;
1826 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers,
1827 Sset_window_prev_buffers, 2, 2, 0,
1828 doc: /* Set WINDOW's previous buffers to PREV-BUFFERS.
1829 WINDOW must be a live window and defaults to the selected one.
1831 PREV-BUFFERS should be a list of elements (BUFFER WINDOW-START POS),
1832 where BUFFER is a buffer, WINDOW-START is the start position of the
1833 window for that buffer, and POS is a window-specific point value. */)
1834 (Lisp_Object window, Lisp_Object prev_buffers)
1836 wset_prev_buffers (decode_live_window (window), prev_buffers);
1837 return prev_buffers;
1840 DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers,
1841 0, 1, 0,
1842 doc: /* Return list of buffers recently re-shown in WINDOW.
1843 WINDOW must be a live window and defaults to the selected one. */)
1844 (Lisp_Object window)
1846 return decode_live_window (window)->next_buffers;
1849 DEFUN ("set-window-next-buffers", Fset_window_next_buffers,
1850 Sset_window_next_buffers, 2, 2, 0,
1851 doc: /* Set WINDOW's next buffers to NEXT-BUFFERS.
1852 WINDOW must be a live window and defaults to the selected one.
1853 NEXT-BUFFERS should be a list of buffers. */)
1854 (Lisp_Object window, Lisp_Object next_buffers)
1856 wset_next_buffers (decode_live_window (window), next_buffers);
1857 return next_buffers;
1860 DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,
1861 0, 1, 0,
1862 doc: /* Return the parameters of WINDOW and their values.
1863 WINDOW must be a valid window and defaults to the selected one. The
1864 return value is a list of elements of the form (PARAMETER . VALUE). */)
1865 (Lisp_Object window)
1867 return Fcopy_alist (decode_valid_window (window)->window_parameters);
1870 DEFUN ("window-parameter", Fwindow_parameter, Swindow_parameter,
1871 2, 2, 0,
1872 doc: /* Return WINDOW's value for PARAMETER.
1873 WINDOW can be any window and defaults to the selected one. */)
1874 (Lisp_Object window, Lisp_Object parameter)
1876 Lisp_Object result;
1878 result = Fassq (parameter, decode_any_window (window)->window_parameters);
1879 return CDR_SAFE (result);
1882 DEFUN ("set-window-parameter", Fset_window_parameter,
1883 Sset_window_parameter, 3, 3, 0,
1884 doc: /* Set WINDOW's value of PARAMETER to VALUE.
1885 WINDOW can be any window and defaults to the selected one.
1886 Return VALUE. */)
1887 (Lisp_Object window, Lisp_Object parameter, Lisp_Object value)
1889 register struct window *w = decode_any_window (window);
1890 Lisp_Object old_alist_elt;
1892 old_alist_elt = Fassq (parameter, w->window_parameters);
1893 if (NILP (old_alist_elt))
1894 wset_window_parameters
1895 (w, Fcons (Fcons (parameter, value), w->window_parameters));
1896 else
1897 Fsetcdr (old_alist_elt, value);
1898 return value;
1901 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
1902 0, 1, 0,
1903 doc: /* Return the display-table that WINDOW is using.
1904 WINDOW must be a live window and defaults to the selected one. */)
1905 (Lisp_Object window)
1907 return decode_live_window (window)->display_table;
1910 /* Get the display table for use on window W. This is either W's
1911 display table or W's buffer's display table. Ignore the specified
1912 tables if they are not valid; if no valid table is specified,
1913 return 0. */
1915 struct Lisp_Char_Table *
1916 window_display_table (struct window *w)
1918 struct Lisp_Char_Table *dp = NULL;
1920 if (DISP_TABLE_P (w->display_table))
1921 dp = XCHAR_TABLE (w->display_table);
1922 else if (BUFFERP (w->buffer))
1924 struct buffer *b = XBUFFER (w->buffer);
1926 if (DISP_TABLE_P (BVAR (b, display_table)))
1927 dp = XCHAR_TABLE (BVAR (b, display_table));
1928 else if (DISP_TABLE_P (Vstandard_display_table))
1929 dp = XCHAR_TABLE (Vstandard_display_table);
1932 return dp;
1935 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
1936 doc: /* Set WINDOW's display-table to TABLE.
1937 WINDOW must be a live window and defaults to the selected one. */)
1938 (register Lisp_Object window, Lisp_Object table)
1940 wset_display_table (decode_live_window (window), table);
1941 return table;
1944 /* Record info on buffer window W is displaying
1945 when it is about to cease to display that buffer. */
1946 static void
1947 unshow_buffer (register struct window *w)
1949 Lisp_Object buf;
1950 struct buffer *b;
1952 buf = w->buffer;
1953 b = XBUFFER (buf);
1954 if (b != XMARKER (w->pointm)->buffer)
1955 emacs_abort ();
1957 #if 0
1958 if (w == XWINDOW (selected_window)
1959 || ! EQ (buf, XWINDOW (selected_window)->buffer))
1960 /* Do this except when the selected window's buffer
1961 is being removed from some other window. */
1962 #endif
1963 /* last_window_start records the start position that this buffer
1964 had in the last window to be disconnected from it.
1965 Now that this statement is unconditional,
1966 it is possible for the buffer to be displayed in the
1967 selected window, while last_window_start reflects another
1968 window which was recently showing the same buffer.
1969 Some people might say that might be a good thing. Let's see. */
1970 b->last_window_start = marker_position (w->start);
1972 /* Point in the selected window's buffer
1973 is actually stored in that buffer, and the window's pointm isn't used.
1974 So don't clobber point in that buffer. */
1975 if (! EQ (buf, XWINDOW (selected_window)->buffer)
1976 /* Don't clobber point in current buffer either (this could be
1977 useful in connection with bug#12208).
1978 && XBUFFER (buf) != current_buffer */
1979 /* This line helps to fix Horsley's testbug.el bug. */
1980 && !(WINDOWP (BVAR (b, last_selected_window))
1981 && w != XWINDOW (BVAR (b, last_selected_window))
1982 && EQ (buf, XWINDOW (BVAR (b, last_selected_window))->buffer)))
1983 temp_set_point_both (b,
1984 clip_to_bounds (BUF_BEGV (b),
1985 marker_position (w->pointm),
1986 BUF_ZV (b)),
1987 clip_to_bounds (BUF_BEGV_BYTE (b),
1988 marker_byte_position (w->pointm),
1989 BUF_ZV_BYTE (b)));
1991 if (WINDOWP (BVAR (b, last_selected_window))
1992 && w == XWINDOW (BVAR (b, last_selected_window)))
1993 bset_last_selected_window (b, Qnil);
1996 /* Put NEW into the window structure in place of OLD. SETFLAG zero
1997 means change window structure only. Otherwise store geometry and
1998 other settings as well. */
1999 static void
2000 replace_window (Lisp_Object old, Lisp_Object new, int setflag)
2002 register Lisp_Object tem;
2003 register struct window *o = XWINDOW (old), *n = XWINDOW (new);
2005 /* If OLD is its frame's root window, then NEW is the new
2006 root window for that frame. */
2007 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
2008 fset_root_window (XFRAME (o->frame), new);
2010 if (setflag)
2012 n->left_col = o->left_col;
2013 n->top_line = o->top_line;
2014 n->total_cols = o->total_cols;
2015 n->total_lines = o->total_lines;
2016 wset_normal_cols (n, o->normal_cols);
2017 wset_normal_cols (o, make_float (1.0));
2018 wset_normal_lines (n, o->normal_lines);
2019 wset_normal_lines (o, make_float (1.0));
2020 n->desired_matrix = n->current_matrix = 0;
2021 n->vscroll = 0;
2022 memset (&n->cursor, 0, sizeof (n->cursor));
2023 memset (&n->last_cursor, 0, sizeof (n->last_cursor));
2024 memset (&n->phys_cursor, 0, sizeof (n->phys_cursor));
2025 n->phys_cursor_type = -1;
2026 n->phys_cursor_width = -1;
2027 n->must_be_updated_p = 0;
2028 n->pseudo_window_p = 0;
2029 wset_window_end_vpos (n, make_number (0));
2030 wset_window_end_pos (n, make_number (0));
2031 n->window_end_valid = 0;
2032 n->frozen_window_start_p = 0;
2035 tem = o->next;
2036 wset_next (n, tem);
2037 if (!NILP (tem))
2038 wset_prev (XWINDOW (tem), new);
2040 tem = o->prev;
2041 wset_prev (n, tem);
2042 if (!NILP (tem))
2043 wset_next (XWINDOW (tem), new);
2045 tem = o->parent;
2046 wset_parent (n, tem);
2047 if (!NILP (tem))
2049 if (EQ (XWINDOW (tem)->vchild, old))
2050 wset_vchild (XWINDOW (tem), new);
2051 if (EQ (XWINDOW (tem)->hchild, old))
2052 wset_hchild (XWINDOW (tem), new);
2056 /* If window WINDOW and its parent window are iso-combined, merge
2057 WINDOW's children into those of its parent window and mark WINDOW as
2058 deleted. */
2060 static void
2061 recombine_windows (Lisp_Object window)
2063 struct window *w, *p, *c;
2064 Lisp_Object parent, child;
2065 bool horflag;
2067 w = XWINDOW (window);
2068 parent = w->parent;
2069 if (!NILP (parent) && NILP (w->combination_limit))
2071 p = XWINDOW (parent);
2072 if (((!NILP (p->vchild) && !NILP (w->vchild))
2073 || (!NILP (p->hchild) && !NILP (w->hchild))))
2074 /* WINDOW and PARENT are both either a vertical or a horizontal
2075 combination. */
2077 horflag = NILP (w->vchild);
2078 child = horflag ? w->hchild : w->vchild;
2079 c = XWINDOW (child);
2081 /* Splice WINDOW's children into its parent's children and
2082 assign new normal sizes. */
2083 if (NILP (w->prev))
2084 if (horflag)
2085 wset_hchild (p, child);
2086 else
2087 wset_vchild (p, child);
2088 else
2090 wset_prev (c, w->prev);
2091 wset_next (XWINDOW (w->prev), child);
2094 while (c)
2096 wset_parent (c, parent);
2098 if (horflag)
2099 wset_normal_cols (c,
2100 make_float ((double) c->total_cols
2101 / (double) p->total_cols));
2102 else
2103 wset_normal_lines (c,
2104 make_float ((double) c->total_lines
2105 / (double) p->total_lines));
2107 if (NILP (c->next))
2109 if (!NILP (w->next))
2111 wset_next (c, w->next);
2112 wset_prev (XWINDOW (c->next), child);
2115 c = 0;
2117 else
2119 child = c->next;
2120 c = XWINDOW (child);
2124 /* WINDOW can be deleted now. */
2125 wset_vchild (w, Qnil);
2126 wset_hchild (w, Qnil);
2131 /* If WINDOW can be deleted, delete it. */
2132 static void
2133 delete_deletable_window (Lisp_Object window)
2135 if (!NILP (call1 (Qwindow_deletable_p, window)))
2136 call1 (Qdelete_window, window);
2139 /***********************************************************************
2140 Window List
2141 ***********************************************************************/
2143 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
2144 pointer. This is a callback function for foreach_window, used in
2145 the window_list function. */
2147 static int
2148 add_window_to_list (struct window *w, void *user_data)
2150 Lisp_Object *list = (Lisp_Object *) user_data;
2151 Lisp_Object window;
2152 XSETWINDOW (window, w);
2153 *list = Fcons (window, *list);
2154 return 1;
2158 /* Return a list of all windows, for use by next_window. If
2159 Vwindow_list is a list, return that list. Otherwise, build a new
2160 list, cache it in Vwindow_list, and return that. */
2162 static Lisp_Object
2163 window_list (void)
2165 if (!CONSP (Vwindow_list))
2167 Lisp_Object tail, frame;
2169 Vwindow_list = Qnil;
2170 FOR_EACH_FRAME (tail, frame)
2172 Lisp_Object args[2];
2174 /* We are visiting windows in canonical order, and add
2175 new windows at the front of args[1], which means we
2176 have to reverse this list at the end. */
2177 args[1] = Qnil;
2178 foreach_window (XFRAME (frame), add_window_to_list, &args[1]);
2179 args[0] = Vwindow_list;
2180 args[1] = Fnreverse (args[1]);
2181 Vwindow_list = Fnconc (2, args);
2185 return Vwindow_list;
2189 /* Value is non-zero if WINDOW satisfies the constraints given by
2190 OWINDOW, MINIBUF and ALL_FRAMES.
2192 MINIBUF t means WINDOW may be minibuffer windows.
2193 `lambda' means WINDOW may not be a minibuffer window.
2194 a window means a specific minibuffer window
2196 ALL_FRAMES t means search all frames,
2197 nil means search just current frame,
2198 `visible' means search just visible frames on the
2199 current terminal,
2200 0 means search visible and iconified frames on the
2201 current terminal,
2202 a window means search the frame that window belongs to,
2203 a frame means consider windows on that frame, only. */
2205 static int
2206 candidate_window_p (Lisp_Object window, Lisp_Object owindow, Lisp_Object minibuf, Lisp_Object all_frames)
2208 struct window *w = XWINDOW (window);
2209 struct frame *f = XFRAME (w->frame);
2210 int candidate_p = 1;
2212 if (!BUFFERP (w->buffer))
2213 candidate_p = 0;
2214 else if (MINI_WINDOW_P (w)
2215 && (EQ (minibuf, Qlambda)
2216 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
2218 /* If MINIBUF is `lambda' don't consider any mini-windows.
2219 If it is a window, consider only that one. */
2220 candidate_p = 0;
2222 else if (EQ (all_frames, Qt))
2223 candidate_p = 1;
2224 else if (NILP (all_frames))
2226 eassert (WINDOWP (owindow));
2227 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
2229 else if (EQ (all_frames, Qvisible))
2231 candidate_p = FRAME_VISIBLE_P (f)
2232 && (FRAME_TERMINAL (XFRAME (w->frame))
2233 == FRAME_TERMINAL (XFRAME (selected_frame)));
2236 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
2238 candidate_p = (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)
2239 #ifdef HAVE_X_WINDOWS
2240 /* Yuck!! If we've just created the frame and the
2241 window-manager requested the user to place it
2242 manually, the window may still not be considered
2243 `visible'. I'd argue it should be at least
2244 something like `iconified', but don't know how to do
2245 that yet. --Stef */
2246 || (FRAME_X_P (f) && f->output_data.x->asked_for_visible
2247 && !f->output_data.x->has_been_visible)
2248 #endif
2250 && (FRAME_TERMINAL (XFRAME (w->frame))
2251 == FRAME_TERMINAL (XFRAME (selected_frame)));
2253 else if (WINDOWP (all_frames))
2254 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
2255 || EQ (XWINDOW (all_frames)->frame, w->frame)
2256 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
2257 else if (FRAMEP (all_frames))
2258 candidate_p = EQ (all_frames, w->frame);
2260 return candidate_p;
2264 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2265 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2266 MINIBUF, and ALL_FRAMES. */
2268 static void
2269 decode_next_window_args (Lisp_Object *window, Lisp_Object *minibuf, Lisp_Object *all_frames)
2271 struct window *w = decode_live_window (*window);
2273 XSETWINDOW (*window, w);
2274 /* MINIBUF nil may or may not include minibuffers. Decide if it
2275 does. */
2276 if (NILP (*minibuf))
2277 *minibuf = minibuf_level ? minibuf_window : Qlambda;
2278 else if (!EQ (*minibuf, Qt))
2279 *minibuf = Qlambda;
2281 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2282 => count none of them, or a specific minibuffer window (the
2283 active one) to count. */
2285 /* ALL_FRAMES nil doesn't specify which frames to include. */
2286 if (NILP (*all_frames))
2287 *all_frames
2288 = (!EQ (*minibuf, Qlambda)
2289 ? FRAME_MINIBUF_WINDOW (XFRAME (w->frame))
2290 : Qnil);
2291 else if (EQ (*all_frames, Qvisible))
2293 else if (EQ (*all_frames, make_number (0)))
2295 else if (FRAMEP (*all_frames))
2297 else if (!EQ (*all_frames, Qt))
2298 *all_frames = Qnil;
2302 /* Return the next or previous window of WINDOW in cyclic ordering
2303 of windows. NEXT_P non-zero means return the next window. See the
2304 documentation string of next-window for the meaning of MINIBUF and
2305 ALL_FRAMES. */
2307 static Lisp_Object
2308 next_window (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames, int next_p)
2310 decode_next_window_args (&window, &minibuf, &all_frames);
2312 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2313 return the first window on the frame. */
2314 if (FRAMEP (all_frames)
2315 && !EQ (all_frames, XWINDOW (window)->frame))
2316 return Fframe_first_window (all_frames);
2318 if (next_p)
2320 Lisp_Object list;
2322 /* Find WINDOW in the list of all windows. */
2323 list = Fmemq (window, window_list ());
2325 /* Scan forward from WINDOW to the end of the window list. */
2326 if (CONSP (list))
2327 for (list = XCDR (list); CONSP (list); list = XCDR (list))
2328 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2329 break;
2331 /* Scan from the start of the window list up to WINDOW. */
2332 if (!CONSP (list))
2333 for (list = Vwindow_list;
2334 CONSP (list) && !EQ (XCAR (list), window);
2335 list = XCDR (list))
2336 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2337 break;
2339 if (CONSP (list))
2340 window = XCAR (list);
2342 else
2344 Lisp_Object candidate, list;
2346 /* Scan through the list of windows for candidates. If there are
2347 candidate windows in front of WINDOW, the last one of these
2348 is the one we want. If there are candidates following WINDOW
2349 in the list, again the last one of these is the one we want. */
2350 candidate = Qnil;
2351 for (list = window_list (); CONSP (list); list = XCDR (list))
2353 if (EQ (XCAR (list), window))
2355 if (WINDOWP (candidate))
2356 break;
2358 else if (candidate_window_p (XCAR (list), window, minibuf,
2359 all_frames))
2360 candidate = XCAR (list);
2363 if (WINDOWP (candidate))
2364 window = candidate;
2367 return window;
2371 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
2372 doc: /* Return live window after WINDOW in the cyclic ordering of windows.
2373 WINDOW must be a live window and defaults to the selected one. The
2374 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2375 consider.
2377 MINIBUF nil or omitted means consider the minibuffer window only if the
2378 minibuffer is active. MINIBUF t means consider the minibuffer window
2379 even if the minibuffer is not active. Any other value means do not
2380 consider the minibuffer window even if the minibuffer is active.
2382 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2383 plus the minibuffer window if specified by the MINIBUF argument. If the
2384 minibuffer counts, consider all windows on all frames that share that
2385 minibuffer too. The following non-nil values of ALL-FRAMES have special
2386 meanings:
2388 - t means consider all windows on all existing frames.
2390 - `visible' means consider all windows on all visible frames.
2392 - 0 (the number zero) means consider all windows on all visible and
2393 iconified frames.
2395 - A frame means consider all windows on that frame only.
2397 Anything else means consider all windows on WINDOW's frame and no
2398 others.
2400 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2401 `next-window' to iterate through the entire cycle of acceptable
2402 windows, eventually ending up back at the window you started with.
2403 `previous-window' traverses the same cycle, in the reverse order. */)
2404 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2406 return next_window (window, minibuf, all_frames, 1);
2410 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
2411 doc: /* Return live window before WINDOW in the cyclic ordering of windows.
2412 WINDOW must be a live window and defaults to the selected one. The
2413 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2414 consider.
2416 MINIBUF nil or omitted means consider the minibuffer window only if the
2417 minibuffer is active. MINIBUF t means consider the minibuffer window
2418 even if the minibuffer is not active. Any other value means do not
2419 consider the minibuffer window even if the minibuffer is active.
2421 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2422 plus the minibuffer window if specified by the MINIBUF argument. If the
2423 minibuffer counts, consider all windows on all frames that share that
2424 minibuffer too. The following non-nil values of ALL-FRAMES have special
2425 meanings:
2427 - t means consider all windows on all existing frames.
2429 - `visible' means consider all windows on all visible frames.
2431 - 0 (the number zero) means consider all windows on all visible and
2432 iconified frames.
2434 - A frame means consider all windows on that frame only.
2436 Anything else means consider all windows on WINDOW's frame and no
2437 others.
2439 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2440 use `previous-window' to iterate through the entire cycle of
2441 acceptable windows, eventually ending up back at the window you
2442 started with. `next-window' traverses the same cycle, in the
2443 reverse order. */)
2444 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2446 return next_window (window, minibuf, all_frames, 0);
2450 /* Return a list of windows in cyclic ordering. Arguments are like
2451 for `next-window'. */
2453 static Lisp_Object
2454 window_list_1 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2456 Lisp_Object tail, list, rest;
2458 decode_next_window_args (&window, &minibuf, &all_frames);
2459 list = Qnil;
2461 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
2462 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
2463 list = Fcons (XCAR (tail), list);
2465 /* Rotate the list to start with WINDOW. */
2466 list = Fnreverse (list);
2467 rest = Fmemq (window, list);
2468 if (!NILP (rest) && !EQ (rest, list))
2470 for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail))
2472 XSETCDR (tail, Qnil);
2473 list = nconc2 (rest, list);
2475 return list;
2479 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
2480 doc: /* Return a list of windows on FRAME, starting with WINDOW.
2481 FRAME nil or omitted means use the selected frame.
2482 WINDOW nil or omitted means use the window selected within FRAME.
2483 MINIBUF t means include the minibuffer window, even if it isn't active.
2484 MINIBUF nil or omitted means include the minibuffer window only
2485 if it's active.
2486 MINIBUF neither nil nor t means never include the minibuffer window. */)
2487 (Lisp_Object frame, Lisp_Object minibuf, Lisp_Object window)
2489 if (NILP (window))
2490 window = FRAMEP (frame) ? XFRAME (frame)->selected_window : selected_window;
2491 CHECK_WINDOW (window);
2492 if (NILP (frame))
2493 frame = selected_frame;
2495 if (!EQ (frame, XWINDOW (window)->frame))
2496 error ("Window is on a different frame");
2498 return window_list_1 (window, minibuf, frame);
2502 DEFUN ("window-list-1", Fwindow_list_1, Swindow_list_1, 0, 3, 0,
2503 doc: /* Return a list of all live windows.
2504 WINDOW specifies the first window to list and defaults to the selected
2505 window.
2507 Optional argument MINIBUF nil or omitted means consider the minibuffer
2508 window only if the minibuffer is active. MINIBUF t means consider the
2509 minibuffer window even if the minibuffer is not active. Any other value
2510 means do not consider the minibuffer window even if the minibuffer is
2511 active.
2513 Optional argument ALL-FRAMES nil or omitted means consider all windows
2514 on WINDOW's frame, plus the minibuffer window if specified by the
2515 MINIBUF argument. If the minibuffer counts, consider all windows on all
2516 frames that share that minibuffer too. The following non-nil values of
2517 ALL-FRAMES have special meanings:
2519 - t means consider all windows on all existing frames.
2521 - `visible' means consider all windows on all visible frames.
2523 - 0 (the number zero) means consider all windows on all visible and
2524 iconified frames.
2526 - A frame means consider all windows on that frame only.
2528 Anything else means consider all windows on WINDOW's frame and no
2529 others.
2531 If WINDOW is not on the list of windows returned, some other window will
2532 be listed first but no error is signaled. */)
2533 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2535 return window_list_1 (window, minibuf, all_frames);
2538 /* Look at all windows, performing an operation specified by TYPE
2539 with argument OBJ.
2540 If FRAMES is Qt, look at all frames;
2541 Qnil, look at just the selected frame;
2542 Qvisible, look at visible frames;
2543 a frame, just look at windows on that frame.
2544 If MINI is non-zero, perform the operation on minibuffer windows too. */
2546 enum window_loop
2548 WINDOW_LOOP_UNUSED,
2549 GET_BUFFER_WINDOW, /* Arg is buffer */
2550 REPLACE_BUFFER_IN_WINDOWS_SAFELY, /* Arg is buffer */
2551 REDISPLAY_BUFFER_WINDOWS, /* Arg is buffer */
2552 CHECK_ALL_WINDOWS
2555 static Lisp_Object
2556 window_loop (enum window_loop type, Lisp_Object obj, int mini, Lisp_Object frames)
2558 Lisp_Object window, windows, best_window, frame_arg;
2559 int frame_best_window_flag = 0;
2560 struct frame *f;
2561 struct gcpro gcpro1;
2563 /* If we're only looping through windows on a particular frame,
2564 frame points to that frame. If we're looping through windows
2565 on all frames, frame is 0. */
2566 if (FRAMEP (frames))
2567 f = XFRAME (frames);
2568 else if (NILP (frames))
2569 f = SELECTED_FRAME ();
2570 else
2571 f = NULL;
2573 if (f)
2574 frame_arg = Qlambda;
2575 else if (EQ (frames, make_number (0)))
2576 frame_arg = frames;
2577 else if (EQ (frames, Qvisible))
2578 frame_arg = frames;
2579 else
2580 frame_arg = Qt;
2582 /* frame_arg is Qlambda to stick to one frame,
2583 Qvisible to consider all visible frames,
2584 or Qt otherwise. */
2586 /* Pick a window to start with. */
2587 if (WINDOWP (obj))
2588 window = obj;
2589 else if (f)
2590 window = FRAME_SELECTED_WINDOW (f);
2591 else
2592 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2594 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
2595 GCPRO1 (windows);
2596 best_window = Qnil;
2598 for (; CONSP (windows); windows = XCDR (windows))
2600 struct window *w;
2602 window = XCAR (windows);
2603 w = XWINDOW (window);
2605 /* Note that we do not pay attention here to whether the frame
2606 is visible, since Fwindow_list skips non-visible frames if
2607 that is desired, under the control of frame_arg. */
2608 if (!MINI_WINDOW_P (w)
2609 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2610 consider all windows. */
2611 || type == REPLACE_BUFFER_IN_WINDOWS_SAFELY
2612 || (mini && minibuf_level > 0))
2613 switch (type)
2615 case GET_BUFFER_WINDOW:
2616 if (EQ (w->buffer, obj)
2617 /* Don't find any minibuffer window except the one that
2618 is currently in use. */
2619 && (MINI_WINDOW_P (w) ? EQ (window, minibuf_window) : 1))
2621 if (EQ (window, selected_window))
2622 /* Preferably return the selected window. */
2623 RETURN_UNGCPRO (window);
2624 else if (EQ (XWINDOW (window)->frame, selected_frame)
2625 && !frame_best_window_flag)
2626 /* Prefer windows on the current frame (but don't
2627 choose another one if we have one already). */
2629 best_window = window;
2630 frame_best_window_flag = 1;
2632 else if (NILP (best_window))
2633 best_window = window;
2635 break;
2637 case REPLACE_BUFFER_IN_WINDOWS_SAFELY:
2638 /* We could simply check whether the buffer shown by window
2639 is live, and show another buffer in case it isn't. */
2640 if (EQ (w->buffer, obj))
2642 /* Undedicate WINDOW. */
2643 wset_dedicated (w, Qnil);
2644 /* Make WINDOW show the buffer returned by
2645 other_buffer_safely, don't run any hooks. */
2646 set_window_buffer
2647 (window, other_buffer_safely (w->buffer), 0, 0);
2648 /* If WINDOW is the selected window, make its buffer
2649 current. But do so only if the window shows the
2650 current buffer (Bug#6454). */
2651 if (EQ (window, selected_window)
2652 && XBUFFER (w->buffer) == current_buffer)
2653 Fset_buffer (w->buffer);
2655 break;
2657 case REDISPLAY_BUFFER_WINDOWS:
2658 if (EQ (w->buffer, obj))
2660 mark_window_display_accurate (window, 0);
2661 w->update_mode_line = 1;
2662 XBUFFER (obj)->prevent_redisplay_optimizations_p = 1;
2663 ++update_mode_lines;
2664 best_window = window;
2666 break;
2668 /* Check for a window that has a killed buffer. */
2669 case CHECK_ALL_WINDOWS:
2670 if (! NILP (w->buffer)
2671 && !BUFFER_LIVE_P (XBUFFER (w->buffer)))
2672 emacs_abort ();
2673 break;
2675 case WINDOW_LOOP_UNUSED:
2676 break;
2680 UNGCPRO;
2681 return best_window;
2684 /* Used for debugging. Abort if any window has a dead buffer. */
2686 extern void check_all_windows (void) EXTERNALLY_VISIBLE;
2687 void
2688 check_all_windows (void)
2690 window_loop (CHECK_ALL_WINDOWS, Qnil, 1, Qt);
2693 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 0, 2, 0,
2694 doc: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2695 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2696 the current buffer.
2698 The optional argument ALL-FRAMES specifies the frames to consider:
2700 - t means consider all windows on all existing frames.
2702 - `visible' means consider all windows on all visible frames.
2704 - 0 (the number zero) means consider all windows on all visible
2705 and iconified frames.
2707 - A frame means consider all windows on that frame only.
2709 Any other value of ALL-FRAMES means consider all windows on the
2710 selected frame and no others. */)
2711 (Lisp_Object buffer_or_name, Lisp_Object all_frames)
2713 Lisp_Object buffer;
2715 if (NILP (buffer_or_name))
2716 buffer = Fcurrent_buffer ();
2717 else
2718 buffer = Fget_buffer (buffer_or_name);
2720 if (BUFFERP (buffer))
2721 return window_loop (GET_BUFFER_WINDOW, buffer, 1, all_frames);
2722 else
2723 return Qnil;
2726 static Lisp_Object
2727 resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore)
2729 return call4 (Qwindow_resize_root_window, window, delta, horizontal, ignore);
2733 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal,
2734 Sdelete_other_windows_internal, 0, 2, "",
2735 doc: /* Make WINDOW fill its frame.
2736 Only the frame WINDOW is on is affected. WINDOW must be a valid window
2737 and defaults to the selected one.
2739 Optional argument ROOT, if non-nil, must specify an internal window such
2740 that WINDOW is in its window subtree. If this is the case, replace ROOT
2741 by WINDOW and leave alone any windows not part of ROOT's subtree.
2743 When WINDOW is live try to reduce display jumps by keeping the text
2744 previously visible in WINDOW in the same place on the frame. Doing this
2745 depends on the value of (window-start WINDOW), so if calling this
2746 function in a program gives strange scrolling, make sure the
2747 window-start value is reasonable when this function is called. */)
2748 (Lisp_Object window, Lisp_Object root)
2750 struct window *w, *r, *s;
2751 struct frame *f;
2752 Lisp_Object sibling, pwindow, swindow IF_LINT (= Qnil), delta;
2753 ptrdiff_t startpos IF_LINT (= 0), startbyte IF_LINT (= 0);
2754 int top IF_LINT (= 0), new_top, resize_failed;
2756 w = decode_valid_window (window);
2757 XSETWINDOW (window, w);
2758 f = XFRAME (w->frame);
2760 if (NILP (root))
2761 /* ROOT is the frame's root window. */
2763 root = FRAME_ROOT_WINDOW (f);
2764 r = XWINDOW (root);
2766 else
2767 /* ROOT must be an ancestor of WINDOW. */
2769 r = decode_valid_window (root);
2770 pwindow = XWINDOW (window)->parent;
2771 while (!NILP (pwindow))
2772 if (EQ (pwindow, root))
2773 break;
2774 else
2775 pwindow = XWINDOW (pwindow)->parent;
2776 if (!EQ (pwindow, root))
2777 error ("Specified root is not an ancestor of specified window");
2780 if (EQ (window, root))
2781 /* A noop. */
2782 return Qnil;
2783 /* I don't understand the "top > 0" part below. If we deal with a
2784 standalone minibuffer it would have been caught by the preceding
2785 test. */
2786 else if (MINI_WINDOW_P (w)) /* && top > 0) */
2787 error ("Can't expand minibuffer to full frame");
2789 if (!NILP (w->buffer))
2791 startpos = marker_position (w->start);
2792 startbyte = marker_byte_position (w->start);
2793 top = WINDOW_TOP_EDGE_LINE (w)
2794 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2795 /* Make sure WINDOW is the frame's selected window. */
2796 if (!EQ (window, FRAME_SELECTED_WINDOW (f)))
2798 if (EQ (selected_frame, w->frame))
2799 Fselect_window (window, Qnil);
2800 else
2801 fset_selected_window (f, window);
2804 else
2806 /* See if the frame's selected window is a part of the window
2807 subtree rooted at WINDOW, by finding all the selected window's
2808 parents and comparing each one with WINDOW. If it isn't we
2809 need a new selected window for this frame. */
2810 swindow = FRAME_SELECTED_WINDOW (f);
2811 while (1)
2813 pwindow = swindow;
2814 while (!NILP (pwindow) && !EQ (window, pwindow))
2815 pwindow = XWINDOW (pwindow)->parent;
2817 if (EQ (window, pwindow))
2818 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
2819 as the new selected window. */
2820 break;
2821 else
2822 /* Else try the previous window of SWINDOW. */
2823 swindow = Fprevious_window (swindow, Qlambda, Qnil);
2826 if (!EQ (swindow, FRAME_SELECTED_WINDOW (f)))
2828 if (EQ (selected_frame, w->frame))
2829 Fselect_window (swindow, Qnil);
2830 else
2831 fset_selected_window (f, swindow);
2835 block_input ();
2836 if (!FRAME_INITIAL_P (f))
2838 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
2840 /* We are going to free the glyph matrices of WINDOW, and with
2841 that we might lose any information about glyph rows that have
2842 some of their glyphs highlighted in mouse face. (These rows
2843 are marked with a non-zero mouse_face_p flag.) If WINDOW
2844 indeed has some glyphs highlighted in mouse face, signal to
2845 frame's up-to-date hook that mouse highlight was overwritten,
2846 so that it will arrange for redisplaying the highlight. */
2847 if (EQ (hlinfo->mouse_face_window, window))
2849 hlinfo->mouse_face_beg_row = hlinfo->mouse_face_beg_col = -1;
2850 hlinfo->mouse_face_end_row = hlinfo->mouse_face_end_col = -1;
2851 hlinfo->mouse_face_window = Qnil;
2854 free_window_matrices (r);
2856 windows_or_buffers_changed++;
2857 Vwindow_list = Qnil;
2858 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
2859 resize_failed = 0;
2861 if (NILP (w->buffer))
2863 /* Resize child windows vertically. */
2864 XSETINT (delta, r->total_lines - w->total_lines);
2865 w->top_line = r->top_line;
2866 resize_root_window (window, delta, Qnil, Qnil);
2867 if (window_resize_check (w, 0))
2868 window_resize_apply (w, 0);
2869 else
2871 resize_root_window (window, delta, Qnil, Qt);
2872 if (window_resize_check (w, 0))
2873 window_resize_apply (w, 0);
2874 else
2875 resize_failed = 1;
2878 /* Resize child windows horizontally. */
2879 if (!resize_failed)
2881 w->left_col = r->left_col;
2882 XSETINT (delta, r->total_cols - w->total_cols);
2883 resize_root_window (window, delta, Qt, Qnil);
2884 if (window_resize_check (w, 1))
2885 window_resize_apply (w, 1);
2886 else
2888 resize_root_window (window, delta, Qt, Qt);
2889 if (window_resize_check (w, 1))
2890 window_resize_apply (w, 1);
2891 else
2892 resize_failed = 1;
2896 if (resize_failed)
2897 /* Play safe, if we still can ... */
2899 window = swindow;
2900 w = XWINDOW (window);
2904 /* Cleanly unlink WINDOW from window-tree. */
2905 if (!NILP (w->prev))
2906 /* Get SIBLING above (on the left of) WINDOW. */
2908 sibling = w->prev;
2909 s = XWINDOW (sibling);
2910 wset_next (s, w->next);
2911 if (!NILP (s->next))
2912 wset_prev (XWINDOW (s->next), sibling);
2914 else
2915 /* Get SIBLING below (on the right of) WINDOW. */
2917 sibling = w->next;
2918 s = XWINDOW (sibling);
2919 wset_prev (s, Qnil);
2920 if (!NILP (XWINDOW (w->parent)->vchild))
2921 wset_vchild (XWINDOW (w->parent), sibling);
2922 else
2923 wset_hchild (XWINDOW (w->parent), sibling);
2926 /* Delete ROOT and all child windows of ROOT. */
2927 if (!NILP (r->vchild))
2929 delete_all_child_windows (r->vchild);
2930 wset_vchild (r, Qnil);
2932 else if (!NILP (r->hchild))
2934 delete_all_child_windows (r->hchild);
2935 wset_hchild (r, Qnil);
2938 replace_window (root, window, 1);
2940 /* This must become SWINDOW anyway ....... */
2941 if (!NILP (w->buffer) && !resize_failed)
2943 /* Try to minimize scrolling, by setting the window start to the
2944 point will cause the text at the old window start to be at the
2945 same place on the frame. But don't try to do this if the
2946 window start is outside the visible portion (as might happen
2947 when the display is not current, due to typeahead). */
2948 new_top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
2949 if (new_top != top
2950 && startpos >= BUF_BEGV (XBUFFER (w->buffer))
2951 && startpos <= BUF_ZV (XBUFFER (w->buffer)))
2953 struct position pos;
2954 struct buffer *obuf = current_buffer;
2956 Fset_buffer (w->buffer);
2957 /* This computation used to temporarily move point, but that
2958 can have unwanted side effects due to text properties. */
2959 pos = *vmotion (startpos, startbyte, -top, w);
2961 set_marker_both (w->start, w->buffer, pos.bufpos, pos.bytepos);
2962 w->window_end_valid = 0;
2963 w->start_at_line_beg = (pos.bytepos == BEGV_BYTE
2964 || FETCH_BYTE (pos.bytepos - 1) == '\n');
2965 /* We need to do this, so that the window-scroll-functions
2966 get called. */
2967 w->optional_new_start = 1;
2969 set_buffer_internal (obuf);
2973 adjust_glyphs (f);
2974 unblock_input ();
2976 run_window_configuration_change_hook (f);
2978 return Qnil;
2982 void
2983 replace_buffer_in_windows (Lisp_Object buffer)
2985 call1 (Qreplace_buffer_in_windows, buffer);
2988 /* If BUFFER is shown in a window, safely replace it with some other
2989 buffer in all windows of all frames, even those on other keyboards. */
2991 void
2992 replace_buffer_in_windows_safely (Lisp_Object buffer)
2994 if (buffer_window_count (XBUFFER (buffer)))
2996 Lisp_Object tail, frame;
2998 /* A single call to window_loop won't do the job because it only
2999 considers frames on the current keyboard. So loop manually over
3000 frames, and handle each one. */
3001 FOR_EACH_FRAME (tail, frame)
3002 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY, buffer, 1, frame);
3006 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
3007 minimum allowable size. */
3009 void
3010 check_frame_size (FRAME_PTR frame, int *rows, int *cols)
3012 /* For height, we have to see:
3013 how many windows the frame has at minimum (one or two),
3014 and whether it has a menu bar or other special stuff at the top. */
3015 int min_height
3016 = ((FRAME_MINIBUF_ONLY_P (frame) || ! FRAME_HAS_MINIBUF_P (frame))
3017 ? MIN_SAFE_WINDOW_HEIGHT
3018 : 2 * MIN_SAFE_WINDOW_HEIGHT);
3020 if (FRAME_TOP_MARGIN (frame) > 0)
3021 min_height += FRAME_TOP_MARGIN (frame);
3023 if (*rows < min_height)
3024 *rows = min_height;
3025 if (*cols < MIN_SAFE_WINDOW_WIDTH)
3026 *cols = MIN_SAFE_WINDOW_WIDTH;
3029 /* Adjust the margins of window W if text area is too small.
3030 Return 1 if window width is ok after adjustment; 0 if window
3031 is still too narrow. */
3033 static int
3034 adjust_window_margins (struct window *w)
3036 int box_cols = (WINDOW_TOTAL_COLS (w)
3037 - WINDOW_FRINGE_COLS (w)
3038 - WINDOW_SCROLL_BAR_COLS (w));
3039 int margin_cols = (WINDOW_LEFT_MARGIN_COLS (w)
3040 + WINDOW_RIGHT_MARGIN_COLS (w));
3042 if (box_cols - margin_cols >= MIN_SAFE_WINDOW_WIDTH)
3043 return 1;
3045 if (margin_cols < 0 || box_cols < MIN_SAFE_WINDOW_WIDTH)
3046 return 0;
3048 /* Window's text area is too narrow, but reducing the window
3049 margins will fix that. */
3050 margin_cols = box_cols - MIN_SAFE_WINDOW_WIDTH;
3051 if (WINDOW_RIGHT_MARGIN_COLS (w) > 0)
3053 if (WINDOW_LEFT_MARGIN_COLS (w) > 0)
3055 wset_left_margin_cols (w, make_number (margin_cols / 2));
3056 wset_right_margin_cols (w, make_number (margin_cols / 2));
3058 else
3059 wset_right_margin_cols (w, make_number (margin_cols));
3061 else
3062 wset_left_margin_cols (w, make_number (margin_cols));
3063 return 1;
3066 /* The following three routines are needed for running a window's
3067 configuration change hook. */
3068 static void
3069 run_funs (Lisp_Object funs)
3071 for (; CONSP (funs); funs = XCDR (funs))
3072 if (!EQ (XCAR (funs), Qt))
3073 call0 (XCAR (funs));
3076 static Lisp_Object
3077 select_window_norecord (Lisp_Object window)
3079 return WINDOW_LIVE_P (window)
3080 ? Fselect_window (window, Qt) : selected_window;
3083 static Lisp_Object
3084 select_frame_norecord (Lisp_Object frame)
3086 return FRAME_LIVE_P (XFRAME (frame))
3087 ? Fselect_frame (frame, Qt) : selected_frame;
3090 void
3091 run_window_configuration_change_hook (struct frame *f)
3093 ptrdiff_t count = SPECPDL_INDEX ();
3094 Lisp_Object frame, global_wcch
3095 = Fdefault_value (Qwindow_configuration_change_hook);
3096 XSETFRAME (frame, f);
3098 if (NILP (Vrun_hooks) || !NILP (inhibit_lisp_code))
3099 return;
3101 /* Use the right buffer. Matters when running the local hooks. */
3102 if (current_buffer != XBUFFER (Fwindow_buffer (Qnil)))
3104 record_unwind_current_buffer ();
3105 Fset_buffer (Fwindow_buffer (Qnil));
3108 if (SELECTED_FRAME () != f)
3110 record_unwind_protect (select_frame_norecord, Fselected_frame ());
3111 select_frame_norecord (frame);
3114 /* Look for buffer-local values. */
3116 Lisp_Object windows = Fwindow_list (frame, Qlambda, Qnil);
3117 for (; CONSP (windows); windows = XCDR (windows))
3119 Lisp_Object window = XCAR (windows);
3120 Lisp_Object buffer = Fwindow_buffer (window);
3121 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook,
3122 buffer)))
3124 ptrdiff_t inner_count = SPECPDL_INDEX ();
3125 record_unwind_protect (select_window_norecord, Fselected_window ());
3126 select_window_norecord (window);
3127 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook,
3128 buffer));
3129 unbind_to (inner_count, Qnil);
3134 run_funs (global_wcch);
3135 unbind_to (count, Qnil);
3138 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook,
3139 Srun_window_configuration_change_hook, 0, 1, 0,
3140 doc: /* Run `window-configuration-change-hook' for FRAME.
3141 If FRAME is omitted or nil, it defaults to the selected frame. */)
3142 (Lisp_Object frame)
3144 run_window_configuration_change_hook (decode_live_frame (frame));
3145 return Qnil;
3148 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
3149 means it's allowed to run hooks. See make_frame for a case where
3150 it's not allowed. KEEP_MARGINS_P non-zero means that the current
3151 margins, fringes, and scroll-bar settings of the window are not
3152 reset from the buffer's local settings. */
3154 void
3155 set_window_buffer (Lisp_Object window, Lisp_Object buffer,
3156 bool run_hooks_p, bool keep_margins_p)
3158 struct window *w = XWINDOW (window);
3159 struct buffer *b = XBUFFER (buffer);
3160 ptrdiff_t count = SPECPDL_INDEX ();
3161 int samebuf = EQ (buffer, w->buffer);
3163 wset_buffer (w, buffer);
3165 if (EQ (window, selected_window))
3166 bset_last_selected_window (b, window);
3168 /* Let redisplay errors through. */
3169 b->display_error_modiff = 0;
3171 /* Update time stamps of buffer display. */
3172 if (INTEGERP (BVAR (b, display_count)))
3173 bset_display_count (b, make_number (XINT (BVAR (b, display_count)) + 1));
3174 bset_display_time (b, Fcurrent_time ());
3176 wset_window_end_pos (w, make_number (0));
3177 wset_window_end_vpos (w, make_number (0));
3178 memset (&w->last_cursor, 0, sizeof w->last_cursor);
3180 if (!(keep_margins_p && samebuf))
3181 { /* If we're not actually changing the buffer, don't reset hscroll and
3182 vscroll. This case happens for example when called from
3183 change_frame_size_1, where we use a dummy call to
3184 Fset_window_buffer on the frame's selected window (and no other)
3185 just in order to run window-configuration-change-hook.
3186 Resetting hscroll and vscroll here is problematic for things like
3187 image-mode and doc-view-mode since it resets the image's position
3188 whenever we resize the frame. */
3189 w->hscroll = w->min_hscroll = 0;
3190 w->vscroll = 0;
3191 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3192 set_marker_restricted (w->start,
3193 make_number (b->last_window_start),
3194 buffer);
3195 w->start_at_line_beg = 0;
3196 w->force_start = 0;
3197 w->last_modified = 0;
3198 w->last_overlay_modified = 0;
3200 /* Maybe we could move this into the `if' but it's not obviously safe and
3201 I doubt it's worth the trouble. */
3202 windows_or_buffers_changed++;
3204 /* We must select BUFFER for running the window-scroll-functions. */
3205 /* We can't check ! NILP (Vwindow_scroll_functions) here
3206 because that might itself be a local variable. */
3207 if (window_initialized)
3209 record_unwind_current_buffer ();
3210 Fset_buffer (buffer);
3213 XMARKER (w->pointm)->insertion_type = !NILP (Vwindow_point_insertion_type);
3215 if (!keep_margins_p)
3217 /* Set left and right marginal area width etc. from buffer. */
3219 /* This may call adjust_window_margins three times, so
3220 temporarily disable window margins. */
3221 Lisp_Object save_left = w->left_margin_cols;
3222 Lisp_Object save_right = w->right_margin_cols;
3224 wset_left_margin_cols (w, Qnil);
3225 wset_right_margin_cols (w, Qnil);
3227 Fset_window_fringes (window,
3228 BVAR (b, left_fringe_width), BVAR (b, right_fringe_width),
3229 BVAR (b, fringes_outside_margins));
3231 Fset_window_scroll_bars (window,
3232 BVAR (b, scroll_bar_width),
3233 BVAR (b, vertical_scroll_bar_type), Qnil);
3235 wset_left_margin_cols (w, save_left);
3236 wset_right_margin_cols (w, save_right);
3238 Fset_window_margins (window,
3239 BVAR (b, left_margin_cols), BVAR (b, right_margin_cols));
3242 if (run_hooks_p)
3244 if (! NILP (Vwindow_scroll_functions))
3245 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3246 Fmarker_position (w->start));
3247 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w)));
3250 unbind_to (count, Qnil);
3253 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 3, 0,
3254 doc: /* Make WINDOW display BUFFER-OR-NAME as its contents.
3255 WINDOW must be a live window and defaults to the selected one.
3256 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3258 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3259 display margins, fringe widths, and scroll bar settings are preserved;
3260 the default is to reset these from the local settings for BUFFER-OR-NAME
3261 or the frame defaults. Return nil.
3263 This function throws an error when WINDOW is strongly dedicated to its
3264 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3265 already display BUFFER-OR-NAME.
3267 This function runs `window-scroll-functions' before running
3268 `window-configuration-change-hook'. */)
3269 (register Lisp_Object window, Lisp_Object buffer_or_name, Lisp_Object keep_margins)
3271 register Lisp_Object tem, buffer;
3272 register struct window *w = decode_live_window (window);
3274 XSETWINDOW (window, w);
3275 buffer = Fget_buffer (buffer_or_name);
3276 CHECK_BUFFER (buffer);
3277 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
3278 error ("Attempt to display deleted buffer");
3280 tem = w->buffer;
3281 if (NILP (tem))
3282 error ("Window is deleted");
3283 else
3285 if (!EQ (tem, buffer))
3287 if (EQ (w->dedicated, Qt))
3288 /* WINDOW is strongly dedicated to its buffer, signal an
3289 error. */
3290 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem), name)));
3291 else
3292 /* WINDOW is weakly dedicated to its buffer, reset
3293 dedication. */
3294 wset_dedicated (w, Qnil);
3296 call1 (Qrecord_window_buffer, window);
3299 unshow_buffer (w);
3302 set_window_buffer (window, buffer, 1, !NILP (keep_margins));
3304 return Qnil;
3307 static Lisp_Object
3308 display_buffer (Lisp_Object buffer, Lisp_Object not_this_window_p, Lisp_Object override_frame)
3310 return call3 (Qdisplay_buffer, buffer, not_this_window_p, override_frame);
3313 DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
3314 0, 1, 0,
3315 doc: /* Force all windows to be updated on next redisplay.
3316 If optional arg OBJECT is a window, force redisplay of that window only.
3317 If OBJECT is a buffer or buffer name, force redisplay of all windows
3318 displaying that buffer. */)
3319 (Lisp_Object object)
3321 if (NILP (object))
3323 windows_or_buffers_changed++;
3324 update_mode_lines++;
3325 return Qt;
3328 if (WINDOWP (object))
3330 struct window *w = XWINDOW (object);
3331 mark_window_display_accurate (object, 0);
3332 w->update_mode_line = 1;
3333 if (BUFFERP (w->buffer))
3334 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
3335 ++update_mode_lines;
3336 return Qt;
3339 if (STRINGP (object))
3340 object = Fget_buffer (object);
3341 if (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object))
3342 && buffer_window_count (XBUFFER (object)))
3344 /* If buffer is live and shown in at least one window, find
3345 all windows showing this buffer and force update of them. */
3346 object = window_loop (REDISPLAY_BUFFER_WINDOWS, object, 0, Qvisible);
3347 return NILP (object) ? Qnil : Qt;
3350 /* If nothing suitable was found, just return.
3351 We could signal an error, but this feature will typically be used
3352 asynchronously in timers or process sentinels, so we don't. */
3353 return Qnil;
3356 /* Obsolete since 24.3. */
3357 void
3358 temp_output_buffer_show (register Lisp_Object buf)
3360 register struct buffer *old = current_buffer;
3361 register Lisp_Object window;
3362 register struct window *w;
3364 bset_directory (XBUFFER (buf), BVAR (current_buffer, directory));
3366 Fset_buffer (buf);
3367 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3368 BEGV = BEG;
3369 ZV = Z;
3370 SET_PT (BEG);
3371 set_buffer_internal (old);
3373 if (!NILP (Vtemp_buffer_show_function))
3374 call1 (Vtemp_buffer_show_function, buf);
3375 else
3377 window = display_buffer (buf, Qnil, Qnil);
3379 if (!EQ (XWINDOW (window)->frame, selected_frame))
3380 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3381 Vminibuf_scroll_window = window;
3382 w = XWINDOW (window);
3383 w->hscroll = 0;
3384 w->min_hscroll = 0;
3385 set_marker_restricted_both (w->start, buf, BEG, BEG);
3386 set_marker_restricted_both (w->pointm, buf, BEG, BEG);
3388 /* Run temp-buffer-show-hook, with the chosen window selected
3389 and its buffer current. */
3391 ptrdiff_t count = SPECPDL_INDEX ();
3392 Lisp_Object prev_window, prev_buffer;
3393 prev_window = selected_window;
3394 XSETBUFFER (prev_buffer, old);
3396 /* Select the window that was chosen, for running the hook.
3397 Note: Both Fselect_window and select_window_norecord may
3398 set-buffer to the buffer displayed in the window,
3399 so we need to save the current buffer. --stef */
3400 record_unwind_protect (Fset_buffer, prev_buffer);
3401 record_unwind_protect (select_window_norecord, prev_window);
3402 Fselect_window (window, Qt);
3403 Fset_buffer (w->buffer);
3404 Frun_hooks (1, &Qtemp_buffer_show_hook);
3405 unbind_to (count, Qnil);
3410 /* Make new window, have it replace WINDOW in window-tree, and make
3411 WINDOW its only vertical child (HORFLAG 1 means make WINDOW its only
3412 horizontal child). */
3413 static void
3414 make_parent_window (Lisp_Object window, bool horflag)
3416 Lisp_Object parent;
3417 register struct window *o, *p;
3419 o = XWINDOW (window);
3420 p = allocate_window ();
3421 memcpy ((char *) p + sizeof (struct vectorlike_header),
3422 (char *) o + sizeof (struct vectorlike_header),
3423 word_size * VECSIZE (struct window));
3424 /* P's buffer slot may change from nil to a buffer. */
3425 adjust_window_count (p, 1);
3426 XSETWINDOW (parent, p);
3428 replace_window (window, parent, 1);
3430 wset_next (o, Qnil);
3431 wset_prev (o, Qnil);
3432 wset_parent (o, parent);
3434 wset_hchild (p, horflag ? window : Qnil);
3435 wset_vchild (p, horflag ? Qnil : window);
3436 wset_start (p, Qnil);
3437 wset_pointm (p, Qnil);
3438 wset_buffer (p, Qnil);
3439 wset_combination_limit (p, Qnil);
3440 wset_window_parameters (p, Qnil);
3443 /* Make new window from scratch. */
3444 Lisp_Object
3445 make_window (void)
3447 Lisp_Object window;
3448 register struct window *w;
3450 w = allocate_window ();
3451 /* Initialize Lisp data. Note that allocate_window initializes all
3452 Lisp data to nil, so do it only for slots which should not be nil. */
3453 wset_normal_lines (w, make_float (1.0));
3454 wset_normal_cols (w, make_float (1.0));
3455 wset_new_total (w, make_number (0));
3456 wset_new_normal (w, make_number (0));
3457 wset_start (w, Fmake_marker ());
3458 wset_pointm (w, Fmake_marker ());
3459 wset_vertical_scroll_bar_type (w, Qt);
3460 wset_window_end_pos (w, make_number (0));
3461 wset_window_end_vpos (w, make_number (0));
3462 /* These Lisp fields are marked specially so they're not set to nil by
3463 allocate_window. */
3464 wset_prev_buffers (w, Qnil);
3465 wset_next_buffers (w, Qnil);
3467 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3468 non-Lisp data, so do it only for slots which should not be zero. */
3469 w->nrows_scale_factor = w->ncols_scale_factor = 1;
3470 w->phys_cursor_type = -1;
3471 w->phys_cursor_width = -1;
3472 w->column_number_displayed = -1;
3474 /* Reset window_list. */
3475 Vwindow_list = Qnil;
3476 /* Return window. */
3477 XSETWINDOW (window, w);
3478 return window;
3481 DEFUN ("set-window-new-total", Fset_window_new_total, Sset_window_new_total, 2, 3, 0,
3482 doc: /* Set new total size of WINDOW to SIZE.
3483 WINDOW must be a valid window and defaults to the selected one.
3484 Return SIZE.
3486 Optional argument ADD non-nil means add SIZE to the new total size of
3487 WINDOW and return the sum.
3489 Note: This function does not operate on any child windows of WINDOW. */)
3490 (Lisp_Object window, Lisp_Object size, Lisp_Object add)
3492 struct window *w = decode_valid_window (window);
3494 CHECK_NUMBER (size);
3495 if (NILP (add))
3496 wset_new_total (w, size);
3497 else
3498 wset_new_total (w, make_number (XINT (w->new_total) + XINT (size)));
3500 return w->new_total;
3503 DEFUN ("set-window-new-normal", Fset_window_new_normal, Sset_window_new_normal, 1, 2, 0,
3504 doc: /* Set new normal size of WINDOW to SIZE.
3505 WINDOW must be a valid window and defaults to the selected one.
3506 Return SIZE.
3508 Note: This function does not operate on any child windows of WINDOW. */)
3509 (Lisp_Object window, Lisp_Object size)
3511 wset_new_normal (decode_valid_window (window), size);
3512 return size;
3515 /* Return 1 if setting w->total_lines (w->total_cols if HORFLAG is
3516 non-zero) to w->new_total would result in correct heights (widths)
3517 for window W and recursively all child windows of W.
3519 Note: This function does not check any of `window-fixed-size-p',
3520 `window-min-height' or `window-min-width'. It does check that window
3521 sizes do not drop below one line (two columns). */
3522 static int
3523 window_resize_check (struct window *w, bool horflag)
3525 struct window *c;
3527 if (!NILP (w->vchild))
3528 /* W is a vertical combination. */
3530 c = XWINDOW (w->vchild);
3531 if (horflag)
3532 /* All child windows of W must have the same width as W. */
3534 while (c)
3536 if ((XINT (c->new_total) != XINT (w->new_total))
3537 || !window_resize_check (c, horflag))
3538 return 0;
3539 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3541 return 1;
3543 else
3544 /* The sum of the heights of the child windows of W must equal
3545 W's height. */
3547 int sum_of_sizes = 0;
3548 while (c)
3550 if (!window_resize_check (c, horflag))
3551 return 0;
3552 sum_of_sizes = sum_of_sizes + XINT (c->new_total);
3553 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3555 return (sum_of_sizes == XINT (w->new_total));
3558 else if (!NILP (w->hchild))
3559 /* W is a horizontal combination. */
3561 c = XWINDOW (w->hchild);
3562 if (horflag)
3563 /* The sum of the widths of the child windows of W must equal W's
3564 width. */
3566 int sum_of_sizes = 0;
3567 while (c)
3569 if (!window_resize_check (c, horflag))
3570 return 0;
3571 sum_of_sizes = sum_of_sizes + XINT (c->new_total);
3572 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3574 return (sum_of_sizes == XINT (w->new_total));
3576 else
3577 /* All child windows of W must have the same height as W. */
3579 while (c)
3581 if ((XINT (c->new_total) != XINT (w->new_total))
3582 || !window_resize_check (c, horflag))
3583 return 0;
3584 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3586 return 1;
3589 else
3590 /* A leaf window. Make sure it's not too small. The following
3591 hardcodes the values of `window-safe-min-width' (2) and
3592 `window-safe-min-height' (1) which are defined in window.el. */
3593 return XINT (w->new_total) >= (horflag ? 2 : 1);
3596 /* Set w->total_lines (w->total_cols if HORIZONTAL is non-zero) to
3597 w->new_total for window W and recursively all child windows of W.
3598 Also calculate and assign the new vertical (horizontal) start
3599 positions of each of these windows.
3601 This function does not perform any error checks. Make sure you have
3602 run window_resize_check on W before applying this function. */
3603 static void
3604 window_resize_apply (struct window *w, bool horflag)
3606 struct window *c;
3607 int pos;
3609 /* Note: Assigning new_normal requires that the new total size of the
3610 parent window has been set *before*. */
3611 if (horflag)
3613 w->total_cols = XFASTINT (w->new_total);
3614 if (NUMBERP (w->new_normal))
3615 wset_normal_cols (w, w->new_normal);
3617 pos = w->left_col;
3619 else
3621 w->total_lines = XFASTINT (w->new_total);
3622 if (NUMBERP (w->new_normal))
3623 wset_normal_lines (w, w->new_normal);
3625 pos = w->top_line;
3628 if (!NILP (w->vchild))
3629 /* W is a vertical combination. */
3631 c = XWINDOW (w->vchild);
3632 while (c)
3634 if (horflag)
3635 c->left_col = pos;
3636 else
3637 c->top_line = pos;
3638 window_resize_apply (c, horflag);
3639 if (!horflag)
3640 pos = pos + c->total_lines;
3641 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3644 else if (!NILP (w->hchild))
3645 /* W is a horizontal combination. */
3647 c = XWINDOW (w->hchild);
3648 while (c)
3650 if (horflag)
3651 c->left_col = pos;
3652 else
3653 c->top_line = pos;
3654 window_resize_apply (c, horflag);
3655 if (horflag)
3656 pos = pos + c->total_cols;
3657 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3661 /* Clear out some redisplay caches. */
3662 w->last_modified = 0;
3663 w->last_overlay_modified = 0;
3667 DEFUN ("window-resize-apply", Fwindow_resize_apply, Swindow_resize_apply, 0, 2, 0,
3668 doc: /* Apply requested size values for window-tree of FRAME.
3669 If FRAME is omitted or nil, it defaults to the selected frame.
3671 Optional argument HORIZONTAL omitted or nil means apply requested
3672 height values. HORIZONTAL non-nil means apply requested width values.
3674 This function checks whether the requested values sum up to a valid
3675 window layout, recursively assigns the new sizes of all child windows
3676 and calculates and assigns the new start positions of these windows.
3678 Note: This function does not check any of `window-fixed-size-p',
3679 `window-min-height' or `window-min-width'. All these checks have to
3680 be applied on the Elisp level. */)
3681 (Lisp_Object frame, Lisp_Object horizontal)
3683 struct frame *f = decode_live_frame (frame);
3684 struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
3685 bool horflag = !NILP (horizontal);
3687 if (!window_resize_check (r, horflag)
3688 || (XINT (r->new_total)
3689 != (horflag ? r->total_cols : r->total_lines)))
3690 return Qnil;
3692 block_input ();
3693 window_resize_apply (r, horflag);
3695 windows_or_buffers_changed++;
3696 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3698 adjust_glyphs (f);
3699 unblock_input ();
3701 run_window_configuration_change_hook (f);
3703 return Qt;
3707 /* Resize frame F's windows when number of lines of F is set to SIZE.
3708 HORFLAG 1 means resize windows when number of columns of F is set to
3709 SIZE.
3711 This function can delete all windows but the selected one in order to
3712 satisfy the request. The result will be meaningful if and only if
3713 F's windows have meaningful sizes when you call this. */
3714 void
3715 resize_frame_windows (struct frame *f, int size, bool horflag)
3717 Lisp_Object root = f->root_window;
3718 struct window *r = XWINDOW (root);
3719 Lisp_Object mini = f->minibuffer_window;
3720 struct window *m;
3721 /* new_size is the new size of the frame's root window. */
3722 int new_size = (horflag
3723 ? size
3724 : (size
3725 - FRAME_TOP_MARGIN (f)
3726 - ((FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
3727 ? 1 : 0)));
3729 r->top_line = FRAME_TOP_MARGIN (f);
3730 if (NILP (r->vchild) && NILP (r->hchild))
3731 /* For a leaf root window just set the size. */
3732 if (horflag)
3733 r->total_cols = new_size;
3734 else
3735 r->total_lines = new_size;
3736 else
3738 /* old_size is the old size of the frame's root window. */
3739 int old_size = horflag ? r->total_cols : r->total_lines;
3740 Lisp_Object delta;
3742 XSETINT (delta, new_size - old_size);
3743 /* Try a "normal" resize first. */
3744 resize_root_window (root, delta, horflag ? Qt : Qnil, Qnil);
3745 if (window_resize_check (r, horflag)
3746 && new_size == XINT (r->new_total))
3747 window_resize_apply (r, horflag);
3748 else
3750 /* Try with "reasonable" minimum sizes next. */
3751 resize_root_window (root, delta, horflag ? Qt : Qnil, Qt);
3752 if (window_resize_check (r, horflag)
3753 && new_size == XINT (r->new_total))
3754 window_resize_apply (r, horflag);
3755 else
3757 /* Finally, try with "safe" minimum sizes. */
3758 resize_root_window (root, delta, horflag ? Qt : Qnil, Qsafe);
3759 if (window_resize_check (r, horflag)
3760 && new_size == XINT (r->new_total))
3761 window_resize_apply (r, horflag);
3762 else
3764 /* We lost. Delete all windows but the frame's
3765 selected one. */
3766 root = f->selected_window;
3767 Fdelete_other_windows_internal (root, Qnil);
3768 if (horflag)
3769 XWINDOW (root)->total_cols = new_size;
3770 else
3771 XWINDOW (root)->total_lines = new_size;
3777 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
3779 m = XWINDOW (mini);
3780 if (horflag)
3781 m->total_cols = size;
3782 else
3784 /* Are we sure we always want 1 line here? */
3785 m->total_lines = 1;
3786 m->top_line = r->top_line + r->total_lines;
3790 windows_or_buffers_changed++;
3794 DEFUN ("split-window-internal", Fsplit_window_internal, Ssplit_window_internal, 4, 4, 0,
3795 doc: /* Split window OLD.
3796 Second argument TOTAL-SIZE specifies the number of lines or columns of the
3797 new window. In any case TOTAL-SIZE must be a positive integer.
3799 Third argument SIDE nil (or `below') specifies that the new window shall
3800 be located below WINDOW. SIDE `above' means the new window shall be
3801 located above WINDOW. In both cases TOTAL-SIZE specifies the number of
3802 lines of the new window including space reserved for the mode and/or
3803 header line.
3805 SIDE t (or `right') specifies that the new window shall be located on
3806 the right side of WINDOW. SIDE `left' means the new window shall be
3807 located on the left of WINDOW. In both cases TOTAL-SIZE specifies the
3808 number of columns of the new window including space reserved for fringes
3809 and the scrollbar or a divider column.
3811 Fourth argument NORMAL-SIZE specifies the normal size of the new window
3812 according to the SIDE argument.
3814 The new total and normal sizes of all involved windows must have been
3815 set correctly. See the code of `split-window' for how this is done. */)
3816 (Lisp_Object old, Lisp_Object total_size, Lisp_Object side, Lisp_Object normal_size)
3818 /* OLD (*o) is the window we have to split. (*p) is either OLD's
3819 parent window or an internal window we have to install as OLD's new
3820 parent. REFERENCE (*r) must denote a live window, or is set to OLD
3821 provided OLD is a leaf window, or to the frame's selected window.
3822 NEW (*n) is the new window created with some parameters taken from
3823 REFERENCE (*r). */
3824 register Lisp_Object new, frame, reference;
3825 register struct window *o, *p, *n, *r;
3826 struct frame *f;
3827 bool horflag
3828 /* HORFLAG is 1 when we split side-by-side, 0 otherwise. */
3829 = EQ (side, Qt) || EQ (side, Qleft) || EQ (side, Qright);
3830 int combination_limit = 0;
3832 CHECK_WINDOW (old);
3833 o = XWINDOW (old);
3834 frame = WINDOW_FRAME (o);
3835 f = XFRAME (frame);
3837 CHECK_NUMBER (total_size);
3839 /* Set combination_limit to 1 if we have to make a new parent window.
3840 We do that if either `window-combination-limit' is t, or OLD has no
3841 parent, or OLD is ortho-combined. */
3842 combination_limit =
3843 EQ (Vwindow_combination_limit, Qt)
3844 || NILP (o->parent)
3845 || NILP (horflag
3846 ? (XWINDOW (o->parent)->hchild)
3847 : (XWINDOW (o->parent)->vchild));
3849 /* We need a live reference window to initialize some parameters. */
3850 if (WINDOW_LIVE_P (old))
3851 /* OLD is live, use it as reference window. */
3852 reference = old;
3853 else
3854 /* Use the frame's selected window as reference window. */
3855 reference = FRAME_SELECTED_WINDOW (f);
3856 r = XWINDOW (reference);
3858 /* The following bugs are caught by `split-window'. */
3859 if (MINI_WINDOW_P (o))
3860 error ("Attempt to split minibuffer window");
3861 else if (XINT (total_size) < (horflag ? 2 : 1))
3862 error ("Size of new window too small (after split)");
3863 else if (!combination_limit && !NILP (Vwindow_combination_resize))
3864 /* `window-combination-resize' non-nil means try to resize OLD's siblings
3865 proportionally. */
3867 p = XWINDOW (o->parent);
3868 /* Temporarily pretend we split the parent window. */
3869 wset_new_total
3870 (p, make_number ((horflag ? p->total_cols : p->total_lines)
3871 - XINT (total_size)));
3872 if (!window_resize_check (p, horflag))
3873 error ("Window sizes don't fit");
3874 else
3875 /* Undo the temporary pretension. */
3876 wset_new_total (p, make_number
3877 (horflag ? p->total_cols : p->total_lines));
3879 else
3881 if (!window_resize_check (o, horflag))
3882 error ("Resizing old window failed");
3883 else if (XINT (total_size) + XINT (o->new_total)
3884 != (horflag ? o->total_cols : o->total_lines))
3885 error ("Sum of sizes of old and new window don't fit");
3888 /* This is our point of no return. */
3889 if (combination_limit)
3891 /* Save the old value of o->normal_cols/lines. It gets corrupted
3892 by make_parent_window and we need it below for assigning it to
3893 p->new_normal. */
3894 Lisp_Object new_normal
3895 = horflag ? o->normal_cols : o->normal_lines;
3897 make_parent_window (old, horflag);
3898 p = XWINDOW (o->parent);
3899 if (EQ (Vwindow_combination_limit, Qt))
3900 /* Store t in the new parent's combination_limit slot to avoid
3901 that its children get merged into another window. */
3902 wset_combination_limit (p, Qt);
3903 /* These get applied below. */
3904 wset_new_total (p, make_number
3905 (horflag ? o->total_cols : o->total_lines));
3906 wset_new_normal (p, new_normal);
3908 else
3909 p = XWINDOW (o->parent);
3911 windows_or_buffers_changed++;
3912 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
3913 new = make_window ();
3914 n = XWINDOW (new);
3915 wset_frame (n, frame);
3916 wset_parent (n, o->parent);
3917 wset_vchild (n, Qnil);
3918 wset_hchild (n, Qnil);
3920 if (EQ (side, Qabove) || EQ (side, Qleft))
3922 wset_prev (n, o->prev);
3923 if (NILP (n->prev))
3924 if (horflag)
3925 wset_hchild (p, new);
3926 else
3927 wset_vchild (p, new);
3928 else
3929 wset_next (XWINDOW (n->prev), new);
3930 wset_next (n, old);
3931 wset_prev (o, new);
3933 else
3935 wset_next (n, o->next);
3936 if (!NILP (n->next))
3937 wset_prev (XWINDOW (n->next), new);
3938 wset_prev (n, old);
3939 wset_next (o, new);
3942 n->window_end_valid = 0;
3943 memset (&n->last_cursor, 0, sizeof n->last_cursor);
3945 /* Get special geometry settings from reference window. */
3946 wset_left_margin_cols (n, r->left_margin_cols);
3947 wset_right_margin_cols (n, r->right_margin_cols);
3948 wset_left_fringe_width (n, r->left_fringe_width);
3949 wset_right_fringe_width (n, r->right_fringe_width);
3950 n->fringes_outside_margins = r->fringes_outside_margins;
3951 wset_scroll_bar_width (n, r->scroll_bar_width);
3952 wset_vertical_scroll_bar_type (n, r->vertical_scroll_bar_type);
3954 /* Directly assign orthogonal coordinates and sizes. */
3955 if (horflag)
3957 n->top_line = o->top_line;
3958 n->total_lines = o->total_lines;
3960 else
3962 n->left_col = o->left_col;
3963 n->total_cols = o->total_cols;
3966 /* Iso-coordinates and sizes are assigned by window_resize_apply,
3967 get them ready here. */
3968 wset_new_total (n, total_size);
3969 wset_new_normal (n, normal_size);
3971 block_input ();
3972 window_resize_apply (p, horflag);
3973 adjust_glyphs (f);
3974 /* Set buffer of NEW to buffer of reference window. Don't run
3975 any hooks. */
3976 set_window_buffer (new, r->buffer, 0, 1);
3977 unblock_input ();
3979 /* Maybe we should run the scroll functions in Elisp (which already
3980 runs the configuration change hook). */
3981 if (! NILP (Vwindow_scroll_functions))
3982 run_hook_with_args_2 (Qwindow_scroll_functions, new,
3983 Fmarker_position (n->start));
3984 /* Return NEW. */
3985 return new;
3989 DEFUN ("delete-window-internal", Fdelete_window_internal, Sdelete_window_internal, 1, 1, 0,
3990 doc: /* Remove WINDOW from its frame.
3991 WINDOW defaults to the selected window. Return nil.
3992 Signal an error when WINDOW is the only window on its frame. */)
3993 (register Lisp_Object window)
3995 register Lisp_Object parent, sibling, frame, root;
3996 struct window *w, *p, *s, *r;
3997 struct frame *f;
3998 bool horflag;
3999 int before_sibling = 0;
4001 w = decode_any_window (window);
4002 XSETWINDOW (window, w);
4003 if (NILP (w->buffer)
4004 && NILP (w->hchild) && NILP (w->vchild))
4005 /* It's a no-op to delete an already deleted window. */
4006 return Qnil;
4008 parent = w->parent;
4009 if (NILP (parent))
4010 /* Never delete a minibuffer or frame root window. */
4011 error ("Attempt to delete minibuffer or sole ordinary window");
4012 else if (NILP (w->prev) && NILP (w->next))
4013 /* Rather bow out here, this case should be handled on the Elisp
4014 level. */
4015 error ("Attempt to delete sole window of parent");
4017 p = XWINDOW (parent);
4018 horflag = NILP (p->vchild);
4020 frame = WINDOW_FRAME (w);
4021 f = XFRAME (frame);
4023 root = FRAME_ROOT_WINDOW (f);
4024 r = XWINDOW (root);
4026 /* Unlink WINDOW from window tree. */
4027 if (NILP (w->prev))
4028 /* Get SIBLING below (on the right of) WINDOW. */
4030 /* before_sibling 1 means WINDOW is the first child of its
4031 parent and thus before the sibling. */
4032 before_sibling = 1;
4033 sibling = w->next;
4034 s = XWINDOW (sibling);
4035 wset_prev (s, Qnil);
4036 if (horflag)
4037 wset_hchild (p, sibling);
4038 else
4039 wset_vchild (p, sibling);
4041 else
4042 /* Get SIBLING above (on the left of) WINDOW. */
4044 sibling = w->prev;
4045 s = XWINDOW (sibling);
4046 wset_next (s, w->next);
4047 if (!NILP (s->next))
4048 wset_prev (XWINDOW (s->next), sibling);
4051 if (window_resize_check (r, horflag)
4052 && (XINT (r->new_total)
4053 == (horflag ? r->total_cols : r->total_lines)))
4054 /* We can delete WINDOW now. */
4057 /* Block input. */
4058 block_input ();
4059 window_resize_apply (p, horflag);
4061 /* If this window is referred to by the dpyinfo's mouse
4062 highlight, invalidate that slot to be safe (Bug#9904). */
4063 if (!FRAME_INITIAL_P (f))
4065 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
4067 if (EQ (hlinfo->mouse_face_window, window))
4068 hlinfo->mouse_face_window = Qnil;
4071 windows_or_buffers_changed++;
4072 Vwindow_list = Qnil;
4073 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4075 wset_next (w, Qnil); /* Don't delete w->next too. */
4076 free_window_matrices (w);
4078 if (!NILP (w->vchild))
4080 delete_all_child_windows (w->vchild);
4081 wset_vchild (w, Qnil);
4083 else if (!NILP (w->hchild))
4085 delete_all_child_windows (w->hchild);
4086 wset_hchild (w, Qnil);
4088 else if (!NILP (w->buffer))
4090 unshow_buffer (w);
4091 unchain_marker (XMARKER (w->pointm));
4092 unchain_marker (XMARKER (w->start));
4093 wset_buffer (w, Qnil);
4096 if (NILP (s->prev) && NILP (s->next))
4097 /* A matrjoshka where SIBLING has become the only child of
4098 PARENT. */
4100 /* Put SIBLING into PARENT's place. */
4101 replace_window (parent, sibling, 0);
4102 /* Have SIBLING inherit the following three slot values from
4103 PARENT (the combination_limit slot is not inherited). */
4104 wset_normal_cols (s, p->normal_cols);
4105 wset_normal_lines (s, p->normal_lines);
4106 /* Mark PARENT as deleted. */
4107 wset_vchild (p, Qnil);
4108 wset_hchild (p, Qnil);
4109 /* Try to merge SIBLING into its new parent. */
4110 recombine_windows (sibling);
4113 adjust_glyphs (f);
4115 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f)))
4116 /* We deleted the frame's selected window. */
4118 /* Use the frame's first window as fallback ... */
4119 Lisp_Object new_selected_window = Fframe_first_window (frame);
4120 /* ... but preferably use its most recently used window. */
4121 Lisp_Object mru_window;
4123 /* `get-mru-window' might fail for some reason so play it safe
4124 - promote the first window _without recording it_ first. */
4125 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4126 Fselect_window (new_selected_window, Qt);
4127 else
4128 fset_selected_window (f, new_selected_window);
4130 unblock_input ();
4132 /* Now look whether `get-mru-window' gets us something. */
4133 mru_window = call1 (Qget_mru_window, frame);
4134 if (WINDOW_LIVE_P (mru_window)
4135 && EQ (XWINDOW (mru_window)->frame, frame))
4136 new_selected_window = mru_window;
4138 /* If all ended up well, we now promote the mru window. */
4139 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4140 Fselect_window (new_selected_window, Qnil);
4141 else
4142 fset_selected_window (f, new_selected_window);
4144 else
4145 unblock_input ();
4147 /* Must be run by the caller:
4148 run_window_configuration_change_hook (f); */
4150 else
4151 /* We failed: Relink WINDOW into window tree. */
4153 if (before_sibling)
4155 wset_prev (s, window);
4156 if (horflag)
4157 wset_hchild (p, window);
4158 else
4159 wset_vchild (p, window);
4161 else
4163 wset_next (s, window);
4164 if (!NILP (w->next))
4165 wset_prev (XWINDOW (w->next), window);
4167 error ("Deletion failed");
4170 return Qnil;
4173 /***********************************************************************
4174 Resizing Mini-Windows
4175 ***********************************************************************/
4177 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4178 can. */
4179 void
4180 grow_mini_window (struct window *w, int delta)
4182 struct frame *f = XFRAME (w->frame);
4183 struct window *r;
4184 Lisp_Object root, value;
4186 eassert (MINI_WINDOW_P (w));
4187 eassert (delta >= 0);
4189 root = FRAME_ROOT_WINDOW (f);
4190 r = XWINDOW (root);
4191 value = call2 (Qwindow_resize_root_window_vertically,
4192 root, make_number (- delta));
4193 if (INTEGERP (value) && window_resize_check (r, 0))
4195 block_input ();
4196 window_resize_apply (r, 0);
4198 /* Grow the mini-window. */
4199 w->top_line = r->top_line + r->total_lines;
4200 w->total_lines -= XINT (value);
4201 w->last_modified = 0;
4202 w->last_overlay_modified = 0;
4204 windows_or_buffers_changed++;
4205 adjust_glyphs (f);
4206 unblock_input ();
4211 /* Shrink mini-window W. */
4212 void
4213 shrink_mini_window (struct window *w)
4215 struct frame *f = XFRAME (w->frame);
4216 struct window *r;
4217 Lisp_Object root, value;
4218 EMACS_INT size;
4220 eassert (MINI_WINDOW_P (w));
4222 size = w->total_lines;
4223 if (size > 1)
4225 root = FRAME_ROOT_WINDOW (f);
4226 r = XWINDOW (root);
4227 value = call2 (Qwindow_resize_root_window_vertically,
4228 root, make_number (size - 1));
4229 if (INTEGERP (value) && window_resize_check (r, 0))
4231 block_input ();
4232 window_resize_apply (r, 0);
4234 /* Shrink the mini-window. */
4235 w->top_line = r->top_line + r->total_lines;
4236 w->total_lines = 1;
4238 w->last_modified = 0;
4239 w->last_overlay_modified = 0;
4241 windows_or_buffers_changed++;
4242 adjust_glyphs (f);
4243 unblock_input ();
4245 /* If the above failed for whatever strange reason we must make a
4246 one window frame here. The same routine will be needed when
4247 shrinking the frame (and probably when making the initial
4248 *scratch* window). For the moment leave things as they are. */
4252 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal, Sresize_mini_window_internal, 1, 1, 0,
4253 doc: /* Resize minibuffer window WINDOW. */)
4254 (Lisp_Object window)
4256 struct window *w = XWINDOW (window);
4257 struct window *r;
4258 struct frame *f;
4259 int height;
4261 CHECK_WINDOW (window);
4262 f = XFRAME (w->frame);
4264 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w->frame)), window))
4265 error ("Not a valid minibuffer window");
4266 else if (FRAME_MINIBUF_ONLY_P (f))
4267 error ("Cannot resize a minibuffer-only frame");
4269 r = XWINDOW (FRAME_ROOT_WINDOW (f));
4270 height = r->total_lines + w->total_lines;
4271 if (window_resize_check (r, 0)
4272 && XINT (w->new_total) > 0
4273 && height == XINT (r->new_total) + XINT (w->new_total))
4275 block_input ();
4276 window_resize_apply (r, 0);
4278 w->total_lines = XFASTINT (w->new_total);
4279 w->top_line = r->top_line + r->total_lines;
4281 windows_or_buffers_changed++;
4282 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
4283 adjust_glyphs (f);
4284 unblock_input ();
4286 run_window_configuration_change_hook (f);
4287 return Qt;
4289 else error ("Failed to resize minibuffer window");
4292 /* Mark window cursors off for all windows in the window tree rooted
4293 at W by setting their phys_cursor_on_p flag to zero. Called from
4294 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4295 the frame are cleared. */
4297 void
4298 mark_window_cursors_off (struct window *w)
4300 while (w)
4302 if (!NILP (w->hchild))
4303 mark_window_cursors_off (XWINDOW (w->hchild));
4304 else if (!NILP (w->vchild))
4305 mark_window_cursors_off (XWINDOW (w->vchild));
4306 else
4307 w->phys_cursor_on_p = 0;
4309 w = NILP (w->next) ? 0 : XWINDOW (w->next);
4314 /* Return number of lines of text (not counting mode lines) in W. */
4317 window_internal_height (struct window *w)
4319 int ht = w->total_lines;
4321 if (!MINI_WINDOW_P (w))
4323 if (!NILP (w->parent)
4324 || !NILP (w->vchild)
4325 || !NILP (w->hchild)
4326 || !NILP (w->next)
4327 || !NILP (w->prev)
4328 || WINDOW_WANTS_MODELINE_P (w))
4329 --ht;
4331 if (WINDOW_WANTS_HEADER_LINE_P (w))
4332 --ht;
4335 return ht;
4338 /************************************************************************
4339 Window Scrolling
4340 ***********************************************************************/
4342 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
4343 N screen-fulls, which is defined as the height of the window minus
4344 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4345 instead. Negative values of N mean scroll down. NOERROR non-zero
4346 means don't signal an error if we try to move over BEGV or ZV,
4347 respectively. */
4349 static void
4350 window_scroll (Lisp_Object window, EMACS_INT n, int whole, int noerror)
4352 immediate_quit = 1;
4353 n = clip_to_bounds (INT_MIN, n, INT_MAX);
4355 /* If we must, use the pixel-based version which is much slower than
4356 the line-based one but can handle varying line heights. */
4357 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
4358 window_scroll_pixel_based (window, n, whole, noerror);
4359 else
4360 window_scroll_line_based (window, n, whole, noerror);
4362 immediate_quit = 0;
4366 /* Implementation of window_scroll that works based on pixel line
4367 heights. See the comment of window_scroll for parameter
4368 descriptions. */
4370 static void
4371 window_scroll_pixel_based (Lisp_Object window, int n, int whole, int noerror)
4373 struct it it;
4374 struct window *w = XWINDOW (window);
4375 struct text_pos start;
4376 int this_scroll_margin;
4377 /* True if we fiddled the window vscroll field without really scrolling. */
4378 int vscrolled = 0;
4379 int x, y, rtop, rbot, rowh, vpos;
4380 void *itdata = NULL;
4382 SET_TEXT_POS_FROM_MARKER (start, w->start);
4383 /* Scrolling a minibuffer window via scroll bar when the echo area
4384 shows long text sometimes resets the minibuffer contents behind
4385 our backs. */
4386 if (CHARPOS (start) > ZV)
4387 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
4389 /* If PT is not visible in WINDOW, move back one half of
4390 the screen. Allow PT to be partially visible, otherwise
4391 something like (scroll-down 1) with PT in the line before
4392 the partially visible one would recenter. */
4394 if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos))
4396 itdata = bidi_shelve_cache ();
4397 /* Move backward half the height of the window. Performance note:
4398 vmotion used here is about 10% faster, but would give wrong
4399 results for variable height lines. */
4400 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4401 it.current_y = it.last_visible_y;
4402 move_it_vertically_backward (&it, window_box_height (w) / 2);
4404 /* The function move_iterator_vertically may move over more than
4405 the specified y-distance. If it->w is small, e.g. a
4406 mini-buffer window, we may end up in front of the window's
4407 display area. This is the case when Start displaying at the
4408 start of the line containing PT in this case. */
4409 if (it.current_y <= 0)
4411 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4412 move_it_vertically_backward (&it, 0);
4413 it.current_y = 0;
4416 start = it.current.pos;
4417 bidi_unshelve_cache (itdata, 0);
4419 else if (auto_window_vscroll_p)
4421 if (rtop || rbot) /* partially visible */
4423 int px;
4424 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
4425 if (whole)
4426 dy = max ((window_box_height (w)
4427 - next_screen_context_lines * dy),
4428 dy);
4429 dy *= n;
4431 if (n < 0)
4433 /* Only vscroll backwards if already vscrolled forwards. */
4434 if (w->vscroll < 0 && rtop > 0)
4436 px = max (0, -w->vscroll - min (rtop, -dy));
4437 Fset_window_vscroll (window, make_number (px), Qt);
4438 return;
4441 if (n > 0)
4443 /* Do vscroll if already vscrolled or only display line. */
4444 if (rbot > 0 && (w->vscroll < 0 || vpos == 0))
4446 px = max (0, -w->vscroll + min (rbot, dy));
4447 Fset_window_vscroll (window, make_number (px), Qt);
4448 return;
4451 /* Maybe modify window start instead of scrolling. */
4452 if (rbot > 0 || w->vscroll < 0)
4454 ptrdiff_t spos;
4456 Fset_window_vscroll (window, make_number (0), Qt);
4457 /* If there are other text lines above the current row,
4458 move window start to current row. Else to next row. */
4459 if (rbot > 0)
4460 spos = XINT (Fline_beginning_position (Qnil));
4461 else
4462 spos = min (XINT (Fline_end_position (Qnil)) + 1, ZV);
4463 set_marker_restricted (w->start, make_number (spos),
4464 w->buffer);
4465 w->start_at_line_beg = 1;
4466 w->update_mode_line = 1;
4467 w->last_modified = 0;
4468 w->last_overlay_modified = 0;
4469 /* Set force_start so that redisplay_window will run the
4470 window-scroll-functions. */
4471 w->force_start = 1;
4472 return;
4476 /* Cancel previous vscroll. */
4477 Fset_window_vscroll (window, make_number (0), Qt);
4480 itdata = bidi_shelve_cache ();
4481 /* If scroll_preserve_screen_position is non-nil, we try to set
4482 point in the same window line as it is now, so get that line. */
4483 if (!NILP (Vscroll_preserve_screen_position))
4485 /* We preserve the goal pixel coordinate across consecutive
4486 calls to scroll-up, scroll-down and other commands that
4487 have the `scroll-command' property. This avoids the
4488 possibility of point becoming "stuck" on a tall line when
4489 scrolling by one line. */
4490 if (window_scroll_pixel_based_preserve_y < 0
4491 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
4492 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
4494 start_display (&it, w, start);
4495 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4496 window_scroll_pixel_based_preserve_y = it.current_y;
4497 window_scroll_pixel_based_preserve_x = it.current_x;
4500 else
4501 window_scroll_pixel_based_preserve_y
4502 = window_scroll_pixel_based_preserve_x = -1;
4504 /* Move iterator it from start the specified distance forward or
4505 backward. The result is the new window start. */
4506 start_display (&it, w, start);
4507 if (whole)
4509 ptrdiff_t start_pos = IT_CHARPOS (it);
4510 int dy = WINDOW_FRAME_LINE_HEIGHT (w);
4511 dy = max ((window_box_height (w)
4512 - next_screen_context_lines * dy),
4513 dy) * n;
4515 /* Note that move_it_vertically always moves the iterator to the
4516 start of a line. So, if the last line doesn't have a newline,
4517 we would end up at the start of the line ending at ZV. */
4518 if (dy <= 0)
4520 move_it_vertically_backward (&it, -dy);
4521 /* Ensure we actually do move, e.g. in case we are currently
4522 looking at an image that is taller that the window height. */
4523 while (start_pos == IT_CHARPOS (it)
4524 && start_pos > BEGV)
4525 move_it_by_lines (&it, -1);
4527 else if (dy > 0)
4529 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4530 MOVE_TO_POS | MOVE_TO_Y);
4531 /* Ensure we actually do move, e.g. in case we are currently
4532 looking at an image that is taller that the window height. */
4533 while (start_pos == IT_CHARPOS (it)
4534 && start_pos < ZV)
4535 move_it_by_lines (&it, 1);
4538 else
4539 move_it_by_lines (&it, n);
4541 /* We failed if we find ZV is already on the screen (scrolling up,
4542 means there's nothing past the end), or if we can't start any
4543 earlier (scrolling down, means there's nothing past the top). */
4544 if ((n > 0 && IT_CHARPOS (it) == ZV)
4545 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4547 if (IT_CHARPOS (it) == ZV)
4549 if (it.current_y < it.last_visible_y
4550 && (it.current_y + it.max_ascent + it.max_descent
4551 > it.last_visible_y))
4553 /* The last line was only partially visible, make it fully
4554 visible. */
4555 w->vscroll = (it.last_visible_y
4556 - it.current_y + it.max_ascent + it.max_descent);
4557 adjust_glyphs (it.f);
4559 else
4561 bidi_unshelve_cache (itdata, 0);
4562 if (noerror)
4563 return;
4564 else if (n < 0) /* could happen with empty buffers */
4565 xsignal0 (Qbeginning_of_buffer);
4566 else
4567 xsignal0 (Qend_of_buffer);
4570 else
4572 if (w->vscroll != 0)
4573 /* The first line was only partially visible, make it fully
4574 visible. */
4575 w->vscroll = 0;
4576 else
4578 bidi_unshelve_cache (itdata, 0);
4579 if (noerror)
4580 return;
4581 else
4582 xsignal0 (Qbeginning_of_buffer);
4586 /* If control gets here, then we vscrolled. */
4588 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
4590 /* Don't try to change the window start below. */
4591 vscrolled = 1;
4594 if (! vscrolled)
4596 ptrdiff_t pos = IT_CHARPOS (it);
4597 ptrdiff_t bytepos;
4599 /* If in the middle of a multi-glyph character move forward to
4600 the next character. */
4601 if (in_display_vector_p (&it))
4603 ++pos;
4604 move_it_to (&it, pos, -1, -1, -1, MOVE_TO_POS);
4607 /* Set the window start, and set up the window for redisplay. */
4608 set_marker_restricted_both (w->start, w->buffer, IT_CHARPOS (it),
4609 IT_BYTEPOS (it));
4610 bytepos = marker_byte_position (w->start);
4611 w->start_at_line_beg = (pos == BEGV || FETCH_BYTE (bytepos - 1) == '\n');
4612 w->update_mode_line = 1;
4613 w->last_modified = 0;
4614 w->last_overlay_modified = 0;
4615 /* Set force_start so that redisplay_window will run the
4616 window-scroll-functions. */
4617 w->force_start = 1;
4620 /* The rest of this function uses current_y in a nonstandard way,
4621 not including the height of the header line if any. */
4622 it.current_y = it.vpos = 0;
4624 /* Move PT out of scroll margins.
4625 This code wants current_y to be zero at the window start position
4626 even if there is a header line. */
4627 this_scroll_margin = max (0, scroll_margin);
4628 this_scroll_margin
4629 = min (this_scroll_margin, w->total_lines / 4);
4630 this_scroll_margin *= FRAME_LINE_HEIGHT (it.f);
4632 if (n > 0)
4634 /* We moved the window start towards ZV, so PT may be now
4635 in the scroll margin at the top. */
4636 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4637 if (IT_CHARPOS (it) == PT && it.current_y >= this_scroll_margin
4638 && (NILP (Vscroll_preserve_screen_position)
4639 || EQ (Vscroll_preserve_screen_position, Qt)))
4640 /* We found PT at a legitimate height. Leave it alone. */
4642 else if (window_scroll_pixel_based_preserve_y >= 0)
4644 /* If we have a header line, take account of it.
4645 This is necessary because we set it.current_y to 0, above. */
4646 move_it_to (&it, -1,
4647 window_scroll_pixel_based_preserve_x,
4648 window_scroll_pixel_based_preserve_y
4649 - (WINDOW_WANTS_HEADER_LINE_P (w) ? 1 : 0 ),
4650 -1, MOVE_TO_Y | MOVE_TO_X);
4651 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4653 else
4655 while (it.current_y < this_scroll_margin)
4657 int prev = it.current_y;
4658 move_it_by_lines (&it, 1);
4659 if (prev == it.current_y)
4660 break;
4662 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4665 else if (n < 0)
4667 ptrdiff_t charpos, bytepos;
4668 int partial_p;
4670 /* Save our position, for the
4671 window_scroll_pixel_based_preserve_y case. */
4672 charpos = IT_CHARPOS (it);
4673 bytepos = IT_BYTEPOS (it);
4675 /* We moved the window start towards BEGV, so PT may be now
4676 in the scroll margin at the bottom. */
4677 move_it_to (&it, PT, -1,
4678 (it.last_visible_y - CURRENT_HEADER_LINE_HEIGHT (w)
4679 - this_scroll_margin - 1),
4681 MOVE_TO_POS | MOVE_TO_Y);
4683 /* Save our position, in case it's correct. */
4684 charpos = IT_CHARPOS (it);
4685 bytepos = IT_BYTEPOS (it);
4687 /* See if point is on a partially visible line at the end. */
4688 if (it.what == IT_EOB)
4689 partial_p = it.current_y + it.ascent + it.descent > it.last_visible_y;
4690 else
4692 move_it_by_lines (&it, 1);
4693 partial_p = it.current_y > it.last_visible_y;
4696 if (charpos == PT && !partial_p
4697 && (NILP (Vscroll_preserve_screen_position)
4698 || EQ (Vscroll_preserve_screen_position, Qt)))
4699 /* We found PT before we found the display margin, so PT is ok. */
4701 else if (window_scroll_pixel_based_preserve_y >= 0)
4703 SET_TEXT_POS_FROM_MARKER (start, w->start);
4704 start_display (&it, w, start);
4705 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
4706 here because we called start_display again and did not
4707 alter it.current_y this time. */
4708 move_it_to (&it, -1, window_scroll_pixel_based_preserve_x,
4709 window_scroll_pixel_based_preserve_y, -1,
4710 MOVE_TO_Y | MOVE_TO_X);
4711 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4713 else
4715 if (partial_p)
4716 /* The last line was only partially visible, so back up two
4717 lines to make sure we're on a fully visible line. */
4719 move_it_by_lines (&it, -2);
4720 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
4722 else
4723 /* No, the position we saved is OK, so use it. */
4724 SET_PT_BOTH (charpos, bytepos);
4727 bidi_unshelve_cache (itdata, 0);
4731 /* Implementation of window_scroll that works based on screen lines.
4732 See the comment of window_scroll for parameter descriptions. */
4734 static void
4735 window_scroll_line_based (Lisp_Object window, int n, int whole, int noerror)
4737 register struct window *w = XWINDOW (window);
4738 /* Fvertical_motion enters redisplay, which can trigger
4739 fontification, which in turn can modify buffer text (e.g., if the
4740 fontification functions replace escape sequences with faces, as
4741 in `grep-mode-font-lock-keywords'). So we use a marker to record
4742 the old point position, to prevent crashes in SET_PT_BOTH. */
4743 Lisp_Object opoint_marker = Fpoint_marker ();
4744 register ptrdiff_t pos, pos_byte;
4745 register int ht = window_internal_height (w);
4746 register Lisp_Object tem;
4747 int lose;
4748 Lisp_Object bolp;
4749 ptrdiff_t startpos = marker_position (w->start);
4750 ptrdiff_t startbyte = marker_byte_position (w->start);
4751 Lisp_Object original_pos = Qnil;
4753 /* If scrolling screen-fulls, compute the number of lines to
4754 scroll from the window's height. */
4755 if (whole)
4756 n *= max (1, ht - next_screen_context_lines);
4758 if (!NILP (Vscroll_preserve_screen_position))
4760 if (window_scroll_preserve_vpos <= 0
4761 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
4762 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
4764 struct position posit
4765 = *compute_motion (startpos, startbyte, 0, 0, 0,
4766 PT, ht, 0, -1, w->hscroll, 0, w);
4767 window_scroll_preserve_vpos = posit.vpos;
4768 window_scroll_preserve_hpos = posit.hpos + w->hscroll;
4771 original_pos = Fcons (make_number (window_scroll_preserve_hpos),
4772 make_number (window_scroll_preserve_vpos));
4775 XSETFASTINT (tem, PT);
4776 tem = Fpos_visible_in_window_p (tem, window, Qnil);
4778 if (NILP (tem))
4780 Fvertical_motion (make_number (- (ht / 2)), window);
4781 startpos = PT;
4782 startbyte = PT_BYTE;
4785 SET_PT_BOTH (startpos, startbyte);
4786 lose = n < 0 && PT == BEGV;
4787 Fvertical_motion (make_number (n), window);
4788 pos = PT;
4789 pos_byte = PT_BYTE;
4790 bolp = Fbolp ();
4791 SET_PT_BOTH (marker_position (opoint_marker),
4792 marker_byte_position (opoint_marker));
4794 if (lose)
4796 if (noerror)
4797 return;
4798 else
4799 xsignal0 (Qbeginning_of_buffer);
4802 if (pos < ZV)
4804 /* Don't use a scroll margin that is negative or too large. */
4805 int this_scroll_margin =
4806 max (0, min (scroll_margin, w->total_lines / 4));
4808 set_marker_restricted_both (w->start, w->buffer, pos, pos_byte);
4809 w->start_at_line_beg = !NILP (bolp);
4810 w->update_mode_line = 1;
4811 w->last_modified = 0;
4812 w->last_overlay_modified = 0;
4813 /* Set force_start so that redisplay_window will run
4814 the window-scroll-functions. */
4815 w->force_start = 1;
4817 if (!NILP (Vscroll_preserve_screen_position)
4818 && (whole || !EQ (Vscroll_preserve_screen_position, Qt)))
4820 SET_PT_BOTH (pos, pos_byte);
4821 Fvertical_motion (original_pos, window);
4823 /* If we scrolled forward, put point enough lines down
4824 that it is outside the scroll margin. */
4825 else if (n > 0)
4827 int top_margin;
4829 if (this_scroll_margin > 0)
4831 SET_PT_BOTH (pos, pos_byte);
4832 Fvertical_motion (make_number (this_scroll_margin), window);
4833 top_margin = PT;
4835 else
4836 top_margin = pos;
4838 if (top_margin <= marker_position (opoint_marker))
4839 SET_PT_BOTH (marker_position (opoint_marker),
4840 marker_byte_position (opoint_marker));
4841 else if (!NILP (Vscroll_preserve_screen_position))
4843 SET_PT_BOTH (pos, pos_byte);
4844 Fvertical_motion (original_pos, window);
4846 else
4847 SET_PT (top_margin);
4849 else if (n < 0)
4851 int bottom_margin;
4853 /* If we scrolled backward, put point near the end of the window
4854 but not within the scroll margin. */
4855 SET_PT_BOTH (pos, pos_byte);
4856 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window);
4857 if (XFASTINT (tem) == ht - this_scroll_margin)
4858 bottom_margin = PT;
4859 else
4860 bottom_margin = PT + 1;
4862 if (bottom_margin > marker_position (opoint_marker))
4863 SET_PT_BOTH (marker_position (opoint_marker),
4864 marker_byte_position (opoint_marker));
4865 else
4867 if (!NILP (Vscroll_preserve_screen_position))
4869 SET_PT_BOTH (pos, pos_byte);
4870 Fvertical_motion (original_pos, window);
4872 else
4873 Fvertical_motion (make_number (-1), window);
4877 else
4879 if (noerror)
4880 return;
4881 else
4882 xsignal0 (Qend_of_buffer);
4887 /* Scroll selected_window up or down. If N is nil, scroll a
4888 screen-full which is defined as the height of the window minus
4889 next_screen_context_lines. If N is the symbol `-', scroll.
4890 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4891 up. This is the guts of Fscroll_up and Fscroll_down. */
4893 static void
4894 scroll_command (Lisp_Object n, int direction)
4896 ptrdiff_t count = SPECPDL_INDEX ();
4898 eassert (eabs (direction) == 1);
4900 /* If selected window's buffer isn't current, make it current for
4901 the moment. But don't screw up if window_scroll gets an error. */
4902 if (XBUFFER (XWINDOW (selected_window)->buffer) != current_buffer)
4904 record_unwind_protect (save_excursion_restore, save_excursion_save ());
4905 Fset_buffer (XWINDOW (selected_window)->buffer);
4907 /* Make redisplay consider other windows than just selected_window. */
4908 ++windows_or_buffers_changed;
4911 if (NILP (n))
4912 window_scroll (selected_window, direction, 1, 0);
4913 else if (EQ (n, Qminus))
4914 window_scroll (selected_window, -direction, 1, 0);
4915 else
4917 n = Fprefix_numeric_value (n);
4918 window_scroll (selected_window, XINT (n) * direction, 0, 0);
4921 unbind_to (count, Qnil);
4924 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "^P",
4925 doc: /* Scroll text of selected window upward ARG lines.
4926 If ARG is omitted or nil, scroll upward by a near full screen.
4927 A near full screen is `next-screen-context-lines' less than a full screen.
4928 Negative ARG means scroll downward.
4929 If ARG is the atom `-', scroll downward by nearly full screen.
4930 When calling from a program, supply as argument a number, nil, or `-'. */)
4931 (Lisp_Object arg)
4933 scroll_command (arg, 1);
4934 return Qnil;
4937 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "^P",
4938 doc: /* Scroll text of selected window down ARG lines.
4939 If ARG is omitted or nil, scroll down by a near full screen.
4940 A near full screen is `next-screen-context-lines' less than a full screen.
4941 Negative ARG means scroll upward.
4942 If ARG is the atom `-', scroll upward by nearly full screen.
4943 When calling from a program, supply as argument a number, nil, or `-'. */)
4944 (Lisp_Object arg)
4946 scroll_command (arg, -1);
4947 return Qnil;
4950 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
4951 doc: /* Return the other window for \"other window scroll\" commands.
4952 If `other-window-scroll-buffer' is non-nil, a window
4953 showing that buffer is used.
4954 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4955 specifies the window. This takes precedence over
4956 `other-window-scroll-buffer'. */)
4957 (void)
4959 Lisp_Object window;
4961 if (MINI_WINDOW_P (XWINDOW (selected_window))
4962 && !NILP (Vminibuf_scroll_window))
4963 window = Vminibuf_scroll_window;
4964 /* If buffer is specified, scroll that buffer. */
4965 else if (!NILP (Vother_window_scroll_buffer))
4967 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
4968 if (NILP (window))
4969 window = display_buffer (Vother_window_scroll_buffer, Qt, Qnil);
4971 else
4973 /* Nothing specified; look for a neighboring window on the same
4974 frame. */
4975 window = Fnext_window (selected_window, Qnil, Qnil);
4977 if (EQ (window, selected_window))
4978 /* That didn't get us anywhere; look for a window on another
4979 visible frame. */
4981 window = Fnext_window (window, Qnil, Qt);
4982 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
4983 && ! EQ (window, selected_window));
4986 CHECK_LIVE_WINDOW (window);
4988 if (EQ (window, selected_window))
4989 error ("There is no other window");
4991 return window;
4994 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
4995 doc: /* Scroll next window upward ARG lines; or near full screen if no ARG.
4996 A near full screen is `next-screen-context-lines' less than a full screen.
4997 The next window is the one below the current one; or the one at the top
4998 if the current one is at the bottom. Negative ARG means scroll downward.
4999 If ARG is the atom `-', scroll downward by nearly full screen.
5000 When calling from a program, supply as argument a number, nil, or `-'.
5002 If `other-window-scroll-buffer' is non-nil, scroll the window
5003 showing that buffer, popping the buffer up if necessary.
5004 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5005 specifies the window to scroll. This takes precedence over
5006 `other-window-scroll-buffer'. */)
5007 (Lisp_Object arg)
5009 Lisp_Object window;
5010 struct window *w;
5011 ptrdiff_t count = SPECPDL_INDEX ();
5013 window = Fother_window_for_scrolling ();
5014 w = XWINDOW (window);
5016 /* Don't screw up if window_scroll gets an error. */
5017 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5018 ++windows_or_buffers_changed;
5020 Fset_buffer (w->buffer);
5021 SET_PT_BOTH (marker_position (w->pointm), marker_byte_position (w->pointm));
5023 if (NILP (arg))
5024 window_scroll (window, 1, 1, 1);
5025 else if (EQ (arg, Qminus))
5026 window_scroll (window, -1, 1, 1);
5027 else
5029 if (CONSP (arg))
5030 arg = XCAR (arg);
5031 CHECK_NUMBER (arg);
5032 window_scroll (window, XINT (arg), 0, 1);
5035 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5036 unbind_to (count, Qnil);
5038 return Qnil;
5041 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "^P\np",
5042 doc: /* Scroll selected window display ARG columns left.
5043 Default for ARG is window width minus 2.
5044 Value is the total amount of leftward horizontal scrolling in
5045 effect after the change.
5046 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5047 lower bound for automatic scrolling, i.e. automatic scrolling
5048 will not scroll a window to a column less than the value returned
5049 by this function. This happens in an interactive call. */)
5050 (register Lisp_Object arg, Lisp_Object set_minimum)
5052 struct window *w = XWINDOW (selected_window);
5053 EMACS_INT requested_arg = (NILP (arg)
5054 ? window_body_cols (w) - 2
5055 : XINT (Fprefix_numeric_value (arg)));
5056 Lisp_Object result = set_window_hscroll (w, w->hscroll + requested_arg);
5058 if (!NILP (set_minimum))
5059 w->min_hscroll = w->hscroll;
5061 return result;
5064 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "^P\np",
5065 doc: /* Scroll selected window display ARG columns right.
5066 Default for ARG is window width minus 2.
5067 Value is the total amount of leftward horizontal scrolling in
5068 effect after the change.
5069 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5070 lower bound for automatic scrolling, i.e. automatic scrolling
5071 will not scroll a window to a column less than the value returned
5072 by this function. This happens in an interactive call. */)
5073 (register Lisp_Object arg, Lisp_Object set_minimum)
5075 struct window *w = XWINDOW (selected_window);
5076 EMACS_INT requested_arg = (NILP (arg)
5077 ? window_body_cols (w) - 2
5078 : XINT (Fprefix_numeric_value (arg)));
5079 Lisp_Object result = set_window_hscroll (w, w->hscroll - requested_arg);
5081 if (!NILP (set_minimum))
5082 w->min_hscroll = w->hscroll;
5084 return result;
5087 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window, Sminibuffer_selected_window, 0, 0, 0,
5088 doc: /* Return the window which was selected when entering the minibuffer.
5089 Returns nil, if selected window is not a minibuffer window. */)
5090 (void)
5092 if (minibuf_level > 0
5093 && MINI_WINDOW_P (XWINDOW (selected_window))
5094 && WINDOW_LIVE_P (minibuf_selected_window))
5095 return minibuf_selected_window;
5097 return Qnil;
5100 /* Value is the number of lines actually displayed in window W,
5101 as opposed to its height. */
5103 static int
5104 displayed_window_lines (struct window *w)
5106 struct it it;
5107 struct text_pos start;
5108 ptrdiff_t charpos = marker_position (w->start);
5109 int height = window_box_height (w);
5110 struct buffer *old_buffer;
5111 int bottom_y;
5112 void *itdata = NULL;
5114 if (XBUFFER (w->buffer) != current_buffer)
5116 old_buffer = current_buffer;
5117 set_buffer_internal (XBUFFER (w->buffer));
5119 else
5120 old_buffer = NULL;
5122 /* In case W->start is out of the accessible range, do something
5123 reasonable. This happens in Info mode when Info-scroll-down
5124 calls (recenter -1) while W->start is 1. */
5125 if (charpos < BEGV)
5126 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
5127 else if (charpos > ZV)
5128 SET_TEXT_POS (start, ZV, ZV_BYTE);
5129 else
5130 SET_TEXT_POS_FROM_MARKER (start, w->start);
5132 itdata = bidi_shelve_cache ();
5133 start_display (&it, w, start);
5134 move_it_vertically (&it, height);
5135 bottom_y = line_bottom_y (&it);
5136 bidi_unshelve_cache (itdata, 0);
5138 /* rms: On a non-window display,
5139 the value of it.vpos at the bottom of the screen
5140 seems to be 1 larger than window_box_height (w).
5141 This kludge fixes a bug whereby (move-to-window-line -1)
5142 when ZV is on the last screen line
5143 moves to the previous screen line instead of the last one. */
5144 if (! FRAME_WINDOW_P (XFRAME (w->frame)))
5145 height++;
5147 /* Add in empty lines at the bottom of the window. */
5148 if (bottom_y < height)
5150 int uy = FRAME_LINE_HEIGHT (it.f);
5151 it.vpos += (height - bottom_y + uy - 1) / uy;
5154 if (old_buffer)
5155 set_buffer_internal (old_buffer);
5157 return it.vpos;
5161 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
5162 doc: /* Center point in selected window and maybe redisplay frame.
5163 With a numeric prefix argument ARG, recenter putting point on screen line ARG
5164 relative to the selected window. If ARG is negative, it counts up from the
5165 bottom of the window. (ARG should be less than the height of the window.)
5167 If ARG is omitted or nil, then recenter with point on the middle line of
5168 the selected window; if the variable `recenter-redisplay' is non-nil,
5169 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5170 is set to `grow-only', this resets the tool-bar's height to the minimum
5171 height needed); if `recenter-redisplay' has the special value `tty',
5172 then only tty frames are redrawn.
5174 Just C-u as prefix means put point in the center of the window
5175 and redisplay normally--don't erase and redraw the frame. */)
5176 (register Lisp_Object arg)
5178 struct window *w = XWINDOW (selected_window);
5179 struct buffer *buf = XBUFFER (w->buffer);
5180 struct buffer *obuf = current_buffer;
5181 int center_p = 0;
5182 ptrdiff_t charpos, bytepos;
5183 EMACS_INT iarg IF_LINT (= 0);
5184 int this_scroll_margin;
5186 /* If redisplay is suppressed due to an error, try again. */
5187 obuf->display_error_modiff = 0;
5189 if (NILP (arg))
5191 if (!NILP (Vrecenter_redisplay)
5192 && (!EQ (Vrecenter_redisplay, Qtty)
5193 || !NILP (Ftty_type (selected_frame))))
5195 ptrdiff_t i;
5197 /* Invalidate pixel data calculated for all compositions. */
5198 for (i = 0; i < n_compositions; i++)
5199 composition_table[i]->font = NULL;
5201 WINDOW_XFRAME (w)->minimize_tool_bar_window_p = 1;
5203 Fredraw_frame (WINDOW_FRAME (w));
5204 SET_FRAME_GARBAGED (WINDOW_XFRAME (w));
5207 center_p = 1;
5209 else if (CONSP (arg)) /* Just C-u. */
5210 center_p = 1;
5211 else
5213 arg = Fprefix_numeric_value (arg);
5214 CHECK_NUMBER (arg);
5215 iarg = XINT (arg);
5218 set_buffer_internal (buf);
5220 /* Do this after making BUF current
5221 in case scroll_margin is buffer-local. */
5222 this_scroll_margin =
5223 max (0, min (scroll_margin, w->total_lines / 4));
5225 /* Handle centering on a graphical frame specially. Such frames can
5226 have variable-height lines and centering point on the basis of
5227 line counts would lead to strange effects. */
5228 if (FRAME_WINDOW_P (XFRAME (w->frame)))
5230 if (center_p)
5232 struct it it;
5233 struct text_pos pt;
5234 void *itdata = bidi_shelve_cache ();
5236 SET_TEXT_POS (pt, PT, PT_BYTE);
5237 start_display (&it, w, pt);
5238 move_it_vertically_backward (&it, window_box_height (w) / 2);
5239 charpos = IT_CHARPOS (it);
5240 bytepos = IT_BYTEPOS (it);
5241 bidi_unshelve_cache (itdata, 0);
5243 else if (iarg < 0)
5245 struct it it;
5246 struct text_pos pt;
5247 ptrdiff_t nlines = min (PTRDIFF_MAX, -iarg);
5248 int extra_line_spacing;
5249 int h = window_box_height (w);
5250 void *itdata = bidi_shelve_cache ();
5252 iarg = - max (-iarg, this_scroll_margin);
5254 SET_TEXT_POS (pt, PT, PT_BYTE);
5255 start_display (&it, w, pt);
5257 /* Be sure we have the exact height of the full line containing PT. */
5258 move_it_by_lines (&it, 0);
5260 /* The amount of pixels we have to move back is the window
5261 height minus what's displayed in the line containing PT,
5262 and the lines below. */
5263 it.current_y = 0;
5264 it.vpos = 0;
5265 move_it_by_lines (&it, nlines);
5267 if (it.vpos == nlines)
5268 h -= it.current_y;
5269 else
5271 /* Last line has no newline */
5272 h -= line_bottom_y (&it);
5273 it.vpos++;
5276 /* Don't reserve space for extra line spacing of last line. */
5277 extra_line_spacing = it.max_extra_line_spacing;
5279 /* If we can't move down NLINES lines because we hit
5280 the end of the buffer, count in some empty lines. */
5281 if (it.vpos < nlines)
5283 nlines -= it.vpos;
5284 extra_line_spacing = it.extra_line_spacing;
5285 h -= nlines * (FRAME_LINE_HEIGHT (it.f) + extra_line_spacing);
5287 if (h <= 0)
5289 bidi_unshelve_cache (itdata, 0);
5290 return Qnil;
5293 /* Now find the new top line (starting position) of the window. */
5294 start_display (&it, w, pt);
5295 it.current_y = 0;
5296 move_it_vertically_backward (&it, h);
5298 /* If extra line spacing is present, we may move too far
5299 back. This causes the last line to be only partially
5300 visible (which triggers redisplay to recenter that line
5301 in the middle), so move forward.
5302 But ignore extra line spacing on last line, as it is not
5303 considered to be part of the visible height of the line.
5305 h += extra_line_spacing;
5306 while (-it.current_y > h)
5307 move_it_by_lines (&it, 1);
5309 charpos = IT_CHARPOS (it);
5310 bytepos = IT_BYTEPOS (it);
5312 bidi_unshelve_cache (itdata, 0);
5314 else
5316 struct position pos;
5318 iarg = max (iarg, this_scroll_margin);
5320 pos = *vmotion (PT, PT_BYTE, -iarg, w);
5321 charpos = pos.bufpos;
5322 bytepos = pos.bytepos;
5325 else
5327 struct position pos;
5328 int ht = window_internal_height (w);
5330 if (center_p)
5331 iarg = ht / 2;
5332 else if (iarg < 0)
5333 iarg += ht;
5335 /* Don't let it get into the margin at either top or bottom. */
5336 iarg = clip_to_bounds (this_scroll_margin, iarg,
5337 ht - this_scroll_margin - 1);
5339 pos = *vmotion (PT, PT_BYTE, - iarg, w);
5340 charpos = pos.bufpos;
5341 bytepos = pos.bytepos;
5344 /* Set the new window start. */
5345 set_marker_both (w->start, w->buffer, charpos, bytepos);
5346 w->window_end_valid = 0;
5348 w->optional_new_start = 1;
5350 w->start_at_line_beg = (bytepos == BEGV_BYTE ||
5351 FETCH_BYTE (bytepos - 1) == '\n');
5353 set_buffer_internal (obuf);
5354 return Qnil;
5357 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
5358 0, 1, 0,
5359 doc: /* Return the height in lines of the text display area of WINDOW.
5360 WINDOW must be a live window and defaults to the selected one.
5362 The returned height does not include the mode line, any header line,
5363 nor any partial-height lines at the bottom of the text area. */)
5364 (Lisp_Object window)
5366 struct window *w = decode_live_window (window);
5367 int pixel_height = window_box_height (w);
5368 int line_height = pixel_height / FRAME_LINE_HEIGHT (XFRAME (w->frame));
5369 return make_number (line_height);
5374 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
5375 1, 1, "P",
5376 doc: /* Position point relative to window.
5377 ARG nil means position point at center of window.
5378 Else, ARG specifies vertical position within the window;
5379 zero means top of window, negative means relative to bottom of window. */)
5380 (Lisp_Object arg)
5382 struct window *w = XWINDOW (selected_window);
5383 int lines, start;
5384 Lisp_Object window;
5385 #if 0
5386 int this_scroll_margin;
5387 #endif
5389 if (!(BUFFERP (w->buffer)
5390 && XBUFFER (w->buffer) == current_buffer))
5391 /* This test is needed to make sure PT/PT_BYTE make sense in w->buffer
5392 when passed below to set_marker_both. */
5393 error ("move-to-window-line called from unrelated buffer");
5395 window = selected_window;
5396 start = marker_position (w->start);
5397 if (start < BEGV || start > ZV)
5399 int height = window_internal_height (w);
5400 Fvertical_motion (make_number (- (height / 2)), window);
5401 set_marker_both (w->start, w->buffer, PT, PT_BYTE);
5402 w->start_at_line_beg = !NILP (Fbolp ());
5403 w->force_start = 1;
5405 else
5406 Fgoto_char (w->start);
5408 lines = displayed_window_lines (w);
5410 #if 0
5411 this_scroll_margin = max (0, min (scroll_margin, lines / 4));
5412 #endif
5414 if (NILP (arg))
5415 XSETFASTINT (arg, lines / 2);
5416 else
5418 EMACS_INT iarg = XINT (Fprefix_numeric_value (arg));
5420 if (iarg < 0)
5421 iarg = iarg + lines;
5423 #if 0 /* This code would prevent move-to-window-line from moving point
5424 to a place inside the scroll margins (which would cause the
5425 next redisplay to scroll). I wrote this code, but then concluded
5426 it is probably better not to install it. However, it is here
5427 inside #if 0 so as not to lose it. -- rms. */
5429 /* Don't let it get into the margin at either top or bottom. */
5430 iarg = max (iarg, this_scroll_margin);
5431 iarg = min (iarg, lines - this_scroll_margin - 1);
5432 #endif
5434 arg = make_number (iarg);
5437 /* Skip past a partially visible first line. */
5438 if (w->vscroll)
5439 XSETINT (arg, XINT (arg) + 1);
5441 return Fvertical_motion (arg, window);
5446 /***********************************************************************
5447 Window Configuration
5448 ***********************************************************************/
5450 struct save_window_data
5452 struct vectorlike_header header;
5453 Lisp_Object selected_frame;
5454 Lisp_Object current_window;
5455 Lisp_Object current_buffer;
5456 Lisp_Object minibuf_scroll_window;
5457 Lisp_Object minibuf_selected_window;
5458 Lisp_Object root_window;
5459 Lisp_Object focus_frame;
5460 /* A vector, each of whose elements is a struct saved_window
5461 for one window. */
5462 Lisp_Object saved_windows;
5464 /* All fields above are traced by the GC.
5465 From `fame-cols' down, the fields are ignored by the GC. */
5467 int frame_cols, frame_lines, frame_menu_bar_lines;
5468 int frame_tool_bar_lines;
5471 /* This is saved as a Lisp_Vector */
5472 struct saved_window
5474 struct vectorlike_header header;
5476 Lisp_Object window, buffer, start, pointm, mark;
5477 Lisp_Object left_col, top_line, total_cols, total_lines;
5478 Lisp_Object normal_cols, normal_lines;
5479 Lisp_Object hscroll, min_hscroll;
5480 Lisp_Object parent, prev;
5481 Lisp_Object start_at_line_beg;
5482 Lisp_Object display_table;
5483 Lisp_Object left_margin_cols, right_margin_cols;
5484 Lisp_Object left_fringe_width, right_fringe_width, fringes_outside_margins;
5485 Lisp_Object scroll_bar_width, vertical_scroll_bar_type, dedicated;
5486 Lisp_Object combination_limit, window_parameters;
5489 #define SAVED_WINDOW_N(swv,n) \
5490 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
5492 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
5493 doc: /* Return t if OBJECT is a window-configuration object. */)
5494 (Lisp_Object object)
5496 return WINDOW_CONFIGURATIONP (object) ? Qt : Qnil;
5499 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
5500 doc: /* Return the frame that CONFIG, a window-configuration object, is about. */)
5501 (Lisp_Object config)
5503 register struct save_window_data *data;
5504 struct Lisp_Vector *saved_windows;
5506 CHECK_WINDOW_CONFIGURATION (config);
5508 data = (struct save_window_data *) XVECTOR (config);
5509 saved_windows = XVECTOR (data->saved_windows);
5510 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
5513 DEFUN ("set-window-configuration", Fset_window_configuration,
5514 Sset_window_configuration, 1, 1, 0,
5515 doc: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
5516 CONFIGURATION must be a value previously returned
5517 by `current-window-configuration' (which see).
5518 If CONFIGURATION was made from a frame that is now deleted,
5519 only frame-independent values can be restored. In this case,
5520 the return value is nil. Otherwise the value is t. */)
5521 (Lisp_Object configuration)
5523 register struct save_window_data *data;
5524 struct Lisp_Vector *saved_windows;
5525 Lisp_Object new_current_buffer;
5526 Lisp_Object frame;
5527 FRAME_PTR f;
5528 ptrdiff_t old_point = -1;
5530 CHECK_WINDOW_CONFIGURATION (configuration);
5532 data = (struct save_window_data *) XVECTOR (configuration);
5533 saved_windows = XVECTOR (data->saved_windows);
5535 new_current_buffer = data->current_buffer;
5536 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer)))
5537 new_current_buffer = Qnil;
5538 else
5540 if (XBUFFER (new_current_buffer) == current_buffer)
5541 /* The code further down "preserves point" by saving here PT in
5542 old_point and then setting it later back into PT. When the
5543 current-selected-window and the final-selected-window both show
5544 the current buffer, this suffers from the problem that the
5545 current PT is the window-point of the current-selected-window,
5546 while the final PT is the point of the final-selected-window, so
5547 this copy from one PT to the other would end up moving the
5548 window-point of the final-selected-window to the window-point of
5549 the current-selected-window. So we have to be careful which
5550 point of the current-buffer we copy into old_point. */
5551 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)
5552 && WINDOWP (selected_window)
5553 && EQ (XWINDOW (selected_window)->buffer, new_current_buffer)
5554 && !EQ (selected_window, data->current_window))
5555 old_point = marker_position (XWINDOW (data->current_window)->pointm);
5556 else
5557 old_point = PT;
5558 else
5559 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
5560 point in new_current_buffer as of the last time this buffer was
5561 used. This can be non-deterministic since it can be changed by
5562 things like jit-lock by mere temporary selection of some random
5563 window that happens to show this buffer.
5564 So if possible we want this arbitrary choice of "which point" to
5565 be the one from the to-be-selected-window so as to prevent this
5566 window's cursor from being copied from another window. */
5567 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer)
5568 /* If current_window = selected_window, its point is in BUF_PT. */
5569 && !EQ (selected_window, data->current_window))
5570 old_point = marker_position (XWINDOW (data->current_window)->pointm);
5571 else
5572 old_point = BUF_PT (XBUFFER (new_current_buffer));
5575 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
5576 f = XFRAME (frame);
5578 /* If f is a dead frame, don't bother rebuilding its window tree.
5579 However, there is other stuff we should still try to do below. */
5580 if (FRAME_LIVE_P (f))
5582 Lisp_Object window;
5583 Lisp_Object dead_windows = Qnil;
5584 register Lisp_Object tem, par, pers;
5585 register struct window *w;
5586 register struct saved_window *p;
5587 struct window *root_window;
5588 struct window **leaf_windows;
5589 int n_leaf_windows;
5590 ptrdiff_t k;
5591 int i, n;
5593 /* If the frame has been resized since this window configuration was
5594 made, we change the frame to the size specified in the
5595 configuration, restore the configuration, and then resize it
5596 back. We keep track of the prevailing height in these variables. */
5597 int previous_frame_lines = FRAME_LINES (f);
5598 int previous_frame_cols = FRAME_COLS (f);
5599 int previous_frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
5600 int previous_frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
5602 /* Don't do this within the main loop below: This may call Lisp
5603 code and is thus potentially unsafe while input is blocked. */
5604 for (k = 0; k < saved_windows->header.size; k++)
5606 p = SAVED_WINDOW_N (saved_windows, k);
5607 window = p->window;
5608 w = XWINDOW (window);
5609 if (!NILP (w->buffer)
5610 && !EQ (w->buffer, p->buffer)
5611 && BUFFER_LIVE_P (XBUFFER (p->buffer)))
5612 /* If a window we restore gets another buffer, record the
5613 window's old buffer. */
5614 call1 (Qrecord_window_buffer, window);
5617 /* The mouse highlighting code could get screwed up
5618 if it runs during this. */
5619 block_input ();
5621 if (data->frame_lines != previous_frame_lines
5622 || data->frame_cols != previous_frame_cols)
5623 change_frame_size (f, data->frame_lines,
5624 data->frame_cols, 0, 0, 0);
5625 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5626 if (data->frame_menu_bar_lines
5627 != previous_frame_menu_bar_lines)
5628 x_set_menu_bar_lines (f, make_number (data->frame_menu_bar_lines),
5629 make_number (0));
5630 #ifdef HAVE_WINDOW_SYSTEM
5631 if (data->frame_tool_bar_lines
5632 != previous_frame_tool_bar_lines)
5633 x_set_tool_bar_lines (f, make_number (data->frame_tool_bar_lines),
5634 make_number (0));
5635 #endif
5636 #endif
5638 /* "Swap out" point from the selected window's buffer
5639 into the window itself. (Normally the pointm of the selected
5640 window holds garbage.) We do this now, before
5641 restoring the window contents, and prevent it from
5642 being done later on when we select a new window. */
5643 if (! NILP (XWINDOW (selected_window)->buffer))
5645 w = XWINDOW (selected_window);
5646 set_marker_both (w->pointm,
5647 w->buffer,
5648 BUF_PT (XBUFFER (w->buffer)),
5649 BUF_PT_BYTE (XBUFFER (w->buffer)));
5652 windows_or_buffers_changed++;
5653 FRAME_WINDOW_SIZES_CHANGED (f) = 1;
5655 /* Problem: Freeing all matrices and later allocating them again
5656 is a serious redisplay flickering problem. What we would
5657 really like to do is to free only those matrices not reused
5658 below. */
5659 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
5660 leaf_windows = alloca (count_windows (root_window)
5661 * sizeof *leaf_windows);
5662 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
5664 /* Kludge Alert!
5665 Mark all windows now on frame as "deleted".
5666 Restoring the new configuration "undeletes" any that are in it.
5668 Save their current buffers in their height fields, since we may
5669 need it later, if a buffer saved in the configuration is now
5670 dead. */
5671 delete_all_child_windows (FRAME_ROOT_WINDOW (f));
5673 for (k = 0; k < saved_windows->header.size; k++)
5675 p = SAVED_WINDOW_N (saved_windows, k);
5676 window = p->window;
5677 w = XWINDOW (window);
5678 wset_next (w, Qnil);
5680 if (!NILP (p->parent))
5681 wset_parent
5682 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->parent))->window);
5683 else
5684 wset_parent (w, Qnil);
5686 if (!NILP (p->prev))
5688 wset_prev
5689 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->prev))->window);
5690 wset_next (XWINDOW (w->prev), p->window);
5692 else
5694 wset_prev (w, Qnil);
5695 if (!NILP (w->parent))
5697 if (XINT (p->total_cols) == XWINDOW (w->parent)->total_cols)
5699 wset_vchild (XWINDOW (w->parent), p->window);
5700 wset_hchild (XWINDOW (w->parent), Qnil);
5702 else
5704 wset_hchild (XWINDOW (w->parent), p->window);
5705 wset_vchild (XWINDOW (w->parent), Qnil);
5710 /* If we squirreled away the buffer, restore it now. */
5711 if (BUFFERP (w->combination_limit))
5712 wset_buffer (w, w->combination_limit);
5713 w->left_col = XFASTINT (p->left_col);
5714 w->top_line = XFASTINT (p->top_line);
5715 w->total_cols = XFASTINT (p->total_cols);
5716 w->total_lines = XFASTINT (p->total_lines);
5717 wset_normal_cols (w, p->normal_cols);
5718 wset_normal_lines (w, p->normal_lines);
5719 w->hscroll = XFASTINT (p->hscroll);
5720 w->min_hscroll = XFASTINT (p->min_hscroll);
5721 wset_display_table (w, p->display_table);
5722 wset_left_margin_cols (w, p->left_margin_cols);
5723 wset_right_margin_cols (w, p->right_margin_cols);
5724 wset_left_fringe_width (w, p->left_fringe_width);
5725 wset_right_fringe_width (w, p->right_fringe_width);
5726 w->fringes_outside_margins = !NILP (p->fringes_outside_margins);
5727 wset_scroll_bar_width (w, p->scroll_bar_width);
5728 wset_vertical_scroll_bar_type (w, p->vertical_scroll_bar_type);
5729 wset_dedicated (w, p->dedicated);
5730 wset_combination_limit (w, p->combination_limit);
5731 /* Restore any window parameters that have been saved.
5732 Parameters that have not been saved are left alone. */
5733 for (tem = p->window_parameters; CONSP (tem); tem = XCDR (tem))
5735 pers = XCAR (tem);
5736 if (CONSP (pers))
5738 if (NILP (XCDR (pers)))
5740 par = Fassq (XCAR (pers), w->window_parameters);
5741 if (CONSP (par) && !NILP (XCDR (par)))
5742 /* Reset a parameter to nil if and only if it
5743 has a non-nil association. Don't make new
5744 associations. */
5745 Fsetcdr (par, Qnil);
5747 else
5748 /* Always restore a non-nil value. */
5749 Fset_window_parameter (window, XCAR (pers), XCDR (pers));
5753 w->last_modified = 0;
5754 w->last_overlay_modified = 0;
5756 /* Reinstall the saved buffer and pointers into it. */
5757 if (NILP (p->buffer))
5758 /* An internal window. */
5759 wset_buffer (w, p->buffer);
5760 else if (BUFFER_LIVE_P (XBUFFER (p->buffer)))
5761 /* If saved buffer is alive, install it. */
5763 wset_buffer (w, p->buffer);
5764 w->start_at_line_beg = !NILP (p->start_at_line_beg);
5765 set_marker_restricted (w->start, p->start, w->buffer);
5766 set_marker_restricted (w->pointm, p->pointm,
5767 w->buffer);
5768 Fset_marker (BVAR (XBUFFER (w->buffer), mark),
5769 p->mark, w->buffer);
5771 /* As documented in Fcurrent_window_configuration, don't
5772 restore the location of point in the buffer which was
5773 current when the window configuration was recorded. */
5774 if (!EQ (p->buffer, new_current_buffer)
5775 && XBUFFER (p->buffer) == current_buffer)
5776 Fgoto_char (w->pointm);
5778 else if (!NILP (w->buffer)
5779 && BUFFER_LIVE_P (XBUFFER (w->buffer)))
5780 /* Keep window's old buffer; make sure the markers are
5781 real. */
5783 /* Set window markers at start of visible range. */
5784 if (XMARKER (w->start)->buffer == 0)
5785 set_marker_restricted_both (w->start, w->buffer, 0, 0);
5786 if (XMARKER (w->pointm)->buffer == 0)
5787 set_marker_restricted_both
5788 (w->pointm, w->buffer,
5789 BUF_PT (XBUFFER (w->buffer)),
5790 BUF_PT_BYTE (XBUFFER (w->buffer)));
5791 w->start_at_line_beg = 1;
5793 else
5794 /* Window has no live buffer, get one. */
5796 /* Get the buffer via other_buffer_safely in order to
5797 avoid showing an unimportant buffer and, if necessary, to
5798 recreate *scratch* in the course (part of Juanma's bs-show
5799 scenario from March 2011). */
5800 wset_buffer (w, other_buffer_safely (Fcurrent_buffer ()));
5801 /* This will set the markers to beginning of visible
5802 range. */
5803 set_marker_restricted_both (w->start, w->buffer, 0, 0);
5804 set_marker_restricted_both (w->pointm, w->buffer, 0, 0);
5805 w->start_at_line_beg = 1;
5806 if (!NILP (w->dedicated))
5807 /* Record this window as dead. */
5808 dead_windows = Fcons (window, dead_windows);
5809 /* Make sure window is no more dedicated. */
5810 wset_dedicated (w, Qnil);
5814 fset_root_window (f, data->root_window);
5815 /* Arrange *not* to restore point in the buffer that was
5816 current when the window configuration was saved. */
5817 if (EQ (XWINDOW (data->current_window)->buffer, new_current_buffer))
5818 set_marker_restricted (XWINDOW (data->current_window)->pointm,
5819 make_number (old_point),
5820 XWINDOW (data->current_window)->buffer);
5822 /* In the following call to `select-window', prevent "swapping out
5823 point" in the old selected window using the buffer that has
5824 been restored into it. We already swapped out that point from
5825 that window's old buffer. */
5826 select_window (data->current_window, Qnil, 1);
5827 BVAR (XBUFFER (XWINDOW (selected_window)->buffer), last_selected_window)
5828 = selected_window;
5830 if (NILP (data->focus_frame)
5831 || (FRAMEP (data->focus_frame)
5832 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
5833 Fredirect_frame_focus (frame, data->focus_frame);
5835 /* Set the screen height to the value it had before this function. */
5836 if (previous_frame_lines != FRAME_LINES (f)
5837 || previous_frame_cols != FRAME_COLS (f))
5838 change_frame_size (f, previous_frame_lines, previous_frame_cols,
5839 0, 0, 0);
5840 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5841 if (previous_frame_menu_bar_lines != FRAME_MENU_BAR_LINES (f))
5842 x_set_menu_bar_lines (f, make_number (previous_frame_menu_bar_lines),
5843 make_number (0));
5844 #ifdef HAVE_WINDOW_SYSTEM
5845 if (previous_frame_tool_bar_lines != FRAME_TOOL_BAR_LINES (f))
5846 x_set_tool_bar_lines (f, make_number (previous_frame_tool_bar_lines),
5847 make_number (0));
5848 #endif
5849 #endif
5851 /* Now, free glyph matrices in windows that were not reused. */
5852 for (i = n = 0; i < n_leaf_windows; ++i)
5854 if (NILP (leaf_windows[i]->buffer))
5856 /* Assert it's not reused as a combination. */
5857 eassert (NILP (leaf_windows[i]->hchild)
5858 && NILP (leaf_windows[i]->vchild));
5859 free_window_matrices (leaf_windows[i]);
5861 else if (EQ (leaf_windows[i]->buffer, new_current_buffer))
5862 ++n;
5865 adjust_glyphs (f);
5866 unblock_input ();
5868 /* Scan dead buffer windows. */
5869 for (; CONSP (dead_windows); dead_windows = XCDR (dead_windows))
5871 window = XCAR (dead_windows);
5872 if (WINDOW_LIVE_P (window) && !EQ (window, FRAME_ROOT_WINDOW (f)))
5873 delete_deletable_window (window);
5876 /* Fselect_window will have made f the selected frame, so we
5877 reselect the proper frame here. Fhandle_switch_frame will change the
5878 selected window too, but that doesn't make the call to
5879 Fselect_window above totally superfluous; it still sets f's
5880 selected window. */
5881 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
5882 do_switch_frame (data->selected_frame, 0, 0, Qnil);
5884 run_window_configuration_change_hook (f);
5887 if (!NILP (new_current_buffer))
5889 Fset_buffer (new_current_buffer);
5890 /* If the new current buffer doesn't appear in the selected
5891 window, go to its old point (see bug#12208). */
5892 if (!EQ (XWINDOW (data->current_window)->buffer, new_current_buffer))
5893 Fgoto_char (make_number (old_point));
5896 Vminibuf_scroll_window = data->minibuf_scroll_window;
5897 minibuf_selected_window = data->minibuf_selected_window;
5899 return (FRAME_LIVE_P (f) ? Qt : Qnil);
5903 /* Recursively delete all child windows reachable via the next, vchild,
5904 and hchild slots of WINDOW. */
5905 void
5906 delete_all_child_windows (Lisp_Object window)
5908 register struct window *w;
5910 w = XWINDOW (window);
5912 if (!NILP (w->next))
5913 /* Delete WINDOW's siblings (we traverse postorderly). */
5914 delete_all_child_windows (w->next);
5916 if (!NILP (w->vchild))
5918 delete_all_child_windows (w->vchild);
5919 wset_vchild (w, Qnil);
5921 else if (!NILP (w->hchild))
5923 delete_all_child_windows (w->hchild);
5924 wset_hchild (w, Qnil);
5926 else if (!NILP (w->buffer))
5928 unshow_buffer (w);
5929 unchain_marker (XMARKER (w->pointm));
5930 unchain_marker (XMARKER (w->start));
5931 /* Since combination limit makes sense for an internal windows
5932 only, we use this slot to save the buffer for the sake of
5933 possible resurrection in Fset_window_configuration. */
5934 wset_combination_limit (w, w->buffer);
5935 wset_buffer (w, Qnil);
5938 Vwindow_list = Qnil;
5941 static int
5942 count_windows (register struct window *window)
5944 register int count = 1;
5945 if (!NILP (window->next))
5946 count += count_windows (XWINDOW (window->next));
5947 if (!NILP (window->vchild))
5948 count += count_windows (XWINDOW (window->vchild));
5949 if (!NILP (window->hchild))
5950 count += count_windows (XWINDOW (window->hchild));
5951 return count;
5955 /* Fill vector FLAT with leaf windows under W, starting at index I.
5956 Value is last index + 1. */
5957 static int
5958 get_leaf_windows (struct window *w, struct window **flat, int i)
5960 while (w)
5962 if (!NILP (w->hchild))
5963 i = get_leaf_windows (XWINDOW (w->hchild), flat, i);
5964 else if (!NILP (w->vchild))
5965 i = get_leaf_windows (XWINDOW (w->vchild), flat, i);
5966 else
5967 flat[i++] = w;
5969 w = NILP (w->next) ? 0 : XWINDOW (w->next);
5972 return i;
5976 /* Return a pointer to the glyph W's physical cursor is on. Value is
5977 null if W's current matrix is invalid, so that no meaningful glyph
5978 can be returned. */
5979 struct glyph *
5980 get_phys_cursor_glyph (struct window *w)
5982 struct glyph_row *row;
5983 struct glyph *glyph;
5984 int hpos = w->phys_cursor.hpos;
5986 if (!(w->phys_cursor.vpos >= 0
5987 && w->phys_cursor.vpos < w->current_matrix->nrows))
5988 return NULL;
5990 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
5991 if (!row->enabled_p)
5992 return NULL;
5994 if (w->hscroll)
5996 /* When the window is hscrolled, cursor hpos can legitimately be
5997 out of bounds, but we draw the cursor at the corresponding
5998 window margin in that case. */
5999 if (!row->reversed_p && hpos < 0)
6000 hpos = 0;
6001 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
6002 hpos = row->used[TEXT_AREA] - 1;
6005 if (row->used[TEXT_AREA] > hpos
6006 && 0 <= hpos)
6007 glyph = row->glyphs[TEXT_AREA] + hpos;
6008 else
6009 glyph = NULL;
6011 return glyph;
6015 static int
6016 save_window_save (Lisp_Object window, struct Lisp_Vector *vector, int i)
6018 register struct saved_window *p;
6019 register struct window *w;
6020 register Lisp_Object tem, pers, par;
6022 for (;!NILP (window); window = w->next)
6024 p = SAVED_WINDOW_N (vector, i);
6025 w = XWINDOW (window);
6027 wset_temslot (w, make_number (i)); i++;
6028 p->window = window;
6029 p->buffer = w->buffer;
6030 p->left_col = make_number (w->left_col);
6031 p->top_line = make_number (w->top_line);
6032 p->total_cols = make_number (w->total_cols);
6033 p->total_lines = make_number (w->total_lines);
6034 p->normal_cols = w->normal_cols;
6035 p->normal_lines = w->normal_lines;
6036 XSETFASTINT (p->hscroll, w->hscroll);
6037 XSETFASTINT (p->min_hscroll, w->min_hscroll);
6038 p->display_table = w->display_table;
6039 p->left_margin_cols = w->left_margin_cols;
6040 p->right_margin_cols = w->right_margin_cols;
6041 p->left_fringe_width = w->left_fringe_width;
6042 p->right_fringe_width = w->right_fringe_width;
6043 p->fringes_outside_margins = w->fringes_outside_margins ? Qt : Qnil;
6044 p->scroll_bar_width = w->scroll_bar_width;
6045 p->vertical_scroll_bar_type = w->vertical_scroll_bar_type;
6046 p->dedicated = w->dedicated;
6047 p->combination_limit = w->combination_limit;
6048 p->window_parameters = Qnil;
6050 if (!NILP (Vwindow_persistent_parameters))
6052 /* Run cycle detection on Vwindow_persistent_parameters. */
6053 Lisp_Object tortoise, hare;
6055 hare = tortoise = Vwindow_persistent_parameters;
6056 while (CONSP (hare))
6058 hare = XCDR (hare);
6059 if (!CONSP (hare))
6060 break;
6062 hare = XCDR (hare);
6063 tortoise = XCDR (tortoise);
6065 if (EQ (hare, tortoise))
6066 /* Reset Vwindow_persistent_parameters to Qnil. */
6068 Vwindow_persistent_parameters = Qnil;
6069 break;
6073 for (tem = Vwindow_persistent_parameters; CONSP (tem);
6074 tem = XCDR (tem))
6076 pers = XCAR (tem);
6077 /* Save values for persistent window parameters. */
6078 if (CONSP (pers) && !NILP (XCDR (pers)))
6080 par = Fassq (XCAR (pers), w->window_parameters);
6081 if (NILP (par))
6082 /* If the window has no value for the parameter,
6083 make one. */
6084 p->window_parameters = Fcons (Fcons (XCAR (pers), Qnil),
6085 p->window_parameters);
6086 else
6087 /* If the window has a value for the parameter,
6088 save it. */
6089 p->window_parameters = Fcons (Fcons (XCAR (par),
6090 XCDR (par)),
6091 p->window_parameters);
6096 if (!NILP (w->buffer))
6098 /* Save w's value of point in the window configuration. If w
6099 is the selected window, then get the value of point from
6100 the buffer; pointm is garbage in the selected window. */
6101 if (EQ (window, selected_window))
6102 p->pointm = build_marker (XBUFFER (w->buffer),
6103 BUF_PT (XBUFFER (w->buffer)),
6104 BUF_PT_BYTE (XBUFFER (w->buffer)));
6105 else
6106 p->pointm = Fcopy_marker (w->pointm, Qnil);
6107 XMARKER (p->pointm)->insertion_type
6108 = !NILP (Vwindow_point_insertion_type);
6110 p->start = Fcopy_marker (w->start, Qnil);
6111 p->start_at_line_beg = w->start_at_line_beg ? Qt : Qnil;
6113 tem = BVAR (XBUFFER (w->buffer), mark);
6114 p->mark = Fcopy_marker (tem, Qnil);
6116 else
6118 p->pointm = Qnil;
6119 p->start = Qnil;
6120 p->mark = Qnil;
6121 p->start_at_line_beg = Qnil;
6124 if (NILP (w->parent))
6125 p->parent = Qnil;
6126 else
6127 p->parent = XWINDOW (w->parent)->temslot;
6129 if (NILP (w->prev))
6130 p->prev = Qnil;
6131 else
6132 p->prev = XWINDOW (w->prev)->temslot;
6134 if (!NILP (w->vchild))
6135 i = save_window_save (w->vchild, vector, i);
6136 if (!NILP (w->hchild))
6137 i = save_window_save (w->hchild, vector, i);
6140 return i;
6143 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
6144 Scurrent_window_configuration, 0, 1, 0,
6145 doc: /* Return an object representing the current window configuration of FRAME.
6146 If FRAME is nil or omitted, use the selected frame.
6147 This describes the number of windows, their sizes and current buffers,
6148 and for each displayed buffer, where display starts, and the positions of
6149 point and mark. An exception is made for point in the current buffer:
6150 its value is -not- saved.
6151 This also records the currently selected frame, and FRAME's focus
6152 redirection (see `redirect-frame-focus'). The variable
6153 `window-persistent-parameters' specifies which window parameters are
6154 saved by this function. */)
6155 (Lisp_Object frame)
6157 register Lisp_Object tem;
6158 register int n_windows;
6159 register struct save_window_data *data;
6160 register int i;
6161 struct frame *f = decode_live_frame (frame);
6163 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
6164 data = ALLOCATE_PSEUDOVECTOR (struct save_window_data, frame_cols,
6165 PVEC_WINDOW_CONFIGURATION);
6167 data->frame_cols = FRAME_COLS (f);
6168 data->frame_lines = FRAME_LINES (f);
6169 data->frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
6170 data->frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
6171 data->selected_frame = selected_frame;
6172 data->current_window = FRAME_SELECTED_WINDOW (f);
6173 XSETBUFFER (data->current_buffer, current_buffer);
6174 data->minibuf_scroll_window = minibuf_level > 0 ? Vminibuf_scroll_window : Qnil;
6175 data->minibuf_selected_window = minibuf_level > 0 ? minibuf_selected_window : Qnil;
6176 data->root_window = FRAME_ROOT_WINDOW (f);
6177 data->focus_frame = FRAME_FOCUS_FRAME (f);
6178 tem = make_uninit_vector (n_windows);
6179 data->saved_windows = tem;
6180 for (i = 0; i < n_windows; i++)
6181 ASET (tem, i,
6182 Fmake_vector (make_number (VECSIZE (struct saved_window)), Qnil));
6183 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
6184 XSETWINDOW_CONFIGURATION (tem, data);
6185 return (tem);
6188 /***********************************************************************
6189 Marginal Areas
6190 ***********************************************************************/
6192 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
6193 2, 3, 0,
6194 doc: /* Set width of marginal areas of window WINDOW.
6195 WINDOW must be a live window and defaults to the selected one.
6197 Second arg LEFT-WIDTH specifies the number of character cells to
6198 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6199 does the same for the right marginal area. A nil width parameter
6200 means no margin. */)
6201 (Lisp_Object window, Lisp_Object left_width, Lisp_Object right_width)
6203 struct window *w = decode_live_window (window);
6205 /* Translate negative or zero widths to nil.
6206 Margins that are too wide have to be checked elsewhere. */
6208 if (!NILP (left_width))
6210 CHECK_NUMBER (left_width);
6211 if (XINT (left_width) <= 0)
6212 left_width = Qnil;
6215 if (!NILP (right_width))
6217 CHECK_NUMBER (right_width);
6218 if (XINT (right_width) <= 0)
6219 right_width = Qnil;
6222 if (!EQ (w->left_margin_cols, left_width)
6223 || !EQ (w->right_margin_cols, right_width))
6225 wset_left_margin_cols (w, left_width);
6226 wset_right_margin_cols (w, right_width);
6228 adjust_window_margins (w);
6230 ++windows_or_buffers_changed;
6231 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6234 return Qnil;
6238 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
6239 0, 1, 0,
6240 doc: /* Get width of marginal areas of window WINDOW.
6241 WINDOW must be a live window and defaults to the selected one.
6243 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6244 If a marginal area does not exist, its width will be returned
6245 as nil. */)
6246 (Lisp_Object window)
6248 struct window *w = decode_live_window (window);
6249 return Fcons (w->left_margin_cols, w->right_margin_cols);
6254 /***********************************************************************
6255 Fringes
6256 ***********************************************************************/
6258 DEFUN ("set-window-fringes", Fset_window_fringes, Sset_window_fringes,
6259 2, 4, 0,
6260 doc: /* Set the fringe widths of window WINDOW.
6261 WINDOW must be a live window and defaults to the selected one.
6263 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6264 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6265 fringe width. If a fringe width arg is nil, that means to use the
6266 frame's default fringe width. Default fringe widths can be set with
6267 the command `set-fringe-style'.
6268 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6269 outside of the display margins. By default, fringes are drawn between
6270 display marginal areas and the text area. */)
6271 (Lisp_Object window, Lisp_Object left_width, Lisp_Object right_width, Lisp_Object outside_margins)
6273 struct window *w = decode_live_window (window);
6274 int outside = !NILP (outside_margins);
6276 if (!NILP (left_width))
6277 CHECK_NATNUM (left_width);
6278 if (!NILP (right_width))
6279 CHECK_NATNUM (right_width);
6281 /* Do nothing on a tty. */
6282 if (FRAME_WINDOW_P (WINDOW_XFRAME (w))
6283 && (!EQ (w->left_fringe_width, left_width)
6284 || !EQ (w->right_fringe_width, right_width)
6285 || w->fringes_outside_margins != outside))
6287 wset_left_fringe_width (w, left_width);
6288 wset_right_fringe_width (w, right_width);
6289 w->fringes_outside_margins = outside;
6291 adjust_window_margins (w);
6293 clear_glyph_matrix (w->current_matrix);
6294 w->window_end_valid = 0;
6296 ++windows_or_buffers_changed;
6297 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6300 return Qnil;
6304 DEFUN ("window-fringes", Fwindow_fringes, Swindow_fringes,
6305 0, 1, 0,
6306 doc: /* Get width of fringes of window WINDOW.
6307 WINDOW must be a live window and defaults to the selected one.
6309 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6310 (Lisp_Object window)
6312 struct window *w = decode_live_window (window);
6314 return list3 (make_number (WINDOW_LEFT_FRINGE_WIDTH (w)),
6315 make_number (WINDOW_RIGHT_FRINGE_WIDTH (w)),
6316 WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) ? Qt : Qnil);
6321 /***********************************************************************
6322 Scroll bars
6323 ***********************************************************************/
6325 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars,
6326 Sset_window_scroll_bars, 2, 4, 0,
6327 doc: /* Set width and type of scroll bars of window WINDOW.
6328 WINDOW must be a live window and defaults to the selected one.
6330 Second parameter WIDTH specifies the pixel width for the scroll bar;
6331 this is automatically adjusted to a multiple of the frame column width.
6332 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6333 bar: left, right, or nil.
6334 If WIDTH is nil, use the frame's scroll-bar width.
6335 If VERTICAL-TYPE is t, use the frame's scroll-bar type.
6336 Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6337 (Lisp_Object window, Lisp_Object width, Lisp_Object vertical_type, Lisp_Object horizontal_type)
6339 struct window *w = decode_live_window (window);
6341 if (!NILP (width))
6343 CHECK_RANGED_INTEGER (width, 0, INT_MAX);
6345 if (XINT (width) == 0)
6346 vertical_type = Qnil;
6349 if (!(NILP (vertical_type)
6350 || EQ (vertical_type, Qleft)
6351 || EQ (vertical_type, Qright)
6352 || EQ (vertical_type, Qt)))
6353 error ("Invalid type of vertical scroll bar");
6355 if (!EQ (w->scroll_bar_width, width)
6356 || !EQ (w->vertical_scroll_bar_type, vertical_type))
6358 wset_scroll_bar_width (w, width);
6359 wset_vertical_scroll_bar_type (w, vertical_type);
6361 adjust_window_margins (w);
6363 clear_glyph_matrix (w->current_matrix);
6364 w->window_end_valid = 0;
6366 ++windows_or_buffers_changed;
6367 adjust_glyphs (XFRAME (WINDOW_FRAME (w)));
6370 return Qnil;
6374 DEFUN ("window-scroll-bars", Fwindow_scroll_bars, Swindow_scroll_bars,
6375 0, 1, 0,
6376 doc: /* Get width and type of scroll bars of window WINDOW.
6377 WINDOW must be a live window and defaults to the selected one.
6379 Value is a list of the form (WIDTH COLS VERTICAL-TYPE HORIZONTAL-TYPE).
6380 If WIDTH is nil or TYPE is t, the window is using the frame's corresponding
6381 value. */)
6382 (Lisp_Object window)
6384 struct window *w = decode_live_window (window);
6386 return list4 (make_number ((WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
6387 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w)
6388 : WINDOW_SCROLL_BAR_AREA_WIDTH (w))),
6389 make_number (WINDOW_SCROLL_BAR_COLS (w)),
6390 w->vertical_scroll_bar_type, Qnil);
6395 /***********************************************************************
6396 Smooth scrolling
6397 ***********************************************************************/
6399 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
6400 doc: /* Return the amount by which WINDOW is scrolled vertically.
6401 If WINDOW is omitted or nil, it defaults to the selected window.
6402 Normally, value is a multiple of the canonical character height of WINDOW;
6403 optional second arg PIXELS-P means value is measured in pixels. */)
6404 (Lisp_Object window, Lisp_Object pixels_p)
6406 Lisp_Object result;
6407 struct window *w = decode_live_window (window);
6408 struct frame *f = XFRAME (w->frame);
6410 if (FRAME_WINDOW_P (f))
6411 result = (NILP (pixels_p)
6412 ? FRAME_CANON_Y_FROM_PIXEL_Y (f, -w->vscroll)
6413 : make_number (-w->vscroll));
6414 else
6415 result = make_number (0);
6416 return result;
6420 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
6421 2, 3, 0,
6422 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6423 WINDOW nil means use the selected window. Normally, VSCROLL is a
6424 non-negative multiple of the canonical character height of WINDOW;
6425 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6426 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6427 corresponds to an integral number of pixels. The return value is the
6428 result of this rounding.
6429 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6430 (Lisp_Object window, Lisp_Object vscroll, Lisp_Object pixels_p)
6432 struct window *w = decode_live_window (window);
6433 struct frame *f = XFRAME (w->frame);
6435 CHECK_NUMBER_OR_FLOAT (vscroll);
6437 if (FRAME_WINDOW_P (f))
6439 int old_dy = w->vscroll;
6441 w->vscroll = - (NILP (pixels_p)
6442 ? FRAME_LINE_HEIGHT (f) * XFLOATINT (vscroll)
6443 : XFLOATINT (vscroll));
6444 w->vscroll = min (w->vscroll, 0);
6446 if (w->vscroll != old_dy)
6448 /* Adjust glyph matrix of the frame if the virtual display
6449 area becomes larger than before. */
6450 if (w->vscroll < 0 && w->vscroll < old_dy)
6451 adjust_glyphs (f);
6453 /* Prevent redisplay shortcuts. */
6454 XBUFFER (w->buffer)->prevent_redisplay_optimizations_p = 1;
6458 return Fwindow_vscroll (window, pixels_p);
6462 /* Call FN for all leaf windows on frame F. FN is called with the
6463 first argument being a pointer to the leaf window, and with
6464 additional argument USER_DATA. Stops when FN returns 0. */
6466 static void
6467 foreach_window (struct frame *f, int (*fn) (struct window *, void *),
6468 void *user_data)
6470 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
6471 if (WINDOWP (FRAME_ROOT_WINDOW (f)))
6472 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
6476 /* Helper function for foreach_window. Call FN for all leaf windows
6477 reachable from W. FN is called with the first argument being a
6478 pointer to the leaf window, and with additional argument USER_DATA.
6479 Stop when FN returns 0. Value is 0 if stopped by FN. */
6481 static int
6482 foreach_window_1 (struct window *w, int (*fn) (struct window *, void *), void *user_data)
6484 int cont;
6486 for (cont = 1; w && cont;)
6488 if (!NILP (w->hchild))
6489 cont = foreach_window_1 (XWINDOW (w->hchild), fn, user_data);
6490 else if (!NILP (w->vchild))
6491 cont = foreach_window_1 (XWINDOW (w->vchild), fn, user_data);
6492 else
6493 cont = fn (w, user_data);
6495 w = NILP (w->next) ? 0 : XWINDOW (w->next);
6498 return cont;
6502 /* Freeze or unfreeze the window start of W unless it is a
6503 mini-window or the selected window. FREEZE_P non-null means freeze
6504 the window start. */
6506 static int
6507 freeze_window_start (struct window *w, void *freeze_p)
6509 if (MINI_WINDOW_P (w)
6510 || (WINDOWP (selected_window) /* Can be nil in corner cases. */
6511 && (w == XWINDOW (selected_window)
6512 || (MINI_WINDOW_P (XWINDOW (selected_window))
6513 && ! NILP (Vminibuf_scroll_window)
6514 && w == XWINDOW (Vminibuf_scroll_window)))))
6515 freeze_p = NULL;
6517 w->frozen_window_start_p = freeze_p != NULL;
6518 return 1;
6522 /* Freeze or unfreeze the window starts of all leaf windows on frame
6523 F, except the selected window and a mini-window. FREEZE_P non-zero
6524 means freeze the window start. */
6526 void
6527 freeze_window_starts (struct frame *f, bool freeze_p)
6529 foreach_window (f, freeze_window_start, (void *) (freeze_p ? f : 0));
6533 /***********************************************************************
6534 Initialization
6535 ***********************************************************************/
6537 /* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2
6538 describe the same state of affairs. This is used by Fequal.
6540 IGNORE_POSITIONS means ignore non-matching scroll positions
6541 and the like.
6543 This ignores a couple of things like the dedication status of
6544 window, combination_limit and the like. This might have to be
6545 fixed. */
6547 bool
6548 compare_window_configurations (Lisp_Object configuration1,
6549 Lisp_Object configuration2,
6550 bool ignore_positions)
6552 register struct save_window_data *d1, *d2;
6553 struct Lisp_Vector *sws1, *sws2;
6554 ptrdiff_t i;
6556 CHECK_WINDOW_CONFIGURATION (configuration1);
6557 CHECK_WINDOW_CONFIGURATION (configuration2);
6559 d1 = (struct save_window_data *) XVECTOR (configuration1);
6560 d2 = (struct save_window_data *) XVECTOR (configuration2);
6561 sws1 = XVECTOR (d1->saved_windows);
6562 sws2 = XVECTOR (d2->saved_windows);
6564 /* Frame settings must match. */
6565 if (d1->frame_cols != d2->frame_cols
6566 || d1->frame_lines != d2->frame_lines
6567 || d1->frame_menu_bar_lines != d2->frame_menu_bar_lines
6568 || !EQ (d1->selected_frame, d2->selected_frame)
6569 || !EQ (d1->current_buffer, d2->current_buffer)
6570 || (!ignore_positions
6571 && (!EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window)
6572 || !EQ (d1->minibuf_selected_window, d2->minibuf_selected_window)))
6573 || !EQ (d1->focus_frame, d2->focus_frame)
6574 /* Verify that the two configurations have the same number of windows. */
6575 || sws1->header.size != sws2->header.size)
6576 return 0;
6578 for (i = 0; i < sws1->header.size; i++)
6580 struct saved_window *sw1, *sw2;
6582 sw1 = SAVED_WINDOW_N (sws1, i);
6583 sw2 = SAVED_WINDOW_N (sws2, i);
6585 if (
6586 /* The "current" windows in the two configurations must
6587 correspond to each other. */
6588 EQ (d1->current_window, sw1->window)
6589 != EQ (d2->current_window, sw2->window)
6590 /* Windows' buffers must match. */
6591 || !EQ (sw1->buffer, sw2->buffer)
6592 || !EQ (sw1->left_col, sw2->left_col)
6593 || !EQ (sw1->top_line, sw2->top_line)
6594 || !EQ (sw1->total_cols, sw2->total_cols)
6595 || !EQ (sw1->total_lines, sw2->total_lines)
6596 || !EQ (sw1->display_table, sw2->display_table)
6597 /* The next two disjuncts check the window structure for
6598 equality. */
6599 || !EQ (sw1->parent, sw2->parent)
6600 || !EQ (sw1->prev, sw2->prev)
6601 || (!ignore_positions
6602 && (!EQ (sw1->hscroll, sw2->hscroll)
6603 || !EQ (sw1->min_hscroll, sw2->min_hscroll)
6604 || !EQ (sw1->start_at_line_beg, sw2->start_at_line_beg)
6605 || NILP (Fequal (sw1->start, sw2->start))
6606 || NILP (Fequal (sw1->pointm, sw2->pointm))
6607 || NILP (Fequal (sw1->mark, sw2->mark))))
6608 || !EQ (sw1->left_margin_cols, sw2->left_margin_cols)
6609 || !EQ (sw1->right_margin_cols, sw2->right_margin_cols)
6610 || !EQ (sw1->left_fringe_width, sw2->left_fringe_width)
6611 || !EQ (sw1->right_fringe_width, sw2->right_fringe_width)
6612 || !EQ (sw1->fringes_outside_margins, sw2->fringes_outside_margins)
6613 || !EQ (sw1->scroll_bar_width, sw2->scroll_bar_width)
6614 || !EQ (sw1->vertical_scroll_bar_type, sw2->vertical_scroll_bar_type))
6615 return 0;
6618 return 1;
6621 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
6622 Scompare_window_configurations, 2, 2, 0,
6623 doc: /* Compare two window configurations as regards the structure of windows.
6624 This function ignores details such as the values of point and mark
6625 and scrolling positions. */)
6626 (Lisp_Object x, Lisp_Object y)
6628 if (compare_window_configurations (x, y, 1))
6629 return Qt;
6630 return Qnil;
6633 void
6634 init_window_once (void)
6636 struct frame *f = make_initial_frame ();
6637 XSETFRAME (selected_frame, f);
6638 Vterminal_frame = selected_frame;
6639 minibuf_window = f->minibuffer_window;
6640 selected_window = f->selected_window;
6641 last_nonminibuf_frame = f;
6643 window_initialized = 1;
6646 void
6647 init_window (void)
6649 Vwindow_list = Qnil;
6652 void
6653 syms_of_window (void)
6655 DEFSYM (Qscroll_up, "scroll-up");
6656 DEFSYM (Qscroll_down, "scroll-down");
6657 DEFSYM (Qscroll_command, "scroll-command");
6659 Fput (Qscroll_up, Qscroll_command, Qt);
6660 Fput (Qscroll_down, Qscroll_command, Qt);
6662 DEFSYM (Qwindow_configuration_change_hook, "window-configuration-change-hook");
6663 DEFSYM (Qwindowp, "windowp");
6664 DEFSYM (Qwindow_configuration_p, "window-configuration-p");
6665 DEFSYM (Qwindow_live_p, "window-live-p");
6666 DEFSYM (Qwindow_valid_p, "window-valid-p");
6667 DEFSYM (Qwindow_deletable_p, "window-deletable-p");
6668 DEFSYM (Qdelete_window, "delete-window");
6669 DEFSYM (Qwindow_resize_root_window, "window--resize-root-window");
6670 DEFSYM (Qwindow_resize_root_window_vertically, "window--resize-root-window-vertically");
6671 DEFSYM (Qsafe, "safe");
6672 DEFSYM (Qdisplay_buffer, "display-buffer");
6673 DEFSYM (Qreplace_buffer_in_windows, "replace-buffer-in-windows");
6674 DEFSYM (Qrecord_window_buffer, "record-window-buffer");
6675 DEFSYM (Qget_mru_window, "get-mru-window");
6676 DEFSYM (Qwindow_size, "window-size");
6677 DEFSYM (Qtemp_buffer_show_hook, "temp-buffer-show-hook");
6678 DEFSYM (Qabove, "above");
6679 DEFSYM (Qbelow, "below");
6680 DEFSYM (Qclone_of, "clone-of");
6682 staticpro (&Vwindow_list);
6684 minibuf_selected_window = Qnil;
6685 staticpro (&minibuf_selected_window);
6687 window_scroll_pixel_based_preserve_x = -1;
6688 window_scroll_pixel_based_preserve_y = -1;
6689 window_scroll_preserve_hpos = -1;
6690 window_scroll_preserve_vpos = -1;
6692 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function,
6693 doc: /* Non-nil means call as function to display a help buffer.
6694 The function is called with one argument, the buffer to be displayed.
6695 Used by `with-output-to-temp-buffer'.
6696 If this function is used, then it must do the entire job of showing
6697 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
6698 Vtemp_buffer_show_function = Qnil;
6700 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window,
6701 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
6702 Vminibuf_scroll_window = Qnil;
6704 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows,
6705 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
6706 If the minibuffer is active, the `minibuffer-scroll-window' mode line
6707 is displayed in the `mode-line' face. */);
6708 mode_line_in_non_selected_windows = 1;
6710 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer,
6711 doc: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
6712 Vother_window_scroll_buffer = Qnil;
6714 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p,
6715 doc: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
6716 auto_window_vscroll_p = 1;
6718 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines,
6719 doc: /* Number of lines of continuity when scrolling by screenfuls. */);
6720 next_screen_context_lines = 2;
6722 DEFVAR_LISP ("scroll-preserve-screen-position",
6723 Vscroll_preserve_screen_position,
6724 doc: /* Controls if scroll commands move point to keep its screen position unchanged.
6725 A value of nil means point does not keep its screen position except
6726 at the scroll margin or window boundary respectively.
6727 A value of t means point keeps its screen position if the scroll
6728 command moved it vertically out of the window, e.g. when scrolling
6729 by full screens.
6730 Any other value means point always keeps its screen position.
6731 Scroll commands should have the `scroll-command' property
6732 on their symbols to be controlled by this variable. */);
6733 Vscroll_preserve_screen_position = Qnil;
6735 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type,
6736 doc: /* Type of marker to use for `window-point'. */);
6737 Vwindow_point_insertion_type = Qnil;
6739 DEFVAR_LISP ("window-configuration-change-hook",
6740 Vwindow_configuration_change_hook,
6741 doc: /* Functions to call when window configuration changes.
6742 The buffer-local part is run once per window, with the relevant window
6743 selected; while the global part is run only once for the modified frame,
6744 with the relevant frame selected. */);
6745 Vwindow_configuration_change_hook = Qnil;
6747 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay,
6748 doc: /* Non-nil means `recenter' redraws entire frame.
6749 If this option is non-nil, then the `recenter' command with a nil
6750 argument will redraw the entire frame; the special value `tty' causes
6751 the frame to be redrawn only if it is a tty frame. */);
6752 Vrecenter_redisplay = Qtty;
6754 DEFVAR_LISP ("window-combination-resize", Vwindow_combination_resize,
6755 doc: /* If t, resize window combinations proportionally.
6756 If this variable is nil, splitting a window gets the entire screen space
6757 for displaying the new window from the window to split. Deleting and
6758 resizing a window preferably resizes one adjacent window only.
6760 If this variable is t, splitting a window tries to get the space
6761 proportionally from all windows in the same combination. This also
6762 allows to split a window that is otherwise too small or of fixed size.
6763 Resizing and deleting a window proportionally resize all windows in the
6764 same combination.
6766 Other values are reserved for future use.
6768 This variable takes no effect if the variable `window-combination-limit' is
6769 non-nil. */);
6770 Vwindow_combination_resize = Qnil;
6772 DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit,
6773 doc: /* If non-nil, splitting a window makes a new parent window.
6774 The following values are recognized:
6776 nil means splitting a window will create a new parent window only if the
6777 window has no parent window or the window shall become part of a
6778 combination orthogonal to the one it is part of.
6780 `window-size' means that splitting a window for displaying a buffer
6781 makes a new parent window provided `display-buffer' is supposed to
6782 explicitly set the window's size due to the presence of a
6783 `window-height' or `window-width' entry in the alist used by
6784 `display-buffer'. Otherwise, this value is handled like nil.
6786 `temp-buffer' means that splitting a window for displaying a temporary
6787 buffer always makes a new parent window. Otherwise, this value is
6788 handled like nil.
6790 `display-buffer' means that splitting a window for displaying a buffer
6791 always makes a new parent window. Since temporary buffers are
6792 displayed by the function `display-buffer', this value is stronger
6793 than `temp-buffer'. Splitting a window for other purpose makes a
6794 new parent window only if needed.
6796 t means that splitting a window always creates a new parent window. If
6797 all splits behave this way, each frame's window tree is a binary
6798 tree and every window but the frame's root window has exactly one
6799 sibling.
6801 Other values are reserved for future use. */);
6802 Vwindow_combination_limit = Qwindow_size;
6804 DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters,
6805 doc: /* Alist of persistent window parameters.
6806 This alist specifies which window parameters shall get saved by
6807 `current-window-configuration' and `window-state-get' and subsequently
6808 restored to their previous values by `set-window-configuration' and
6809 `window-state-put'.
6811 The car of each entry of this alist is the symbol specifying the
6812 parameter. The cdr is one of the following:
6814 nil means the parameter is neither saved by `window-state-get' nor by
6815 `current-window-configuration'.
6817 t means the parameter is saved by `current-window-configuration' and,
6818 provided its WRITABLE argument is nil, by `window-state-get'.
6820 The symbol `writable' means the parameter is saved unconditionally by
6821 both `current-window-configuration' and `window-state-get'. Do not use
6822 this value for parameters without read syntax (like windows or frames).
6824 Parameters not saved by `current-window-configuration' or
6825 `window-state-get' are left alone by `set-window-configuration'
6826 respectively are not installed by `window-state-put'. */);
6827 Vwindow_persistent_parameters = list1 (Fcons (Qclone_of, Qt));
6829 defsubr (&Sselected_window);
6830 defsubr (&Sminibuffer_window);
6831 defsubr (&Swindow_minibuffer_p);
6832 defsubr (&Swindowp);
6833 defsubr (&Swindow_valid_p);
6834 defsubr (&Swindow_live_p);
6835 defsubr (&Swindow_frame);
6836 defsubr (&Sframe_root_window);
6837 defsubr (&Sframe_first_window);
6838 defsubr (&Sframe_selected_window);
6839 defsubr (&Sset_frame_selected_window);
6840 defsubr (&Spos_visible_in_window_p);
6841 defsubr (&Swindow_line_height);
6842 defsubr (&Swindow_buffer);
6843 defsubr (&Swindow_parent);
6844 defsubr (&Swindow_top_child);
6845 defsubr (&Swindow_left_child);
6846 defsubr (&Swindow_next_sibling);
6847 defsubr (&Swindow_prev_sibling);
6848 defsubr (&Swindow_combination_limit);
6849 defsubr (&Sset_window_combination_limit);
6850 defsubr (&Swindow_use_time);
6851 defsubr (&Swindow_top_line);
6852 defsubr (&Swindow_left_column);
6853 defsubr (&Swindow_total_height);
6854 defsubr (&Swindow_total_width);
6855 defsubr (&Swindow_normal_size);
6856 defsubr (&Swindow_new_total);
6857 defsubr (&Swindow_new_normal);
6858 defsubr (&Sset_window_new_total);
6859 defsubr (&Sset_window_new_normal);
6860 defsubr (&Swindow_resize_apply);
6861 defsubr (&Swindow_body_height);
6862 defsubr (&Swindow_body_width);
6863 defsubr (&Swindow_hscroll);
6864 defsubr (&Sset_window_hscroll);
6865 defsubr (&Swindow_redisplay_end_trigger);
6866 defsubr (&Sset_window_redisplay_end_trigger);
6867 defsubr (&Swindow_edges);
6868 defsubr (&Swindow_pixel_edges);
6869 defsubr (&Swindow_absolute_pixel_edges);
6870 defsubr (&Swindow_inside_edges);
6871 defsubr (&Swindow_inside_pixel_edges);
6872 defsubr (&Swindow_inside_absolute_pixel_edges);
6873 defsubr (&Scoordinates_in_window_p);
6874 defsubr (&Swindow_at);
6875 defsubr (&Swindow_point);
6876 defsubr (&Swindow_start);
6877 defsubr (&Swindow_end);
6878 defsubr (&Sset_window_point);
6879 defsubr (&Sset_window_start);
6880 defsubr (&Swindow_dedicated_p);
6881 defsubr (&Sset_window_dedicated_p);
6882 defsubr (&Swindow_display_table);
6883 defsubr (&Sset_window_display_table);
6884 defsubr (&Snext_window);
6885 defsubr (&Sprevious_window);
6886 defsubr (&Sget_buffer_window);
6887 defsubr (&Sdelete_other_windows_internal);
6888 defsubr (&Sdelete_window_internal);
6889 defsubr (&Sresize_mini_window_internal);
6890 defsubr (&Sset_window_buffer);
6891 defsubr (&Srun_window_configuration_change_hook);
6892 defsubr (&Sselect_window);
6893 defsubr (&Sforce_window_update);
6894 defsubr (&Ssplit_window_internal);
6895 defsubr (&Sscroll_up);
6896 defsubr (&Sscroll_down);
6897 defsubr (&Sscroll_left);
6898 defsubr (&Sscroll_right);
6899 defsubr (&Sother_window_for_scrolling);
6900 defsubr (&Sscroll_other_window);
6901 defsubr (&Sminibuffer_selected_window);
6902 defsubr (&Srecenter);
6903 defsubr (&Swindow_text_height);
6904 defsubr (&Smove_to_window_line);
6905 defsubr (&Swindow_configuration_p);
6906 defsubr (&Swindow_configuration_frame);
6907 defsubr (&Sset_window_configuration);
6908 defsubr (&Scurrent_window_configuration);
6909 defsubr (&Sset_window_margins);
6910 defsubr (&Swindow_margins);
6911 defsubr (&Sset_window_fringes);
6912 defsubr (&Swindow_fringes);
6913 defsubr (&Sset_window_scroll_bars);
6914 defsubr (&Swindow_scroll_bars);
6915 defsubr (&Swindow_vscroll);
6916 defsubr (&Sset_window_vscroll);
6917 defsubr (&Scompare_window_configurations);
6918 defsubr (&Swindow_list);
6919 defsubr (&Swindow_list_1);
6920 defsubr (&Swindow_prev_buffers);
6921 defsubr (&Sset_window_prev_buffers);
6922 defsubr (&Swindow_next_buffers);
6923 defsubr (&Sset_window_next_buffers);
6924 defsubr (&Swindow_parameters);
6925 defsubr (&Swindow_parameter);
6926 defsubr (&Sset_window_parameter);
6929 void
6930 keys_of_window (void)
6932 initial_define_key (control_x_map, '<', "scroll-left");
6933 initial_define_key (control_x_map, '>', "scroll-right");
6935 initial_define_key (global_map, Ctl ('V'), "scroll-up-command");
6936 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
6937 initial_define_key (meta_map, 'v', "scroll-down-command");