1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985-1987, 1993-1998, 2000-2011
4 Free Software Foundation, Inc.
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 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/>. */
35 #include "dispextern.h"
36 #include "blockinput.h"
37 #include "intervals.h"
38 #include "termhooks.h" /* For FRAME_TERMINAL. */
42 #endif /* HAVE_X_WINDOWS */
53 Lisp_Object Qwindowp
, Qwindow_live_p
;
54 static Lisp_Object Qwindow_configuration_p
, Qrecord_window_buffer
;
55 static Lisp_Object Qwindow_deletable_p
, Qdelete_window
, Qdisplay_buffer
;
56 static Lisp_Object Qreplace_buffer_in_windows
, Qget_mru_window
;
57 static Lisp_Object Qwindow_resize_root_window
, Qwindow_resize_root_window_vertically
;
58 static Lisp_Object Qscroll_up
, Qscroll_down
, Qscroll_command
;
59 static Lisp_Object Qsafe
, Qabove
, Qbelow
;
60 static Lisp_Object Qauto_buffer_name
;
62 static int displayed_window_lines (struct window
*);
63 static struct window
*decode_window (Lisp_Object
);
64 static int count_windows (struct window
*);
65 static int get_leaf_windows (struct window
*, struct window
**, int);
66 static void window_scroll (Lisp_Object
, int, int, int);
67 static void window_scroll_pixel_based (Lisp_Object
, int, int, int);
68 static void window_scroll_line_based (Lisp_Object
, int, int, int);
69 static int freeze_window_start (struct window
*, void *);
70 static Lisp_Object
window_list (void);
71 static int add_window_to_list (struct window
*, void *);
72 static int candidate_window_p (Lisp_Object
, Lisp_Object
, Lisp_Object
,
74 static Lisp_Object
next_window (Lisp_Object
, Lisp_Object
,
76 static void decode_next_window_args (Lisp_Object
*, Lisp_Object
*,
78 static void foreach_window (struct frame
*,
79 int (* fn
) (struct window
*, void *),
81 static int foreach_window_1 (struct window
*,
82 int (* fn
) (struct window
*, void *),
84 static Lisp_Object
window_list_1 (Lisp_Object
, Lisp_Object
, Lisp_Object
);
85 static int window_resize_check (struct window
*, int);
86 static void window_resize_apply (struct window
*, int);
87 static Lisp_Object
select_window (Lisp_Object
, Lisp_Object
, int);
89 /* This is the window in which the terminal's cursor should
90 be left when nothing is being done with it. This must
91 always be a leaf window, and its buffer is selected by
92 the top level editing loop at the end of each command.
94 This value is always the same as
95 FRAME_SELECTED_WINDOW (selected_frame). */
96 Lisp_Object selected_window
;
98 /* A list of all windows for use by next_window and Fwindow_list.
99 Functions creating or deleting windows should invalidate this cache
100 by setting it to nil. */
101 Lisp_Object Vwindow_list
;
103 /* The mini-buffer window of the selected frame.
104 Note that you cannot test for mini-bufferness of an arbitrary window
105 by comparing against this; but you can test for mini-bufferness of
106 the selected window. */
107 Lisp_Object minibuf_window
;
109 /* Non-nil means it is the window whose mode line should be
110 shown as the selected window when the minibuffer is selected. */
111 Lisp_Object minibuf_selected_window
;
113 /* Hook run at end of temp_output_buffer_show. */
114 static Lisp_Object Qtemp_buffer_show_hook
;
116 /* Incremented for each window created. */
117 static int sequence_number
;
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 int window_scroll_preserve_hpos
;
131 static int window_scroll_preserve_vpos
;
133 static struct window
*
134 decode_window (register Lisp_Object window
)
137 return XWINDOW (selected_window
);
139 CHECK_LIVE_WINDOW (window
);
140 return XWINDOW (window
);
143 static struct window
*
144 decode_any_window (register Lisp_Object window
)
147 return XWINDOW (selected_window
);
149 CHECK_WINDOW (window
);
150 return XWINDOW (window
);
153 DEFUN ("windowp", Fwindowp
, Swindowp
, 1, 1, 0,
154 doc
: /* Return t if OBJECT is a window and nil otherwise. */)
157 return WINDOWP (object
) ? Qt
: Qnil
;
160 DEFUN ("window-live-p", Fwindow_live_p
, Swindow_live_p
, 1, 1, 0,
161 doc
: /* Return t if OBJECT is a live window and nil otherwise.
162 A live window is a window that displays a buffer. */)
165 return WINDOW_LIVE_P (object
) ? Qt
: Qnil
;
168 /* Frames and windows. */
169 DEFUN ("window-frame", Fwindow_frame
, Swindow_frame
, 1, 1, 0,
170 doc
: /* Return the frame that window WINDOW is on.
171 WINDOW can be any window and defaults to the selected one. */)
174 return decode_any_window (window
)->frame
;
177 DEFUN ("frame-root-window", Fframe_root_window
, Sframe_root_window
, 0, 1, 0,
178 doc
: /* Return the root window of FRAME_OR_WINDOW.
179 If omitted, FRAME_OR_WINDOW defaults to the currently selected frame.
180 Else if FRAME_OR_WINDOW denotes any window, return the root window of
181 that window's frame. If FRAME_OR_WINDOW denotes a live frame, return
182 the root window of that frame. */)
183 (Lisp_Object frame_or_window
)
187 if (NILP (frame_or_window
))
188 window
= SELECTED_FRAME ()->root_window
;
189 else if (WINDOWP (frame_or_window
))
190 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->root_window
;
193 CHECK_LIVE_FRAME (frame_or_window
);
194 window
= XFRAME (frame_or_window
)->root_window
;
200 DEFUN ("minibuffer-window", Fminibuffer_window
, Sminibuffer_window
, 0, 1, 0,
201 doc
: /* Return the window used now for minibuffers.
202 If the optional argument FRAME is specified, return the minibuffer window
203 used by that frame. */)
207 frame
= selected_frame
;
208 CHECK_LIVE_FRAME (frame
);
209 return FRAME_MINIBUF_WINDOW (XFRAME (frame
));
212 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p
,
213 Swindow_minibuffer_p
, 0, 1, 0,
214 doc
: /* Return non-nil if WINDOW is a minibuffer window.
215 WINDOW can be any window and defaults to the selected one. */)
218 return MINI_WINDOW_P (decode_any_window (window
)) ? Qt
: Qnil
;
221 /* Don't move this to window.el - this must be a safe routine. */
222 DEFUN ("frame-first-window", Fframe_first_window
, Sframe_first_window
, 0, 1, 0,
223 doc
: /* Return the topmost, leftmost live window on FRAME_OR_WINDOW.
224 If omitted, FRAME_OR_WINDOW defaults to the currently selected frame.
225 Else if FRAME_OR_WINDOW denotes any window, return the first window of
226 that window's frame. If FRAME_OR_WINDOW denotes a live frame, return
227 the first window of that frame. */)
228 (Lisp_Object frame_or_window
)
232 if (NILP (frame_or_window
))
233 window
= SELECTED_FRAME ()->root_window
;
234 else if (WINDOWP (frame_or_window
))
235 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->root_window
;
238 CHECK_LIVE_FRAME (frame_or_window
);
239 window
= XFRAME (frame_or_window
)->root_window
;
242 while (NILP (XWINDOW (window
)->buffer
))
244 if (! NILP (XWINDOW (window
)->hchild
))
245 window
= XWINDOW (window
)->hchild
;
246 else if (! NILP (XWINDOW (window
)->vchild
))
247 window
= XWINDOW (window
)->vchild
;
255 DEFUN ("frame-selected-window", Fframe_selected_window
,
256 Sframe_selected_window
, 0, 1, 0,
257 doc
: /* Return the selected window of FRAME_OR_WINDOW.
258 If omitted, FRAME_OR_WINDOW defaults to the currently selected frame.
259 Else if FRAME_OR_WINDOW denotes any window, return the selected window
260 of that window's frame. If FRAME_OR_WINDOW denotes a live frame, return
261 the selected window of that frame. */)
262 (Lisp_Object frame_or_window
)
266 if (NILP (frame_or_window
))
267 window
= SELECTED_FRAME ()->selected_window
;
268 else if (WINDOWP (frame_or_window
))
269 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->selected_window
;
272 CHECK_LIVE_FRAME (frame_or_window
);
273 window
= XFRAME (frame_or_window
)->selected_window
;
279 DEFUN ("set-frame-selected-window", Fset_frame_selected_window
,
280 Sset_frame_selected_window
, 2, 3, 0,
281 doc
: /* Set selected window of FRAME to WINDOW.
282 FRAME must be a live frame and defaults to the selected one. If FRAME
283 is the selected frame, this makes WINDOW the selected window. Optional
284 argument NORECORD non-nil means to neither change the order of recently
285 selected windows nor the buffer list. WINDOW must denote a live window.
287 (Lisp_Object frame
, Lisp_Object window
, Lisp_Object norecord
)
290 frame
= selected_frame
;
292 CHECK_LIVE_FRAME (frame
);
293 CHECK_LIVE_WINDOW (window
);
295 if (! EQ (frame
, WINDOW_FRAME (XWINDOW (window
))))
296 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
298 if (EQ (frame
, selected_frame
))
299 return Fselect_window (window
, norecord
);
301 return XFRAME (frame
)->selected_window
= window
;
304 DEFUN ("selected-window", Fselected_window
, Sselected_window
, 0, 0, 0,
305 doc
: /* Return the selected window.
306 The selected window is the window in which the standard cursor for
307 selected windows appears and to which many commands apply. */)
310 return selected_window
;
313 int window_select_count
;
315 /* If select_window is called with inhibit_point_swap non-zero it will
316 not store point of the old selected window's buffer back into that
317 window's pointm slot. This is needed by Fset_window_configuration to
318 avoid that the display routine is called with selected_window set to
319 Qnil causing a subsequent crash. */
321 select_window (Lisp_Object window
, Lisp_Object norecord
, int inhibit_point_swap
)
323 register struct window
*w
;
324 register struct window
*ow
;
327 CHECK_LIVE_WINDOW (window
);
329 w
= XWINDOW (window
);
330 w
->frozen_window_start_p
= 0;
334 ++window_select_count
;
335 XSETFASTINT (w
->use_time
, window_select_count
);
336 record_buffer (w
->buffer
);
339 if (EQ (window
, selected_window
) && !inhibit_point_swap
)
342 sf
= SELECTED_FRAME ();
343 if (XFRAME (WINDOW_FRAME (w
)) != sf
)
345 XFRAME (WINDOW_FRAME (w
))->selected_window
= window
;
346 /* Use this rather than Fhandle_switch_frame
347 so that FRAME_FOCUS_FRAME is moved appropriately as we
348 move around in the state where a minibuffer in a separate
350 Fselect_frame (WINDOW_FRAME (w
), norecord
);
351 /* Fselect_frame called us back so we've done all the work already. */
352 eassert (EQ (window
, selected_window
));
356 sf
->selected_window
= window
;
358 /* Store the current buffer's actual point into the
359 old selected window. It belongs to that window,
360 and when the window is not selected, must be in the window. */
361 if (!inhibit_point_swap
)
363 ow
= XWINDOW (selected_window
);
364 if (! NILP (ow
->buffer
))
365 set_marker_both (ow
->pointm
, ow
->buffer
,
366 BUF_PT (XBUFFER (ow
->buffer
)),
367 BUF_PT_BYTE (XBUFFER (ow
->buffer
)));
370 selected_window
= window
;
372 Fset_buffer (w
->buffer
);
374 BVAR (XBUFFER (w
->buffer
), last_selected_window
) = window
;
376 /* Go to the point recorded in the window.
377 This is important when the buffer is in more
378 than one window. It also matters when
379 redisplay_window has altered point after scrolling,
380 because it makes the change only in the window. */
382 register EMACS_INT new_point
= marker_position (w
->pointm
);
383 if (new_point
< BEGV
)
385 else if (new_point
> ZV
)
391 windows_or_buffers_changed
++;
395 DEFUN ("select-window", Fselect_window
, Sselect_window
, 1, 2, 0,
396 doc
: /* Select WINDOW. Most editing will apply to WINDOW's buffer.
397 Also make WINDOW's buffer current and make WINDOW the frame's selected
398 window. Return WINDOW.
400 Optional second arg NORECORD non-nil means do not put this buffer at the
401 front of the buffer list and do not make this window the most recently
404 Note that the main editor command loop sets the current buffer to the
405 buffer of the selected window before each command. */)
406 (register Lisp_Object window
, Lisp_Object norecord
)
408 return select_window (window
, norecord
, 0);
411 DEFUN ("window-clone-number", Fwindow_clone_number
, Swindow_clone_number
, 0, 1, 0,
412 doc
: /* Return WINDOW's clone number.
413 WINDOW can be any window and defaults to the selected one. */)
416 return decode_any_window (window
)->clone_number
;
419 DEFUN ("window-buffer", Fwindow_buffer
, Swindow_buffer
, 0, 1, 0,
420 doc
: /* Return the buffer that WINDOW is displaying.
421 WINDOW can be any window and defaults to the selected one.
422 If WINDOW is an internal window return nil. */)
425 return decode_any_window (window
)->buffer
;
428 DEFUN ("window-parent", Fwindow_parent
, Swindow_parent
, 0, 1, 0,
429 doc
: /* Return WINDOW's parent window.
430 WINDOW can be any window and defaults to the selected one.
431 Return nil if WINDOW has no parent. */)
434 return decode_any_window (window
)->parent
;
437 DEFUN ("window-top-child", Fwindow_top_child
, Swindow_top_child
, 0, 1, 0,
438 doc
: /* Return WINDOW's topmost child window.
439 WINDOW can be any window and defaults to the selected one.
440 Return nil if WINDOW is not a vertical combination. */)
443 return decode_any_window (window
)->vchild
;
446 DEFUN ("window-left-child", Fwindow_left_child
, Swindow_left_child
, 0, 1, 0,
447 doc
: /* Return WINDOW's leftmost child window.
448 WINDOW can be any window and defaults to the selected one.
449 Return nil if WINDOW is not a horizontal combination. */)
452 return decode_any_window (window
)->hchild
;
455 DEFUN ("window-next-sibling", Fwindow_next_sibling
, Swindow_next_sibling
, 0, 1, 0,
456 doc
: /* Return WINDOW's next sibling window.
457 WINDOW can be any window and defaults to the selected one.
458 Return nil if WINDOW has no next sibling. */)
461 return decode_any_window (window
)->next
;
464 DEFUN ("window-prev-sibling", Fwindow_prev_sibling
, Swindow_prev_sibling
, 0, 1, 0,
465 doc
: /* Return WINDOW's previous sibling window.
466 WINDOW can be any window and defaults to the selected one.
467 Return nil if WINDOW has no previous sibling. */)
470 return decode_any_window (window
)->prev
;
473 DEFUN ("window-splits", Fwindow_splits
, Swindow_splits
, 0, 1, 0,
474 doc
: /* Return splits status for WINDOW.
475 WINDOW can be any window and defaults to the selected one.
477 If the value returned by this function is nil and WINDOW is resized, the
478 corresponding space is preferably taken from (or given to) WINDOW's
479 right sibling. When WINDOW is deleted, its space is given to its left
482 If the value returned by this function is non-nil, resizing and deleting
483 WINDOW may resize all windows in the same combination. */)
486 return decode_any_window (window
)->splits
;
489 DEFUN ("set-window-splits", Fset_window_splits
, Sset_window_splits
, 2, 2, 0,
490 doc
: /* Set splits status of WINDOW to STATUS.
491 WINDOW can be any window and defaults to the selected one. Return
494 If STATUS is nil and WINDOW is later resized, the corresponding space is
495 preferably taken from (or given to) WINDOW's right sibling. When WINDOW
496 is deleted, its space is given to its left sibling.
498 If STATUS is non-nil, resizing and deleting WINDOW may resize all
499 windows in the same combination. */)
500 (Lisp_Object window
, Lisp_Object status
)
502 register struct window
*w
= decode_any_window (window
);
509 DEFUN ("window-nest", Fwindow_nest
, Swindow_nest
, 0, 1, 0,
510 doc
: /* Return nest status of WINDOW.
511 WINDOW can be any window and defaults to the selected one.
513 If the return value is nil, subwindows of WINDOW can be recombined with
514 WINDOW's siblings. A return value of non-nil means that subwindows of
515 WINDOW are never \(re-)combined with WINDOW's siblings. */)
518 return decode_any_window (window
)->nest
;
521 DEFUN ("set-window-nest", Fset_window_nest
, Sset_window_nest
, 2, 2, 0,
522 doc
: /* Set nest status of WINDOW to STATUS.
523 WINDOW can be any window and defaults to the selected one. Return
526 If STATUS is nil, subwindows of WINDOW can be recombined with WINDOW's
527 siblings. STATUS non-nil means that subwindows of WINDOW are never
528 \(re-)combined with WINDOW's siblings. */)
529 (Lisp_Object window
, Lisp_Object status
)
531 register struct window
*w
= decode_any_window (window
);
538 DEFUN ("window-use-time", Fwindow_use_time
, Swindow_use_time
, 0, 1, 0,
539 doc
: /* Return WINDOW's use time.
540 WINDOW defaults to the selected window. The window with the highest use
541 time is the most recently selected one. The window with the lowest use
542 time is the least recently selected one. */)
545 return decode_window (window
)->use_time
;
548 DEFUN ("window-total-size", Fwindow_total_size
, Swindow_total_size
, 0, 2, 0,
549 doc
: /* Return the total number of lines of WINDOW.
550 WINDOW can be any window and defaults to the selected one. The return
551 value includes WINDOW's mode line and header line, if any. If WINDOW
552 is internal, the return value is the sum of the total number of lines
553 of WINDOW's child windows if these are vertically combined and the
554 height of WINDOW's first child otherwise.
556 Optional argument HORIZONTAL non-nil means return the total number of
557 columns of WINDOW. In this case the return value includes any vertical
558 dividers or scrollbars of WINDOW. If WINDOW is internal, the return
559 value is the sum of the total number of columns of WINDOW's child
560 windows if they are horizontally combined and the width of WINDOW's
561 first child otherwise. */)
562 (Lisp_Object window
, Lisp_Object horizontal
)
564 if (NILP (horizontal
))
565 return decode_any_window (window
)->total_lines
;
567 return decode_any_window (window
)->total_cols
;
570 DEFUN ("window-new-total", Fwindow_new_total
, Swindow_new_total
, 0, 1, 0,
571 doc
: /* Return new total size of WINDOW.
572 WINDOW defaults to the selected window. */)
575 return decode_any_window (window
)->new_total
;
578 DEFUN ("window-normal-size", Fwindow_normal_size
, Swindow_normal_size
, 0, 2, 0,
579 doc
: /* Return normal height of WINDOW.
580 WINDOW can be any window and defaults to the selected one. Optional
581 argument HORIZONTAL non-nil means return normal width of WINDOW. */)
582 (Lisp_Object window
, Lisp_Object horizontal
)
584 if (NILP (horizontal
))
585 return decode_any_window (window
)->normal_lines
;
587 return decode_any_window (window
)->normal_cols
;
590 DEFUN ("window-new-normal", Fwindow_new_normal
, Swindow_new_normal
, 0, 1, 0,
591 doc
: /* Return new normal size of WINDOW.
592 WINDOW can be any window and defaults to the selected one. */)
595 return decode_any_window (window
)->new_normal
;
598 DEFUN ("window-left-column", Fwindow_left_column
, Swindow_left_column
, 0, 1, 0,
599 doc
: /* Return left column of WINDOW.
600 WINDOW can be any window and defaults to the selected one. */)
603 return decode_any_window (window
)->left_col
;
606 DEFUN ("window-top-line", Fwindow_top_line
, Swindow_top_line
, 0, 1, 0,
607 doc
: /* Return top line of WINDOW.
608 WINDOW can be any window and defaults to the selected one. */)
611 return decode_any_window (window
)->top_line
;
614 /* Return the number of lines of W's body. Don't count any mode or
618 window_body_lines (struct window
*w
)
620 int height
= XFASTINT (w
->total_lines
);
622 if (!MINI_WINDOW_P (w
))
624 if (WINDOW_WANTS_MODELINE_P (w
))
626 if (WINDOW_WANTS_HEADER_LINE_P (w
))
633 /* Return the number of columns of W's body. Don't count columns
634 occupied by the scroll bar or the vertical bar separating W from its
635 right sibling. On window-systems don't count fringes or display
639 window_body_cols (struct window
*w
)
641 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
642 int width
= XINT (w
->total_cols
);
644 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
645 /* Scroll bars occupy a few columns. */
646 width
-= WINDOW_CONFIG_SCROLL_BAR_COLS (w
);
647 else if (!FRAME_WINDOW_P (f
)
648 && !WINDOW_RIGHTMOST_P (w
) && !WINDOW_FULL_WIDTH_P (w
))
649 /* The column of `|' characters separating side-by-side windows
650 occupies one column only. */
653 if (FRAME_WINDOW_P (f
))
654 /* On window-systems, fringes and display margins cannot be
655 used for normal text. */
656 width
-= (WINDOW_FRINGE_COLS (w
)
657 + WINDOW_LEFT_MARGIN_COLS (w
)
658 + WINDOW_RIGHT_MARGIN_COLS (w
));
663 DEFUN ("window-body-size", Fwindow_body_size
, Swindow_body_size
, 0, 2, 0,
664 doc
: /* Return the number of lines of WINDOW's body.
665 WINDOW must be a live window and defaults to the selected one. The
666 return value does not include WINDOW's mode line and header line, if
669 Optional argument HORIZONTAL non-nil means return the number of columns
670 of WINDOW's body. In this case, the return value does not include any
671 vertical dividers or scroll bars owned by WINDOW. On a window-system
672 the return value does not include the number of columns used for
673 WINDOW's fringes or display margins either. */)
674 (Lisp_Object window
, Lisp_Object horizontal
)
676 struct window
*w
= decode_any_window (window
);
678 if (NILP (horizontal
))
679 return make_number (window_body_lines (w
));
681 return make_number (window_body_cols (w
));
684 DEFUN ("window-hscroll", Fwindow_hscroll
, Swindow_hscroll
, 0, 1, 0,
685 doc
: /* Return the number of columns by which WINDOW is scrolled from left margin.
686 WINDOW must be a live window and defaults to the selected one. */)
689 return decode_window (window
)->hscroll
;
692 DEFUN ("set-window-hscroll", Fset_window_hscroll
, Sset_window_hscroll
, 2, 2, 0,
693 doc
: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
694 Return NCOL. NCOL should be zero or positive.
696 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
697 window so that the location of point moves off-window. */)
698 (Lisp_Object window
, Lisp_Object ncol
)
700 struct window
*w
= decode_window (window
);
704 hscroll
= max (0, XINT (ncol
));
706 /* Prevent redisplay shortcuts when changing the hscroll. */
707 if (XINT (w
->hscroll
) != hscroll
)
708 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
710 w
->hscroll
= make_number (hscroll
);
714 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger
,
715 Swindow_redisplay_end_trigger
, 0, 1, 0,
716 doc
: /* Return WINDOW's redisplay end trigger value.
717 WINDOW defaults to the selected window.
718 See `set-window-redisplay-end-trigger' for more information. */)
721 return decode_window (window
)->redisplay_end_trigger
;
724 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger
,
725 Sset_window_redisplay_end_trigger
, 2, 2, 0,
726 doc
: /* Set WINDOW's redisplay end trigger value to VALUE.
727 VALUE should be a buffer position (typically a marker) or nil.
728 If it is a buffer position, then if redisplay in WINDOW reaches a position
729 beyond VALUE, the functions in `redisplay-end-trigger-functions' are called
730 with two arguments: WINDOW, and the end trigger value.
731 Afterwards the end-trigger value is reset to nil. */)
732 (register Lisp_Object window
, Lisp_Object value
)
734 register struct window
*w
;
736 w
= decode_window (window
);
737 w
->redisplay_end_trigger
= value
;
741 DEFUN ("window-edges", Fwindow_edges
, Swindow_edges
, 0, 1, 0,
742 doc
: /* Return a list of the edge coordinates of WINDOW.
743 The list has the form (LEFT TOP RIGHT BOTTOM).
744 TOP and BOTTOM count by lines, and LEFT and RIGHT count by columns,
745 all relative to 0, 0 at top left corner of frame.
747 RIGHT is one more than the rightmost column occupied by WINDOW.
748 BOTTOM is one more than the bottommost row occupied by WINDOW.
749 The edges include the space used by WINDOW's scroll bar, display
750 margins, fringes, header line, and/or mode line. For the edges of
751 just the text area, use `window-inside-edges'. */)
754 register struct window
*w
= decode_any_window (window
);
756 return Fcons (make_number (WINDOW_LEFT_EDGE_COL (w
)),
757 Fcons (make_number (WINDOW_TOP_EDGE_LINE (w
)),
758 Fcons (make_number (WINDOW_RIGHT_EDGE_COL (w
)),
759 Fcons (make_number (WINDOW_BOTTOM_EDGE_LINE (w
)),
763 DEFUN ("window-pixel-edges", Fwindow_pixel_edges
, Swindow_pixel_edges
, 0, 1, 0,
764 doc
: /* Return a list of the edge pixel coordinates of WINDOW.
765 The list has the form (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at
766 the top left corner of the frame.
768 RIGHT is one more than the rightmost x position occupied by WINDOW.
769 BOTTOM is one more than the bottommost y position occupied by WINDOW.
770 The pixel edges include the space used by WINDOW's scroll bar, display
771 margins, fringes, header line, and/or mode line. For the pixel edges
772 of just the text area, use `window-inside-pixel-edges'. */)
775 register struct window
*w
= decode_any_window (window
);
777 return Fcons (make_number (WINDOW_LEFT_EDGE_X (w
)),
778 Fcons (make_number (WINDOW_TOP_EDGE_Y (w
)),
779 Fcons (make_number (WINDOW_RIGHT_EDGE_X (w
)),
780 Fcons (make_number (WINDOW_BOTTOM_EDGE_Y (w
)),
785 calc_absolute_offset(struct window
*w
, int *add_x
, int *add_y
)
787 struct frame
*f
= XFRAME (w
->frame
);
789 #ifdef FRAME_MENUBAR_HEIGHT
790 *add_y
+= FRAME_MENUBAR_HEIGHT (f
);
792 #ifdef FRAME_TOOLBAR_TOP_HEIGHT
793 *add_y
+= FRAME_TOOLBAR_TOP_HEIGHT (f
);
794 #elif FRAME_TOOLBAR_HEIGHT
795 *add_y
+= FRAME_TOOLBAR_HEIGHT (f
);
797 #ifdef FRAME_NS_TITLEBAR_HEIGHT
798 *add_y
+= FRAME_NS_TITLEBAR_HEIGHT (f
);
800 *add_x
= f
->left_pos
;
801 #ifdef FRAME_TOOLBAR_LEFT_WIDTH
802 *add_x
+= FRAME_TOOLBAR_LEFT_WIDTH (f
);
806 DEFUN ("window-absolute-pixel-edges", Fwindow_absolute_pixel_edges
,
807 Swindow_absolute_pixel_edges
, 0, 1, 0,
808 doc
: /* Return a list of the edge pixel coordinates of WINDOW.
809 The list has the form (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at
810 the top left corner of the display.
812 RIGHT is one more than the rightmost x position occupied by WINDOW.
813 BOTTOM is one more than the bottommost y position occupied by WINDOW.
814 The pixel edges include the space used by WINDOW's scroll bar, display
815 margins, fringes, header line, and/or mode line. For the pixel edges
816 of just the text area, use `window-inside-absolute-pixel-edges'. */)
819 register struct window
*w
= decode_any_window (window
);
821 calc_absolute_offset (w
, &add_x
, &add_y
);
823 return Fcons (make_number (WINDOW_LEFT_EDGE_X (w
) + add_x
),
824 Fcons (make_number (WINDOW_TOP_EDGE_Y (w
) + add_y
),
825 Fcons (make_number (WINDOW_RIGHT_EDGE_X (w
) + add_x
),
826 Fcons (make_number (WINDOW_BOTTOM_EDGE_Y (w
) + add_y
),
830 DEFUN ("window-inside-edges", Fwindow_inside_edges
, Swindow_inside_edges
, 0, 1, 0,
831 doc
: /* Return a list of the edge coordinates of WINDOW.
832 The list has the form (LEFT TOP RIGHT BOTTOM).
833 TOP and BOTTOM count by lines, and LEFT and RIGHT count by columns,
834 all relative to 0, 0 at top left corner of frame.
836 RIGHT is one more than the rightmost column of WINDOW's text area.
837 BOTTOM is one more than the bottommost row of WINDOW's text area.
838 The inside edges do not include the space used by the WINDOW's scroll
839 bar, display margins, fringes, header line, and/or mode line. */)
842 register struct window
*w
= decode_any_window (window
);
844 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_COL (w
)
845 + WINDOW_LEFT_MARGIN_COLS (w
)
846 + WINDOW_LEFT_FRINGE_COLS (w
)),
847 make_number (WINDOW_TOP_EDGE_LINE (w
)
848 + WINDOW_HEADER_LINE_LINES (w
)),
849 make_number (WINDOW_BOX_RIGHT_EDGE_COL (w
)
850 - WINDOW_RIGHT_MARGIN_COLS (w
)
851 - WINDOW_RIGHT_FRINGE_COLS (w
)),
852 make_number (WINDOW_BOTTOM_EDGE_LINE (w
)
853 - WINDOW_MODE_LINE_LINES (w
)));
856 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges
, Swindow_inside_pixel_edges
, 0, 1, 0,
857 doc
: /* Return a list of the edge pixel coordinates of WINDOW.
858 The list has the form (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at
859 the top left corner of the frame.
861 RIGHT is one more than the rightmost x position of WINDOW's text area.
862 BOTTOM is one more than the bottommost y position of WINDOW's text area.
863 The inside edges do not include the space used by WINDOW's scroll bar,
864 display margins, fringes, header line, and/or mode line. */)
867 register struct window
*w
= decode_any_window (window
);
869 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_X (w
)
870 + WINDOW_LEFT_MARGIN_WIDTH (w
)
871 + WINDOW_LEFT_FRINGE_WIDTH (w
)),
872 make_number (WINDOW_TOP_EDGE_Y (w
)
873 + WINDOW_HEADER_LINE_HEIGHT (w
)),
874 make_number (WINDOW_BOX_RIGHT_EDGE_X (w
)
875 - WINDOW_RIGHT_MARGIN_WIDTH (w
)
876 - WINDOW_RIGHT_FRINGE_WIDTH (w
)),
877 make_number (WINDOW_BOTTOM_EDGE_Y (w
)
878 - WINDOW_MODE_LINE_HEIGHT (w
)));
881 DEFUN ("window-inside-absolute-pixel-edges",
882 Fwindow_inside_absolute_pixel_edges
,
883 Swindow_inside_absolute_pixel_edges
, 0, 1, 0,
884 doc
: /* Return a list of the edge pixel coordinates of WINDOW.
885 The list has the form (LEFT TOP RIGHT BOTTOM), all relative to 0, 0 at
886 the top left corner of the display.
888 RIGHT is one more than the rightmost x position of WINDOW's text area.
889 BOTTOM is one more than the bottommost y position of WINDOW's text area.
890 The inside edges do not include the space used by WINDOW's scroll bar,
891 display margins, fringes, header line, and/or mode line. */)
894 register struct window
*w
= decode_any_window (window
);
896 calc_absolute_offset (w
, &add_x
, &add_y
);
898 return list4 (make_number (WINDOW_BOX_LEFT_EDGE_X (w
)
899 + WINDOW_LEFT_MARGIN_WIDTH (w
)
900 + WINDOW_LEFT_FRINGE_WIDTH (w
) + add_x
),
901 make_number (WINDOW_TOP_EDGE_Y (w
)
902 + WINDOW_HEADER_LINE_HEIGHT (w
) + add_y
),
903 make_number (WINDOW_BOX_RIGHT_EDGE_X (w
)
904 - WINDOW_RIGHT_MARGIN_WIDTH (w
)
905 - WINDOW_RIGHT_FRINGE_WIDTH (w
) + add_x
),
906 make_number (WINDOW_BOTTOM_EDGE_Y (w
)
907 - WINDOW_MODE_LINE_HEIGHT (w
) + add_y
));
910 /* Test if the character at column X, row Y is within window W.
911 If it is not, return ON_NOTHING;
912 if it is in the window's text area, return ON_TEXT;
913 if it is on the window's modeline, return ON_MODE_LINE;
914 if it is on the border between the window and its right sibling,
915 return ON_VERTICAL_BORDER.
916 if it is on a scroll bar, return ON_SCROLL_BAR.
917 if it is on the window's top line, return ON_HEADER_LINE;
918 if it is in left or right fringe of the window,
919 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
920 if it is in the marginal area to the left/right of the window,
921 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
923 X and Y are frame relative pixel coordinates. */
925 static enum window_part
926 coordinates_in_window (register struct window
*w
, int x
, int y
)
928 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
930 enum window_part part
;
931 int ux
= FRAME_COLUMN_WIDTH (f
);
932 int x0
= WINDOW_LEFT_EDGE_X (w
);
933 int x1
= WINDOW_RIGHT_EDGE_X (w
);
934 /* The width of the area where the vertical line can be dragged.
935 (Between mode lines for instance. */
936 int grabbable_width
= ux
;
937 int lmargin_width
, rmargin_width
, text_left
, text_right
;
938 int top_y
= WINDOW_TOP_EDGE_Y (w
);
939 int bottom_y
= WINDOW_BOTTOM_EDGE_Y (w
);
941 /* Outside any interesting row? */
942 if (y
< top_y
|| y
>= bottom_y
)
945 /* In what's below, we subtract 1 when computing right_x because we
946 want the rightmost pixel, which is given by left_pixel+width-1. */
947 if (w
->pseudo_window_p
)
950 right_x
= WINDOW_TOTAL_WIDTH (w
) - 1;
954 left_x
= WINDOW_BOX_LEFT_EDGE_X (w
);
955 right_x
= WINDOW_BOX_RIGHT_EDGE_X (w
) - 1;
958 /* On the mode line or header line? If it's near the start of
959 the mode or header line of window that's has a horizontal
960 sibling, say it's on the vertical line. That's to be able
961 to resize windows horizontally in case we're using toolkit
964 if (WINDOW_WANTS_MODELINE_P (w
)
965 && y
>= bottom_y
- CURRENT_MODE_LINE_HEIGHT (w
))
969 header_vertical_border_check
:
970 /* We're somewhere on the mode line. We consider the place
971 between mode lines of horizontally adjacent mode lines
972 as the vertical border. If scroll bars on the left,
973 return the right window. */
974 if ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
975 || WINDOW_RIGHTMOST_P (w
))
976 && !WINDOW_LEFTMOST_P (w
)
977 && eabs (x
- x0
) < grabbable_width
)
978 return ON_VERTICAL_BORDER
;
980 /* Make sure we're not at the rightmost position of a
981 mode-/header-line and there's yet another window on the
983 else if ((WINDOW_RIGHTMOST_P (w
) || x
< x1
)
984 && eabs (x
- x1
) < grabbable_width
)
985 return ON_VERTICAL_BORDER
;
987 if (x
< x0
|| x
>= x1
)
993 if (WINDOW_WANTS_HEADER_LINE_P (w
)
994 && y
< top_y
+ CURRENT_HEADER_LINE_HEIGHT (w
))
996 part
= ON_HEADER_LINE
;
997 goto header_vertical_border_check
;
1000 if (x
< x0
|| x
>= x1
) return ON_NOTHING
;
1002 /* Outside any interesting column? */
1003 if (x
< left_x
|| x
> right_x
)
1004 return ON_SCROLL_BAR
;
1006 lmargin_width
= window_box_width (w
, LEFT_MARGIN_AREA
);
1007 rmargin_width
= window_box_width (w
, RIGHT_MARGIN_AREA
);
1009 text_left
= window_box_left (w
, TEXT_AREA
);
1010 text_right
= text_left
+ window_box_width (w
, TEXT_AREA
);
1012 if (FRAME_WINDOW_P (f
))
1014 if (!w
->pseudo_window_p
1015 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w
)
1016 && !WINDOW_RIGHTMOST_P (w
)
1017 && (eabs (x
- right_x
) < grabbable_width
))
1018 return ON_VERTICAL_BORDER
;
1020 /* Need to say "x > right_x" rather than >=, since on character
1021 terminals, the vertical line's x coordinate is right_x. */
1022 else if (!w
->pseudo_window_p
1023 && !WINDOW_RIGHTMOST_P (w
)
1024 && x
> right_x
- ux
)
1025 return ON_VERTICAL_BORDER
;
1029 if (lmargin_width
> 0
1030 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1031 ? (x
>= left_x
+ WINDOW_LEFT_FRINGE_WIDTH (w
))
1032 : (x
< left_x
+ lmargin_width
)))
1033 return ON_LEFT_MARGIN
;
1035 return ON_LEFT_FRINGE
;
1038 if (x
>= text_right
)
1040 if (rmargin_width
> 0
1041 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1042 ? (x
< right_x
- WINDOW_RIGHT_FRINGE_WIDTH (w
))
1043 : (x
>= right_x
- rmargin_width
)))
1044 return ON_RIGHT_MARGIN
;
1046 return ON_RIGHT_FRINGE
;
1049 /* Everything special ruled out - must be on text area */
1053 /* Take X is the frame-relative pixel x-coordinate, and return the
1054 x-coordinate relative to part PART of window W. */
1056 window_relative_x_coord (struct window
*w
, enum window_part part
, int x
)
1058 int left_x
= (w
->pseudo_window_p
) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w
);
1063 return x
- window_box_left (w
, TEXT_AREA
);
1065 case ON_LEFT_FRINGE
:
1068 case ON_RIGHT_FRINGE
:
1069 return x
- left_x
- WINDOW_LEFT_FRINGE_WIDTH (w
);
1071 case ON_LEFT_MARGIN
:
1073 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1074 ? WINDOW_LEFT_FRINGE_WIDTH (w
) : 0));
1076 case ON_RIGHT_MARGIN
:
1078 - ((w
->pseudo_window_p
)
1079 ? WINDOW_TOTAL_WIDTH (w
)
1080 : WINDOW_BOX_RIGHT_EDGE_X (w
))
1081 + window_box_width (w
, RIGHT_MARGIN_AREA
)
1082 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1083 ? WINDOW_RIGHT_FRINGE_WIDTH (w
) : 0));
1086 /* ON_SCROLL_BAR, ON_NOTHING, and ON_VERTICAL_BORDER: */
1091 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p
,
1092 Scoordinates_in_window_p
, 2, 2, 0,
1093 doc
: /* Return non-nil if COORDINATES are in WINDOW.
1094 COORDINATES is a cons of the form (X . Y), X and Y being distances
1095 measured in characters from the upper-left corner of the frame.
1096 \(0 . 0) denotes the character in the upper left corner of the
1098 If COORDINATES are in the text portion of WINDOW,
1099 the coordinates relative to the window are returned.
1100 If they are in the mode line of WINDOW, `mode-line' is returned.
1101 If they are in the top mode line of WINDOW, `header-line' is returned.
1102 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1103 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1104 If they are on the border between WINDOW and its right sibling,
1105 `vertical-line' is returned.
1106 If they are in the windows's left or right marginal areas, `left-margin'\n\
1107 or `right-margin' is returned. */)
1108 (register Lisp_Object coordinates
, Lisp_Object window
)
1115 CHECK_WINDOW (window
);
1116 w
= XWINDOW (window
);
1117 f
= XFRAME (w
->frame
);
1118 CHECK_CONS (coordinates
);
1119 lx
= Fcar (coordinates
);
1120 ly
= Fcdr (coordinates
);
1121 CHECK_NUMBER_OR_FLOAT (lx
);
1122 CHECK_NUMBER_OR_FLOAT (ly
);
1123 x
= FRAME_PIXEL_X_FROM_CANON_X (f
, lx
) + FRAME_INTERNAL_BORDER_WIDTH (f
);
1124 y
= FRAME_PIXEL_Y_FROM_CANON_Y (f
, ly
) + FRAME_INTERNAL_BORDER_WIDTH (f
);
1126 switch (coordinates_in_window (w
, x
, y
))
1132 /* Convert X and Y to window relative pixel coordinates, and
1133 return the canonical char units. */
1134 x
-= window_box_left (w
, TEXT_AREA
);
1135 y
-= WINDOW_TOP_EDGE_Y (w
);
1136 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f
, x
),
1137 FRAME_CANON_Y_FROM_PIXEL_Y (f
, y
));
1142 case ON_VERTICAL_BORDER
:
1143 return Qvertical_line
;
1145 case ON_HEADER_LINE
:
1146 return Qheader_line
;
1148 case ON_LEFT_FRINGE
:
1149 return Qleft_fringe
;
1151 case ON_RIGHT_FRINGE
:
1152 return Qright_fringe
;
1154 case ON_LEFT_MARGIN
:
1155 return Qleft_margin
;
1157 case ON_RIGHT_MARGIN
:
1158 return Qright_margin
;
1161 /* Historically we are supposed to return nil in this case. */
1170 /* Callback for foreach_window, used in window_from_coordinates.
1171 Check if window W contains coordinates specified by USER_DATA which
1172 is actually a pointer to a struct check_window_data CW.
1174 Check if window W contains coordinates *CW->x and *CW->y. If it
1175 does, return W in *CW->window, as Lisp_Object, and return in
1176 *CW->part the part of the window under coordinates *X,*Y. Return
1177 zero from this function to stop iterating over windows. */
1179 struct check_window_data
1181 Lisp_Object
*window
;
1183 enum window_part
*part
;
1187 check_window_containing (struct window
*w
, void *user_data
)
1189 struct check_window_data
*cw
= (struct check_window_data
*) user_data
;
1190 enum window_part found
;
1193 found
= coordinates_in_window (w
, cw
->x
, cw
->y
);
1194 if (found
!= ON_NOTHING
)
1197 XSETWINDOW (*cw
->window
, w
);
1205 /* Find the window containing frame-relative pixel position X/Y and
1206 return it as a Lisp_Object.
1208 If X, Y is on one of the window's special `window_part' elements,
1209 set *PART to the id of that element.
1211 If there is no window under X, Y return nil and leave *PART
1212 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
1214 This function was previously implemented with a loop cycling over
1215 windows with Fnext_window, and starting with the frame's selected
1216 window. It turned out that this doesn't work with an
1217 implementation of next_window using Vwindow_list, because
1218 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1219 tree of F when this function is called asynchronously from
1220 note_mouse_highlight. The original loop didn't terminate in this
1224 window_from_coordinates (struct frame
*f
, int x
, int y
,
1225 enum window_part
*part
, int tool_bar_p
)
1228 struct check_window_data cw
;
1229 enum window_part dummy
;
1235 cw
.window
= &window
, cw
.x
= x
, cw
.y
= y
; cw
.part
= part
;
1236 foreach_window (f
, check_window_containing
, &cw
);
1238 /* If not found above, see if it's in the tool bar window, if a tool
1242 && WINDOWP (f
->tool_bar_window
)
1243 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0
1244 && (coordinates_in_window (XWINDOW (f
->tool_bar_window
), x
, y
)
1248 window
= f
->tool_bar_window
;
1254 DEFUN ("window-at", Fwindow_at
, Swindow_at
, 2, 3, 0,
1255 doc
: /* Return window containing coordinates X and Y on FRAME.
1256 FRAME must be a live frame and defaults to the selected one.
1257 The top left corner of the frame is considered to be row 0,
1259 (Lisp_Object x
, Lisp_Object y
, Lisp_Object frame
)
1264 frame
= selected_frame
;
1265 CHECK_LIVE_FRAME (frame
);
1268 /* Check that arguments are integers or floats. */
1269 CHECK_NUMBER_OR_FLOAT (x
);
1270 CHECK_NUMBER_OR_FLOAT (y
);
1272 return window_from_coordinates (f
,
1273 (FRAME_PIXEL_X_FROM_CANON_X (f
, x
)
1274 + FRAME_INTERNAL_BORDER_WIDTH (f
)),
1275 (FRAME_PIXEL_Y_FROM_CANON_Y (f
, y
)
1276 + FRAME_INTERNAL_BORDER_WIDTH (f
)),
1280 DEFUN ("window-point", Fwindow_point
, Swindow_point
, 0, 1, 0,
1281 doc
: /* Return current value of point in WINDOW.
1282 WINDOW must be a live window and defaults to the selected one.
1284 For a nonselected window, this is the value point would have
1285 if that window were selected.
1287 Note that, when WINDOW is the selected window and its buffer
1288 is also currently selected, the value returned is the same as (point).
1289 It would be more strictly correct to return the `top-level' value
1290 of point, outside of any save-excursion forms.
1291 But that is hard to define. */)
1292 (Lisp_Object window
)
1294 register struct window
*w
= decode_window (window
);
1296 if (w
== XWINDOW (selected_window
)
1297 && current_buffer
== XBUFFER (w
->buffer
))
1299 return Fmarker_position (w
->pointm
);
1302 DEFUN ("window-start", Fwindow_start
, Swindow_start
, 0, 1, 0,
1303 doc
: /* Return position at which display currently starts in WINDOW.
1304 WINDOW must be a live window and defaults to the selected one.
1305 This is updated by redisplay or by calling `set-window-start'. */)
1306 (Lisp_Object window
)
1308 return Fmarker_position (decode_window (window
)->start
);
1311 /* This is text temporarily removed from the doc string below.
1313 This function returns nil if the position is not currently known.
1314 That happens when redisplay is preempted and doesn't finish.
1315 If in that case you want to compute where the end of the window would
1316 have been if redisplay had finished, do this:
1318 (goto-char (window-start window))
1319 (vertical-motion (1- (window-height window)) window)
1322 DEFUN ("window-end", Fwindow_end
, Swindow_end
, 0, 2, 0,
1323 doc
: /* Return position at which display currently ends in WINDOW.
1324 WINDOW must be a live window and defaults to the selected one.
1325 This is updated by redisplay, when it runs to completion.
1326 Simply changing the buffer text or setting `window-start'
1327 does not update this value.
1328 Return nil if there is no recorded value. \(This can happen if the
1329 last redisplay of WINDOW was preempted, and did not finish.)
1330 If UPDATE is non-nil, compute the up-to-date position
1331 if it isn't already recorded. */)
1332 (Lisp_Object window
, Lisp_Object update
)
1335 struct window
*w
= decode_window (window
);
1343 #if 0 /* This change broke some things. We should make it later. */
1344 /* If we don't know the end position, return nil.
1345 The user can compute it with vertical-motion if he wants to.
1346 It would be nicer to do it automatically,
1347 but that's so slow that it would probably bother people. */
1348 if (NILP (w
->window_end_valid
))
1353 && ! (! NILP (w
->window_end_valid
)
1354 && XFASTINT (w
->last_modified
) >= BUF_MODIFF (b
)
1355 && XFASTINT (w
->last_overlay_modified
) >= BUF_OVERLAY_MODIFF (b
))
1358 struct text_pos startp
;
1360 struct buffer
*old_buffer
= NULL
;
1362 /* Cannot use Fvertical_motion because that function doesn't
1363 cope with variable-height lines. */
1364 if (b
!= current_buffer
)
1366 old_buffer
= current_buffer
;
1367 set_buffer_internal (b
);
1370 /* In case W->start is out of the range, use something
1371 reasonable. This situation occurred when loading a file with
1372 `-l' containing a call to `rmail' with subsequent other
1373 commands. At the end, W->start happened to be BEG, while
1374 rmail had already narrowed the buffer. */
1375 if (XMARKER (w
->start
)->charpos
< BEGV
)
1376 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
1377 else if (XMARKER (w
->start
)->charpos
> ZV
)
1378 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
1380 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
1382 start_display (&it
, w
, startp
);
1383 move_it_vertically (&it
, window_box_height (w
));
1384 if (it
.current_y
< it
.last_visible_y
)
1385 move_it_past_eol (&it
);
1386 value
= make_number (IT_CHARPOS (it
));
1389 set_buffer_internal (old_buffer
);
1392 XSETINT (value
, BUF_Z (b
) - XFASTINT (w
->window_end_pos
));
1397 DEFUN ("set-window-point", Fset_window_point
, Sset_window_point
, 2, 2, 0,
1398 doc
: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1400 (Lisp_Object window
, Lisp_Object pos
)
1402 register struct window
*w
= decode_window (window
);
1404 CHECK_NUMBER_COERCE_MARKER (pos
);
1405 if (w
== XWINDOW (selected_window
)
1406 && XBUFFER (w
->buffer
) == current_buffer
)
1409 set_marker_restricted (w
->pointm
, pos
, w
->buffer
);
1411 /* We have to make sure that redisplay updates the window to show
1412 the new value of point. */
1413 if (!EQ (window
, selected_window
))
1414 ++windows_or_buffers_changed
;
1419 DEFUN ("set-window-start", Fset_window_start
, Sset_window_start
, 2, 3, 0,
1420 doc
: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1421 WINDOW defaults to the selected window. Return POS.
1422 Optional third arg NOFORCE non-nil inhibits next redisplay from
1423 overriding motion of point in order to display at this exact start. */)
1424 (Lisp_Object window
, Lisp_Object pos
, Lisp_Object noforce
)
1426 register struct window
*w
= decode_window (window
);
1428 CHECK_NUMBER_COERCE_MARKER (pos
);
1429 set_marker_restricted (w
->start
, pos
, w
->buffer
);
1430 /* this is not right, but much easier than doing what is right. */
1431 w
->start_at_line_beg
= Qnil
;
1433 w
->force_start
= Qt
;
1434 w
->update_mode_line
= Qt
;
1435 XSETFASTINT (w
->last_modified
, 0);
1436 XSETFASTINT (w
->last_overlay_modified
, 0);
1437 if (!EQ (window
, selected_window
))
1438 windows_or_buffers_changed
++;
1443 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p
,
1444 Spos_visible_in_window_p
, 0, 3, 0,
1445 doc
: /* Return non-nil if position POS is currently on the frame in WINDOW.
1446 Return nil if that position is scrolled vertically out of view.
1447 If a character is only partially visible, nil is returned, unless the
1448 optional argument PARTIALLY is non-nil.
1449 If POS is only out of view because of horizontal scrolling, return non-nil.
1450 If POS is t, it specifies the position of the last visible glyph in WINDOW.
1451 POS defaults to point in WINDOW; WINDOW defaults to the selected window.
1453 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1454 return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1455 where X and Y are the pixel coordinates relative to the top left corner
1456 of the window. The remaining elements are omitted if the character after
1457 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1458 off-window at the top and bottom of the row, ROWH is the height of the
1459 display row, and VPOS is the row number (0-based) containing POS. */)
1460 (Lisp_Object pos
, Lisp_Object window
, Lisp_Object partially
)
1462 register struct window
*w
;
1463 register EMACS_INT posint
;
1464 register struct buffer
*buf
;
1465 struct text_pos top
;
1466 Lisp_Object in_window
= Qnil
;
1467 int rtop
, rbot
, rowh
, vpos
, fully_p
= 1;
1470 w
= decode_window (window
);
1471 buf
= XBUFFER (w
->buffer
);
1472 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1476 else if (!NILP (pos
))
1478 CHECK_NUMBER_COERCE_MARKER (pos
);
1479 posint
= XINT (pos
);
1481 else if (w
== XWINDOW (selected_window
))
1484 posint
= XMARKER (w
->pointm
)->charpos
;
1486 /* If position is above window start or outside buffer boundaries,
1487 or if window start is out of range, position is not visible. */
1489 || (posint
>= CHARPOS (top
) && posint
<= BUF_ZV (buf
)))
1490 && CHARPOS (top
) >= BUF_BEGV (buf
)
1491 && CHARPOS (top
) <= BUF_ZV (buf
)
1492 && pos_visible_p (w
, posint
, &x
, &y
, &rtop
, &rbot
, &rowh
, &vpos
)
1493 && (fully_p
= !rtop
&& !rbot
, (!NILP (partially
) || fully_p
)))
1496 if (!NILP (in_window
) && !NILP (partially
))
1498 Lisp_Object part
= Qnil
;
1500 part
= list4 (make_number (rtop
), make_number (rbot
),
1501 make_number (rowh
), make_number (vpos
));
1502 in_window
= Fcons (make_number (x
),
1503 Fcons (make_number (y
), part
));
1509 DEFUN ("window-line-height", Fwindow_line_height
,
1510 Swindow_line_height
, 0, 2, 0,
1511 doc
: /* Return height in pixels of text line LINE in window WINDOW.
1512 WINDOW defaults to the selected window.
1514 Return height of current line if LINE is omitted or nil. Return height of
1515 header or mode line if LINE is `header-line' or `mode-line'.
1516 Otherwise, LINE is a text line number starting from 0. A negative number
1517 counts from the end of the window.
1519 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1520 in pixels of the visible part of the line, VPOS and YPOS are the
1521 vertical position in lines and pixels of the line, relative to the top
1522 of the first text line, and OFFBOT is the number of off-window pixels at
1523 the bottom of the text line. If there are off-window pixels at the top
1524 of the (first) text line, YPOS is negative.
1526 Return nil if window display is not up-to-date. In that case, use
1527 `pos-visible-in-window-p' to obtain the information. */)
1528 (Lisp_Object line
, Lisp_Object window
)
1530 register struct window
*w
;
1531 register struct buffer
*b
;
1532 struct glyph_row
*row
, *end_row
;
1533 int max_y
, crop
, i
, n
;
1535 w
= decode_window (window
);
1537 if (noninteractive
|| w
->pseudo_window_p
)
1540 CHECK_BUFFER (w
->buffer
);
1541 b
= XBUFFER (w
->buffer
);
1543 /* Fail if current matrix is not up-to-date. */
1544 if (NILP (w
->window_end_valid
)
1545 || current_buffer
->clip_changed
1546 || current_buffer
->prevent_redisplay_optimizations_p
1547 || XFASTINT (w
->last_modified
) < BUF_MODIFF (b
)
1548 || XFASTINT (w
->last_overlay_modified
) < BUF_OVERLAY_MODIFF (b
))
1554 if (i
< 0 || i
>= w
->current_matrix
->nrows
1555 || (row
= MATRIX_ROW (w
->current_matrix
, i
), !row
->enabled_p
))
1557 max_y
= window_text_bottom_y (w
);
1561 if (EQ (line
, Qheader_line
))
1563 if (!WINDOW_WANTS_HEADER_LINE_P (w
))
1565 row
= MATRIX_HEADER_LINE_ROW (w
->current_matrix
);
1566 if (!row
->enabled_p
)
1568 return list4 (make_number (row
->height
),
1569 make_number (0), make_number (0),
1573 if (EQ (line
, Qmode_line
))
1575 row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
);
1576 if (!row
->enabled_p
)
1578 return list4 (make_number (row
->height
),
1579 make_number (0), /* not accurate */
1580 make_number (WINDOW_HEADER_LINE_HEIGHT (w
)
1581 + window_text_bottom_y (w
)),
1585 CHECK_NUMBER (line
);
1588 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
1589 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
1590 max_y
= window_text_bottom_y (w
);
1593 while ((n
< 0 || i
< n
)
1594 && row
<= end_row
&& row
->enabled_p
1595 && row
->y
+ row
->height
< max_y
)
1598 if (row
> end_row
|| !row
->enabled_p
)
1610 crop
= max (0, (row
->y
+ row
->height
) - max_y
);
1611 return list4 (make_number (row
->height
+ min (0, row
->y
) - crop
),
1613 make_number (row
->y
),
1614 make_number (crop
));
1617 DEFUN ("window-dedicated-p", Fwindow_dedicated_p
, Swindow_dedicated_p
,
1619 doc
: /* Return non-nil when WINDOW is dedicated to its buffer.
1620 More precisely, return the value assigned by the last call of
1621 `set-window-dedicated-p' for WINDOW. Return nil if that function was
1622 never called with WINDOW as its argument, or the value set by that
1623 function was internally reset since its last call. WINDOW defaults to
1624 the selected window.
1626 When a window is dedicated to its buffer, `display-buffer' will refrain
1627 from displaying another buffer in it. `get-lru-window' and
1628 `get-largest-window' treat dedicated windows specially.
1629 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
1630 `kill-buffer' can delete a dedicated window and the containing frame.
1632 Functions like `set-window-buffer' may change the buffer displayed by a
1633 window, unless that window is "strongly" dedicated to its buffer, that
1634 is the value returned by `window-dedicated-p' is t. */)
1635 (Lisp_Object window
)
1637 return decode_window (window
)->dedicated
;
1640 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p
,
1641 Sset_window_dedicated_p
, 2, 2, 0,
1642 doc
: /* Mark WINDOW as dedicated according to FLAG.
1643 WINDOW must be a live window and defaults to the selected one. FLAG
1644 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
1645 mark WINDOW as non-dedicated. Return FLAG.
1647 When a window is dedicated to its buffer, `display-buffer' will refrain
1648 from displaying another buffer in it. `get-lru-window' and
1649 `get-largest-window' treat dedicated windows specially.
1650 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
1651 `quit-restore-window' and `kill-buffer' can delete a dedicated window
1652 and the containing frame.
1654 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
1655 its buffer. Functions like `set-window-buffer' may change the buffer
1656 displayed by a window, unless that window is strongly dedicated to its
1657 buffer. If and when `set-window-buffer' displays another buffer in a
1658 window, it also makes sure that the window is no more dedicated. */)
1659 (Lisp_Object window
, Lisp_Object flag
)
1661 register struct window
*w
= decode_window (window
);
1663 w
->dedicated
= flag
;
1664 return w
->dedicated
;
1667 DEFUN ("window-prev-buffers", Fwindow_prev_buffers
, Swindow_prev_buffers
,
1669 doc
: /* Return buffers previously shown in WINDOW.
1670 WINDOW must be a live window and defaults to the selected one.
1672 The return value is either nil or a list of <buffer, window-start,
1673 window-point> triples where buffer was previously shown in WINDOW. */)
1674 (Lisp_Object window
)
1676 return decode_window (window
)->prev_buffers
;
1679 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers
,
1680 Sset_window_prev_buffers
, 2, 2, 0,
1681 doc
: /* Set WINDOW's previous buffers to PREV-BUFFERS.
1682 WINDOW must be a live window and defaults to the selected one. Return
1685 PREV-BUFFERS should be either nil or a list of <buffer, window-start,
1686 window-point> triples where buffer was previously shown in WINDOW. */)
1687 (Lisp_Object window
, Lisp_Object prev_buffers
)
1689 return decode_any_window (window
)->prev_buffers
= prev_buffers
;
1692 DEFUN ("window-next-buffers", Fwindow_next_buffers
, Swindow_next_buffers
,
1694 doc
: /* Return list of buffers recently re-shown in WINDOW.
1695 WINDOW must be a live window and defaults to the selected one. */)
1696 (Lisp_Object window
)
1698 return decode_window (window
)->next_buffers
;
1701 DEFUN ("set-window-next-buffers", Fset_window_next_buffers
,
1702 Sset_window_next_buffers
, 2, 2, 0,
1703 doc
: /* Set WINDOW's next buffers to NEXT-BUFFERS.
1704 WINDOW must be a live window and defaults to the selected one. Return
1707 NEXT-BUFFERS should be either nil or a list of buffers that have been
1708 recently re-shown in WINDOW. */)
1709 (Lisp_Object window
, Lisp_Object next_buffers
)
1711 return decode_any_window (window
)->next_buffers
= next_buffers
;
1714 DEFUN ("window-parameters", Fwindow_parameters
, Swindow_parameters
,
1716 doc
: /* Return the parameters of WINDOW and their values.
1717 WINDOW defaults to the selected window. The return value is a list of
1718 elements of the form (PARAMETER . VALUE). */)
1719 (Lisp_Object window
)
1721 return Fcopy_alist (decode_any_window (window
)->window_parameters
);
1724 DEFUN ("window-parameter", Fwindow_parameter
, Swindow_parameter
,
1726 doc
: /* Return WINDOW's value for PARAMETER.
1727 WINDOW defaults to the selected window. */)
1728 (Lisp_Object window
, Lisp_Object parameter
)
1732 result
= Fassq (parameter
, decode_any_window (window
)->window_parameters
);
1733 return CDR_SAFE (result
);
1736 DEFUN ("set-window-parameter", Fset_window_parameter
,
1737 Sset_window_parameter
, 3, 3, 0,
1738 doc
: /* Set WINDOW's value of PARAMETER to VALUE.
1739 WINDOW defaults to the selected window. Return VALUE. */)
1740 (Lisp_Object window
, Lisp_Object parameter
, Lisp_Object value
)
1742 register struct window
*w
= decode_any_window (window
);
1743 Lisp_Object old_alist_elt
;
1745 old_alist_elt
= Fassq (parameter
, w
->window_parameters
);
1746 if (NILP (old_alist_elt
))
1747 w
->window_parameters
= Fcons (Fcons (parameter
, value
), w
->window_parameters
);
1749 Fsetcdr (old_alist_elt
, value
);
1753 DEFUN ("window-display-table", Fwindow_display_table
, Swindow_display_table
,
1755 doc
: /* Return the display-table that WINDOW is using.
1756 WINDOW defaults to the selected window. */)
1757 (Lisp_Object window
)
1759 return decode_window (window
)->display_table
;
1762 /* Get the display table for use on window W. This is either W's
1763 display table or W's buffer's display table. Ignore the specified
1764 tables if they are not valid; if no valid table is specified,
1767 struct Lisp_Char_Table
*
1768 window_display_table (struct window
*w
)
1770 struct Lisp_Char_Table
*dp
= NULL
;
1772 if (DISP_TABLE_P (w
->display_table
))
1773 dp
= XCHAR_TABLE (w
->display_table
);
1774 else if (BUFFERP (w
->buffer
))
1776 struct buffer
*b
= XBUFFER (w
->buffer
);
1778 if (DISP_TABLE_P (BVAR (b
, display_table
)))
1779 dp
= XCHAR_TABLE (BVAR (b
, display_table
));
1780 else if (DISP_TABLE_P (Vstandard_display_table
))
1781 dp
= XCHAR_TABLE (Vstandard_display_table
);
1787 DEFUN ("set-window-display-table", Fset_window_display_table
, Sset_window_display_table
, 2, 2, 0,
1788 doc
: /* Set WINDOW's display-table to TABLE. */)
1789 (register Lisp_Object window
, Lisp_Object table
)
1791 register struct window
*w
;
1793 w
= decode_window (window
);
1794 w
->display_table
= table
;
1798 /* Record info on buffer window W is displaying
1799 when it is about to cease to display that buffer. */
1801 unshow_buffer (register struct window
*w
)
1808 if (b
!= XMARKER (w
->pointm
)->buffer
)
1812 if (w
== XWINDOW (selected_window
)
1813 || ! EQ (buf
, XWINDOW (selected_window
)->buffer
))
1814 /* Do this except when the selected window's buffer
1815 is being removed from some other window. */
1817 /* last_window_start records the start position that this buffer
1818 had in the last window to be disconnected from it.
1819 Now that this statement is unconditional,
1820 it is possible for the buffer to be displayed in the
1821 selected window, while last_window_start reflects another
1822 window which was recently showing the same buffer.
1823 Some people might say that might be a good thing. Let's see. */
1824 b
->last_window_start
= marker_position (w
->start
);
1826 /* Point in the selected window's buffer
1827 is actually stored in that buffer, and the window's pointm isn't used.
1828 So don't clobber point in that buffer. */
1829 if (! EQ (buf
, XWINDOW (selected_window
)->buffer
)
1830 /* This line helps to fix Horsley's testbug.el bug. */
1831 && !(WINDOWP (BVAR (b
, last_selected_window
))
1832 && w
!= XWINDOW (BVAR (b
, last_selected_window
))
1833 && EQ (buf
, XWINDOW (BVAR (b
, last_selected_window
))->buffer
)))
1834 temp_set_point_both (b
,
1835 clip_to_bounds (BUF_BEGV (b
),
1836 XMARKER (w
->pointm
)->charpos
,
1838 clip_to_bounds (BUF_BEGV_BYTE (b
),
1839 marker_byte_position (w
->pointm
),
1842 if (WINDOWP (BVAR (b
, last_selected_window
))
1843 && w
== XWINDOW (BVAR (b
, last_selected_window
)))
1844 BVAR (b
, last_selected_window
) = Qnil
;
1847 /* Put NEW into the window structure in place of OLD. SETFLAG zero
1848 means change window structure only. Otherwise store geometry and
1849 other settings as well. */
1851 replace_window (Lisp_Object old
, Lisp_Object
new, int setflag
)
1853 register Lisp_Object tem
;
1854 register struct window
*o
= XWINDOW (old
), *n
= XWINDOW (new);
1856 /* If OLD is its frame's root window, then NEW is the new
1857 root window for that frame. */
1858 if (EQ (old
, FRAME_ROOT_WINDOW (XFRAME (o
->frame
))))
1859 FRAME_ROOT_WINDOW (XFRAME (o
->frame
)) = new;
1863 n
->left_col
= o
->left_col
;
1864 n
->top_line
= o
->top_line
;
1865 n
->total_cols
= o
->total_cols
;
1866 n
->total_lines
= o
->total_lines
;
1867 n
->normal_cols
= o
->normal_cols
;
1868 o
->normal_cols
= make_float (1.0);
1869 n
->normal_lines
= o
->normal_lines
;
1870 o
->normal_lines
= make_float (1.0);
1871 n
->desired_matrix
= n
->current_matrix
= 0;
1873 memset (&n
->cursor
, 0, sizeof (n
->cursor
));
1874 memset (&n
->last_cursor
, 0, sizeof (n
->last_cursor
));
1875 memset (&n
->phys_cursor
, 0, sizeof (n
->phys_cursor
));
1876 n
->phys_cursor_type
= -1;
1877 n
->phys_cursor_width
= -1;
1878 n
->must_be_updated_p
= 0;
1879 n
->pseudo_window_p
= 0;
1880 XSETFASTINT (n
->window_end_vpos
, 0);
1881 XSETFASTINT (n
->window_end_pos
, 0);
1882 n
->window_end_valid
= Qnil
;
1883 n
->frozen_window_start_p
= 0;
1886 n
->next
= tem
= o
->next
;
1888 XWINDOW (tem
)->prev
= new;
1890 n
->prev
= tem
= o
->prev
;
1892 XWINDOW (tem
)->next
= new;
1894 n
->parent
= tem
= o
->parent
;
1897 if (EQ (XWINDOW (tem
)->vchild
, old
))
1898 XWINDOW (tem
)->vchild
= new;
1899 if (EQ (XWINDOW (tem
)->hchild
, old
))
1900 XWINDOW (tem
)->hchild
= new;
1904 /* If window WINDOW and its parent window are iso-combined, merge
1905 WINDOW's children into those of its parent window and mark WINDOW as
1909 recombine_windows (Lisp_Object window
)
1911 struct window
*w
, *p
, *c
;
1912 Lisp_Object parent
, child
;
1915 w
= XWINDOW (window
);
1917 if (!NILP (parent
) && NILP (w
->nest
))
1919 p
= XWINDOW (parent
);
1920 if (((!NILP (p
->vchild
) && !NILP (w
->vchild
))
1921 || (!NILP (p
->hchild
) && !NILP (w
->hchild
))))
1922 /* WINDOW and PARENT are both either a vertical or a horizontal
1925 horflag
= NILP (w
->vchild
);
1926 child
= horflag
? w
->hchild
: w
->vchild
;
1927 c
= XWINDOW (child
);
1929 /* Splice WINDOW's children into its parent's children and
1930 assign new normal sizes. */
1939 XWINDOW (w
->prev
)->next
= child
;
1948 = make_float (XFLOATINT (c
->total_cols
)
1949 / XFLOATINT (p
->total_cols
));
1952 = make_float (XFLOATINT (c
->total_lines
)
1953 / XFLOATINT (p
->total_lines
));
1957 if (!NILP (w
->next
))
1960 XWINDOW (c
->next
)->prev
= child
;
1968 c
= XWINDOW (child
);
1972 /* WINDOW can be deleted now. */
1973 w
->vchild
= w
->hchild
= Qnil
;
1978 /* If WINDOW can be deleted, delete it. */
1980 delete_deletable_window (Lisp_Object window
)
1982 if (!NILP (call1 (Qwindow_deletable_p
, window
)))
1983 call1 (Qdelete_window
, window
);
1986 /***********************************************************************
1988 ***********************************************************************/
1990 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
1991 pointer. This is a callback function for foreach_window, used in
1992 the window_list function. */
1995 add_window_to_list (struct window
*w
, void *user_data
)
1997 Lisp_Object
*list
= (Lisp_Object
*) user_data
;
1999 XSETWINDOW (window
, w
);
2000 *list
= Fcons (window
, *list
);
2005 /* Return a list of all windows, for use by next_window. If
2006 Vwindow_list is a list, return that list. Otherwise, build a new
2007 list, cache it in Vwindow_list, and return that. */
2012 if (!CONSP (Vwindow_list
))
2016 Vwindow_list
= Qnil
;
2017 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
2019 Lisp_Object args
[2];
2021 /* We are visiting windows in canonical order, and add
2022 new windows at the front of args[1], which means we
2023 have to reverse this list at the end. */
2025 foreach_window (XFRAME (XCAR (tail
)), add_window_to_list
, &args
[1]);
2026 args
[0] = Vwindow_list
;
2027 args
[1] = Fnreverse (args
[1]);
2028 Vwindow_list
= Fnconc (2, args
);
2032 return Vwindow_list
;
2036 /* Value is non-zero if WINDOW satisfies the constraints given by
2037 OWINDOW, MINIBUF and ALL_FRAMES.
2039 MINIBUF t means WINDOW may be minibuffer windows.
2040 `lambda' means WINDOW may not be a minibuffer window.
2041 a window means a specific minibuffer window
2043 ALL_FRAMES t means search all frames,
2044 nil means search just current frame,
2045 `visible' means search just visible frames on the
2047 0 means search visible and iconified frames on the
2049 a window means search the frame that window belongs to,
2050 a frame means consider windows on that frame, only. */
2053 candidate_window_p (Lisp_Object window
, Lisp_Object owindow
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2055 struct window
*w
= XWINDOW (window
);
2056 struct frame
*f
= XFRAME (w
->frame
);
2057 int candidate_p
= 1;
2059 if (!BUFFERP (w
->buffer
))
2061 else if (MINI_WINDOW_P (w
)
2062 && (EQ (minibuf
, Qlambda
)
2063 || (WINDOWP (minibuf
) && !EQ (minibuf
, window
))))
2065 /* If MINIBUF is `lambda' don't consider any mini-windows.
2066 If it is a window, consider only that one. */
2069 else if (EQ (all_frames
, Qt
))
2071 else if (NILP (all_frames
))
2073 xassert (WINDOWP (owindow
));
2074 candidate_p
= EQ (w
->frame
, XWINDOW (owindow
)->frame
);
2076 else if (EQ (all_frames
, Qvisible
))
2078 FRAME_SAMPLE_VISIBILITY (f
);
2079 candidate_p
= FRAME_VISIBLE_P (f
)
2080 && (FRAME_TERMINAL (XFRAME (w
->frame
))
2081 == FRAME_TERMINAL (XFRAME (selected_frame
)));
2084 else if (INTEGERP (all_frames
) && XINT (all_frames
) == 0)
2086 FRAME_SAMPLE_VISIBILITY (f
);
2087 candidate_p
= (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)
2088 #ifdef HAVE_X_WINDOWS
2089 /* Yuck!! If we've just created the frame and the
2090 window-manager requested the user to place it
2091 manually, the window may still not be considered
2092 `visible'. I'd argue it should be at least
2093 something like `iconified', but don't know how to do
2095 || (FRAME_X_P (f
) && f
->output_data
.x
->asked_for_visible
2096 && !f
->output_data
.x
->has_been_visible
)
2099 && (FRAME_TERMINAL (XFRAME (w
->frame
))
2100 == FRAME_TERMINAL (XFRAME (selected_frame
)));
2102 else if (WINDOWP (all_frames
))
2103 candidate_p
= (EQ (FRAME_MINIBUF_WINDOW (f
), all_frames
)
2104 || EQ (XWINDOW (all_frames
)->frame
, w
->frame
)
2105 || EQ (XWINDOW (all_frames
)->frame
, FRAME_FOCUS_FRAME (f
)));
2106 else if (FRAMEP (all_frames
))
2107 candidate_p
= EQ (all_frames
, w
->frame
);
2113 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2114 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2115 MINIBUF, and ALL_FRAMES. */
2118 decode_next_window_args (Lisp_Object
*window
, Lisp_Object
*minibuf
, Lisp_Object
*all_frames
)
2121 *window
= selected_window
;
2123 CHECK_LIVE_WINDOW (*window
);
2125 /* MINIBUF nil may or may not include minibuffers. Decide if it
2127 if (NILP (*minibuf
))
2128 *minibuf
= minibuf_level
? minibuf_window
: Qlambda
;
2129 else if (!EQ (*minibuf
, Qt
))
2132 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2133 => count none of them, or a specific minibuffer window (the
2134 active one) to count. */
2136 /* ALL_FRAMES nil doesn't specify which frames to include. */
2137 if (NILP (*all_frames
))
2138 *all_frames
= (!EQ (*minibuf
, Qlambda
)
2139 ? FRAME_MINIBUF_WINDOW (XFRAME (XWINDOW (*window
)->frame
))
2141 else if (EQ (*all_frames
, Qvisible
))
2143 else if (EQ (*all_frames
, make_number (0)))
2145 else if (FRAMEP (*all_frames
))
2147 else if (!EQ (*all_frames
, Qt
))
2152 /* Return the next or previous window of WINDOW in cyclic ordering
2153 of windows. NEXT_P non-zero means return the next window. See the
2154 documentation string of next-window for the meaning of MINIBUF and
2158 next_window (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
, int next_p
)
2160 decode_next_window_args (&window
, &minibuf
, &all_frames
);
2162 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2163 return the first window on the frame. */
2164 if (FRAMEP (all_frames
)
2165 && !EQ (all_frames
, XWINDOW (window
)->frame
))
2166 return Fframe_first_window (all_frames
);
2172 /* Find WINDOW in the list of all windows. */
2173 list
= Fmemq (window
, window_list ());
2175 /* Scan forward from WINDOW to the end of the window list. */
2177 for (list
= XCDR (list
); CONSP (list
); list
= XCDR (list
))
2178 if (candidate_window_p (XCAR (list
), window
, minibuf
, all_frames
))
2181 /* Scan from the start of the window list up to WINDOW. */
2183 for (list
= Vwindow_list
;
2184 CONSP (list
) && !EQ (XCAR (list
), window
);
2186 if (candidate_window_p (XCAR (list
), window
, minibuf
, all_frames
))
2190 window
= XCAR (list
);
2194 Lisp_Object candidate
, list
;
2196 /* Scan through the list of windows for candidates. If there are
2197 candidate windows in front of WINDOW, the last one of these
2198 is the one we want. If there are candidates following WINDOW
2199 in the list, again the last one of these is the one we want. */
2201 for (list
= window_list (); CONSP (list
); list
= XCDR (list
))
2203 if (EQ (XCAR (list
), window
))
2205 if (WINDOWP (candidate
))
2208 else if (candidate_window_p (XCAR (list
), window
, minibuf
,
2210 candidate
= XCAR (list
);
2213 if (WINDOWP (candidate
))
2221 DEFUN ("next-window", Fnext_window
, Snext_window
, 0, 3, 0,
2222 doc
: /* Return window following WINDOW in cyclic ordering of windows.
2223 WINDOW must be a live window and defaults to the selected one. The
2224 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2227 MINIBUF nil or omitted means consider the minibuffer window only if the
2228 minibuffer is active. MINIBUF t means consider the minibuffer window
2229 even if the minibuffer is not active. Any other value means do not
2230 consider the minibuffer window even if the minibuffer is active.
2232 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2233 plus the minibuffer window if specified by the MINIBUF argument. If the
2234 minibuffer counts, consider all windows on all frames that share that
2235 minibuffer too. The following non-nil values of ALL-FRAMES have special
2238 - t means consider all windows on all existing frames.
2240 - `visible' means consider all windows on all visible frames.
2242 - 0 (the number zero) means consider all windows on all visible and
2245 - A frame means consider all windows on that frame only.
2247 Anything else means consider all windows on WINDOW's frame and no
2250 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2251 `next-window' to iterate through the entire cycle of acceptable
2252 windows, eventually ending up back at the window you started with.
2253 `previous-window' traverses the same cycle, in the reverse order. */)
2254 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2256 return next_window (window
, minibuf
, all_frames
, 1);
2260 DEFUN ("previous-window", Fprevious_window
, Sprevious_window
, 0, 3, 0,
2261 doc
: /* Return window preceding WINDOW in cyclic ordering of windows.
2262 WINDOW must be a live window and defaults to the selected one. The
2263 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2266 MINIBUF nil or omitted means consider the minibuffer window only if the
2267 minibuffer is active. MINIBUF t means consider the minibuffer window
2268 even if the minibuffer is not active. Any other value means do not
2269 consider the minibuffer window even if the minibuffer is active.
2271 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2272 plus the minibuffer window if specified by the MINIBUF argument. If the
2273 minibuffer counts, consider all windows on all frames that share that
2274 minibuffer too. The following non-nil values of ALL-FRAMES have special
2277 - t means consider all windows on all existing frames.
2279 - `visible' means consider all windows on all visible frames.
2281 - 0 (the number zero) means consider all windows on all visible and
2284 - A frame means consider all windows on that frame only.
2286 Anything else means consider all windows on WINDOW's frame and no
2289 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2290 use `previous-window' to iterate through the entire cycle of
2291 acceptable windows, eventually ending up back at the window you
2292 started with. `next-window' traverses the same cycle, in the
2294 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2296 return next_window (window
, minibuf
, all_frames
, 0);
2300 /* Return a list of windows in cyclic ordering. Arguments are like
2301 for `next-window'. */
2304 window_list_1 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2306 Lisp_Object tail
, list
, rest
;
2308 decode_next_window_args (&window
, &minibuf
, &all_frames
);
2311 for (tail
= window_list (); CONSP (tail
); tail
= XCDR (tail
))
2312 if (candidate_window_p (XCAR (tail
), window
, minibuf
, all_frames
))
2313 list
= Fcons (XCAR (tail
), list
);
2315 /* Rotate the list to start with WINDOW. */
2316 list
= Fnreverse (list
);
2317 rest
= Fmemq (window
, list
);
2318 if (!NILP (rest
) && !EQ (rest
, list
))
2320 for (tail
= list
; !EQ (XCDR (tail
), rest
); tail
= XCDR (tail
))
2322 XSETCDR (tail
, Qnil
);
2323 list
= nconc2 (rest
, list
);
2329 DEFUN ("window-list", Fwindow_list
, Swindow_list
, 0, 3, 0,
2330 doc
: /* Return a list of windows on FRAME, starting with WINDOW.
2331 FRAME nil or omitted means use the selected frame.
2332 WINDOW nil or omitted means use the selected window.
2333 MINIBUF t means include the minibuffer window, even if it isn't active.
2334 MINIBUF nil or omitted means include the minibuffer window only
2336 MINIBUF neither nil nor t means never include the minibuffer window. */)
2337 (Lisp_Object frame
, Lisp_Object minibuf
, Lisp_Object window
)
2340 window
= FRAMEP (frame
) ? XFRAME (frame
)->selected_window
: selected_window
;
2341 CHECK_WINDOW (window
);
2343 frame
= selected_frame
;
2345 if (!EQ (frame
, XWINDOW (window
)->frame
))
2346 error ("Window is on a different frame");
2348 return window_list_1 (window
, minibuf
, frame
);
2352 DEFUN ("window-list-1", Fwindow_list_1
, Swindow_list_1
, 0, 3, 0,
2353 doc
: /* Return a list of all live windows.
2354 WINDOW specifies the first window to list and defaults to the selected
2357 Optional argument MINIBUF nil or omitted means consider the minibuffer
2358 window only if the minibuffer is active. MINIBUF t means consider the
2359 minibuffer window even if the minibuffer is not active. Any other value
2360 means do not consider the minibuffer window even if the minibuffer is
2363 Optional argument ALL-FRAMES nil or omitted means consider all windows
2364 on WINDOW's frame, plus the minibuffer window if specified by the
2365 MINIBUF argument. If the minibuffer counts, consider all windows on all
2366 frames that share that minibuffer too. The following non-nil values of
2367 ALL-FRAMES have special meanings:
2369 - t means consider all windows on all existing frames.
2371 - `visible' means consider all windows on all visible frames.
2373 - 0 (the number zero) means consider all windows on all visible and
2376 - A frame means consider all windows on that frame only.
2378 Anything else means consider all windows on WINDOW's frame and no
2381 If WINDOW is not on the list of windows returned, some other window will
2382 be listed first but no error is signalled. */)
2383 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2385 return window_list_1 (window
, minibuf
, all_frames
);
2388 /* Look at all windows, performing an operation specified by TYPE
2390 If FRAMES is Qt, look at all frames;
2391 Qnil, look at just the selected frame;
2392 Qvisible, look at visible frames;
2393 a frame, just look at windows on that frame.
2394 If MINI is non-zero, perform the operation on minibuffer windows too. */
2399 GET_BUFFER_WINDOW
, /* Arg is buffer */
2400 REPLACE_BUFFER_IN_WINDOWS_SAFELY
, /* Arg is buffer */
2401 REDISPLAY_BUFFER_WINDOWS
, /* Arg is buffer */
2406 window_loop (enum window_loop type
, Lisp_Object obj
, int mini
, Lisp_Object frames
)
2408 Lisp_Object window
, windows
, best_window
, frame_arg
;
2409 int frame_best_window_flag
= 0;
2411 struct gcpro gcpro1
;
2413 /* If we're only looping through windows on a particular frame,
2414 frame points to that frame. If we're looping through windows
2415 on all frames, frame is 0. */
2416 if (FRAMEP (frames
))
2417 f
= XFRAME (frames
);
2418 else if (NILP (frames
))
2419 f
= SELECTED_FRAME ();
2424 frame_arg
= Qlambda
;
2425 else if (EQ (frames
, make_number (0)))
2427 else if (EQ (frames
, Qvisible
))
2432 /* frame_arg is Qlambda to stick to one frame,
2433 Qvisible to consider all visible frames,
2436 /* Pick a window to start with. */
2440 window
= FRAME_SELECTED_WINDOW (f
);
2442 window
= FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2444 windows
= window_list_1 (window
, mini
? Qt
: Qnil
, frame_arg
);
2448 for (; CONSP (windows
); windows
= XCDR (windows
))
2452 window
= XCAR (windows
);
2453 w
= XWINDOW (window
);
2455 /* Note that we do not pay attention here to whether the frame
2456 is visible, since Fwindow_list skips non-visible frames if
2457 that is desired, under the control of frame_arg. */
2458 if (!MINI_WINDOW_P (w
)
2459 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2460 consider all windows. */
2461 || type
== REPLACE_BUFFER_IN_WINDOWS_SAFELY
2462 || (mini
&& minibuf_level
> 0))
2465 case GET_BUFFER_WINDOW
:
2466 if (EQ (w
->buffer
, obj
)
2467 /* Don't find any minibuffer window except the one that
2468 is currently in use. */
2469 && (MINI_WINDOW_P (w
) ? EQ (window
, minibuf_window
) : 1))
2471 if (EQ (window
, selected_window
))
2472 /* Preferably return the selected window. */
2473 RETURN_UNGCPRO (window
);
2474 else if (EQ (XWINDOW (window
)->frame
, selected_frame
)
2475 && !frame_best_window_flag
)
2476 /* Prefer windows on the current frame (but don't
2477 choose another one if we have one already). */
2479 best_window
= window
;
2480 frame_best_window_flag
= 1;
2482 else if (NILP (best_window
))
2483 best_window
= window
;
2487 case REPLACE_BUFFER_IN_WINDOWS_SAFELY
:
2488 /* We could simply check whether the buffer shown by window
2489 is live, and show another buffer in case it isn't. */
2490 if (EQ (w
->buffer
, obj
))
2492 /* Undedicate WINDOW. */
2493 w
->dedicated
= Qnil
;
2494 /* Make WINDOW show the buffer returned by
2495 other_buffer_safely, don't run any hooks. */
2497 (window
, other_buffer_safely (w
->buffer
), 0, 0);
2498 /* If WINDOW is the selected window, make its buffer
2499 current. But do so only if the window shows the
2500 current buffer (Bug#6454). */
2501 if (EQ (window
, selected_window
)
2502 && XBUFFER (w
->buffer
) == current_buffer
)
2503 Fset_buffer (w
->buffer
);
2507 case REDISPLAY_BUFFER_WINDOWS
:
2508 if (EQ (w
->buffer
, obj
))
2510 mark_window_display_accurate (window
, 0);
2511 w
->update_mode_line
= Qt
;
2512 XBUFFER (obj
)->prevent_redisplay_optimizations_p
= 1;
2513 ++update_mode_lines
;
2514 best_window
= window
;
2518 /* Check for a window that has a killed buffer. */
2519 case CHECK_ALL_WINDOWS
:
2520 if (! NILP (w
->buffer
)
2521 && NILP (BVAR (XBUFFER (w
->buffer
), name
)))
2525 case WINDOW_LOOP_UNUSED
:
2534 /* Used for debugging. Abort if any window has a dead buffer. */
2536 extern void check_all_windows (void) EXTERNALLY_VISIBLE
;
2538 check_all_windows (void)
2540 window_loop (CHECK_ALL_WINDOWS
, Qnil
, 1, Qt
);
2543 DEFUN ("get-buffer-window", Fget_buffer_window
, Sget_buffer_window
, 0, 2, 0,
2544 doc
: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2545 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2548 The optional argument ALL-FRAMES specifies the frames to consider:
2550 - t means consider all windows on all existing frames.
2552 - `visible' means consider all windows on all visible frames.
2554 - 0 (the number zero) means consider all windows on all visible
2555 and iconified frames.
2557 - A frame means consider all windows on that frame only.
2559 Any other value of ALL-FRAMES means consider all windows on the
2560 selected frame and no others. */)
2561 (Lisp_Object buffer_or_name
, Lisp_Object all_frames
)
2565 if (NILP (buffer_or_name
))
2566 buffer
= Fcurrent_buffer ();
2568 buffer
= Fget_buffer (buffer_or_name
);
2570 if (BUFFERP (buffer
))
2571 return window_loop (GET_BUFFER_WINDOW
, buffer
, 1, all_frames
);
2577 resize_root_window (Lisp_Object window
, Lisp_Object delta
, Lisp_Object horizontal
, Lisp_Object ignore
)
2579 return call4 (Qwindow_resize_root_window
, window
, delta
, horizontal
, ignore
);
2583 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal
,
2584 Sdelete_other_windows_internal
, 0, 2, "",
2585 doc
: /* Make WINDOW fill its frame.
2586 Only the frame WINDOW is on is affected. WINDOW may be any window and
2587 defaults to the selected one.
2589 Optional argument ROOT, if non-nil, must specify an internal window
2590 containing WINDOW as a subwindow. If this is the case, replace ROOT by
2591 WINDOW and leave alone any windows not contained in ROOT.
2593 When WINDOW is live try to reduce display jumps by keeping the text
2594 previously visible in WINDOW in the same place on the frame. Doing this
2595 depends on the value of (window-start WINDOW), so if calling this
2596 function in a program gives strange scrolling, make sure the
2597 window-start value is reasonable when this function is called. */)
2598 (Lisp_Object window
, Lisp_Object root
)
2600 struct window
*w
, *r
, *s
;
2602 Lisp_Object sibling
, pwindow
, swindow
IF_LINT (= Qnil
), delta
;
2603 EMACS_INT startpos
IF_LINT (= 0);
2604 int top
IF_LINT (= 0), new_top
, resize_failed
;
2606 w
= decode_any_window (window
);
2607 XSETWINDOW (window
, w
);
2608 f
= XFRAME (w
->frame
);
2611 /* ROOT is the frame's root window. */
2613 root
= FRAME_ROOT_WINDOW (f
);
2617 /* ROOT must be an ancestor of WINDOW. */
2619 r
= decode_any_window (root
);
2620 pwindow
= XWINDOW (window
)->parent
;
2621 while (!NILP (pwindow
))
2622 if (EQ (pwindow
, root
))
2625 pwindow
= XWINDOW (pwindow
)->parent
;
2626 if (!EQ (pwindow
, root
))
2627 error ("Specified root is not an ancestor of specified window");
2630 if (EQ (window
, root
))
2633 /* I don't understand the "top > 0" part below. If we deal with a
2634 standalone minibuffer it would have been caught by the preceding
2636 else if (MINI_WINDOW_P (w
)) /* && top > 0) */
2637 error ("Can't expand minibuffer to full frame");
2639 if (!NILP (w
->buffer
))
2641 startpos
= marker_position (w
->start
);
2642 top
= WINDOW_TOP_EDGE_LINE (w
)
2643 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w
)));
2644 /* Make sure WINDOW is the frame's selected window. */
2645 if (!EQ (window
, FRAME_SELECTED_WINDOW (f
)))
2647 if (EQ (selected_frame
, w
->frame
))
2648 Fselect_window (window
, Qnil
);
2650 FRAME_SELECTED_WINDOW (f
) = window
;
2655 /* See if the frame's selected window is a subwindow of WINDOW, by
2656 finding all the selected window's parents and comparing each
2657 one with WINDOW. If it isn't we need a new selected window for
2659 swindow
= FRAME_SELECTED_WINDOW (f
);
2663 while (!NILP (pwindow
) && !EQ (window
, pwindow
))
2664 pwindow
= XWINDOW (pwindow
)->parent
;
2666 if (EQ (window
, pwindow
))
2667 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
2668 as the new selected window. */
2671 /* Else try the previous window of SWINDOW. */
2672 swindow
= Fprevious_window (swindow
, Qlambda
, Qnil
);
2675 if (!EQ (swindow
, FRAME_SELECTED_WINDOW (f
)))
2677 if (EQ (selected_frame
, w
->frame
))
2678 Fselect_window (swindow
, Qnil
);
2680 FRAME_SELECTED_WINDOW (f
) = swindow
;
2685 free_window_matrices (r
);
2687 windows_or_buffers_changed
++;
2688 Vwindow_list
= Qnil
;
2689 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
2692 if (NILP (w
->buffer
))
2694 /* Resize subwindows vertically. */
2695 XSETINT (delta
, XINT (r
->total_lines
) - XINT (w
->total_lines
));
2696 w
->top_line
= r
->top_line
;
2697 resize_root_window (window
, delta
, Qnil
, Qnil
);
2698 if (window_resize_check (w
, 0))
2699 window_resize_apply (w
, 0);
2702 resize_root_window (window
, delta
, Qnil
, Qt
);
2703 if (window_resize_check (w
, 0))
2704 window_resize_apply (w
, 0);
2709 /* Resize subwindows horizontally. */
2712 w
->left_col
= r
->left_col
;
2713 XSETINT (delta
, XINT (r
->total_cols
) - XINT (w
->total_cols
));
2714 w
->left_col
= r
->left_col
;
2715 resize_root_window (window
, delta
, Qt
, Qnil
);
2716 if (window_resize_check (w
, 1))
2717 window_resize_apply (w
, 1);
2720 resize_root_window (window
, delta
, Qt
, Qt
);
2721 if (window_resize_check (w
, 1))
2722 window_resize_apply (w
, 1);
2729 /* Play safe, if we still can ... */
2732 w
= XWINDOW (window
);
2736 /* Cleanly unlink WINDOW from window-tree. */
2737 if (!NILP (w
->prev
))
2738 /* Get SIBLING above (on the left of) WINDOW. */
2741 s
= XWINDOW (sibling
);
2743 if (!NILP (s
->next
))
2744 XWINDOW (s
->next
)->prev
= sibling
;
2747 /* Get SIBLING below (on the right of) WINDOW. */
2750 s
= XWINDOW (sibling
);
2752 if (!NILP (XWINDOW (w
->parent
)->vchild
))
2753 XWINDOW (w
->parent
)->vchild
= sibling
;
2755 XWINDOW (w
->parent
)->hchild
= sibling
;
2758 /* Delete ROOT and all subwindows of ROOT. */
2759 if (!NILP (r
->vchild
))
2761 delete_all_subwindows (r
->vchild
);
2764 else if (!NILP (r
->hchild
))
2766 delete_all_subwindows (r
->hchild
);
2770 replace_window (root
, window
, 1);
2772 /* Reset WINDOW's splits status. */
2775 /* This must become SWINDOW anyway ....... */
2776 if (!NILP (w
->buffer
) && !resize_failed
)
2778 /* Try to minimize scrolling, by setting the window start to the
2779 point will cause the text at the old window start to be at the
2780 same place on the frame. But don't try to do this if the
2781 window start is outside the visible portion (as might happen
2782 when the display is not current, due to typeahead). */
2783 new_top
= WINDOW_TOP_EDGE_LINE (w
) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w
)));
2785 && startpos
>= BUF_BEGV (XBUFFER (w
->buffer
))
2786 && startpos
<= BUF_ZV (XBUFFER (w
->buffer
)))
2788 struct position pos
;
2789 struct buffer
*obuf
= current_buffer
;
2791 Fset_buffer (w
->buffer
);
2792 /* This computation used to temporarily move point, but that
2793 can have unwanted side effects due to text properties. */
2794 pos
= *vmotion (startpos
, -top
, w
);
2796 set_marker_both (w
->start
, w
->buffer
, pos
.bufpos
, pos
.bytepos
);
2797 w
->window_end_valid
= Qnil
;
2798 w
->start_at_line_beg
= ((pos
.bytepos
== BEGV_BYTE
2799 || FETCH_BYTE (pos
.bytepos
- 1) == '\n') ? Qt
2801 /* We need to do this, so that the window-scroll-functions
2803 w
->optional_new_start
= Qt
;
2805 set_buffer_internal (obuf
);
2812 run_window_configuration_change_hook (f
);
2819 replace_buffer_in_windows (Lisp_Object buffer
)
2821 call1 (Qreplace_buffer_in_windows
, buffer
);
2825 /* Safely replace BUFFER with some other buffer in all windows of all
2826 frames, even those on other keyboards. */
2829 replace_buffer_in_windows_safely (Lisp_Object buffer
)
2831 Lisp_Object tail
, frame
;
2833 /* A single call to window_loop won't do the job because it only
2834 considers frames on the current keyboard. So loop manually over
2835 frames, and handle each one. */
2836 FOR_EACH_FRAME (tail
, frame
)
2837 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY
, buffer
, 1, frame
);
2840 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
2841 minimum allowable size. */
2844 check_frame_size (FRAME_PTR frame
, int *rows
, int *cols
)
2846 /* For height, we have to see:
2847 how many windows the frame has at minimum (one or two),
2848 and whether it has a menu bar or other special stuff at the top. */
2850 = ((FRAME_MINIBUF_ONLY_P (frame
) || ! FRAME_HAS_MINIBUF_P (frame
))
2851 ? MIN_SAFE_WINDOW_HEIGHT
2852 : 2 * MIN_SAFE_WINDOW_HEIGHT
);
2854 if (FRAME_TOP_MARGIN (frame
) > 0)
2855 min_height
+= FRAME_TOP_MARGIN (frame
);
2857 if (*rows
< min_height
)
2859 if (*cols
< MIN_SAFE_WINDOW_WIDTH
)
2860 *cols
= MIN_SAFE_WINDOW_WIDTH
;
2863 /* Adjust the margins of window W if text area is too small.
2864 Return 1 if window width is ok after adjustment; 0 if window
2865 is still too narrow. */
2868 adjust_window_margins (struct window
*w
)
2870 int box_cols
= (WINDOW_TOTAL_COLS (w
)
2871 - WINDOW_FRINGE_COLS (w
)
2872 - WINDOW_SCROLL_BAR_COLS (w
));
2873 int margin_cols
= (WINDOW_LEFT_MARGIN_COLS (w
)
2874 + WINDOW_RIGHT_MARGIN_COLS (w
));
2876 if (box_cols
- margin_cols
>= MIN_SAFE_WINDOW_WIDTH
)
2879 if (margin_cols
< 0 || box_cols
< MIN_SAFE_WINDOW_WIDTH
)
2882 /* Window's text area is too narrow, but reducing the window
2883 margins will fix that. */
2884 margin_cols
= box_cols
- MIN_SAFE_WINDOW_WIDTH
;
2885 if (WINDOW_RIGHT_MARGIN_COLS (w
) > 0)
2887 if (WINDOW_LEFT_MARGIN_COLS (w
) > 0)
2888 w
->left_margin_cols
= w
->right_margin_cols
2889 = make_number (margin_cols
/2);
2891 w
->right_margin_cols
= make_number (margin_cols
);
2894 w
->left_margin_cols
= make_number (margin_cols
);
2898 static Lisp_Object
Fset_window_margins (Lisp_Object
, Lisp_Object
, Lisp_Object
);
2899 static Lisp_Object
Fset_window_fringes (Lisp_Object
, Lisp_Object
, Lisp_Object
,
2901 static Lisp_Object
Fset_window_scroll_bars (Lisp_Object
, Lisp_Object
,
2902 Lisp_Object
, Lisp_Object
);
2903 static Lisp_Object
Fset_window_vscroll (Lisp_Object
, Lisp_Object
, Lisp_Object
);
2905 /* The following three routines are needed for running a window's
2906 configuration change hook. */
2908 run_funs (Lisp_Object funs
)
2910 for (; CONSP (funs
); funs
= XCDR (funs
))
2911 if (!EQ (XCAR (funs
), Qt
))
2912 call0 (XCAR (funs
));
2916 select_window_norecord (Lisp_Object window
)
2918 return WINDOW_LIVE_P (window
)
2919 ? Fselect_window (window
, Qt
) : selected_window
;
2923 select_frame_norecord (Lisp_Object frame
)
2925 return FRAME_LIVE_P (XFRAME (frame
))
2926 ? Fselect_frame (frame
, Qt
) : selected_frame
;
2930 run_window_configuration_change_hook (struct frame
*f
)
2932 int count
= SPECPDL_INDEX ();
2933 Lisp_Object frame
, global_wcch
2934 = Fdefault_value (Qwindow_configuration_change_hook
);
2935 XSETFRAME (frame
, f
);
2937 if (NILP (Vrun_hooks
))
2940 /* Use the right buffer. Matters when running the local hooks. */
2941 if (current_buffer
!= XBUFFER (Fwindow_buffer (Qnil
)))
2943 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
2944 Fset_buffer (Fwindow_buffer (Qnil
));
2947 if (SELECTED_FRAME () != f
)
2949 record_unwind_protect (select_frame_norecord
, Fselected_frame ());
2950 select_frame_norecord (frame
);
2953 /* Look for buffer-local values. */
2955 Lisp_Object windows
= Fwindow_list (frame
, Qlambda
, Qnil
);
2956 for (; CONSP (windows
); windows
= XCDR (windows
))
2958 Lisp_Object window
= XCAR (windows
);
2959 Lisp_Object buffer
= Fwindow_buffer (window
);
2960 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook
,
2963 int inner_count
= SPECPDL_INDEX ();
2964 record_unwind_protect (select_window_norecord
, Fselected_window ());
2965 select_window_norecord (window
);
2966 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook
,
2968 unbind_to (inner_count
, Qnil
);
2973 run_funs (global_wcch
);
2974 unbind_to (count
, Qnil
);
2977 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook
,
2978 Srun_window_configuration_change_hook
, 1, 1, 0,
2979 doc
: /* Run `window-configuration-change-hook' for FRAME. */)
2982 CHECK_LIVE_FRAME (frame
);
2983 run_window_configuration_change_hook (XFRAME (frame
));
2987 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
2988 means it's allowed to run hooks. See make_frame for a case where
2989 it's not allowed. KEEP_MARGINS_P non-zero means that the current
2990 margins, fringes, and scroll-bar settings of the window are not
2991 reset from the buffer's local settings. */
2994 set_window_buffer (Lisp_Object window
, Lisp_Object buffer
, int run_hooks_p
, int keep_margins_p
)
2996 struct window
*w
= XWINDOW (window
);
2997 struct buffer
*b
= XBUFFER (buffer
);
2998 int count
= SPECPDL_INDEX ();
2999 int samebuf
= EQ (buffer
, w
->buffer
);
3003 if (EQ (window
, selected_window
))
3004 BVAR (b
, last_selected_window
) = window
;
3006 /* Let redisplay errors through. */
3007 b
->display_error_modiff
= 0;
3009 /* Update time stamps of buffer display. */
3010 if (INTEGERP (BVAR (b
, display_count
)))
3011 XSETINT (BVAR (b
, display_count
), XINT (BVAR (b
, display_count
)) + 1);
3012 BVAR (b
, display_time
) = Fcurrent_time ();
3014 XSETFASTINT (w
->window_end_pos
, 0);
3015 XSETFASTINT (w
->window_end_vpos
, 0);
3016 memset (&w
->last_cursor
, 0, sizeof w
->last_cursor
);
3017 w
->window_end_valid
= Qnil
;
3018 if (!(keep_margins_p
&& samebuf
))
3019 { /* If we're not actually changing the buffer, don't reset hscroll and
3020 vscroll. This case happens for example when called from
3021 change_frame_size_1, where we use a dummy call to
3022 Fset_window_buffer on the frame's selected window (and no other)
3023 just in order to run window-configuration-change-hook.
3024 Resetting hscroll and vscroll here is problematic for things like
3025 image-mode and doc-view-mode since it resets the image's position
3026 whenever we resize the frame. */
3027 w
->hscroll
= w
->min_hscroll
= make_number (0);
3029 set_marker_both (w
->pointm
, buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
3030 set_marker_restricted (w
->start
,
3031 make_number (b
->last_window_start
),
3033 w
->start_at_line_beg
= Qnil
;
3034 w
->force_start
= Qnil
;
3035 XSETFASTINT (w
->last_modified
, 0);
3036 XSETFASTINT (w
->last_overlay_modified
, 0);
3038 /* Maybe we could move this into the `if' but it's not obviously safe and
3039 I doubt it's worth the trouble. */
3040 windows_or_buffers_changed
++;
3042 /* We must select BUFFER for running the window-scroll-functions. */
3043 /* We can't check ! NILP (Vwindow_scroll_functions) here
3044 because that might itself be a local variable. */
3045 if (window_initialized
)
3047 record_unwind_protect (Fset_buffer
, Fcurrent_buffer ());
3048 Fset_buffer (buffer
);
3051 XMARKER (w
->pointm
)->insertion_type
= !NILP (Vwindow_point_insertion_type
);
3053 if (!keep_margins_p
)
3055 /* Set left and right marginal area width etc. from buffer. */
3057 /* This may call adjust_window_margins three times, so
3058 temporarily disable window margins. */
3059 Lisp_Object save_left
= w
->left_margin_cols
;
3060 Lisp_Object save_right
= w
->right_margin_cols
;
3062 w
->left_margin_cols
= w
->right_margin_cols
= Qnil
;
3064 Fset_window_fringes (window
,
3065 BVAR (b
, left_fringe_width
), BVAR (b
, right_fringe_width
),
3066 BVAR (b
, fringes_outside_margins
));
3068 Fset_window_scroll_bars (window
,
3069 BVAR (b
, scroll_bar_width
),
3070 BVAR (b
, vertical_scroll_bar_type
), Qnil
);
3072 w
->left_margin_cols
= save_left
;
3073 w
->right_margin_cols
= save_right
;
3075 Fset_window_margins (window
,
3076 BVAR (b
, left_margin_cols
), BVAR (b
, right_margin_cols
));
3081 if (! NILP (Vwindow_scroll_functions
))
3082 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
3083 Fmarker_position (w
->start
));
3084 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w
)));
3087 unbind_to (count
, Qnil
);
3090 DEFUN ("set-window-clone-number", Fset_window_clone_number
, Sset_window_clone_number
, 2, 2, 0,
3091 doc
: /* Set WINDOW's clone number to CLONE-NUMBER.
3092 WINDOW can be any window and defaults to the selected one. */)
3093 (Lisp_Object window
, Lisp_Object clone_number
)
3095 register struct window
*w
= decode_any_window (window
);
3097 CHECK_NUMBER (clone_number
);
3098 w
->clone_number
= clone_number
;
3099 return w
->clone_number
;
3102 DEFUN ("set-window-buffer", Fset_window_buffer
, Sset_window_buffer
, 2, 3, 0,
3103 doc
: /* Make WINDOW display BUFFER-OR-NAME as its contents.
3104 WINDOW has to be a live window and defaults to the selected one.
3105 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3107 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3108 display margins, fringe widths, and scroll bar settings are preserved;
3109 the default is to reset these from the local settings for BUFFER-OR-NAME
3110 or the frame defaults. Return nil.
3112 This function throws an error when WINDOW is strongly dedicated to its
3113 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3114 already display BUFFER-OR-NAME.
3116 This function runs `window-scroll-functions' before running
3117 `window-configuration-change-hook'. */)
3118 (register Lisp_Object window
, Lisp_Object buffer_or_name
, Lisp_Object keep_margins
)
3120 register Lisp_Object tem
, buffer
;
3121 register struct window
*w
= decode_window (window
);
3123 XSETWINDOW (window
, w
);
3124 buffer
= Fget_buffer (buffer_or_name
);
3125 CHECK_BUFFER (buffer
);
3126 if (NILP (BVAR (XBUFFER (buffer
), name
)))
3127 error ("Attempt to display deleted buffer");
3131 error ("Window is deleted");
3132 else if (!EQ (tem
, Qt
))
3133 /* w->buffer is t when the window is first being set up. */
3135 if (!EQ (tem
, buffer
))
3137 if (EQ (w
->dedicated
, Qt
))
3138 /* WINDOW is strongly dedicated to its buffer, signal an
3140 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem
), name
)));
3142 /* WINDOW is weakly dedicated to its buffer, reset
3144 w
->dedicated
= Qnil
;
3146 call1 (Qrecord_window_buffer
, window
);
3152 set_window_buffer (window
, buffer
, 1, !NILP (keep_margins
));
3158 display_buffer (Lisp_Object buffer
, Lisp_Object not_this_window_p
, Lisp_Object override_frame
)
3160 return call3 (Qdisplay_buffer
, buffer
, not_this_window_p
, override_frame
);
3163 DEFUN ("force-window-update", Fforce_window_update
, Sforce_window_update
,
3165 doc
: /* Force all windows to be updated on next redisplay.
3166 If optional arg OBJECT is a window, force redisplay of that window only.
3167 If OBJECT is a buffer or buffer name, force redisplay of all windows
3168 displaying that buffer. */)
3169 (Lisp_Object object
)
3173 windows_or_buffers_changed
++;
3174 update_mode_lines
++;
3178 if (WINDOWP (object
))
3180 struct window
*w
= XWINDOW (object
);
3181 mark_window_display_accurate (object
, 0);
3182 w
->update_mode_line
= Qt
;
3183 if (BUFFERP (w
->buffer
))
3184 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
3185 ++update_mode_lines
;
3189 if (STRINGP (object
))
3190 object
= Fget_buffer (object
);
3191 if (BUFFERP (object
) && !NILP (BVAR (XBUFFER (object
), name
)))
3193 /* Walk all windows looking for buffer, and force update
3194 of each of those windows. */
3196 object
= window_loop (REDISPLAY_BUFFER_WINDOWS
, object
, 0, Qvisible
);
3197 return NILP (object
) ? Qnil
: Qt
;
3200 /* If nothing suitable was found, just return.
3201 We could signal an error, but this feature will typically be used
3202 asynchronously in timers or process sentinels, so we don't. */
3208 temp_output_buffer_show (register Lisp_Object buf
)
3210 register struct buffer
*old
= current_buffer
;
3211 register Lisp_Object window
;
3212 register struct window
*w
;
3214 BVAR (XBUFFER (buf
), directory
) = BVAR (current_buffer
, directory
);
3217 BUF_SAVE_MODIFF (XBUFFER (buf
)) = MODIFF
;
3221 set_buffer_internal (old
);
3223 if (!NILP (Vtemp_buffer_show_function
))
3224 call1 (Vtemp_buffer_show_function
, buf
);
3227 window
= display_buffer (buf
, Vtemp_buffer_show_specifiers
, Qnil
);
3228 /* Reset Vtemp_buffer_show_specifiers immediately so it won't
3229 affect subsequent calls. */
3230 Vtemp_buffer_show_specifiers
= Qnil
;
3232 if (!EQ (XWINDOW (window
)->frame
, selected_frame
))
3233 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window
)));
3234 Vminibuf_scroll_window
= window
;
3235 w
= XWINDOW (window
);
3236 XSETFASTINT (w
->hscroll
, 0);
3237 XSETFASTINT (w
->min_hscroll
, 0);
3238 set_marker_restricted_both (w
->start
, buf
, BEG
, BEG
);
3239 set_marker_restricted_both (w
->pointm
, buf
, BEG
, BEG
);
3241 /* Run temp-buffer-show-hook, with the chosen window selected
3242 and its buffer current. */
3244 int count
= SPECPDL_INDEX ();
3245 Lisp_Object prev_window
, prev_buffer
;
3246 prev_window
= selected_window
;
3247 XSETBUFFER (prev_buffer
, old
);
3249 /* Select the window that was chosen, for running the hook.
3250 Note: Both Fselect_window and select_window_norecord may
3251 set-buffer to the buffer displayed in the window,
3252 so we need to save the current buffer. --stef */
3253 record_unwind_protect (Fset_buffer
, prev_buffer
);
3254 record_unwind_protect (select_window_norecord
, prev_window
);
3255 Fselect_window (window
, Qt
);
3256 Fset_buffer (w
->buffer
);
3257 Frun_hooks (1, &Qtemp_buffer_show_hook
);
3258 unbind_to (count
, Qnil
);
3263 DEFUN ("internal-temp-output-buffer-show",
3264 Ftemp_output_buffer_show
, Stemp_output_buffer_show
,
3266 doc
: /* Internal function for `with-output-to-temp-buffer''. */)
3269 temp_output_buffer_show (buf
);
3273 /* Make new window, have it replace WINDOW in window-tree, and make
3274 WINDOW its only vertical child (HORFLAG 1 means make WINDOW its only
3275 horizontal child). */
3277 make_parent_window (Lisp_Object window
, int horflag
)
3280 register struct window
*o
, *p
;
3283 o
= XWINDOW (window
);
3284 p
= allocate_window ();
3285 for (i
= 0; i
< VECSIZE (struct window
); ++i
)
3286 ((struct Lisp_Vector
*) p
)->contents
[i
]
3287 = ((struct Lisp_Vector
*) o
)->contents
[i
];
3288 XSETWINDOW (parent
, p
);
3291 XSETFASTINT (p
->sequence_number
, sequence_number
);
3292 XSETFASTINT (p
->clone_number
, sequence_number
);
3294 replace_window (window
, parent
, 1);
3300 p
->hchild
= horflag
? window
: Qnil
;
3301 p
->vchild
= horflag
? Qnil
: window
;
3307 p
->window_parameters
= Qnil
;
3310 /* Make new window from scratch. */
3315 register struct window
*w
;
3317 w
= allocate_window ();
3318 /* Initialize all Lisp data. */
3319 w
->frame
= w
->mini_p
= Qnil
;
3320 w
->next
= w
->prev
= w
->hchild
= w
->vchild
= w
->parent
= Qnil
;
3321 XSETFASTINT (w
->left_col
, 0);
3322 XSETFASTINT (w
->top_line
, 0);
3323 XSETFASTINT (w
->total_lines
, 0);
3324 XSETFASTINT (w
->total_cols
, 0);
3325 w
->normal_lines
= make_float (1.0);
3326 w
->normal_cols
= make_float (1.0);
3327 XSETFASTINT (w
->new_total
, 0);
3328 XSETFASTINT (w
->new_normal
, 0);
3330 w
->start
= Fmake_marker ();
3331 w
->pointm
= Fmake_marker ();
3332 w
->force_start
= w
->optional_new_start
= Qnil
;
3333 XSETFASTINT (w
->hscroll
, 0);
3334 XSETFASTINT (w
->min_hscroll
, 0);
3335 XSETFASTINT (w
->use_time
, 0);
3337 XSETFASTINT (w
->sequence_number
, sequence_number
);
3338 XSETFASTINT (w
->clone_number
, sequence_number
);
3339 w
->temslot
= w
->last_modified
= w
->last_overlay_modified
= Qnil
;
3340 XSETFASTINT (w
->last_point
, 0);
3341 w
->last_had_star
= w
->vertical_scroll_bar
= Qnil
;
3342 w
->left_margin_cols
= w
->right_margin_cols
= Qnil
;
3343 w
->left_fringe_width
= w
->right_fringe_width
= Qnil
;
3344 w
->fringes_outside_margins
= Qnil
;
3345 w
->scroll_bar_width
= Qnil
;
3346 w
->vertical_scroll_bar_type
= Qt
;
3347 w
->last_mark_x
= w
->last_mark_y
= Qnil
;
3348 XSETFASTINT (w
->window_end_pos
, 0);
3349 XSETFASTINT (w
->window_end_vpos
, 0);
3350 w
->window_end_valid
= w
->update_mode_line
= Qnil
;
3351 w
->start_at_line_beg
= w
->display_table
= w
->dedicated
= Qnil
;
3352 w
->base_line_number
= w
->base_line_pos
= w
->region_showing
= Qnil
;
3353 w
->column_number_displayed
= w
->redisplay_end_trigger
= Qnil
;
3354 w
->splits
= w
->nest
= w
->window_parameters
= Qnil
;
3355 w
->prev_buffers
= w
->next_buffers
= Qnil
;
3356 /* Initialize non-Lisp data. */
3357 w
->desired_matrix
= w
->current_matrix
= 0;
3358 w
->nrows_scale_factor
= w
->ncols_scale_factor
= 1;
3359 memset (&w
->cursor
, 0, sizeof (w
->cursor
));
3360 memset (&w
->last_cursor
, 0, sizeof (w
->last_cursor
));
3361 memset (&w
->phys_cursor
, 0, sizeof (w
->phys_cursor
));
3362 w
->phys_cursor_type
= -1;
3363 w
->phys_cursor_width
= -1;
3364 w
->last_cursor_off_p
= w
->cursor_off_p
= 0;
3365 w
->must_be_updated_p
= 0;
3366 w
->pseudo_window_p
= 0;
3367 w
->frozen_window_start_p
= 0;
3369 /* Reset window_list. */
3370 Vwindow_list
= Qnil
;
3371 /* Return window. */
3372 XSETWINDOW (window
, w
);
3376 DEFUN ("set-window-new-total", Fset_window_new_total
, Sset_window_new_total
, 2, 3, 0,
3377 doc
: /* Set new total size of WINDOW to SIZE.
3380 Optional argument ADD non-nil means add SIZE to the new total size of
3381 WINDOW and return the sum.
3383 Note: This function does not operate on any subwindows of WINDOW. */)
3384 (Lisp_Object window
, Lisp_Object size
, Lisp_Object add
)
3386 struct window
*w
= decode_any_window (window
);
3388 CHECK_NUMBER (size
);
3390 XSETINT (w
->new_total
, XINT (size
));
3392 XSETINT (w
->new_total
, XINT (w
->new_total
) + XINT (size
));
3394 return w
->new_total
;
3397 DEFUN ("set-window-new-normal", Fset_window_new_normal
, Sset_window_new_normal
, 1, 2, 0,
3398 doc
: /* Set new normal size of WINDOW to SIZE.
3401 Note: This function does not operate on any subwindows of WINDOW. */)
3402 (Lisp_Object window
, Lisp_Object size
)
3404 struct window
*w
= decode_any_window (window
);
3406 w
->new_normal
= size
;
3407 return w
->new_normal
;
3410 /* Return 1 if setting w->total_lines (w->total_cols if HORFLAG is
3411 non-zero) to w->new_total would result in correct heights (widths)
3412 for window W and recursively all subwindows of W.
3414 Note: This function does not check any of `window-fixed-size-p',
3415 `window-min-height' or `window-min-width'. It does check that window
3416 sizes do not drop below one line (two columns). */
3418 window_resize_check (struct window
*w
, int horflag
)
3422 if (!NILP (w
->vchild
))
3423 /* W is a vertical combination. */
3425 c
= XWINDOW (w
->vchild
);
3427 /* All subwindows of W must have the same width as W. */
3431 if ((XINT (c
->new_total
) != XINT (w
->new_total
))
3432 || !window_resize_check (c
, horflag
))
3434 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3439 /* The sum of the heights of the subwindows of W must equal W's
3442 int sum_of_sizes
= 0;
3445 if (!window_resize_check (c
, horflag
))
3447 sum_of_sizes
= sum_of_sizes
+ XINT (c
->new_total
);
3448 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3450 return (sum_of_sizes
== XINT (w
->new_total
));
3453 else if (!NILP (w
->hchild
))
3454 /* W is a horizontal combination. */
3456 c
= XWINDOW (w
->hchild
);
3458 /* The sum of the widths of the subwindows of W must equal W's
3461 int sum_of_sizes
= 0;
3464 if (!window_resize_check (c
, horflag
))
3466 sum_of_sizes
= sum_of_sizes
+ XINT (c
->new_total
);
3467 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3469 return (sum_of_sizes
== XINT (w
->new_total
));
3472 /* All subwindows of W must have the same height as W. */
3476 if ((XINT (c
->new_total
) != XINT (w
->new_total
))
3477 || !window_resize_check (c
, horflag
))
3479 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3485 /* A leaf window. Make sure it's not too small. The following
3486 hardcodes the values of `window-safe-min-width' (2) and
3487 `window-safe-min-height' (1) which are defined in window.el. */
3488 return XINT (w
->new_total
) >= (horflag
? 2 : 1);
3491 /* Set w->total_lines (w->total_cols if HORIZONTAL is non-zero) to
3492 w->new_total for window W and recursively all subwindows of W. Also
3493 calculate and assign the new vertical (horizontal) start positions of
3494 each of these windows.
3496 This function does not perform any error checks. Make sure you have
3497 run window_resize_check on W before applying this function. */
3499 window_resize_apply (struct window
*w
, int horflag
)
3504 /* Note: Assigning new_normal requires that the new total size of the
3505 parent window has been set *before*. */
3508 w
->total_cols
= w
->new_total
;
3509 if (NUMBERP (w
->new_normal
))
3510 w
->normal_cols
= w
->new_normal
;
3512 pos
= XINT (w
->left_col
);
3516 w
->total_lines
= w
->new_total
;
3517 if (NUMBERP (w
->new_normal
))
3518 w
->normal_lines
= w
->new_normal
;
3520 pos
= XINT (w
->top_line
);
3523 if (!NILP (w
->vchild
))
3524 /* W is a vertical combination. */
3526 c
= XWINDOW (w
->vchild
);
3530 XSETFASTINT (c
->left_col
, pos
);
3532 XSETFASTINT (c
->top_line
, pos
);
3533 window_resize_apply (c
, horflag
);
3535 pos
= pos
+ XINT (c
->total_lines
);
3536 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3539 else if (!NILP (w
->hchild
))
3540 /* W is a horizontal combination. */
3542 c
= XWINDOW (w
->hchild
);
3546 XSETFASTINT (c
->left_col
, pos
);
3548 XSETFASTINT (c
->top_line
, pos
);
3549 window_resize_apply (c
, horflag
);
3551 pos
= pos
+ XINT (c
->total_cols
);
3552 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3556 /* Clear out some redisplay caches. */
3557 XSETFASTINT (w
->last_modified
, 0);
3558 XSETFASTINT (w
->last_overlay_modified
, 0);
3562 DEFUN ("window-resize-apply", Fwindow_resize_apply
, Swindow_resize_apply
, 1, 2, 0,
3563 doc
: /* Apply requested size values for window-tree of FRAME.
3564 Optional argument HORIZONTAL omitted or nil means apply requested height
3565 values. HORIZONTAL non-nil means apply requested width values.
3567 This function checks whether the requested values sum up to a valid
3568 window layout, recursively assigns the new sizes of all subwindows and
3569 calculates and assigns the new start positions of these windows.
3571 Note: This function does not check any of `window-fixed-size-p',
3572 `window-min-height' or `window-min-width'. All these checks have to
3573 be applied on the Elisp level. */)
3574 (Lisp_Object frame
, Lisp_Object horizontal
)
3578 int horflag
= !NILP (horizontal
);
3581 frame
= selected_frame
;
3582 CHECK_LIVE_FRAME (frame
);
3585 r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
3587 if (!window_resize_check (r
, horflag
)
3588 || ! EQ (r
->new_total
, (horflag
? r
->total_cols
: r
->total_lines
)))
3592 window_resize_apply (r
, horflag
);
3594 windows_or_buffers_changed
++;
3595 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
3600 run_window_configuration_change_hook (f
);
3606 /* Resize frame F's windows when number of lines of F is set to SIZE.
3607 HORFLAG 1 means resize windows when number of columns of F is set to
3610 This function can delete all windows but the selected one in order to
3611 satisfy the request. The result will be meaningful if and only if
3612 F's windows have meaningful sizes when you call this. */
3614 resize_frame_windows (struct frame
*f
, int size
, int horflag
)
3616 Lisp_Object root
= f
->root_window
;
3617 struct window
*r
= XWINDOW (root
);
3618 Lisp_Object mini
= f
->minibuffer_window
;
3620 /* new_size is the new size of the frame's root window. */
3621 int new_size
= (horflag
3624 - FRAME_TOP_MARGIN (f
)
3625 - ((FRAME_HAS_MINIBUF_P (f
) && !FRAME_MINIBUF_ONLY_P (f
))
3628 XSETFASTINT (r
->top_line
, FRAME_TOP_MARGIN (f
));
3629 if (NILP (r
->vchild
) && NILP (r
->hchild
))
3630 /* For a leaf root window just set the size. */
3632 XSETFASTINT (r
->total_cols
, new_size
);
3634 XSETFASTINT (r
->total_lines
, new_size
);
3637 /* old_size is the old size of the frame's root window. */
3638 int old_size
= XFASTINT (horflag
? r
->total_cols
: r
->total_lines
);
3641 XSETINT (delta
, new_size
- old_size
);
3642 /* Try a "normal" resize first. */
3643 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qnil
);
3644 if (window_resize_check (r
, horflag
) && new_size
== XINT (r
->new_total
))
3645 window_resize_apply (r
, horflag
);
3648 /* Try with "reasonable" minimum sizes next. */
3649 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qt
);
3650 if (window_resize_check (r
, horflag
)
3651 && new_size
== XINT (r
->new_total
))
3652 window_resize_apply (r
, horflag
);
3655 /* Finally, try with "safe" minimum sizes. */
3656 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qsafe
);
3657 if (window_resize_check (r
, horflag
)
3658 && new_size
== XINT (r
->new_total
))
3659 window_resize_apply (r
, horflag
);
3662 /* We lost. Delete all windows but the frame's
3664 root
= f
->selected_window
;
3665 Fdelete_other_windows_internal (root
, Qnil
);
3667 XSETFASTINT (XWINDOW (root
)->total_cols
, new_size
);
3669 XSETFASTINT (XWINDOW (root
)->total_lines
, new_size
);
3675 if (FRAME_HAS_MINIBUF_P (f
) && !FRAME_MINIBUF_ONLY_P (f
))
3679 XSETFASTINT (m
->total_cols
, size
);
3682 /* Are we sure we always want 1 line here? */
3683 XSETFASTINT (m
->total_lines
, 1);
3684 XSETFASTINT (m
->top_line
, XINT (r
->top_line
) + XINT (r
->total_lines
));
3690 DEFUN ("split-window-internal", Fsplit_window_internal
, Ssplit_window_internal
, 4, 4, 0,
3691 doc
: /* Split window OLD.
3692 Second argument TOTAL-SIZE specifies the number of lines or columns of the
3693 new window. In any case TOTAL-SIZE must be a positive integer.
3695 Third argument SIDE nil (or `below') specifies that the new window shall
3696 be located below WINDOW. SIDE `above' means the new window shall be
3697 located above WINDOW. In both cases TOTAL-SIZE specifies the number of
3698 lines of the new window including space reserved for the mode and/or
3701 SIDE t (or `right') specifies that the new window shall be located on
3702 the right side of WINDOW. SIDE `left' means the new window shall be
3703 located on the left of WINDOW. In both cases TOTAL-SIZE specifies the
3704 number of columns of the new window including space reserved for fringes
3705 and the scrollbar or a divider column.
3707 Fourth argument NORMAL-SIZE specifies the normal size of the new window
3708 according to the SIDE argument.
3710 The new total and normal sizes of all involved windows must have been
3711 set correctly. See the code of `split-window' for how this is done. */)
3712 (Lisp_Object old
, Lisp_Object total_size
, Lisp_Object side
, Lisp_Object normal_size
)
3714 /* OLD (*o) is the window we have to split. (*p) is either OLD's
3715 parent window or an internal window we have to install as OLD's new
3716 parent. REFERENCE (*r) must denote a live window, or is set to OLD
3717 provided OLD is a leaf window, or to the frame's selected window.
3718 NEW (*n) is the new window created with some parameters taken from
3720 register Lisp_Object
new, frame
, reference
;
3721 register struct window
*o
, *p
, *n
, *r
;
3724 /* HORFLAG is 1 when we split side-by-side, 0 otherwise. */
3725 = EQ (side
, Qt
) || EQ (side
, Qleft
) || EQ (side
, Qright
);
3730 frame
= WINDOW_FRAME (o
);
3733 CHECK_NUMBER (total_size
);
3735 /* Set do_nest to 1 if we have to make a new parent window. We do
3736 that if either `window-nest' is non-nil, or OLD has no parent, or
3737 OLD is ortho-combined. */
3739 !NILP (Vwindow_nest
)
3742 ? (XWINDOW (o
->parent
)->hchild
)
3743 : (XWINDOW (o
->parent
)->vchild
));
3745 /* We need a live reference window to initialize some parameters. */
3746 if (WINDOW_LIVE_P (old
))
3747 /* OLD is live, use it as reference window. */
3750 /* Use the frame's selected window as reference window. */
3751 reference
= FRAME_SELECTED_WINDOW (f
);
3752 r
= XWINDOW (reference
);
3754 /* The following bugs are caught by `split-window'. */
3755 if (MINI_WINDOW_P (o
))
3756 error ("Attempt to split minibuffer window");
3757 else if (XINT (total_size
) < (horflag
? 2 : 1))
3758 error ("Size of new window too small (after split)");
3759 else if (!do_nest
&& !NILP (Vwindow_splits
))
3760 /* `window-splits' non-nil means try to resize OLD's siblings
3763 p
= XWINDOW (o
->parent
);
3764 /* Temporarily pretend we split the parent window. */
3765 XSETINT (p
->new_total
,
3766 XINT (horflag
? p
->total_cols
: p
->total_lines
)
3767 - XINT (total_size
));
3768 if (!window_resize_check (p
, horflag
))
3769 error ("Window sizes don't fit");
3771 /* Undo the temporary pretension. */
3772 p
->new_total
= horflag
? p
->total_cols
: p
->total_lines
;
3776 if (!window_resize_check (o
, horflag
))
3777 error ("Resizing old window failed");
3778 else if (XINT (total_size
) + XINT (o
->new_total
)
3779 != XINT (horflag
? o
->total_cols
: o
->total_lines
))
3780 error ("Sum of sizes of old and new window don't fit");
3783 /* This is our point of no return. */
3786 /* Save the old value of o->normal_cols/lines. It gets corrupted
3787 by make_parent_window and we need it below for assigning it to
3789 Lisp_Object new_normal
= horflag
? o
->normal_cols
: o
->normal_lines
;
3791 make_parent_window (old
, horflag
);
3792 p
= XWINDOW (o
->parent
);
3793 /* Store value of `window-nest' in new parent's nest slot. */
3794 p
->nest
= Vwindow_nest
;
3795 /* Have PARENT inherit splits slot value from OLD. */
3796 p
->splits
= o
->splits
;
3797 /* Store value of `window-splits' in OLD's splits slot. */
3798 o
->splits
= Vwindow_splits
;
3799 /* These get applied below. */
3800 p
->new_total
= horflag
? o
->total_cols
: o
->total_lines
;
3801 p
->new_normal
= new_normal
;
3804 p
= XWINDOW (o
->parent
);
3806 windows_or_buffers_changed
++;
3807 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
3808 new = make_window ();
3811 n
->parent
= o
->parent
;
3812 n
->vchild
= n
->hchild
= Qnil
;
3814 if (EQ (side
, Qabove
) || EQ (side
, Qleft
))
3823 XWINDOW (n
->prev
)->next
= new;
3830 if (!NILP (n
->next
))
3831 XWINDOW (n
->next
)->prev
= new;
3837 n
->window_end_valid
= Qnil
;
3838 memset (&n
->last_cursor
, 0, sizeof n
->last_cursor
);
3840 /* Get special geometry settings from reference window. */
3841 n
->left_margin_cols
= r
->left_margin_cols
;
3842 n
->right_margin_cols
= r
->right_margin_cols
;
3843 n
->left_fringe_width
= r
->left_fringe_width
;
3844 n
->right_fringe_width
= r
->right_fringe_width
;
3845 n
->fringes_outside_margins
= r
->fringes_outside_margins
;
3846 n
->scroll_bar_width
= r
->scroll_bar_width
;
3847 n
->vertical_scroll_bar_type
= r
->vertical_scroll_bar_type
;
3849 /* Store `window-splits' in NEW's splits slot. */
3850 n
->splits
= Vwindow_splits
;
3852 /* Directly assign orthogonal coordinates and sizes. */
3855 n
->top_line
= o
->top_line
;
3856 n
->total_lines
= o
->total_lines
;
3860 n
->left_col
= o
->left_col
;
3861 n
->total_cols
= o
->total_cols
;
3864 /* Iso-coordinates and sizes are assigned by window_resize_apply,
3865 get them ready here. */
3866 n
->new_total
= total_size
;
3867 n
->new_normal
= normal_size
;
3870 window_resize_apply (p
, horflag
);
3872 /* Set buffer of NEW to buffer of reference window. Don't run
3874 set_window_buffer (new, r
->buffer
, 0, 1);
3877 /* Maybe we should run the scroll functions in Elisp (which already
3878 runs the configuration change hook). */
3879 if (! NILP (Vwindow_scroll_functions
))
3880 run_hook_with_args_2 (Qwindow_scroll_functions
, new,
3881 Fmarker_position (n
->start
));
3887 DEFUN ("delete-window-internal", Fdelete_window_internal
, Sdelete_window_internal
, 1, 1, 0,
3888 doc
: /* Remove WINDOW from its frame.
3889 WINDOW defaults to the selected window. Return nil. Signal an error
3890 when WINDOW is the only window on its frame. */)
3891 (register Lisp_Object window
)
3893 register Lisp_Object parent
, sibling
, frame
, root
;
3894 struct window
*w
, *p
, *s
, *r
;
3897 int before_sibling
= 0;
3899 w
= decode_any_window (window
);
3900 XSETWINDOW (window
, w
);
3901 if (NILP (w
->buffer
) && NILP (w
->hchild
) && NILP (w
->vchild
))
3902 /* It's a no-op to delete an already deleted window. */
3907 /* Never delete a minibuffer or frame root window. */
3908 error ("Attempt to delete minibuffer or sole ordinary window");
3909 else if (NILP (w
->prev
) && NILP (w
->next
))
3910 /* Rather bow out here, this case should be handled on the Elisp
3912 error ("Attempt to delete sole window of parent");
3914 p
= XWINDOW (parent
);
3915 horflag
= NILP (p
->vchild
);
3917 frame
= WINDOW_FRAME (w
);
3920 root
= FRAME_ROOT_WINDOW (f
);
3923 /* Unlink WINDOW from window tree. */
3925 /* Get SIBLING below (on the right of) WINDOW. */
3927 /* before_sibling 1 means WINDOW is the first child of its
3928 parent and thus before the sibling. */
3931 s
= XWINDOW (sibling
);
3934 p
->hchild
= sibling
;
3936 p
->vchild
= sibling
;
3939 /* Get SIBLING above (on the left of) WINDOW. */
3942 s
= XWINDOW (sibling
);
3944 if (!NILP (s
->next
))
3945 XWINDOW (s
->next
)->prev
= sibling
;
3948 if (window_resize_check (r
, horflag
)
3949 && EQ (r
->new_total
, (horflag
? r
->total_cols
: r
->total_lines
)))
3950 /* We can delete WINDOW now. */
3954 window_resize_apply (p
, horflag
);
3956 windows_or_buffers_changed
++;
3957 Vwindow_list
= Qnil
;
3958 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
3960 w
->next
= Qnil
; /* Don't delete w->next too. */
3961 free_window_matrices (w
);
3963 if (!NILP (w
->vchild
))
3965 delete_all_subwindows (w
->vchild
);
3968 else if (!NILP (w
->hchild
))
3970 delete_all_subwindows (w
->hchild
);
3973 else if (!NILP (w
->buffer
))
3976 unchain_marker (XMARKER (w
->pointm
));
3977 unchain_marker (XMARKER (w
->start
));
3981 if (NILP (s
->prev
) && NILP (s
->next
))
3982 /* A matrjoshka where SIBLING has become the only child of
3985 /* Put SIBLING into PARENT's place. */
3986 replace_window (parent
, sibling
, 0);
3987 /* Have SIBLING inherit the following three slot values from
3988 PARENT (the nest slot is not inherited). */
3989 s
->normal_cols
= p
->normal_cols
;
3990 s
->normal_lines
= p
->normal_lines
;
3991 s
->splits
= p
->splits
;
3992 /* Mark PARENT as deleted. */
3993 p
->vchild
= p
->hchild
= Qnil
;
3994 /* Try to merge SIBLING into its new parent. */
3995 recombine_windows (sibling
);
4000 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f
)))
4001 /* We deleted the frame's selected window. */
4003 /* Use the frame's first window as fallback ... */
4004 Lisp_Object new_selected_window
= Fframe_first_window (frame
);
4005 /* ... but preferably use its most recently used window. */
4006 Lisp_Object mru_window
;
4008 /* `get-mru-window' might fail for some reason so play it safe
4009 - promote the first window _without recording it_ first. */
4010 if (EQ (FRAME_SELECTED_WINDOW (f
), selected_window
))
4011 Fselect_window (new_selected_window
, Qt
);
4013 FRAME_SELECTED_WINDOW (f
) = new_selected_window
;
4017 /* Now look whether `get-mru-window' gets us something. */
4018 mru_window
= call1 (Qget_mru_window
, frame
);
4019 if (WINDOW_LIVE_P (mru_window
)
4020 && EQ (XWINDOW (mru_window
)->frame
, frame
))
4021 new_selected_window
= mru_window
;
4023 /* If all ended up well, we now promote the mru window. */
4024 if (EQ (FRAME_SELECTED_WINDOW (f
), selected_window
))
4025 Fselect_window (new_selected_window
, Qnil
);
4027 FRAME_SELECTED_WINDOW (f
) = new_selected_window
;
4032 /* Must be run by the caller:
4033 run_window_configuration_change_hook (f); */
4036 /* We failed: Relink WINDOW into window tree. */
4049 if (!NILP (w
->next
))
4050 XWINDOW (w
->next
)->prev
= window
;
4052 error ("Deletion failed");
4058 /***********************************************************************
4059 Resizing Mini-Windows
4060 ***********************************************************************/
4062 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4065 grow_mini_window (struct window
*w
, int delta
)
4067 struct frame
*f
= XFRAME (w
->frame
);
4069 Lisp_Object root
, value
;
4071 xassert (MINI_WINDOW_P (w
));
4072 xassert (delta
>= 0);
4074 root
= FRAME_ROOT_WINDOW (f
);
4076 value
= call2 (Qwindow_resize_root_window_vertically
,
4077 root
, make_number (- delta
));
4078 if (INTEGERP (value
) && window_resize_check (r
, 0))
4081 window_resize_apply (r
, 0);
4083 /* Grow the mini-window. */
4084 XSETFASTINT (w
->top_line
, XFASTINT (r
->top_line
) + XFASTINT (r
->total_lines
));
4085 XSETFASTINT (w
->total_lines
, XFASTINT (w
->total_lines
) - XINT (value
));
4086 XSETFASTINT (w
->last_modified
, 0);
4087 XSETFASTINT (w
->last_overlay_modified
, 0);
4095 /* Shrink mini-window W. */
4097 shrink_mini_window (struct window
*w
)
4099 struct frame
*f
= XFRAME (w
->frame
);
4101 Lisp_Object root
, value
;
4104 xassert (MINI_WINDOW_P (w
));
4106 size
= XINT (w
->total_lines
);
4109 root
= FRAME_ROOT_WINDOW (f
);
4111 value
= call2 (Qwindow_resize_root_window_vertically
,
4112 root
, make_number (size
- 1));
4113 if (INTEGERP (value
) && window_resize_check (r
, 0))
4116 window_resize_apply (r
, 0);
4118 /* Shrink the mini-window. */
4119 XSETFASTINT (w
->top_line
, XFASTINT (r
->top_line
) + XFASTINT (r
->total_lines
));
4120 XSETFASTINT (w
->total_lines
, 1);
4122 XSETFASTINT (w
->last_modified
, 0);
4123 XSETFASTINT (w
->last_overlay_modified
, 0);
4128 /* If the above failed for whatever strange reason we must make a
4129 one window frame here. The same routine will be needed when
4130 shrinking the frame (and probably when making the initial
4131 *scratch* window). For the moment leave things as they are. */
4135 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal
, Sresize_mini_window_internal
, 1, 1, 0,
4136 doc
: /* Resize minibuffer window WINDOW. */)
4137 (Lisp_Object window
)
4139 struct window
*w
= XWINDOW (window
);
4144 CHECK_WINDOW (window
);
4145 f
= XFRAME (w
->frame
);
4147 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w
->frame
)), window
))
4148 error ("Not a valid minibuffer window");
4149 else if (FRAME_MINIBUF_ONLY_P (f
))
4150 error ("Cannot resize a minibuffer-only frame");
4152 r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
4153 height
= XINT (r
->total_lines
) + XINT (w
->total_lines
);
4154 if (window_resize_check (r
, 0)
4155 && XINT (w
->new_total
) > 0
4156 && height
== XINT (r
->new_total
) + XINT (w
->new_total
))
4159 window_resize_apply (r
, 0);
4161 w
->total_lines
= w
->new_total
;
4162 XSETFASTINT (w
->top_line
, XINT (r
->top_line
) + XINT (r
->total_lines
));
4164 windows_or_buffers_changed
++;
4165 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
4169 run_window_configuration_change_hook (f
);
4172 else error ("Failed to resize minibuffer window");
4175 /* Mark window cursors off for all windows in the window tree rooted
4176 at W by setting their phys_cursor_on_p flag to zero. Called from
4177 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4178 the frame are cleared. */
4181 mark_window_cursors_off (struct window
*w
)
4185 if (!NILP (w
->hchild
))
4186 mark_window_cursors_off (XWINDOW (w
->hchild
));
4187 else if (!NILP (w
->vchild
))
4188 mark_window_cursors_off (XWINDOW (w
->vchild
));
4190 w
->phys_cursor_on_p
= 0;
4192 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
4197 /* Return number of lines of text (not counting mode lines) in W. */
4200 window_internal_height (struct window
*w
)
4202 int ht
= XFASTINT (w
->total_lines
);
4204 if (!MINI_WINDOW_P (w
))
4206 if (!NILP (w
->parent
)
4207 || !NILP (w
->vchild
)
4208 || !NILP (w
->hchild
)
4211 || WINDOW_WANTS_MODELINE_P (w
))
4214 if (WINDOW_WANTS_HEADER_LINE_P (w
))
4221 /************************************************************************
4223 ***********************************************************************/
4225 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
4226 N screen-fulls, which is defined as the height of the window minus
4227 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4228 instead. Negative values of N mean scroll down. NOERROR non-zero
4229 means don't signal an error if we try to move over BEGV or ZV,
4233 window_scroll (Lisp_Object window
, int n
, int whole
, int noerror
)
4237 /* If we must, use the pixel-based version which is much slower than
4238 the line-based one but can handle varying line heights. */
4239 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window
)->frame
)))
4240 window_scroll_pixel_based (window
, n
, whole
, noerror
);
4242 window_scroll_line_based (window
, n
, whole
, noerror
);
4248 /* Implementation of window_scroll that works based on pixel line
4249 heights. See the comment of window_scroll for parameter
4253 window_scroll_pixel_based (Lisp_Object window
, int n
, int whole
, int noerror
)
4256 struct window
*w
= XWINDOW (window
);
4257 struct text_pos start
;
4258 int this_scroll_margin
;
4259 /* True if we fiddled the window vscroll field without really scrolling. */
4261 int x
, y
, rtop
, rbot
, rowh
, vpos
;
4263 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
4265 /* If PT is not visible in WINDOW, move back one half of
4266 the screen. Allow PT to be partially visible, otherwise
4267 something like (scroll-down 1) with PT in the line before
4268 the partially visible one would recenter. */
4270 if (!pos_visible_p (w
, PT
, &x
, &y
, &rtop
, &rbot
, &rowh
, &vpos
))
4272 /* Move backward half the height of the window. Performance note:
4273 vmotion used here is about 10% faster, but would give wrong
4274 results for variable height lines. */
4275 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
4276 it
.current_y
= it
.last_visible_y
;
4277 move_it_vertically_backward (&it
, window_box_height (w
) / 2);
4279 /* The function move_iterator_vertically may move over more than
4280 the specified y-distance. If it->w is small, e.g. a
4281 mini-buffer window, we may end up in front of the window's
4282 display area. This is the case when Start displaying at the
4283 start of the line containing PT in this case. */
4284 if (it
.current_y
<= 0)
4286 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
4287 move_it_vertically_backward (&it
, 0);
4291 start
= it
.current
.pos
;
4293 else if (auto_window_vscroll_p
)
4295 if (rtop
|| rbot
) /* partially visible */
4298 int dy
= WINDOW_FRAME_LINE_HEIGHT (w
);
4300 dy
= max ((window_box_height (w
)
4301 - next_screen_context_lines
* dy
),
4307 /* Only vscroll backwards if already vscrolled forwards. */
4308 if (w
->vscroll
< 0 && rtop
> 0)
4310 px
= max (0, -w
->vscroll
- min (rtop
, -dy
));
4311 Fset_window_vscroll (window
, make_number (px
), Qt
);
4317 /* Do vscroll if already vscrolled or only display line. */
4318 if (rbot
> 0 && (w
->vscroll
< 0 || vpos
== 0))
4320 px
= max (0, -w
->vscroll
+ min (rbot
, dy
));
4321 Fset_window_vscroll (window
, make_number (px
), Qt
);
4325 /* Maybe modify window start instead of scrolling. */
4326 if (rbot
> 0 || w
->vscroll
< 0)
4330 Fset_window_vscroll (window
, make_number (0), Qt
);
4331 /* If there are other text lines above the current row,
4332 move window start to current row. Else to next row. */
4334 spos
= XINT (Fline_beginning_position (Qnil
));
4336 spos
= min (XINT (Fline_end_position (Qnil
)) + 1, ZV
);
4337 set_marker_restricted (w
->start
, make_number (spos
),
4339 w
->start_at_line_beg
= Qt
;
4340 w
->update_mode_line
= Qt
;
4341 XSETFASTINT (w
->last_modified
, 0);
4342 XSETFASTINT (w
->last_overlay_modified
, 0);
4343 /* Set force_start so that redisplay_window will run the
4344 window-scroll-functions. */
4345 w
->force_start
= Qt
;
4350 /* Cancel previous vscroll. */
4351 Fset_window_vscroll (window
, make_number (0), Qt
);
4354 /* If scroll_preserve_screen_position is non-nil, we try to set
4355 point in the same window line as it is now, so get that line. */
4356 if (!NILP (Vscroll_preserve_screen_position
))
4358 /* We preserve the goal pixel coordinate across consecutive
4359 calls to scroll-up, scroll-down and other commands that
4360 have the `scroll-command' property. This avoids the
4361 possibility of point becoming "stuck" on a tall line when
4362 scrolling by one line. */
4363 if (window_scroll_pixel_based_preserve_y
< 0
4364 || !SYMBOLP (KVAR (current_kboard
, Vlast_command
))
4365 || NILP (Fget (KVAR (current_kboard
, Vlast_command
), Qscroll_command
)))
4367 start_display (&it
, w
, start
);
4368 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
4369 window_scroll_pixel_based_preserve_y
= it
.current_y
;
4370 window_scroll_pixel_based_preserve_x
= it
.current_x
;
4374 window_scroll_pixel_based_preserve_y
4375 = window_scroll_pixel_based_preserve_x
= -1;
4377 /* Move iterator it from start the specified distance forward or
4378 backward. The result is the new window start. */
4379 start_display (&it
, w
, start
);
4382 EMACS_INT start_pos
= IT_CHARPOS (it
);
4383 int dy
= WINDOW_FRAME_LINE_HEIGHT (w
);
4384 dy
= max ((window_box_height (w
)
4385 - next_screen_context_lines
* dy
),
4388 /* Note that move_it_vertically always moves the iterator to the
4389 start of a line. So, if the last line doesn't have a newline,
4390 we would end up at the start of the line ending at ZV. */
4393 move_it_vertically_backward (&it
, -dy
);
4394 /* Ensure we actually do move, e.g. in case we are currently
4395 looking at an image that is taller that the window height. */
4396 while (start_pos
== IT_CHARPOS (it
)
4397 && start_pos
> BEGV
)
4398 move_it_by_lines (&it
, -1);
4402 move_it_to (&it
, ZV
, -1, it
.current_y
+ dy
, -1,
4403 MOVE_TO_POS
| MOVE_TO_Y
);
4404 /* Ensure we actually do move, e.g. in case we are currently
4405 looking at an image that is taller that the window height. */
4406 while (start_pos
== IT_CHARPOS (it
)
4408 move_it_by_lines (&it
, 1);
4412 move_it_by_lines (&it
, n
);
4414 /* We failed if we find ZV is already on the screen (scrolling up,
4415 means there's nothing past the end), or if we can't start any
4416 earlier (scrolling down, means there's nothing past the top). */
4417 if ((n
> 0 && IT_CHARPOS (it
) == ZV
)
4418 || (n
< 0 && IT_CHARPOS (it
) == CHARPOS (start
)))
4420 if (IT_CHARPOS (it
) == ZV
)
4422 if (it
.current_y
< it
.last_visible_y
4423 && (it
.current_y
+ it
.max_ascent
+ it
.max_descent
4424 > it
.last_visible_y
))
4426 /* The last line was only partially visible, make it fully
4428 w
->vscroll
= (it
.last_visible_y
4429 - it
.current_y
+ it
.max_ascent
+ it
.max_descent
);
4430 adjust_glyphs (it
.f
);
4434 else if (n
< 0) /* could happen with empty buffers */
4435 xsignal0 (Qbeginning_of_buffer
);
4437 xsignal0 (Qend_of_buffer
);
4441 if (w
->vscroll
!= 0)
4442 /* The first line was only partially visible, make it fully
4448 xsignal0 (Qbeginning_of_buffer
);
4451 /* If control gets here, then we vscrolled. */
4453 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
4455 /* Don't try to change the window start below. */
4461 EMACS_INT pos
= IT_CHARPOS (it
);
4464 /* If in the middle of a multi-glyph character move forward to
4465 the next character. */
4466 if (in_display_vector_p (&it
))
4469 move_it_to (&it
, pos
, -1, -1, -1, MOVE_TO_POS
);
4472 /* Set the window start, and set up the window for redisplay. */
4473 set_marker_restricted (w
->start
, make_number (pos
),
4475 bytepos
= XMARKER (w
->start
)->bytepos
;
4476 w
->start_at_line_beg
= ((pos
== BEGV
|| FETCH_BYTE (bytepos
- 1) == '\n')
4478 w
->update_mode_line
= Qt
;
4479 XSETFASTINT (w
->last_modified
, 0);
4480 XSETFASTINT (w
->last_overlay_modified
, 0);
4481 /* Set force_start so that redisplay_window will run the
4482 window-scroll-functions. */
4483 w
->force_start
= Qt
;
4486 /* The rest of this function uses current_y in a nonstandard way,
4487 not including the height of the header line if any. */
4488 it
.current_y
= it
.vpos
= 0;
4490 /* Move PT out of scroll margins.
4491 This code wants current_y to be zero at the window start position
4492 even if there is a header line. */
4493 this_scroll_margin
= max (0, scroll_margin
);
4494 this_scroll_margin
= min (this_scroll_margin
, XFASTINT (w
->total_lines
) / 4);
4495 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
4499 /* We moved the window start towards ZV, so PT may be now
4500 in the scroll margin at the top. */
4501 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
4502 if (IT_CHARPOS (it
) == PT
&& it
.current_y
>= this_scroll_margin
4503 && (NILP (Vscroll_preserve_screen_position
)
4504 || EQ (Vscroll_preserve_screen_position
, Qt
)))
4505 /* We found PT at a legitimate height. Leave it alone. */
4507 else if (window_scroll_pixel_based_preserve_y
>= 0)
4509 /* If we have a header line, take account of it.
4510 This is necessary because we set it.current_y to 0, above. */
4511 move_it_to (&it
, -1,
4512 window_scroll_pixel_based_preserve_x
,
4513 window_scroll_pixel_based_preserve_y
4514 - (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0 ),
4515 -1, MOVE_TO_Y
| MOVE_TO_X
);
4516 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4520 while (it
.current_y
< this_scroll_margin
)
4522 int prev
= it
.current_y
;
4523 move_it_by_lines (&it
, 1);
4524 if (prev
== it
.current_y
)
4527 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4532 EMACS_INT charpos
, bytepos
;
4535 /* Save our position, for the
4536 window_scroll_pixel_based_preserve_y case. */
4537 charpos
= IT_CHARPOS (it
);
4538 bytepos
= IT_BYTEPOS (it
);
4540 /* We moved the window start towards BEGV, so PT may be now
4541 in the scroll margin at the bottom. */
4542 move_it_to (&it
, PT
, -1,
4543 (it
.last_visible_y
- CURRENT_HEADER_LINE_HEIGHT (w
)
4544 - this_scroll_margin
- 1),
4546 MOVE_TO_POS
| MOVE_TO_Y
);
4548 /* Save our position, in case it's correct. */
4549 charpos
= IT_CHARPOS (it
);
4550 bytepos
= IT_BYTEPOS (it
);
4552 /* See if point is on a partially visible line at the end. */
4553 if (it
.what
== IT_EOB
)
4554 partial_p
= it
.current_y
+ it
.ascent
+ it
.descent
> it
.last_visible_y
;
4557 move_it_by_lines (&it
, 1);
4558 partial_p
= it
.current_y
> it
.last_visible_y
;
4561 if (charpos
== PT
&& !partial_p
4562 && (NILP (Vscroll_preserve_screen_position
)
4563 || EQ (Vscroll_preserve_screen_position
, Qt
)))
4564 /* We found PT before we found the display margin, so PT is ok. */
4566 else if (window_scroll_pixel_based_preserve_y
>= 0)
4568 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
4569 start_display (&it
, w
, start
);
4570 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
4571 here because we called start_display again and did not
4572 alter it.current_y this time. */
4573 move_it_to (&it
, -1, window_scroll_pixel_based_preserve_x
,
4574 window_scroll_pixel_based_preserve_y
, -1,
4575 MOVE_TO_Y
| MOVE_TO_X
);
4576 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4581 /* The last line was only partially visible, so back up two
4582 lines to make sure we're on a fully visible line. */
4584 move_it_by_lines (&it
, -2);
4585 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4588 /* No, the position we saved is OK, so use it. */
4589 SET_PT_BOTH (charpos
, bytepos
);
4595 /* Implementation of window_scroll that works based on screen lines.
4596 See the comment of window_scroll for parameter descriptions. */
4599 window_scroll_line_based (Lisp_Object window
, int n
, int whole
, int noerror
)
4601 register struct window
*w
= XWINDOW (window
);
4602 /* Fvertical_motion enters redisplay, which can trigger
4603 fontification, which in turn can modify buffer text (e.g., if the
4604 fontification functions replace escape sequences with faces, as
4605 in `grep-mode-font-lock-keywords'). So we use a marker to record
4606 the old point position, to prevent crashes in SET_PT_BOTH. */
4607 Lisp_Object opoint_marker
= Fpoint_marker ();
4608 register EMACS_INT pos
, pos_byte
;
4609 register int ht
= window_internal_height (w
);
4610 register Lisp_Object tem
;
4614 Lisp_Object original_pos
= Qnil
;
4616 /* If scrolling screen-fulls, compute the number of lines to
4617 scroll from the window's height. */
4619 n
*= max (1, ht
- next_screen_context_lines
);
4621 startpos
= marker_position (w
->start
);
4623 if (!NILP (Vscroll_preserve_screen_position
))
4625 if (window_scroll_preserve_vpos
<= 0
4626 || !SYMBOLP (KVAR (current_kboard
, Vlast_command
))
4627 || NILP (Fget (KVAR (current_kboard
, Vlast_command
), Qscroll_command
)))
4629 struct position posit
4630 = *compute_motion (startpos
, 0, 0, 0,
4632 -1, XINT (w
->hscroll
),
4634 window_scroll_preserve_vpos
= posit
.vpos
;
4635 window_scroll_preserve_hpos
= posit
.hpos
+ XINT (w
->hscroll
);
4638 original_pos
= Fcons (make_number (window_scroll_preserve_hpos
),
4639 make_number (window_scroll_preserve_vpos
));
4642 XSETFASTINT (tem
, PT
);
4643 tem
= Fpos_visible_in_window_p (tem
, window
, Qnil
);
4647 Fvertical_motion (make_number (- (ht
/ 2)), window
);
4652 lose
= n
< 0 && PT
== BEGV
;
4653 Fvertical_motion (make_number (n
), window
);
4657 SET_PT_BOTH (marker_position (opoint_marker
),
4658 marker_byte_position (opoint_marker
));
4665 xsignal0 (Qbeginning_of_buffer
);
4670 int this_scroll_margin
= scroll_margin
;
4672 /* Don't use a scroll margin that is negative or too large. */
4673 if (this_scroll_margin
< 0)
4674 this_scroll_margin
= 0;
4676 if (XINT (w
->total_lines
) < 4 * scroll_margin
)
4677 this_scroll_margin
= XINT (w
->total_lines
) / 4;
4679 set_marker_restricted_both (w
->start
, w
->buffer
, pos
, pos_byte
);
4680 w
->start_at_line_beg
= bolp
;
4681 w
->update_mode_line
= Qt
;
4682 XSETFASTINT (w
->last_modified
, 0);
4683 XSETFASTINT (w
->last_overlay_modified
, 0);
4684 /* Set force_start so that redisplay_window will run
4685 the window-scroll-functions. */
4686 w
->force_start
= Qt
;
4688 if (!NILP (Vscroll_preserve_screen_position
)
4689 && (whole
|| !EQ (Vscroll_preserve_screen_position
, Qt
)))
4691 SET_PT_BOTH (pos
, pos_byte
);
4692 Fvertical_motion (original_pos
, window
);
4694 /* If we scrolled forward, put point enough lines down
4695 that it is outside the scroll margin. */
4700 if (this_scroll_margin
> 0)
4702 SET_PT_BOTH (pos
, pos_byte
);
4703 Fvertical_motion (make_number (this_scroll_margin
), window
);
4709 if (top_margin
<= marker_position (opoint_marker
))
4710 SET_PT_BOTH (marker_position (opoint_marker
),
4711 marker_byte_position (opoint_marker
));
4712 else if (!NILP (Vscroll_preserve_screen_position
))
4714 SET_PT_BOTH (pos
, pos_byte
);
4715 Fvertical_motion (original_pos
, window
);
4718 SET_PT (top_margin
);
4724 /* If we scrolled backward, put point near the end of the window
4725 but not within the scroll margin. */
4726 SET_PT_BOTH (pos
, pos_byte
);
4727 tem
= Fvertical_motion (make_number (ht
- this_scroll_margin
), window
);
4728 if (XFASTINT (tem
) == ht
- this_scroll_margin
)
4731 bottom_margin
= PT
+ 1;
4733 if (bottom_margin
> marker_position (opoint_marker
))
4734 SET_PT_BOTH (marker_position (opoint_marker
),
4735 marker_byte_position (opoint_marker
));
4738 if (!NILP (Vscroll_preserve_screen_position
))
4740 SET_PT_BOTH (pos
, pos_byte
);
4741 Fvertical_motion (original_pos
, window
);
4744 Fvertical_motion (make_number (-1), window
);
4753 xsignal0 (Qend_of_buffer
);
4758 /* Scroll selected_window up or down. If N is nil, scroll a
4759 screen-full which is defined as the height of the window minus
4760 next_screen_context_lines. If N is the symbol `-', scroll.
4761 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4762 up. This is the guts of Fscroll_up and Fscroll_down. */
4765 scroll_command (Lisp_Object n
, int direction
)
4767 int count
= SPECPDL_INDEX ();
4769 xassert (eabs (direction
) == 1);
4771 /* If selected window's buffer isn't current, make it current for
4772 the moment. But don't screw up if window_scroll gets an error. */
4773 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
4775 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
4776 Fset_buffer (XWINDOW (selected_window
)->buffer
);
4778 /* Make redisplay consider other windows than just selected_window. */
4779 ++windows_or_buffers_changed
;
4783 window_scroll (selected_window
, direction
, 1, 0);
4784 else if (EQ (n
, Qminus
))
4785 window_scroll (selected_window
, -direction
, 1, 0);
4788 n
= Fprefix_numeric_value (n
);
4789 window_scroll (selected_window
, XINT (n
) * direction
, 0, 0);
4792 unbind_to (count
, Qnil
);
4795 DEFUN ("scroll-up", Fscroll_up
, Sscroll_up
, 0, 1, "^P",
4796 doc
: /* Scroll text of selected window upward ARG lines.
4797 If ARG is omitted or nil, scroll upward by a near full screen.
4798 A near full screen is `next-screen-context-lines' less than a full screen.
4799 Negative ARG means scroll downward.
4800 If ARG is the atom `-', scroll downward by nearly full screen.
4801 When calling from a program, supply as argument a number, nil, or `-'. */)
4804 scroll_command (arg
, 1);
4808 DEFUN ("scroll-down", Fscroll_down
, Sscroll_down
, 0, 1, "^P",
4809 doc
: /* Scroll text of selected window down ARG lines.
4810 If ARG is omitted or nil, scroll down by a near full screen.
4811 A near full screen is `next-screen-context-lines' less than a full screen.
4812 Negative ARG means scroll upward.
4813 If ARG is the atom `-', scroll upward by nearly full screen.
4814 When calling from a program, supply as argument a number, nil, or `-'. */)
4817 scroll_command (arg
, -1);
4821 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling
, Sother_window_for_scrolling
, 0, 0, 0,
4822 doc
: /* Return the other window for \"other window scroll\" commands.
4823 If `other-window-scroll-buffer' is non-nil, a window
4824 showing that buffer is used.
4825 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4826 specifies the window. This takes precedence over
4827 `other-window-scroll-buffer'. */)
4832 if (MINI_WINDOW_P (XWINDOW (selected_window
))
4833 && !NILP (Vminibuf_scroll_window
))
4834 window
= Vminibuf_scroll_window
;
4835 /* If buffer is specified, scroll that buffer. */
4836 else if (!NILP (Vother_window_scroll_buffer
))
4838 window
= Fget_buffer_window (Vother_window_scroll_buffer
, Qnil
);
4840 window
= display_buffer (Vother_window_scroll_buffer
, Qt
, Qnil
);
4844 /* Nothing specified; look for a neighboring window on the same
4846 window
= Fnext_window (selected_window
, Qnil
, Qnil
);
4848 if (EQ (window
, selected_window
))
4849 /* That didn't get us anywhere; look for a window on another
4852 window
= Fnext_window (window
, Qnil
, Qt
);
4853 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window
))))
4854 && ! EQ (window
, selected_window
));
4857 CHECK_LIVE_WINDOW (window
);
4859 if (EQ (window
, selected_window
))
4860 error ("There is no other window");
4865 DEFUN ("scroll-other-window", Fscroll_other_window
, Sscroll_other_window
, 0, 1, "P",
4866 doc
: /* Scroll next window upward ARG lines; or near full screen if no ARG.
4867 A near full screen is `next-screen-context-lines' less than a full screen.
4868 The next window is the one below the current one; or the one at the top
4869 if the current one is at the bottom. Negative ARG means scroll downward.
4870 If ARG is the atom `-', scroll downward by nearly full screen.
4871 When calling from a program, supply as argument a number, nil, or `-'.
4873 If `other-window-scroll-buffer' is non-nil, scroll the window
4874 showing that buffer, popping the buffer up if necessary.
4875 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4876 specifies the window to scroll. This takes precedence over
4877 `other-window-scroll-buffer'. */)
4882 int count
= SPECPDL_INDEX ();
4884 window
= Fother_window_for_scrolling ();
4885 w
= XWINDOW (window
);
4887 /* Don't screw up if window_scroll gets an error. */
4888 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
4889 ++windows_or_buffers_changed
;
4891 Fset_buffer (w
->buffer
);
4892 SET_PT (marker_position (w
->pointm
));
4895 window_scroll (window
, 1, 1, 1);
4896 else if (EQ (arg
, Qminus
))
4897 window_scroll (window
, -1, 1, 1);
4903 window_scroll (window
, XINT (arg
), 0, 1);
4906 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
4907 unbind_to (count
, Qnil
);
4912 DEFUN ("scroll-left", Fscroll_left
, Sscroll_left
, 0, 2, "^P\np",
4913 doc
: /* Scroll selected window display ARG columns left.
4914 Default for ARG is window width minus 2.
4915 Value is the total amount of leftward horizontal scrolling in
4916 effect after the change.
4917 If SET-MINIMUM is non-nil, the new scroll amount becomes the
4918 lower bound for automatic scrolling, i.e. automatic scrolling
4919 will not scroll a window to a column less than the value returned
4920 by this function. This happens in an interactive call. */)
4921 (register Lisp_Object arg
, Lisp_Object set_minimum
)
4925 struct window
*w
= XWINDOW (selected_window
);
4928 XSETFASTINT (arg
, window_body_cols (w
) - 2);
4930 arg
= Fprefix_numeric_value (arg
);
4932 hscroll
= XINT (w
->hscroll
) + XINT (arg
);
4933 result
= Fset_window_hscroll (selected_window
, make_number (hscroll
));
4935 if (!NILP (set_minimum
))
4936 w
->min_hscroll
= w
->hscroll
;
4941 DEFUN ("scroll-right", Fscroll_right
, Sscroll_right
, 0, 2, "^P\np",
4942 doc
: /* Scroll selected window display ARG columns right.
4943 Default for ARG is window width minus 2.
4944 Value is the total amount of leftward horizontal scrolling in
4945 effect after the change.
4946 If SET-MINIMUM is non-nil, the new scroll amount becomes the
4947 lower bound for automatic scrolling, i.e. automatic scrolling
4948 will not scroll a window to a column less than the value returned
4949 by this function. This happens in an interactive call. */)
4950 (register Lisp_Object arg
, Lisp_Object set_minimum
)
4954 struct window
*w
= XWINDOW (selected_window
);
4957 XSETFASTINT (arg
, window_body_cols (w
) - 2);
4959 arg
= Fprefix_numeric_value (arg
);
4961 hscroll
= XINT (w
->hscroll
) - XINT (arg
);
4962 result
= Fset_window_hscroll (selected_window
, make_number (hscroll
));
4964 if (!NILP (set_minimum
))
4965 w
->min_hscroll
= w
->hscroll
;
4970 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window
, Sminibuffer_selected_window
, 0, 0, 0,
4971 doc
: /* Return the window which was selected when entering the minibuffer.
4972 Returns nil, if selected window is not a minibuffer window. */)
4975 if (minibuf_level
> 0
4976 && MINI_WINDOW_P (XWINDOW (selected_window
))
4977 && WINDOW_LIVE_P (minibuf_selected_window
))
4978 return minibuf_selected_window
;
4983 /* Value is the number of lines actually displayed in window W,
4984 as opposed to its height. */
4987 displayed_window_lines (struct window
*w
)
4990 struct text_pos start
;
4991 int height
= window_box_height (w
);
4992 struct buffer
*old_buffer
;
4995 if (XBUFFER (w
->buffer
) != current_buffer
)
4997 old_buffer
= current_buffer
;
4998 set_buffer_internal (XBUFFER (w
->buffer
));
5003 /* In case W->start is out of the accessible range, do something
5004 reasonable. This happens in Info mode when Info-scroll-down
5005 calls (recenter -1) while W->start is 1. */
5006 if (XMARKER (w
->start
)->charpos
< BEGV
)
5007 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
5008 else if (XMARKER (w
->start
)->charpos
> ZV
)
5009 SET_TEXT_POS (start
, ZV
, ZV_BYTE
);
5011 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
5013 start_display (&it
, w
, start
);
5014 move_it_vertically (&it
, height
);
5015 bottom_y
= line_bottom_y (&it
);
5017 /* rms: On a non-window display,
5018 the value of it.vpos at the bottom of the screen
5019 seems to be 1 larger than window_box_height (w).
5020 This kludge fixes a bug whereby (move-to-window-line -1)
5021 when ZV is on the last screen line
5022 moves to the previous screen line instead of the last one. */
5023 if (! FRAME_WINDOW_P (XFRAME (w
->frame
)))
5026 /* Add in empty lines at the bottom of the window. */
5027 if (bottom_y
< height
)
5029 int uy
= FRAME_LINE_HEIGHT (it
.f
);
5030 it
.vpos
+= (height
- bottom_y
+ uy
- 1) / uy
;
5034 set_buffer_internal (old_buffer
);
5040 DEFUN ("recenter", Frecenter
, Srecenter
, 0, 1, "P",
5041 doc
: /* Center point in selected window and maybe redisplay frame.
5042 With prefix argument ARG, recenter putting point on screen line ARG
5043 relative to the selected window. If ARG is negative, it counts up from the
5044 bottom of the window. (ARG should be less than the height of the window.)
5046 If ARG is omitted or nil, then recenter with point on the middle line of
5047 the selected window; if the variable `recenter-redisplay' is non-nil,
5048 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5049 is set to `grow-only', this resets the tool-bar's height to the minimum
5050 height needed); if `recenter-redisplay' has the special value `tty',
5051 then only tty frame are redrawn.
5053 Just C-u as prefix means put point in the center of the window
5054 and redisplay normally--don't erase and redraw the frame. */)
5055 (register Lisp_Object arg
)
5057 struct window
*w
= XWINDOW (selected_window
);
5058 struct buffer
*buf
= XBUFFER (w
->buffer
);
5059 struct buffer
*obuf
= current_buffer
;
5061 EMACS_INT charpos
, bytepos
;
5062 int iarg
IF_LINT (= 0);
5063 int this_scroll_margin
;
5065 /* If redisplay is suppressed due to an error, try again. */
5066 obuf
->display_error_modiff
= 0;
5070 if (!NILP (Vrecenter_redisplay
)
5071 && (!EQ (Vrecenter_redisplay
, Qtty
)
5072 || !NILP (Ftty_type (selected_frame
))))
5076 /* Invalidate pixel data calculated for all compositions. */
5077 for (i
= 0; i
< n_compositions
; i
++)
5078 composition_table
[i
]->font
= NULL
;
5080 WINDOW_XFRAME (w
)->minimize_tool_bar_window_p
= 1;
5082 Fredraw_frame (WINDOW_FRAME (w
));
5083 SET_FRAME_GARBAGED (WINDOW_XFRAME (w
));
5088 else if (CONSP (arg
)) /* Just C-u. */
5092 arg
= Fprefix_numeric_value (arg
);
5097 set_buffer_internal (buf
);
5099 /* Do this after making BUF current
5100 in case scroll_margin is buffer-local. */
5101 this_scroll_margin
= max (0, scroll_margin
);
5102 this_scroll_margin
= min (this_scroll_margin
,
5103 XFASTINT (w
->total_lines
) / 4);
5105 /* Handle centering on a graphical frame specially. Such frames can
5106 have variable-height lines and centering point on the basis of
5107 line counts would lead to strange effects. */
5108 if (FRAME_WINDOW_P (XFRAME (w
->frame
)))
5115 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5116 start_display (&it
, w
, pt
);
5117 move_it_vertically_backward (&it
, window_box_height (w
) / 2);
5118 charpos
= IT_CHARPOS (it
);
5119 bytepos
= IT_BYTEPOS (it
);
5126 int extra_line_spacing
;
5127 int h
= window_box_height (w
);
5129 iarg
= - max (-iarg
, this_scroll_margin
);
5131 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5132 start_display (&it
, w
, pt
);
5134 /* Be sure we have the exact height of the full line containing PT. */
5135 move_it_by_lines (&it
, 0);
5137 /* The amount of pixels we have to move back is the window
5138 height minus what's displayed in the line containing PT,
5139 and the lines below. */
5142 move_it_by_lines (&it
, nlines
);
5144 if (it
.vpos
== nlines
)
5148 /* Last line has no newline */
5149 h
-= line_bottom_y (&it
);
5153 /* Don't reserve space for extra line spacing of last line. */
5154 extra_line_spacing
= it
.max_extra_line_spacing
;
5156 /* If we can't move down NLINES lines because we hit
5157 the end of the buffer, count in some empty lines. */
5158 if (it
.vpos
< nlines
)
5161 extra_line_spacing
= it
.extra_line_spacing
;
5162 h
-= nlines
* (FRAME_LINE_HEIGHT (it
.f
) + extra_line_spacing
);
5167 /* Now find the new top line (starting position) of the window. */
5168 start_display (&it
, w
, pt
);
5170 move_it_vertically_backward (&it
, h
);
5172 /* If extra line spacing is present, we may move too far
5173 back. This causes the last line to be only partially
5174 visible (which triggers redisplay to recenter that line
5175 in the middle), so move forward.
5176 But ignore extra line spacing on last line, as it is not
5177 considered to be part of the visible height of the line.
5179 h
+= extra_line_spacing
;
5180 while (-it
.current_y
> h
)
5181 move_it_by_lines (&it
, 1);
5183 charpos
= IT_CHARPOS (it
);
5184 bytepos
= IT_BYTEPOS (it
);
5188 struct position pos
;
5190 iarg
= max (iarg
, this_scroll_margin
);
5192 pos
= *vmotion (PT
, -iarg
, w
);
5193 charpos
= pos
.bufpos
;
5194 bytepos
= pos
.bytepos
;
5199 struct position pos
;
5200 int ht
= window_internal_height (w
);
5207 /* Don't let it get into the margin at either top or bottom. */
5208 iarg
= max (iarg
, this_scroll_margin
);
5209 iarg
= min (iarg
, ht
- this_scroll_margin
- 1);
5211 pos
= *vmotion (PT
, - iarg
, w
);
5212 charpos
= pos
.bufpos
;
5213 bytepos
= pos
.bytepos
;
5216 /* Set the new window start. */
5217 set_marker_both (w
->start
, w
->buffer
, charpos
, bytepos
);
5218 w
->window_end_valid
= Qnil
;
5220 w
->optional_new_start
= Qt
;
5222 if (bytepos
== BEGV_BYTE
|| FETCH_BYTE (bytepos
- 1) == '\n')
5223 w
->start_at_line_beg
= Qt
;
5225 w
->start_at_line_beg
= Qnil
;
5227 set_buffer_internal (obuf
);
5231 DEFUN ("window-text-height", Fwindow_text_height
, Swindow_text_height
,
5233 doc
: /* Return the height in lines of the text display area of WINDOW.
5234 WINDOW defaults to the selected window.
5236 The return value does not include the mode line, any header line, nor
5237 any partial-height lines in the text display area. */)
5238 (Lisp_Object window
)
5240 struct window
*w
= decode_window (window
);
5241 int pixel_height
= window_box_height (w
);
5242 int line_height
= pixel_height
/ FRAME_LINE_HEIGHT (XFRAME (w
->frame
));
5243 return make_number (line_height
);
5248 DEFUN ("move-to-window-line", Fmove_to_window_line
, Smove_to_window_line
,
5250 doc
: /* Position point relative to window.
5251 With no argument, position point at center of window.
5252 An argument specifies vertical position within the window;
5253 zero means top of window, negative means relative to bottom of window. */)
5256 struct window
*w
= XWINDOW (selected_window
);
5260 int this_scroll_margin
;
5263 if (!(BUFFERP (w
->buffer
)
5264 && XBUFFER (w
->buffer
) == current_buffer
))
5265 /* This test is needed to make sure PT/PT_BYTE make sense in w->buffer
5266 when passed below to set_marker_both. */
5267 error ("move-to-window-line called from unrelated buffer");
5269 window
= selected_window
;
5270 start
= marker_position (w
->start
);
5271 if (start
< BEGV
|| start
> ZV
)
5273 int height
= window_internal_height (w
);
5274 Fvertical_motion (make_number (- (height
/ 2)), window
);
5275 set_marker_both (w
->start
, w
->buffer
, PT
, PT_BYTE
);
5276 w
->start_at_line_beg
= Fbolp ();
5277 w
->force_start
= Qt
;
5280 Fgoto_char (w
->start
);
5282 lines
= displayed_window_lines (w
);
5285 this_scroll_margin
= max (0, scroll_margin
);
5286 this_scroll_margin
= min (this_scroll_margin
, lines
/ 4);
5290 XSETFASTINT (arg
, lines
/ 2);
5293 int iarg
= XINT (Fprefix_numeric_value (arg
));
5296 iarg
= iarg
+ lines
;
5298 #if 0 /* This code would prevent move-to-window-line from moving point
5299 to a place inside the scroll margins (which would cause the
5300 next redisplay to scroll). I wrote this code, but then concluded
5301 it is probably better not to install it. However, it is here
5302 inside #if 0 so as not to lose it. -- rms. */
5304 /* Don't let it get into the margin at either top or bottom. */
5305 iarg
= max (iarg
, this_scroll_margin
);
5306 iarg
= min (iarg
, lines
- this_scroll_margin
- 1);
5309 arg
= make_number (iarg
);
5312 /* Skip past a partially visible first line. */
5314 XSETINT (arg
, XINT (arg
) + 1);
5316 return Fvertical_motion (arg
, window
);
5321 /***********************************************************************
5322 Window Configuration
5323 ***********************************************************************/
5325 struct save_window_data
5327 struct vectorlike_header header
;
5328 Lisp_Object selected_frame
;
5329 Lisp_Object current_window
;
5330 Lisp_Object current_buffer
;
5331 Lisp_Object minibuf_scroll_window
;
5332 Lisp_Object minibuf_selected_window
;
5333 Lisp_Object root_window
;
5334 Lisp_Object focus_frame
;
5335 /* A vector, each of whose elements is a struct saved_window
5337 Lisp_Object saved_windows
;
5339 /* All fields above are traced by the GC.
5340 From `fame-cols' down, the fields are ignored by the GC. */
5342 int frame_cols
, frame_lines
, frame_menu_bar_lines
;
5343 int frame_tool_bar_lines
;
5346 /* This is saved as a Lisp_Vector */
5349 struct vectorlike_header header
;
5351 Lisp_Object window
, clone_number
;
5352 Lisp_Object buffer
, start
, pointm
, mark
;
5353 Lisp_Object left_col
, top_line
, total_cols
, total_lines
;
5354 Lisp_Object normal_cols
, normal_lines
;
5355 Lisp_Object hscroll
, min_hscroll
;
5356 Lisp_Object parent
, prev
;
5357 Lisp_Object start_at_line_beg
;
5358 Lisp_Object display_table
;
5359 Lisp_Object left_margin_cols
, right_margin_cols
;
5360 Lisp_Object left_fringe_width
, right_fringe_width
, fringes_outside_margins
;
5361 Lisp_Object scroll_bar_width
, vertical_scroll_bar_type
, dedicated
;
5362 Lisp_Object splits
, nest
, window_parameters
;
5365 #define SAVED_WINDOW_N(swv,n) \
5366 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
5368 DEFUN ("window-configuration-p", Fwindow_configuration_p
, Swindow_configuration_p
, 1, 1, 0,
5369 doc
: /* Return t if OBJECT is a window-configuration object. */)
5370 (Lisp_Object object
)
5372 return WINDOW_CONFIGURATIONP (object
) ? Qt
: Qnil
;
5375 DEFUN ("window-configuration-frame", Fwindow_configuration_frame
, Swindow_configuration_frame
, 1, 1, 0,
5376 doc
: /* Return the frame that CONFIG, a window-configuration object, is about. */)
5377 (Lisp_Object config
)
5379 register struct save_window_data
*data
;
5380 struct Lisp_Vector
*saved_windows
;
5382 CHECK_WINDOW_CONFIGURATION (config
);
5384 data
= (struct save_window_data
*) XVECTOR (config
);
5385 saved_windows
= XVECTOR (data
->saved_windows
);
5386 return XWINDOW (SAVED_WINDOW_N (saved_windows
, 0)->window
)->frame
;
5389 DEFUN ("set-window-configuration", Fset_window_configuration
,
5390 Sset_window_configuration
, 1, 1, 0,
5391 doc
: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
5392 CONFIGURATION must be a value previously returned
5393 by `current-window-configuration' (which see).
5394 If CONFIGURATION was made from a frame that is now deleted,
5395 only frame-independent values can be restored. In this case,
5396 the return value is nil. Otherwise the value is t. */)
5397 (Lisp_Object configuration
)
5399 register struct save_window_data
*data
;
5400 struct Lisp_Vector
*saved_windows
;
5401 Lisp_Object new_current_buffer
;
5403 Lisp_Object auto_buffer_name
;
5405 EMACS_INT old_point
= -1;
5407 CHECK_WINDOW_CONFIGURATION (configuration
);
5409 data
= (struct save_window_data
*) XVECTOR (configuration
);
5410 saved_windows
= XVECTOR (data
->saved_windows
);
5412 new_current_buffer
= data
->current_buffer
;
5413 if (NILP (BVAR (XBUFFER (new_current_buffer
), name
)))
5414 new_current_buffer
= Qnil
;
5417 if (XBUFFER (new_current_buffer
) == current_buffer
)
5418 /* The code further down "preserves point" by saving here PT in
5419 old_point and then setting it later back into PT. When the
5420 current-selected-window and the final-selected-window both show
5421 the current buffer, this suffers from the problem that the
5422 current PT is the window-point of the current-selected-window,
5423 while the final PT is the point of the final-selected-window, so
5424 this copy from one PT to the other would end up moving the
5425 window-point of the final-selected-window to the window-point of
5426 the current-selected-window. So we have to be careful which
5427 point of the current-buffer we copy into old_point. */
5428 if (EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
)
5429 && WINDOWP (selected_window
)
5430 && EQ (XWINDOW (selected_window
)->buffer
, new_current_buffer
)
5431 && !EQ (selected_window
, data
->current_window
))
5432 old_point
= XMARKER (XWINDOW (data
->current_window
)->pointm
)->charpos
;
5436 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
5437 point in new_current_buffer as of the last time this buffer was
5438 used. This can be non-deterministic since it can be changed by
5439 things like jit-lock by mere temporary selection of some random
5440 window that happens to show this buffer.
5441 So if possible we want this arbitrary choice of "which point" to
5442 be the one from the to-be-selected-window so as to prevent this
5443 window's cursor from being copied from another window. */
5444 if (EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
)
5445 /* If current_window = selected_window, its point is in BUF_PT. */
5446 && !EQ (selected_window
, data
->current_window
))
5447 old_point
= XMARKER (XWINDOW (data
->current_window
)->pointm
)->charpos
;
5449 old_point
= BUF_PT (XBUFFER (new_current_buffer
));
5452 frame
= XWINDOW (SAVED_WINDOW_N (saved_windows
, 0)->window
)->frame
;
5455 /* If f is a dead frame, don't bother rebuilding its window tree.
5456 However, there is other stuff we should still try to do below. */
5457 if (FRAME_LIVE_P (f
))
5460 Lisp_Object dead_windows
= Qnil
;
5461 register struct window
*w
;
5462 register struct saved_window
*p
;
5463 struct window
*root_window
;
5464 struct window
**leaf_windows
;
5468 /* If the frame has been resized since this window configuration was
5469 made, we change the frame to the size specified in the
5470 configuration, restore the configuration, and then resize it
5471 back. We keep track of the prevailing height in these variables. */
5472 int previous_frame_lines
= FRAME_LINES (f
);
5473 int previous_frame_cols
= FRAME_COLS (f
);
5474 int previous_frame_menu_bar_lines
= FRAME_MENU_BAR_LINES (f
);
5475 int previous_frame_tool_bar_lines
= FRAME_TOOL_BAR_LINES (f
);
5477 /* The mouse highlighting code could get screwed up
5478 if it runs during this. */
5481 if (data
->frame_lines
!= previous_frame_lines
5482 || data
->frame_cols
!= previous_frame_cols
)
5483 change_frame_size (f
, data
->frame_lines
,
5484 data
->frame_cols
, 0, 0, 0);
5485 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5486 if (data
->frame_menu_bar_lines
5487 != previous_frame_menu_bar_lines
)
5488 x_set_menu_bar_lines (f
, make_number (data
->frame_menu_bar_lines
),
5490 #ifdef HAVE_WINDOW_SYSTEM
5491 if (data
->frame_tool_bar_lines
5492 != previous_frame_tool_bar_lines
)
5493 x_set_tool_bar_lines (f
, make_number (data
->frame_tool_bar_lines
),
5498 /* "Swap out" point from the selected window's buffer
5499 into the window itself. (Normally the pointm of the selected
5500 window holds garbage.) We do this now, before
5501 restoring the window contents, and prevent it from
5502 being done later on when we select a new window. */
5503 if (! NILP (XWINDOW (selected_window
)->buffer
))
5505 w
= XWINDOW (selected_window
);
5506 set_marker_both (w
->pointm
,
5508 BUF_PT (XBUFFER (w
->buffer
)),
5509 BUF_PT_BYTE (XBUFFER (w
->buffer
)));
5512 windows_or_buffers_changed
++;
5513 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
5515 /* Problem: Freeing all matrices and later allocating them again
5516 is a serious redisplay flickering problem. What we would
5517 really like to do is to free only those matrices not reused
5519 root_window
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5521 = (struct window
**) alloca (count_windows (root_window
)
5522 * sizeof (struct window
*));
5523 n_leaf_windows
= get_leaf_windows (root_window
, leaf_windows
, 0);
5526 Mark all windows now on frame as "deleted".
5527 Restoring the new configuration "undeletes" any that are in it.
5529 Save their current buffers in their height fields, since we may
5530 need it later, if a buffer saved in the configuration is now
5532 delete_all_subwindows (FRAME_ROOT_WINDOW (f
));
5534 for (k
= 0; k
< saved_windows
->header
.size
; k
++)
5536 p
= SAVED_WINDOW_N (saved_windows
, k
);
5538 w
= XWINDOW (window
);
5541 if (!NILP (p
->parent
))
5542 w
->parent
= SAVED_WINDOW_N (saved_windows
,
5543 XFASTINT (p
->parent
))->window
;
5547 if (!NILP (p
->prev
))
5549 w
->prev
= SAVED_WINDOW_N (saved_windows
,
5550 XFASTINT (p
->prev
))->window
;
5551 XWINDOW (w
->prev
)->next
= p
->window
;
5556 if (!NILP (w
->parent
))
5558 if (EQ (p
->total_cols
, XWINDOW (w
->parent
)->total_cols
))
5560 XWINDOW (w
->parent
)->vchild
= p
->window
;
5561 XWINDOW (w
->parent
)->hchild
= Qnil
;
5565 XWINDOW (w
->parent
)->hchild
= p
->window
;
5566 XWINDOW (w
->parent
)->vchild
= Qnil
;
5571 w
->clone_number
= p
->clone_number
;
5572 /* If we squirreled away the buffer in the window's height,
5574 if (BUFFERP (w
->total_lines
))
5575 w
->buffer
= w
->total_lines
;
5576 w
->left_col
= p
->left_col
;
5577 w
->top_line
= p
->top_line
;
5578 w
->total_cols
= p
->total_cols
;
5579 w
->total_lines
= p
->total_lines
;
5580 w
->normal_cols
= p
->normal_cols
;
5581 w
->normal_lines
= p
->normal_lines
;
5582 w
->hscroll
= p
->hscroll
;
5583 w
->min_hscroll
= p
->min_hscroll
;
5584 w
->display_table
= p
->display_table
;
5585 w
->left_margin_cols
= p
->left_margin_cols
;
5586 w
->right_margin_cols
= p
->right_margin_cols
;
5587 w
->left_fringe_width
= p
->left_fringe_width
;
5588 w
->right_fringe_width
= p
->right_fringe_width
;
5589 w
->fringes_outside_margins
= p
->fringes_outside_margins
;
5590 w
->scroll_bar_width
= p
->scroll_bar_width
;
5591 w
->vertical_scroll_bar_type
= p
->vertical_scroll_bar_type
;
5592 w
->dedicated
= p
->dedicated
;
5593 w
->splits
= p
->splits
;
5595 w
->window_parameters
= p
->window_parameters
;
5596 XSETFASTINT (w
->last_modified
, 0);
5597 XSETFASTINT (w
->last_overlay_modified
, 0);
5599 /* Reinstall the saved buffer and pointers into it. */
5600 if (NILP (p
->buffer
))
5601 /* An internal window. */
5602 w
->buffer
= p
->buffer
;
5603 else if (!NILP (BVAR (XBUFFER (p
->buffer
), name
)))
5604 /* If saved buffer is alive, install it. */
5606 w
->buffer
= p
->buffer
;
5607 w
->start_at_line_beg
= p
->start_at_line_beg
;
5608 set_marker_restricted (w
->start
, p
->start
, w
->buffer
);
5609 set_marker_restricted (w
->pointm
, p
->pointm
, w
->buffer
);
5610 Fset_marker (BVAR (XBUFFER (w
->buffer
), mark
),
5611 p
->mark
, w
->buffer
);
5613 /* As documented in Fcurrent_window_configuration, don't
5614 restore the location of point in the buffer which was
5615 current when the window configuration was recorded. */
5616 if (!EQ (p
->buffer
, new_current_buffer
)
5617 && XBUFFER (p
->buffer
) == current_buffer
)
5618 Fgoto_char (w
->pointm
);
5620 else if (!NILP (w
->buffer
) && !NILP (BVAR (XBUFFER (w
->buffer
), name
)))
5621 /* Keep window's old buffer; make sure the markers are
5624 /* Set window markers at start of visible range. */
5625 if (XMARKER (w
->start
)->buffer
== 0)
5626 set_marker_restricted (w
->start
, make_number (0),
5628 if (XMARKER (w
->pointm
)->buffer
== 0)
5629 set_marker_restricted_both (w
->pointm
, w
->buffer
,
5630 BUF_PT (XBUFFER (w
->buffer
)),
5631 BUF_PT_BYTE (XBUFFER (w
->buffer
)));
5632 w
->start_at_line_beg
= Qt
;
5634 else if (STRINGP (auto_buffer_name
=
5635 Fwindow_parameter (window
, Qauto_buffer_name
))
5636 && SCHARS (auto_buffer_name
) != 0
5637 && !NILP (w
->buffer
= Fget_buffer_create (auto_buffer_name
)))
5639 set_marker_restricted (w
->start
, make_number (0), w
->buffer
);
5640 set_marker_restricted (w
->pointm
, make_number (0), w
->buffer
);
5641 w
->start_at_line_beg
= Qt
;
5644 /* Window has no live buffer, get one. */
5646 /* Get the buffer via other_buffer_safely in order to
5647 avoid showing an unimportant buffer and, if necessary, to
5648 recreate *scratch* in the course (part of Juanma's bs-show
5649 scenario from March 2011). */
5650 w
->buffer
= other_buffer_safely (Fcurrent_buffer ());
5651 /* This will set the markers to beginning of visible
5653 set_marker_restricted (w
->start
, make_number (0), w
->buffer
);
5654 set_marker_restricted (w
->pointm
, make_number (0), w
->buffer
);
5655 w
->start_at_line_beg
= Qt
;
5656 if (!NILP (w
->dedicated
))
5657 /* Record this window as dead. */
5658 dead_windows
= Fcons (window
, dead_windows
);
5659 /* Make sure window is no more dedicated. */
5660 w
->dedicated
= Qnil
;
5664 FRAME_ROOT_WINDOW (f
) = data
->root_window
;
5665 /* Arrange *not* to restore point in the buffer that was
5666 current when the window configuration was saved. */
5667 if (EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
))
5668 set_marker_restricted (XWINDOW (data
->current_window
)->pointm
,
5669 make_number (old_point
),
5670 XWINDOW (data
->current_window
)->buffer
);
5672 /* In the following call to `select-window', prevent "swapping out
5673 point" in the old selected window using the buffer that has
5674 been restored into it. We already swapped out that point from
5675 that window's old buffer. */
5676 select_window (data
->current_window
, Qnil
, 1);
5677 BVAR (XBUFFER (XWINDOW (selected_window
)->buffer
), last_selected_window
)
5680 if (NILP (data
->focus_frame
)
5681 || (FRAMEP (data
->focus_frame
)
5682 && FRAME_LIVE_P (XFRAME (data
->focus_frame
))))
5683 Fredirect_frame_focus (frame
, data
->focus_frame
);
5685 /* Set the screen height to the value it had before this function. */
5686 if (previous_frame_lines
!= FRAME_LINES (f
)
5687 || previous_frame_cols
!= FRAME_COLS (f
))
5688 change_frame_size (f
, previous_frame_lines
, previous_frame_cols
,
5690 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5691 if (previous_frame_menu_bar_lines
!= FRAME_MENU_BAR_LINES (f
))
5692 x_set_menu_bar_lines (f
, make_number (previous_frame_menu_bar_lines
),
5694 #ifdef HAVE_WINDOW_SYSTEM
5695 if (previous_frame_tool_bar_lines
!= FRAME_TOOL_BAR_LINES (f
))
5696 x_set_tool_bar_lines (f
, make_number (previous_frame_tool_bar_lines
),
5701 /* Now, free glyph matrices in windows that were not reused. */
5702 for (i
= n
= 0; i
< n_leaf_windows
; ++i
)
5704 if (NILP (leaf_windows
[i
]->buffer
))
5706 /* Assert it's not reused as a combination. */
5707 xassert (NILP (leaf_windows
[i
]->hchild
)
5708 && NILP (leaf_windows
[i
]->vchild
));
5709 free_window_matrices (leaf_windows
[i
]);
5711 else if (EQ (leaf_windows
[i
]->buffer
, new_current_buffer
))
5718 /* Scan dead buffer windows. */
5719 for (; CONSP (dead_windows
); dead_windows
= XCDR (dead_windows
))
5721 window
= XCAR (dead_windows
);
5722 if (WINDOW_LIVE_P (window
) && !EQ (window
, FRAME_ROOT_WINDOW (f
)))
5723 delete_deletable_window (window
);
5726 /* Fselect_window will have made f the selected frame, so we
5727 reselect the proper frame here. Fhandle_switch_frame will change the
5728 selected window too, but that doesn't make the call to
5729 Fselect_window above totally superfluous; it still sets f's
5731 if (FRAME_LIVE_P (XFRAME (data
->selected_frame
)))
5732 do_switch_frame (data
->selected_frame
, 0, 0, Qnil
);
5734 run_window_configuration_change_hook (f
);
5737 if (!NILP (new_current_buffer
))
5738 Fset_buffer (new_current_buffer
);
5740 Vminibuf_scroll_window
= data
->minibuf_scroll_window
;
5741 minibuf_selected_window
= data
->minibuf_selected_window
;
5743 return (FRAME_LIVE_P (f
) ? Qt
: Qnil
);
5747 /* Delete all subwindows reachable via the next, vchild, and hchild
5750 delete_all_subwindows (Lisp_Object window
)
5752 register struct window
*w
;
5754 w
= XWINDOW (window
);
5756 if (!NILP (w
->next
))
5757 /* Delete WINDOW's siblings (we traverse postorderly). */
5758 delete_all_subwindows (w
->next
);
5760 w
->total_lines
= w
->buffer
; /* See Fset_window_configuration for excuse. */
5762 if (!NILP (w
->vchild
))
5764 delete_all_subwindows (w
->vchild
);
5767 else if (!NILP (w
->hchild
))
5769 delete_all_subwindows (w
->hchild
);
5772 else if (!NILP (w
->buffer
))
5775 unchain_marker (XMARKER (w
->pointm
));
5776 unchain_marker (XMARKER (w
->start
));
5780 Vwindow_list
= Qnil
;
5784 count_windows (register struct window
*window
)
5786 register int count
= 1;
5787 if (!NILP (window
->next
))
5788 count
+= count_windows (XWINDOW (window
->next
));
5789 if (!NILP (window
->vchild
))
5790 count
+= count_windows (XWINDOW (window
->vchild
));
5791 if (!NILP (window
->hchild
))
5792 count
+= count_windows (XWINDOW (window
->hchild
));
5797 /* Fill vector FLAT with leaf windows under W, starting at index I.
5798 Value is last index + 1. */
5800 get_leaf_windows (struct window
*w
, struct window
**flat
, int i
)
5804 if (!NILP (w
->hchild
))
5805 i
= get_leaf_windows (XWINDOW (w
->hchild
), flat
, i
);
5806 else if (!NILP (w
->vchild
))
5807 i
= get_leaf_windows (XWINDOW (w
->vchild
), flat
, i
);
5811 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
5818 /* Return a pointer to the glyph W's physical cursor is on. Value is
5819 null if W's current matrix is invalid, so that no meaningfull glyph
5822 get_phys_cursor_glyph (struct window
*w
)
5824 struct glyph_row
*row
;
5825 struct glyph
*glyph
;
5827 if (w
->phys_cursor
.vpos
>= 0
5828 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
5829 && (row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
),
5831 && row
->used
[TEXT_AREA
] > w
->phys_cursor
.hpos
)
5832 glyph
= row
->glyphs
[TEXT_AREA
] + w
->phys_cursor
.hpos
;
5841 save_window_save (Lisp_Object window
, struct Lisp_Vector
*vector
, int i
)
5843 register struct saved_window
*p
;
5844 register struct window
*w
;
5845 register Lisp_Object tem
;
5847 for (;!NILP (window
); window
= w
->next
)
5849 p
= SAVED_WINDOW_N (vector
, i
);
5850 w
= XWINDOW (window
);
5852 XSETFASTINT (w
->temslot
, i
); i
++;
5854 p
->clone_number
= w
->clone_number
;
5855 p
->buffer
= w
->buffer
;
5856 p
->left_col
= w
->left_col
;
5857 p
->top_line
= w
->top_line
;
5858 p
->total_cols
= w
->total_cols
;
5859 p
->total_lines
= w
->total_lines
;
5860 p
->normal_cols
= w
->normal_cols
;
5861 p
->normal_lines
= w
->normal_lines
;
5862 p
->hscroll
= w
->hscroll
;
5863 p
->min_hscroll
= w
->min_hscroll
;
5864 p
->display_table
= w
->display_table
;
5865 p
->left_margin_cols
= w
->left_margin_cols
;
5866 p
->right_margin_cols
= w
->right_margin_cols
;
5867 p
->left_fringe_width
= w
->left_fringe_width
;
5868 p
->right_fringe_width
= w
->right_fringe_width
;
5869 p
->fringes_outside_margins
= w
->fringes_outside_margins
;
5870 p
->scroll_bar_width
= w
->scroll_bar_width
;
5871 p
->vertical_scroll_bar_type
= w
->vertical_scroll_bar_type
;
5872 p
->dedicated
= w
->dedicated
;
5873 p
->splits
= w
->splits
;
5875 p
->window_parameters
= w
->window_parameters
;
5876 if (!NILP (w
->buffer
))
5878 /* Save w's value of point in the window configuration.
5879 If w is the selected window, then get the value of point
5880 from the buffer; pointm is garbage in the selected window. */
5881 if (EQ (window
, selected_window
))
5883 p
->pointm
= Fmake_marker ();
5884 set_marker_both (p
->pointm
, w
->buffer
,
5885 BUF_PT (XBUFFER (w
->buffer
)),
5886 BUF_PT_BYTE (XBUFFER (w
->buffer
)));
5889 p
->pointm
= Fcopy_marker (w
->pointm
, Qnil
);
5891 p
->start
= Fcopy_marker (w
->start
, Qnil
);
5892 p
->start_at_line_beg
= w
->start_at_line_beg
;
5894 tem
= BVAR (XBUFFER (w
->buffer
), mark
);
5895 p
->mark
= Fcopy_marker (tem
, Qnil
);
5902 p
->start_at_line_beg
= Qnil
;
5905 if (NILP (w
->parent
))
5908 p
->parent
= XWINDOW (w
->parent
)->temslot
;
5913 p
->prev
= XWINDOW (w
->prev
)->temslot
;
5915 if (!NILP (w
->vchild
))
5916 i
= save_window_save (w
->vchild
, vector
, i
);
5917 if (!NILP (w
->hchild
))
5918 i
= save_window_save (w
->hchild
, vector
, i
);
5924 DEFUN ("current-window-configuration", Fcurrent_window_configuration
,
5925 Scurrent_window_configuration
, 0, 1, 0,
5926 doc
: /* Return an object representing the current window configuration of FRAME.
5927 If FRAME is nil or omitted, use the selected frame.
5928 This describes the number of windows, their sizes and current buffers,
5929 and for each displayed buffer, where display starts, and the positions of
5930 point and mark. An exception is made for point in the current buffer:
5931 its value is -not- saved.
5932 This also records the currently selected frame, and FRAME's focus
5933 redirection (see `redirect-frame-focus'). */)
5936 register Lisp_Object tem
;
5937 register int n_windows
;
5938 register struct save_window_data
*data
;
5943 frame
= selected_frame
;
5944 CHECK_LIVE_FRAME (frame
);
5947 n_windows
= count_windows (XWINDOW (FRAME_ROOT_WINDOW (f
)));
5948 data
= ALLOCATE_PSEUDOVECTOR (struct save_window_data
, frame_cols
,
5949 PVEC_WINDOW_CONFIGURATION
);
5951 data
->frame_cols
= FRAME_COLS (f
);
5952 data
->frame_lines
= FRAME_LINES (f
);
5953 data
->frame_menu_bar_lines
= FRAME_MENU_BAR_LINES (f
);
5954 data
->frame_tool_bar_lines
= FRAME_TOOL_BAR_LINES (f
);
5955 data
->selected_frame
= selected_frame
;
5956 data
->current_window
= FRAME_SELECTED_WINDOW (f
);
5957 XSETBUFFER (data
->current_buffer
, current_buffer
);
5958 data
->minibuf_scroll_window
= minibuf_level
> 0 ? Vminibuf_scroll_window
: Qnil
;
5959 data
->minibuf_selected_window
= minibuf_level
> 0 ? minibuf_selected_window
: Qnil
;
5960 data
->root_window
= FRAME_ROOT_WINDOW (f
);
5961 data
->focus_frame
= FRAME_FOCUS_FRAME (f
);
5962 tem
= Fmake_vector (make_number (n_windows
), Qnil
);
5963 data
->saved_windows
= tem
;
5964 for (i
= 0; i
< n_windows
; i
++)
5965 XVECTOR (tem
)->contents
[i
]
5966 = Fmake_vector (make_number (VECSIZE (struct saved_window
)), Qnil
);
5967 save_window_save (FRAME_ROOT_WINDOW (f
), XVECTOR (tem
), 0);
5968 XSETWINDOW_CONFIGURATION (tem
, data
);
5972 /***********************************************************************
5974 ***********************************************************************/
5976 DEFUN ("set-window-margins", Fset_window_margins
, Sset_window_margins
,
5978 doc
: /* Set width of marginal areas of window WINDOW.
5979 If WINDOW is nil, set margins of the currently selected window.
5980 Second arg LEFT-WIDTH specifies the number of character cells to
5981 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
5982 does the same for the right marginal area. A nil width parameter
5983 means no margin. */)
5984 (Lisp_Object window
, Lisp_Object left_width
, Lisp_Object right_width
)
5986 struct window
*w
= decode_window (window
);
5988 /* Translate negative or zero widths to nil.
5989 Margins that are too wide have to be checked elsewhere. */
5991 if (!NILP (left_width
))
5993 CHECK_NUMBER (left_width
);
5994 if (XINT (left_width
) <= 0)
5998 if (!NILP (right_width
))
6000 CHECK_NUMBER (right_width
);
6001 if (XINT (right_width
) <= 0)
6005 if (!EQ (w
->left_margin_cols
, left_width
)
6006 || !EQ (w
->right_margin_cols
, right_width
))
6008 w
->left_margin_cols
= left_width
;
6009 w
->right_margin_cols
= right_width
;
6011 adjust_window_margins (w
);
6013 ++windows_or_buffers_changed
;
6014 adjust_glyphs (XFRAME (WINDOW_FRAME (w
)));
6021 DEFUN ("window-margins", Fwindow_margins
, Swindow_margins
,
6023 doc
: /* Get width of marginal areas of window WINDOW.
6024 If WINDOW is omitted or nil, use the currently selected window.
6025 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6026 If a marginal area does not exist, its width will be returned
6028 (Lisp_Object window
)
6030 struct window
*w
= decode_window (window
);
6031 return Fcons (w
->left_margin_cols
, w
->right_margin_cols
);
6036 /***********************************************************************
6038 ***********************************************************************/
6040 DEFUN ("set-window-fringes", Fset_window_fringes
, Sset_window_fringes
,
6042 doc
: /* Set the fringe widths of window WINDOW.
6043 If WINDOW is nil, set the fringe widths of the currently selected
6045 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6046 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6047 fringe width. If a fringe width arg is nil, that means to use the
6048 frame's default fringe width. Default fringe widths can be set with
6049 the command `set-fringe-style'.
6050 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6051 outside of the display margins. By default, fringes are drawn between
6052 display marginal areas and the text area. */)
6053 (Lisp_Object window
, Lisp_Object left_width
, Lisp_Object right_width
, Lisp_Object outside_margins
)
6055 struct window
*w
= decode_window (window
);
6057 if (!NILP (left_width
))
6058 CHECK_NATNUM (left_width
);
6059 if (!NILP (right_width
))
6060 CHECK_NATNUM (right_width
);
6062 /* Do nothing on a tty. */
6063 if (FRAME_WINDOW_P (WINDOW_XFRAME (w
))
6064 && (!EQ (w
->left_fringe_width
, left_width
)
6065 || !EQ (w
->right_fringe_width
, right_width
)
6066 || !EQ (w
->fringes_outside_margins
, outside_margins
)))
6068 w
->left_fringe_width
= left_width
;
6069 w
->right_fringe_width
= right_width
;
6070 w
->fringes_outside_margins
= outside_margins
;
6072 adjust_window_margins (w
);
6074 clear_glyph_matrix (w
->current_matrix
);
6075 w
->window_end_valid
= Qnil
;
6077 ++windows_or_buffers_changed
;
6078 adjust_glyphs (XFRAME (WINDOW_FRAME (w
)));
6085 DEFUN ("window-fringes", Fwindow_fringes
, Swindow_fringes
,
6087 doc
: /* Get width of fringes of window WINDOW.
6088 If WINDOW is omitted or nil, use the currently selected window.
6089 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6090 (Lisp_Object window
)
6092 struct window
*w
= decode_window (window
);
6094 return Fcons (make_number (WINDOW_LEFT_FRINGE_WIDTH (w
)),
6095 Fcons (make_number (WINDOW_RIGHT_FRINGE_WIDTH (w
)),
6096 Fcons ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
6097 ? Qt
: Qnil
), Qnil
)));
6102 /***********************************************************************
6104 ***********************************************************************/
6106 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars
,
6107 Sset_window_scroll_bars
, 2, 4, 0,
6108 doc
: /* Set width and type of scroll bars of window WINDOW.
6109 If window is nil, set scroll bars of the currently selected window.
6110 Second parameter WIDTH specifies the pixel width for the scroll bar;
6111 this is automatically adjusted to a multiple of the frame column width.
6112 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6113 bar: left, right, or nil.
6114 If WIDTH is nil, use the frame's scroll-bar width.
6115 If VERTICAL-TYPE is t, use the frame's scroll-bar type.
6116 Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6117 (Lisp_Object window
, Lisp_Object width
, Lisp_Object vertical_type
, Lisp_Object horizontal_type
)
6119 struct window
*w
= decode_window (window
);
6123 CHECK_NATNUM (width
);
6125 if (XINT (width
) == 0)
6126 vertical_type
= Qnil
;
6129 if (!(NILP (vertical_type
)
6130 || EQ (vertical_type
, Qleft
)
6131 || EQ (vertical_type
, Qright
)
6132 || EQ (vertical_type
, Qt
)))
6133 error ("Invalid type of vertical scroll bar");
6135 if (!EQ (w
->scroll_bar_width
, width
)
6136 || !EQ (w
->vertical_scroll_bar_type
, vertical_type
))
6138 w
->scroll_bar_width
= width
;
6139 w
->vertical_scroll_bar_type
= vertical_type
;
6141 adjust_window_margins (w
);
6143 clear_glyph_matrix (w
->current_matrix
);
6144 w
->window_end_valid
= Qnil
;
6146 ++windows_or_buffers_changed
;
6147 adjust_glyphs (XFRAME (WINDOW_FRAME (w
)));
6154 DEFUN ("window-scroll-bars", Fwindow_scroll_bars
, Swindow_scroll_bars
,
6156 doc
: /* Get width and type of scroll bars of window WINDOW.
6157 If WINDOW is omitted or nil, use the currently selected window.
6158 Value is a list of the form (WIDTH COLS VERTICAL-TYPE HORIZONTAL-TYPE).
6159 If WIDTH is nil or TYPE is t, the window is using the frame's corresponding
6161 (Lisp_Object window
)
6163 struct window
*w
= decode_window (window
);
6164 return Fcons (make_number ((WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
)
6165 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
)
6166 : WINDOW_SCROLL_BAR_AREA_WIDTH (w
))),
6167 Fcons (make_number (WINDOW_SCROLL_BAR_COLS (w
)),
6168 Fcons (w
->vertical_scroll_bar_type
,
6169 Fcons (Qnil
, Qnil
))));
6174 /***********************************************************************
6176 ***********************************************************************/
6178 DEFUN ("window-vscroll", Fwindow_vscroll
, Swindow_vscroll
, 0, 2, 0,
6179 doc
: /* Return the amount by which WINDOW is scrolled vertically.
6180 Use the selected window if WINDOW is nil or omitted.
6181 Normally, value is a multiple of the canonical character height of WINDOW;
6182 optional second arg PIXELS-P means value is measured in pixels. */)
6183 (Lisp_Object window
, Lisp_Object pixels_p
)
6190 window
= selected_window
;
6192 CHECK_WINDOW (window
);
6193 w
= XWINDOW (window
);
6194 f
= XFRAME (w
->frame
);
6196 if (FRAME_WINDOW_P (f
))
6197 result
= (NILP (pixels_p
)
6198 ? FRAME_CANON_Y_FROM_PIXEL_Y (f
, -w
->vscroll
)
6199 : make_number (-w
->vscroll
));
6201 result
= make_number (0);
6206 DEFUN ("set-window-vscroll", Fset_window_vscroll
, Sset_window_vscroll
,
6208 doc
: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6209 WINDOW nil means use the selected window. Normally, VSCROLL is a
6210 non-negative multiple of the canonical character height of WINDOW;
6211 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6212 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6213 corresponds to an integral number of pixels. The return value is the
6214 result of this rounding.
6215 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6216 (Lisp_Object window
, Lisp_Object vscroll
, Lisp_Object pixels_p
)
6222 window
= selected_window
;
6224 CHECK_WINDOW (window
);
6225 CHECK_NUMBER_OR_FLOAT (vscroll
);
6227 w
= XWINDOW (window
);
6228 f
= XFRAME (w
->frame
);
6230 if (FRAME_WINDOW_P (f
))
6232 int old_dy
= w
->vscroll
;
6234 w
->vscroll
= - (NILP (pixels_p
)
6235 ? FRAME_LINE_HEIGHT (f
) * XFLOATINT (vscroll
)
6236 : XFLOATINT (vscroll
));
6237 w
->vscroll
= min (w
->vscroll
, 0);
6239 if (w
->vscroll
!= old_dy
)
6241 /* Adjust glyph matrix of the frame if the virtual display
6242 area becomes larger than before. */
6243 if (w
->vscroll
< 0 && w
->vscroll
< old_dy
)
6246 /* Prevent redisplay shortcuts. */
6247 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
6251 return Fwindow_vscroll (window
, pixels_p
);
6255 /* Call FN for all leaf windows on frame F. FN is called with the
6256 first argument being a pointer to the leaf window, and with
6257 additional argument USER_DATA. Stops when FN returns 0. */
6260 foreach_window (struct frame
*f
, int (*fn
) (struct window
*, void *),
6263 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
6264 if (WINDOWP (FRAME_ROOT_WINDOW (f
)))
6265 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f
)), fn
, user_data
);
6269 /* Helper function for foreach_window. Call FN for all leaf windows
6270 reachable from W. FN is called with the first argument being a
6271 pointer to the leaf window, and with additional argument USER_DATA.
6272 Stop when FN returns 0. Value is 0 if stopped by FN. */
6275 foreach_window_1 (struct window
*w
, int (*fn
) (struct window
*, void *), void *user_data
)
6279 for (cont
= 1; w
&& cont
;)
6281 if (!NILP (w
->hchild
))
6282 cont
= foreach_window_1 (XWINDOW (w
->hchild
), fn
, user_data
);
6283 else if (!NILP (w
->vchild
))
6284 cont
= foreach_window_1 (XWINDOW (w
->vchild
), fn
, user_data
);
6286 cont
= fn (w
, user_data
);
6288 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
6295 /* Freeze or unfreeze the window start of W unless it is a
6296 mini-window or the selected window. FREEZE_P non-null means freeze
6297 the window start. */
6300 freeze_window_start (struct window
*w
, void *freeze_p
)
6302 if (MINI_WINDOW_P (w
)
6303 || (WINDOWP (selected_window
) /* Can be nil in corner cases. */
6304 && (w
== XWINDOW (selected_window
)
6305 || (MINI_WINDOW_P (XWINDOW (selected_window
))
6306 && ! NILP (Vminibuf_scroll_window
)
6307 && w
== XWINDOW (Vminibuf_scroll_window
)))))
6310 w
->frozen_window_start_p
= freeze_p
!= NULL
;
6315 /* Freeze or unfreeze the window starts of all leaf windows on frame
6316 F, except the selected window and a mini-window. FREEZE_P non-zero
6317 means freeze the window start. */
6320 freeze_window_starts (struct frame
*f
, int freeze_p
)
6322 foreach_window (f
, freeze_window_start
, (void *) (freeze_p
? f
: 0));
6326 /***********************************************************************
6328 ***********************************************************************/
6330 /* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2
6331 describe the same state of affairs. This is used by Fequal.
6333 ignore_positions non-zero means ignore non-matching scroll positions
6336 This ignores a couple of things like the dedicatedness status of
6337 window, splits, nest and the like. This might have to be fixed. */
6340 compare_window_configurations (Lisp_Object configuration1
, Lisp_Object configuration2
, int ignore_positions
)
6342 register struct save_window_data
*d1
, *d2
;
6343 struct Lisp_Vector
*sws1
, *sws2
;
6346 CHECK_WINDOW_CONFIGURATION (configuration1
);
6347 CHECK_WINDOW_CONFIGURATION (configuration2
);
6349 d1
= (struct save_window_data
*) XVECTOR (configuration1
);
6350 d2
= (struct save_window_data
*) XVECTOR (configuration2
);
6351 sws1
= XVECTOR (d1
->saved_windows
);
6352 sws2
= XVECTOR (d2
->saved_windows
);
6354 /* Frame settings must match. */
6355 if (d1
->frame_cols
!= d2
->frame_cols
6356 || d1
->frame_lines
!= d2
->frame_lines
6357 || d1
->frame_menu_bar_lines
!= d2
->frame_menu_bar_lines
6358 || !EQ (d1
->selected_frame
, d2
->selected_frame
)
6359 || !EQ (d1
->current_buffer
, d2
->current_buffer
)
6360 || (!ignore_positions
6361 && (!EQ (d1
->minibuf_scroll_window
, d2
->minibuf_scroll_window
)
6362 || !EQ (d1
->minibuf_selected_window
, d2
->minibuf_selected_window
)))
6363 || !EQ (d1
->focus_frame
, d2
->focus_frame
)
6364 /* Verify that the two configurations have the same number of windows. */
6365 || sws1
->header
.size
!= sws2
->header
.size
)
6368 for (i
= 0; i
< sws1
->header
.size
; i
++)
6370 struct saved_window
*sw1
, *sw2
;
6372 sw1
= SAVED_WINDOW_N (sws1
, i
);
6373 sw2
= SAVED_WINDOW_N (sws2
, i
);
6376 /* The "current" windows in the two configurations must
6377 correspond to each other. */
6378 EQ (d1
->current_window
, sw1
->window
)
6379 != EQ (d2
->current_window
, sw2
->window
)
6380 /* Windows' buffers must match. */
6381 || !EQ (sw1
->buffer
, sw2
->buffer
)
6382 || !EQ (sw1
->left_col
, sw2
->left_col
)
6383 || !EQ (sw1
->top_line
, sw2
->top_line
)
6384 || !EQ (sw1
->total_cols
, sw2
->total_cols
)
6385 || !EQ (sw1
->total_lines
, sw2
->total_lines
)
6386 || !EQ (sw1
->display_table
, sw2
->display_table
)
6387 /* The next two disjuncts check the window structure for
6389 || !EQ (sw1
->parent
, sw2
->parent
)
6390 || !EQ (sw1
->prev
, sw2
->prev
)
6391 || (!ignore_positions
6392 && (!EQ (sw1
->hscroll
, sw2
->hscroll
)
6393 || !EQ (sw1
->min_hscroll
, sw2
->min_hscroll
)
6394 || !EQ (sw1
->start_at_line_beg
, sw2
->start_at_line_beg
)
6395 || NILP (Fequal (sw1
->start
, sw2
->start
))
6396 || NILP (Fequal (sw1
->pointm
, sw2
->pointm
))
6397 || NILP (Fequal (sw1
->mark
, sw2
->mark
))))
6398 || !EQ (sw1
->left_margin_cols
, sw2
->left_margin_cols
)
6399 || !EQ (sw1
->right_margin_cols
, sw2
->right_margin_cols
)
6400 || !EQ (sw1
->left_fringe_width
, sw2
->left_fringe_width
)
6401 || !EQ (sw1
->right_fringe_width
, sw2
->right_fringe_width
)
6402 || !EQ (sw1
->fringes_outside_margins
, sw2
->fringes_outside_margins
)
6403 || !EQ (sw1
->scroll_bar_width
, sw2
->scroll_bar_width
)
6404 || !EQ (sw1
->vertical_scroll_bar_type
, sw2
->vertical_scroll_bar_type
))
6411 DEFUN ("compare-window-configurations", Fcompare_window_configurations
,
6412 Scompare_window_configurations
, 2, 2, 0,
6413 doc
: /* Compare two window configurations as regards the structure of windows.
6414 This function ignores details such as the values of point and mark
6415 and scrolling positions. */)
6416 (Lisp_Object x
, Lisp_Object y
)
6418 if (compare_window_configurations (x
, y
, 1))
6424 init_window_once (void)
6426 struct frame
*f
= make_initial_frame ();
6427 XSETFRAME (selected_frame
, f
);
6428 Vterminal_frame
= selected_frame
;
6429 minibuf_window
= f
->minibuffer_window
;
6430 selected_window
= f
->selected_window
;
6431 last_nonminibuf_frame
= f
;
6433 window_initialized
= 1;
6439 Vwindow_list
= Qnil
;
6443 syms_of_window (void)
6445 DEFSYM (Qscroll_up
, "scroll-up");
6446 DEFSYM (Qscroll_down
, "scroll-down");
6447 DEFSYM (Qscroll_command
, "scroll-command");
6449 Fput (Qscroll_up
, Qscroll_command
, Qt
);
6450 Fput (Qscroll_down
, Qscroll_command
, Qt
);
6452 DEFSYM (Qwindow_configuration_change_hook
, "window-configuration-change-hook");
6453 DEFSYM (Qwindowp
, "windowp");
6454 DEFSYM (Qwindow_configuration_p
, "window-configuration-p");
6455 DEFSYM (Qwindow_live_p
, "window-live-p");
6456 DEFSYM (Qwindow_deletable_p
, "window-deletable-p");
6457 DEFSYM (Qdelete_window
, "delete-window");
6458 DEFSYM (Qwindow_resize_root_window
, "window--resize-root-window");
6459 DEFSYM (Qwindow_resize_root_window_vertically
, "window--resize-root-window-vertically");
6460 DEFSYM (Qsafe
, "safe");
6461 DEFSYM (Qdisplay_buffer
, "display-buffer");
6462 DEFSYM (Qreplace_buffer_in_windows
, "replace-buffer-in-windows");
6463 DEFSYM (Qrecord_window_buffer
, "record-window-buffer");
6464 DEFSYM (Qget_mru_window
, "get-mru-window");
6465 DEFSYM (Qtemp_buffer_show_hook
, "temp-buffer-show-hook");
6466 DEFSYM (Qabove
, "above");
6467 DEFSYM (Qbelow
, "below");
6468 DEFSYM (Qauto_buffer_name
, "auto-buffer-name");
6470 staticpro (&Vwindow_list
);
6472 minibuf_selected_window
= Qnil
;
6473 staticpro (&minibuf_selected_window
);
6475 window_scroll_pixel_based_preserve_x
= -1;
6476 window_scroll_pixel_based_preserve_y
= -1;
6477 window_scroll_preserve_hpos
= -1;
6478 window_scroll_preserve_vpos
= -1;
6480 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function
,
6481 doc
: /* Non-nil means call as function to display a help buffer.
6482 The function is called with one argument, the buffer to be displayed.
6483 Used by `with-output-to-temp-buffer'.
6484 If this function is used, then it must do the entire job of showing
6485 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
6486 Vtemp_buffer_show_function
= Qnil
;
6488 DEFVAR_LISP ("temp-buffer-show-specifiers", Vtemp_buffer_show_specifiers
,
6489 doc
: /* Buffer display specifiers used by `with-output-to-temp-buffer'.
6490 These specifiers are passed by `with-output-to-temp-buffer' as second
6491 argument to `display-buffer'. Applications should only let-bind this
6492 around a call to `with-output-to-temp-buffer'.
6494 For a description of buffer display specifiers see the variable
6495 `display-buffer-alist'. */);
6496 Vtemp_buffer_show_specifiers
= Qnil
;
6498 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window
,
6499 doc
: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
6500 Vminibuf_scroll_window
= Qnil
;
6502 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows
,
6503 doc
: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
6504 If the minibuffer is active, the `minibuffer-scroll-window' mode line
6505 is displayed in the `mode-line' face. */);
6506 mode_line_in_non_selected_windows
= 1;
6508 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer
,
6509 doc
: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
6510 Vother_window_scroll_buffer
= Qnil
;
6512 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p
,
6513 doc
: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
6514 auto_window_vscroll_p
= 1;
6516 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines
,
6517 doc
: /* Number of lines of continuity when scrolling by screenfuls. */);
6518 next_screen_context_lines
= 2;
6520 DEFVAR_LISP ("scroll-preserve-screen-position",
6521 Vscroll_preserve_screen_position
,
6522 doc
: /* Controls if scroll commands move point to keep its screen position unchanged.
6523 A value of nil means point does not keep its screen position except
6524 at the scroll margin or window boundary respectively.
6525 A value of t means point keeps its screen position if the scroll
6526 command moved it vertically out of the window, e.g. when scrolling
6528 Any other value means point always keeps its screen position.
6529 Scroll commands should have the `scroll-command' property
6530 on their symbols to be controlled by this variable. */);
6531 Vscroll_preserve_screen_position
= Qnil
;
6533 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type
,
6534 doc
: /* Type of marker to use for `window-point'. */);
6535 Vwindow_point_insertion_type
= Qnil
;
6537 DEFVAR_LISP ("window-configuration-change-hook",
6538 Vwindow_configuration_change_hook
,
6539 doc
: /* Functions to call when window configuration changes.
6540 The buffer-local part is run once per window, with the relevant window
6541 selected; while the global part is run only once for the modified frame,
6542 with the relevant frame selected. */);
6543 Vwindow_configuration_change_hook
= Qnil
;
6545 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay
,
6546 doc
: /* If non-nil, then the `recenter' command with a nil argument
6547 will redraw the entire frame; the special value `tty' causes the
6548 frame to be redrawn only if it is a tty frame. */);
6549 Vrecenter_redisplay
= Qtty
;
6551 DEFVAR_LISP ("window-splits", Vwindow_splits
,
6552 doc
: /* Non-nil means splitting windows is handled specially.
6553 If this variable is nil, splitting a window gets the entire screen space
6554 for displaying the new window from the window to split. If this
6555 variable is non-nil, splitting a window may resize all windows in the
6556 same combination. This also allows to split a window that is otherwise
6557 too small or of fixed size.
6559 The value of this variable is also assigned to the split status of the
6560 new window and, provided the old and new window form a new combination,
6561 to the window that was split as well. The split status of a window can
6562 be retrieved with the function `window-splits' and altered by the
6563 function `set-window-splits'.
6565 If the value of the variable `window-nest' is non-nil, the space for the
6566 new window is exclusively taken from the window that shall be split, but
6567 the split status of the window that is split as well as that of the new
6568 window are still set to the value of this variable. */);
6569 Vwindow_splits
= Qnil
;
6571 DEFVAR_LISP ("window-nest", Vwindow_nest
,
6572 doc
: /* Non-nil means splitting a window makes a new parent window.
6573 If this variable is nil, splitting a window will create a new parent
6574 window only if the window has no parent window or the window shall
6575 become a combination orthogonal to the one it it is part of.
6577 If this variable is non-nil, splitting a window always creates a new
6578 parent window. If all splits behave this way, each frame's window tree
6579 is a binary tree and every window but the frame's root window has
6580 exactly one sibling.
6582 The value of this variable is also assigned to the nest status of the
6583 new parent window. The nest status of a window can be retrieved via the
6584 function `window-nest' and altered by the function `set-window-nest'. */);
6585 Vwindow_nest
= Qnil
;
6587 defsubr (&Sselected_window
);
6588 defsubr (&Sminibuffer_window
);
6589 defsubr (&Swindow_minibuffer_p
);
6590 defsubr (&Swindowp
);
6591 defsubr (&Swindow_live_p
);
6592 defsubr (&Swindow_frame
);
6593 defsubr (&Sframe_root_window
);
6594 defsubr (&Sframe_first_window
);
6595 defsubr (&Sframe_selected_window
);
6596 defsubr (&Sset_frame_selected_window
);
6597 defsubr (&Spos_visible_in_window_p
);
6598 defsubr (&Swindow_line_height
);
6599 defsubr (&Swindow_clone_number
);
6600 defsubr (&Swindow_buffer
);
6601 defsubr (&Swindow_parent
);
6602 defsubr (&Swindow_top_child
);
6603 defsubr (&Swindow_left_child
);
6604 defsubr (&Swindow_next_sibling
);
6605 defsubr (&Swindow_prev_sibling
);
6606 defsubr (&Swindow_splits
);
6607 defsubr (&Sset_window_splits
);
6608 defsubr (&Swindow_nest
);
6609 defsubr (&Sset_window_nest
);
6610 defsubr (&Swindow_use_time
);
6611 defsubr (&Swindow_top_line
);
6612 defsubr (&Swindow_left_column
);
6613 defsubr (&Swindow_total_size
);
6614 defsubr (&Swindow_normal_size
);
6615 defsubr (&Swindow_new_total
);
6616 defsubr (&Swindow_new_normal
);
6617 defsubr (&Sset_window_new_total
);
6618 defsubr (&Sset_window_new_normal
);
6619 defsubr (&Swindow_resize_apply
);
6620 defsubr (&Swindow_body_size
);
6621 defsubr (&Swindow_hscroll
);
6622 defsubr (&Sset_window_hscroll
);
6623 defsubr (&Swindow_redisplay_end_trigger
);
6624 defsubr (&Sset_window_redisplay_end_trigger
);
6625 defsubr (&Swindow_edges
);
6626 defsubr (&Swindow_pixel_edges
);
6627 defsubr (&Swindow_absolute_pixel_edges
);
6628 defsubr (&Swindow_inside_edges
);
6629 defsubr (&Swindow_inside_pixel_edges
);
6630 defsubr (&Swindow_inside_absolute_pixel_edges
);
6631 defsubr (&Scoordinates_in_window_p
);
6632 defsubr (&Swindow_at
);
6633 defsubr (&Swindow_point
);
6634 defsubr (&Swindow_start
);
6635 defsubr (&Swindow_end
);
6636 defsubr (&Sset_window_point
);
6637 defsubr (&Sset_window_start
);
6638 defsubr (&Swindow_dedicated_p
);
6639 defsubr (&Sset_window_dedicated_p
);
6640 defsubr (&Swindow_display_table
);
6641 defsubr (&Sset_window_display_table
);
6642 defsubr (&Snext_window
);
6643 defsubr (&Sprevious_window
);
6644 defsubr (&Sget_buffer_window
);
6645 defsubr (&Sdelete_other_windows_internal
);
6646 defsubr (&Sdelete_window_internal
);
6647 defsubr (&Sresize_mini_window_internal
);
6648 defsubr (&Sset_window_buffer
);
6649 defsubr (&Sset_window_clone_number
);
6650 defsubr (&Srun_window_configuration_change_hook
);
6651 defsubr (&Sselect_window
);
6652 defsubr (&Sforce_window_update
);
6653 defsubr (&Stemp_output_buffer_show
);
6654 defsubr (&Ssplit_window_internal
);
6655 defsubr (&Sscroll_up
);
6656 defsubr (&Sscroll_down
);
6657 defsubr (&Sscroll_left
);
6658 defsubr (&Sscroll_right
);
6659 defsubr (&Sother_window_for_scrolling
);
6660 defsubr (&Sscroll_other_window
);
6661 defsubr (&Sminibuffer_selected_window
);
6662 defsubr (&Srecenter
);
6663 defsubr (&Swindow_text_height
);
6664 defsubr (&Smove_to_window_line
);
6665 defsubr (&Swindow_configuration_p
);
6666 defsubr (&Swindow_configuration_frame
);
6667 defsubr (&Sset_window_configuration
);
6668 defsubr (&Scurrent_window_configuration
);
6669 defsubr (&Sset_window_margins
);
6670 defsubr (&Swindow_margins
);
6671 defsubr (&Sset_window_fringes
);
6672 defsubr (&Swindow_fringes
);
6673 defsubr (&Sset_window_scroll_bars
);
6674 defsubr (&Swindow_scroll_bars
);
6675 defsubr (&Swindow_vscroll
);
6676 defsubr (&Sset_window_vscroll
);
6677 defsubr (&Scompare_window_configurations
);
6678 defsubr (&Swindow_list
);
6679 defsubr (&Swindow_list_1
);
6680 defsubr (&Swindow_prev_buffers
);
6681 defsubr (&Sset_window_prev_buffers
);
6682 defsubr (&Swindow_next_buffers
);
6683 defsubr (&Sset_window_next_buffers
);
6684 defsubr (&Swindow_parameters
);
6685 defsubr (&Swindow_parameter
);
6686 defsubr (&Sset_window_parameter
);
6690 keys_of_window (void)
6692 initial_define_key (control_x_map
, '<', "scroll-left");
6693 initial_define_key (control_x_map
, '>', "scroll-right");
6695 initial_define_key (global_map
, Ctl ('V'), "scroll-up-command");
6696 initial_define_key (meta_map
, Ctl ('V'), "scroll-other-window");
6697 initial_define_key (meta_map
, 'v', "scroll-down-command");