1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985-1987, 1993-1998, 2000-2012
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/>. */
23 #define WINDOW_INLINE EXTERN_INLINE
28 #include "character.h"
38 #include "dispextern.h"
39 #include "blockinput.h"
40 #include "intervals.h"
41 #include "termhooks.h" /* For FRAME_TERMINAL. */
45 #endif /* HAVE_X_WINDOWS */
56 Lisp_Object Qwindowp
, Qwindow_live_p
;
57 static Lisp_Object Qwindow_valid_p
;
58 static Lisp_Object Qwindow_configuration_p
, Qrecord_window_buffer
;
59 static Lisp_Object Qwindow_deletable_p
, Qdelete_window
, Qdisplay_buffer
;
60 static Lisp_Object Qreplace_buffer_in_windows
, Qget_mru_window
;
61 static Lisp_Object Qwindow_resize_root_window
, Qwindow_resize_root_window_vertically
;
62 static Lisp_Object Qscroll_up
, Qscroll_down
, Qscroll_command
;
63 static Lisp_Object Qsafe
, Qabove
, Qbelow
, Qwindow_size
, Qclone_of
;
65 static int displayed_window_lines (struct window
*);
66 static int count_windows (struct window
*);
67 static int get_leaf_windows (struct window
*, struct window
**, int);
68 static void window_scroll (Lisp_Object
, EMACS_INT
, int, int);
69 static void window_scroll_pixel_based (Lisp_Object
, int, int, int);
70 static void window_scroll_line_based (Lisp_Object
, int, int, int);
71 static int freeze_window_start (struct window
*, void *);
72 static Lisp_Object
window_list (void);
73 static int add_window_to_list (struct window
*, void *);
74 static int candidate_window_p (Lisp_Object
, Lisp_Object
, Lisp_Object
,
76 static Lisp_Object
next_window (Lisp_Object
, Lisp_Object
,
78 static void decode_next_window_args (Lisp_Object
*, Lisp_Object
*,
80 static void foreach_window (struct frame
*,
81 int (* fn
) (struct window
*, void *),
83 static int foreach_window_1 (struct window
*,
84 int (* fn
) (struct window
*, void *),
86 static Lisp_Object
window_list_1 (Lisp_Object
, Lisp_Object
, Lisp_Object
);
87 static int window_resize_check (struct window
*, int);
88 static void window_resize_apply (struct window
*, int);
89 static Lisp_Object
select_window (Lisp_Object
, Lisp_Object
, int);
91 /* This is the window in which the terminal's cursor should
92 be left when nothing is being done with it. This must
93 always be a leaf window, and its buffer is selected by
94 the top level editing loop at the end of each command.
96 This value is always the same as
97 FRAME_SELECTED_WINDOW (selected_frame). */
98 Lisp_Object selected_window
;
100 /* A list of all windows for use by next_window and Fwindow_list.
101 Functions creating or deleting windows should invalidate this cache
102 by setting it to nil. */
103 Lisp_Object Vwindow_list
;
105 /* The mini-buffer window of the selected frame.
106 Note that you cannot test for mini-bufferness of an arbitrary window
107 by comparing against this; but you can test for mini-bufferness of
108 the selected window. */
109 Lisp_Object minibuf_window
;
111 /* Non-nil means it is the window whose mode line should be
112 shown as the selected window when the minibuffer is selected. */
113 Lisp_Object minibuf_selected_window
;
115 /* Hook run at end of temp_output_buffer_show. */
116 static Lisp_Object Qtemp_buffer_show_hook
;
118 /* Incremented for each window created. */
119 static int sequence_number
;
121 /* Nonzero after init_window_once has finished. */
122 static int window_initialized
;
124 /* Hook to run when window config changes. */
125 static Lisp_Object Qwindow_configuration_change_hook
;
127 /* Used by the function window_scroll_pixel_based */
128 static int window_scroll_pixel_based_preserve_x
;
129 static int window_scroll_pixel_based_preserve_y
;
131 /* Same for window_scroll_line_based. */
132 static EMACS_INT window_scroll_preserve_hpos
;
133 static EMACS_INT window_scroll_preserve_vpos
;
135 /* These setters are used only in this file, so they can be private. */
137 wset_combination_limit (struct window
*w
, Lisp_Object val
)
139 w
->combination_limit
= val
;
142 wset_dedicated (struct window
*w
, Lisp_Object val
)
147 wset_display_table (struct window
*w
, Lisp_Object val
)
149 w
->display_table
= val
;
152 wset_hchild (struct window
*w
, Lisp_Object val
)
157 wset_left_fringe_width (struct window
*w
, Lisp_Object val
)
159 w
->left_fringe_width
= val
;
162 wset_left_margin_cols (struct window
*w
, Lisp_Object val
)
164 w
->left_margin_cols
= val
;
167 wset_new_normal (struct window
*w
, Lisp_Object val
)
172 wset_new_total (struct window
*w
, Lisp_Object val
)
177 wset_normal_cols (struct window
*w
, Lisp_Object val
)
179 w
->normal_cols
= val
;
182 wset_normal_lines (struct window
*w
, Lisp_Object val
)
184 w
->normal_lines
= val
;
187 wset_parent (struct window
*w
, Lisp_Object val
)
192 wset_pointm (struct window
*w
, Lisp_Object val
)
197 wset_right_fringe_width (struct window
*w
, Lisp_Object val
)
199 w
->right_fringe_width
= val
;
202 wset_right_margin_cols (struct window
*w
, Lisp_Object val
)
204 w
->right_margin_cols
= val
;
207 wset_scroll_bar_width (struct window
*w
, Lisp_Object val
)
209 w
->scroll_bar_width
= val
;
212 wset_start (struct window
*w
, Lisp_Object val
)
217 wset_temslot (struct window
*w
, Lisp_Object val
)
222 wset_vchild (struct window
*w
, Lisp_Object val
)
227 wset_vertical_scroll_bar_type (struct window
*w
, Lisp_Object val
)
229 w
->vertical_scroll_bar_type
= val
;
232 wset_window_parameters (struct window
*w
, Lisp_Object val
)
234 w
->window_parameters
= val
;
238 decode_live_window (register Lisp_Object window
)
241 return XWINDOW (selected_window
);
243 CHECK_LIVE_WINDOW (window
);
244 return XWINDOW (window
);
248 decode_any_window (register Lisp_Object window
)
253 return XWINDOW (selected_window
);
255 CHECK_WINDOW (window
);
256 w
= XWINDOW (window
);
260 static struct window
*
261 decode_valid_window (register Lisp_Object window
)
266 return XWINDOW (selected_window
);
268 CHECK_VALID_WINDOW (window
);
269 w
= XWINDOW (window
);
273 /* Build a frequently used 4-integer (X Y W H) list. */
276 quad (EMACS_INT x
, EMACS_INT y
, EMACS_INT w
, EMACS_INT h
)
278 return list4 (make_number (x
), make_number (y
),
279 make_number (w
), make_number (h
));
282 DEFUN ("windowp", Fwindowp
, Swindowp
, 1, 1, 0,
283 doc
: /* Return t if OBJECT is a window and nil otherwise. */)
286 return WINDOWP (object
) ? Qt
: Qnil
;
289 DEFUN ("window-valid-p", Fwindow_valid_p
, Swindow_valid_p
, 1, 1, 0,
290 doc
: /* Return t if OBJECT is a valid window and nil otherwise.
291 A valid window is either a window that displays a buffer or an internal
292 window. Deleted windows are not live. */)
295 return WINDOW_VALID_P (object
) ? Qt
: Qnil
;
298 DEFUN ("window-live-p", Fwindow_live_p
, Swindow_live_p
, 1, 1, 0,
299 doc
: /* Return t if OBJECT is a live window and nil otherwise.
300 A live window is a window that displays a buffer.
301 Internal windows and deleted windows are not live. */)
304 return WINDOW_LIVE_P (object
) ? Qt
: Qnil
;
307 /* Frames and windows. */
308 DEFUN ("window-frame", Fwindow_frame
, Swindow_frame
, 0, 1, 0,
309 doc
: /* Return the frame that window WINDOW is on.
310 WINDOW must be a valid window and defaults to the selected one. */)
313 return decode_valid_window (window
)->frame
;
316 DEFUN ("frame-root-window", Fframe_root_window
, Sframe_root_window
, 0, 1, 0,
317 doc
: /* Return the root window of FRAME-OR-WINDOW.
318 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
319 With a frame argument, return that frame's root window.
320 With a window argument, return the root window of that window's frame. */)
321 (Lisp_Object frame_or_window
)
325 if (NILP (frame_or_window
))
326 window
= SELECTED_FRAME ()->root_window
;
327 else if (WINDOW_VALID_P (frame_or_window
))
328 window
= XFRAME (XWINDOW (frame_or_window
)->frame
)->root_window
;
331 CHECK_LIVE_FRAME (frame_or_window
);
332 window
= XFRAME (frame_or_window
)->root_window
;
338 DEFUN ("minibuffer-window", Fminibuffer_window
, Sminibuffer_window
, 0, 1, 0,
339 doc
: /* Return the minibuffer window for frame FRAME.
340 If FRAME is omitted or nil, it defaults to the selected frame. */)
343 return FRAME_MINIBUF_WINDOW (decode_live_frame (frame
));
346 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p
,
347 Swindow_minibuffer_p
, 0, 1, 0,
348 doc
: /* Return non-nil if WINDOW is a minibuffer window.
349 WINDOW must be a valid window and defaults to the selected one. */)
352 return MINI_WINDOW_P (decode_valid_window (window
)) ? Qt
: Qnil
;
355 /* Don't move this to window.el - this must be a safe routine. */
356 DEFUN ("frame-first-window", Fframe_first_window
, Sframe_first_window
, 0, 1, 0,
357 doc
: /* Return the topmost, leftmost live window on FRAME-OR-WINDOW.
358 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
359 Else if FRAME-OR-WINDOW denotes a valid window, return the first window
360 of that window's frame. If FRAME-OR-WINDOW denotes a live frame, return
361 the first window of that frame. */)
362 (Lisp_Object frame_or_window
)
366 if (NILP (frame_or_window
))
367 window
= SELECTED_FRAME ()->root_window
;
368 else if (WINDOW_VALID_P (frame_or_window
))
369 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->root_window
;
372 CHECK_LIVE_FRAME (frame_or_window
);
373 window
= XFRAME (frame_or_window
)->root_window
;
376 while (NILP (XWINDOW (window
)->buffer
))
378 if (! NILP (XWINDOW (window
)->hchild
))
379 window
= XWINDOW (window
)->hchild
;
380 else if (! NILP (XWINDOW (window
)->vchild
))
381 window
= XWINDOW (window
)->vchild
;
389 DEFUN ("frame-selected-window", Fframe_selected_window
,
390 Sframe_selected_window
, 0, 1, 0,
391 doc
: /* Return the selected window of FRAME-OR-WINDOW.
392 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
393 Else if FRAME-OR-WINDOW denotes a valid window, return the selected
394 window of that window's frame. If FRAME-OR-WINDOW denotes a live frame,
395 return the selected window of that frame. */)
396 (Lisp_Object frame_or_window
)
400 if (NILP (frame_or_window
))
401 window
= SELECTED_FRAME ()->selected_window
;
402 else if (WINDOW_VALID_P (frame_or_window
))
403 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->selected_window
;
406 CHECK_LIVE_FRAME (frame_or_window
);
407 window
= XFRAME (frame_or_window
)->selected_window
;
413 DEFUN ("set-frame-selected-window", Fset_frame_selected_window
,
414 Sset_frame_selected_window
, 2, 3, 0,
415 doc
: /* Set selected window of FRAME to WINDOW.
416 FRAME must be a live frame and defaults to the selected one. If FRAME
417 is the selected frame, this makes WINDOW the selected window. Optional
418 argument NORECORD non-nil means to neither change the order of recently
419 selected windows nor the buffer list. WINDOW must denote a live window.
421 (Lisp_Object frame
, Lisp_Object window
, Lisp_Object norecord
)
424 frame
= selected_frame
;
426 CHECK_LIVE_FRAME (frame
);
427 CHECK_LIVE_WINDOW (window
);
429 if (! EQ (frame
, WINDOW_FRAME (XWINDOW (window
))))
430 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
432 if (EQ (frame
, selected_frame
))
433 return Fselect_window (window
, norecord
);
436 fset_selected_window (XFRAME (frame
), window
);
441 DEFUN ("selected-window", Fselected_window
, Sselected_window
, 0, 0, 0,
442 doc
: /* Return the selected window.
443 The selected window is the window in which the standard cursor for
444 selected windows appears and to which many commands apply. */)
447 return selected_window
;
450 int window_select_count
;
452 /* If select_window is called with inhibit_point_swap non-zero it will
453 not store point of the old selected window's buffer back into that
454 window's pointm slot. This is needed by Fset_window_configuration to
455 avoid that the display routine is called with selected_window set to
456 Qnil causing a subsequent crash. */
458 select_window (Lisp_Object window
, Lisp_Object norecord
, int inhibit_point_swap
)
460 register struct window
*w
;
461 register struct window
*ow
;
464 CHECK_LIVE_WINDOW (window
);
466 w
= XWINDOW (window
);
467 w
->frozen_window_start_p
= 0;
471 w
->use_time
= ++window_select_count
;
472 record_buffer (w
->buffer
);
475 /* Make the selected window's buffer current. */
476 Fset_buffer (w
->buffer
);
478 if (EQ (window
, selected_window
) && !inhibit_point_swap
)
481 sf
= SELECTED_FRAME ();
482 if (XFRAME (WINDOW_FRAME (w
)) != sf
)
484 fset_selected_window (XFRAME (WINDOW_FRAME (w
)), window
);
485 /* Use this rather than Fhandle_switch_frame
486 so that FRAME_FOCUS_FRAME is moved appropriately as we
487 move around in the state where a minibuffer in a separate
489 Fselect_frame (WINDOW_FRAME (w
), norecord
);
490 /* Fselect_frame called us back so we've done all the work already. */
491 eassert (EQ (window
, selected_window
));
495 fset_selected_window (sf
, window
);
497 /* Store the old selected window's buffer's point in pointm of the old
498 selected window. It belongs to that window, and when the window is
499 not selected, must be in the window. */
500 if (!inhibit_point_swap
)
502 ow
= XWINDOW (selected_window
);
503 if (! NILP (ow
->buffer
))
504 set_marker_both (ow
->pointm
, ow
->buffer
,
505 BUF_PT (XBUFFER (ow
->buffer
)),
506 BUF_PT_BYTE (XBUFFER (ow
->buffer
)));
509 selected_window
= window
;
510 bset_last_selected_window (XBUFFER (w
->buffer
), window
);
512 /* Go to the point recorded in the window.
513 This is important when the buffer is in more
514 than one window. It also matters when
515 redisplay_window has altered point after scrolling,
516 because it makes the change only in the window. */
518 register ptrdiff_t new_point
= marker_position (w
->pointm
);
519 if (new_point
< BEGV
)
521 else if (new_point
> ZV
)
527 windows_or_buffers_changed
++;
531 DEFUN ("select-window", Fselect_window
, Sselect_window
, 1, 2, 0,
532 doc
: /* Select WINDOW. Most editing will apply to WINDOW's buffer.
533 Also make WINDOW's buffer current and make WINDOW the frame's selected
534 window. Return WINDOW.
536 Optional second arg NORECORD non-nil means do not put this buffer at the
537 front of the buffer list and do not make this window the most recently
540 Note that the main editor command loop sets the current buffer to the
541 buffer of the selected window before each command. */)
542 (register Lisp_Object window
, Lisp_Object norecord
)
544 return select_window (window
, norecord
, 0);
547 DEFUN ("window-buffer", Fwindow_buffer
, Swindow_buffer
, 0, 1, 0,
548 doc
: /* Return the buffer displayed in window WINDOW.
549 If WINDOW is omitted or nil, it defaults to the selected window.
550 Return nil for an internal window or a deleted window. */)
553 return decode_any_window (window
)->buffer
;
556 DEFUN ("window-parent", Fwindow_parent
, Swindow_parent
, 0, 1, 0,
557 doc
: /* Return the parent window of window WINDOW.
558 WINDOW must be a valid window and defaults to the selected one.
559 Return nil for a window with no parent (e.g. a root window). */)
562 return decode_valid_window (window
)->parent
;
565 DEFUN ("window-top-child", Fwindow_top_child
, Swindow_top_child
, 0, 1, 0,
566 doc
: /* Return the topmost child window of window WINDOW.
567 WINDOW must be a valid window and defaults to the selected one.
568 Return nil if WINDOW is a live window (live windows have no children).
569 Return nil if WINDOW is an internal window whose children form a
570 horizontal combination. */)
573 return decode_valid_window (window
)->vchild
;
576 DEFUN ("window-left-child", Fwindow_left_child
, Swindow_left_child
, 0, 1, 0,
577 doc
: /* Return the leftmost child window of window WINDOW.
578 WINDOW must be a valid window and defaults to the selected one.
579 Return nil if WINDOW is a live window (live windows have no children).
580 Return nil if WINDOW is an internal window whose children form a
581 vertical combination. */)
584 return decode_valid_window (window
)->hchild
;
587 DEFUN ("window-next-sibling", Fwindow_next_sibling
, Swindow_next_sibling
, 0, 1, 0,
588 doc
: /* Return the next sibling window of window WINDOW.
589 WINDOW must be a valid window and defaults to the selected one.
590 Return nil if WINDOW has no next sibling. */)
593 return decode_valid_window (window
)->next
;
596 DEFUN ("window-prev-sibling", Fwindow_prev_sibling
, Swindow_prev_sibling
, 0, 1, 0,
597 doc
: /* Return the previous sibling window of window WINDOW.
598 WINDOW must be a valid window and defaults to the selected one.
599 Return nil if WINDOW has no previous sibling. */)
602 return decode_valid_window (window
)->prev
;
605 DEFUN ("window-combination-limit", Fwindow_combination_limit
, Swindow_combination_limit
, 1, 1, 0,
606 doc
: /* Return combination limit of window WINDOW.
607 If the return value is nil, child windows of WINDOW can be recombined with
608 WINDOW's siblings. A return value of t means that child windows of
609 WINDOW are never \(re-)combined with WINDOW's siblings.
611 WINDOW must be a valid window. The return value is meaningful for
612 internal windows only. */)
615 CHECK_VALID_WINDOW (window
);
616 return XWINDOW (window
)->combination_limit
;
619 DEFUN ("set-window-combination-limit", Fset_window_combination_limit
, Sset_window_combination_limit
, 2, 2, 0,
620 doc
: /* Set combination limit of window WINDOW to LIMIT; return LIMIT.
621 WINDOW must be a valid window and defaults to the selected one.
622 If LIMIT is nil, child windows of WINDOW can be recombined with WINDOW's
623 siblings. LIMIT t means that child windows of WINDOW are never
624 \(re-)combined with WINDOW's siblings. Other values are reserved for
626 (Lisp_Object window
, Lisp_Object limit
)
628 wset_combination_limit (decode_valid_window (window
), limit
);
632 DEFUN ("window-use-time", Fwindow_use_time
, Swindow_use_time
, 0, 1, 0,
633 doc
: /* Return the use time of window WINDOW.
634 WINDOW must be a live window and defaults to the selected one.
635 The window with the highest use time is the most recently selected
636 one. The window with the lowest use time is the least recently
640 return make_number (decode_live_window (window
)->use_time
);
643 DEFUN ("window-total-height", Fwindow_total_height
, Swindow_total_height
, 0, 1, 0,
644 doc
: /* Return the total height, in lines, of window WINDOW.
645 WINDOW must be a valid window and defaults to the selected one.
647 The return value includes the mode line and header line, if any.
648 If WINDOW is an internal window, the total height is the height
649 of the screen areas spanned by its children.
651 On a graphical display, this total height is reported as an
652 integer multiple of the default character height. */)
655 return decode_valid_window (window
)->total_lines
;
658 DEFUN ("window-total-width", Fwindow_total_width
, Swindow_total_width
, 0, 1, 0,
659 doc
: /* Return the total width, in columns, of window WINDOW.
660 WINDOW must be a valid window and defaults to the selected one.
662 The return value includes any vertical dividers or scroll bars
663 belonging to WINDOW. If WINDOW is an internal window, the total width
664 is the width of the screen areas spanned by its children.
666 On a graphical display, this total width is reported as an
667 integer multiple of the default character width. */)
670 return decode_valid_window (window
)->total_cols
;
673 DEFUN ("window-new-total", Fwindow_new_total
, Swindow_new_total
, 0, 1, 0,
674 doc
: /* Return the new total size of window WINDOW.
675 WINDOW must be a valid window and defaults to the selected one. */)
678 return decode_valid_window (window
)->new_total
;
681 DEFUN ("window-normal-size", Fwindow_normal_size
, Swindow_normal_size
, 0, 2, 0,
682 doc
: /* Return the normal height of window WINDOW.
683 WINDOW must be a valid window and defaults to the selected one.
684 If HORIZONTAL is non-nil, return the normal width of WINDOW. */)
685 (Lisp_Object window
, Lisp_Object horizontal
)
687 struct window
*w
= decode_valid_window (window
);
689 return NILP (horizontal
) ? w
->normal_lines
: w
->normal_cols
;
692 DEFUN ("window-new-normal", Fwindow_new_normal
, Swindow_new_normal
, 0, 1, 0,
693 doc
: /* Return new normal size of window WINDOW.
694 WINDOW must be a valid window and defaults to the selected one. */)
697 return decode_valid_window (window
)->new_normal
;
700 DEFUN ("window-left-column", Fwindow_left_column
, Swindow_left_column
, 0, 1, 0,
701 doc
: /* Return left column of window WINDOW.
702 This is the distance, in columns, between the left edge of WINDOW and
703 the left edge of the frame's window area. For instance, the return
704 value is 0 if there is no window to the left of WINDOW.
706 WINDOW must be a valid window and defaults to the selected one. */)
709 return decode_valid_window (window
)->left_col
;
712 DEFUN ("window-top-line", Fwindow_top_line
, Swindow_top_line
, 0, 1, 0,
713 doc
: /* Return top line of window WINDOW.
714 This is the distance, in lines, between the top of WINDOW and the top
715 of the frame's window area. For instance, the return value is 0 if
716 there is no window above WINDOW.
718 WINDOW must be a valid window and defaults to the selected one. */)
721 return decode_valid_window (window
)->top_line
;
724 /* Return the number of lines of W's body. Don't count any mode or
728 window_body_lines (struct window
*w
)
730 int height
= XFASTINT (w
->total_lines
);
732 if (!MINI_WINDOW_P (w
))
734 if (WINDOW_WANTS_MODELINE_P (w
))
736 if (WINDOW_WANTS_HEADER_LINE_P (w
))
743 /* Return the number of columns of W's body. Don't count columns
744 occupied by the scroll bar or the vertical bar separating W from its
745 right sibling. On window-systems don't count fringes or display
749 window_body_cols (struct window
*w
)
751 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
752 int width
= XINT (w
->total_cols
);
754 if (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
))
755 /* Scroll bars occupy a few columns. */
756 width
-= WINDOW_CONFIG_SCROLL_BAR_COLS (w
);
757 else if (!FRAME_WINDOW_P (f
)
758 && !WINDOW_RIGHTMOST_P (w
) && !WINDOW_FULL_WIDTH_P (w
))
759 /* The column of `|' characters separating side-by-side windows
760 occupies one column only. */
763 if (FRAME_WINDOW_P (f
))
764 /* On window-systems, fringes and display margins cannot be
765 used for normal text. */
766 width
-= (WINDOW_FRINGE_COLS (w
)
767 + WINDOW_LEFT_MARGIN_COLS (w
)
768 + WINDOW_RIGHT_MARGIN_COLS (w
));
773 DEFUN ("window-body-height", Fwindow_body_height
, Swindow_body_height
, 0, 1, 0,
774 doc
: /* Return the height, in lines, of WINDOW's text area.
775 WINDOW must be a live window and defaults to the selected one.
777 The returned height does not include the mode line or header line.
778 On a graphical display, the height is expressed as an integer multiple
779 of the default character height. If a line at the bottom of the text
780 area is only partially visible, that counts as a whole line; to
781 exclude partially-visible lines, use `window-text-height'. */)
784 return make_number (window_body_lines (decode_live_window (window
)));
787 DEFUN ("window-body-width", Fwindow_body_width
, Swindow_body_width
, 0, 1, 0,
788 doc
: /* Return the width, in columns, of WINDOW's text area.
789 WINDOW must be a live window and defaults to the selected one.
791 The return value does not include any vertical dividers, fringe or
792 marginal areas, or scroll bars. On a graphical display, the width is
793 expressed as an integer multiple of the default character width. */)
796 return make_number (window_body_cols (decode_live_window (window
)));
799 DEFUN ("window-hscroll", Fwindow_hscroll
, Swindow_hscroll
, 0, 1, 0,
800 doc
: /* Return the number of columns by which WINDOW is scrolled from left margin.
801 WINDOW must be a live window and defaults to the selected one. */)
804 return make_number (decode_live_window (window
)->hscroll
);
807 /* Set W's horizontal scroll amount to HSCROLL clipped to a reasonable
808 range, returning the new amount as a fixnum. */
810 set_window_hscroll (struct window
*w
, EMACS_INT hscroll
)
812 /* Horizontal scrolling has problems with large scroll amounts.
813 It's too slow with long lines, and even with small lines the
814 display can be messed up. For now, though, impose only the limits
815 required by the internal representation: horizontal scrolling must
816 fit in fixnum (since it's visible to Elisp) and into ptrdiff_t
817 (since it's stored in a ptrdiff_t). */
818 ptrdiff_t hscroll_max
= min (MOST_POSITIVE_FIXNUM
, PTRDIFF_MAX
);
819 ptrdiff_t new_hscroll
= clip_to_bounds (0, hscroll
, hscroll_max
);
821 /* Prevent redisplay shortcuts when changing the hscroll. */
822 if (w
->hscroll
!= new_hscroll
)
823 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
825 w
->hscroll
= new_hscroll
;
826 return make_number (new_hscroll
);
829 DEFUN ("set-window-hscroll", Fset_window_hscroll
, Sset_window_hscroll
, 2, 2, 0,
830 doc
: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
831 WINDOW must be a live window and defaults to the selected one.
832 Clip the number to a reasonable value if out of range.
833 Return the new number. NCOL should be zero or positive.
835 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
836 window so that the location of point moves off-window. */)
837 (Lisp_Object window
, Lisp_Object ncol
)
840 return set_window_hscroll (decode_live_window (window
), XINT (ncol
));
843 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger
,
844 Swindow_redisplay_end_trigger
, 0, 1, 0,
845 doc
: /* Return WINDOW's redisplay end trigger value.
846 WINDOW must be a live window and defaults to the selected one.
847 See `set-window-redisplay-end-trigger' for more information. */)
850 return decode_live_window (window
)->redisplay_end_trigger
;
853 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger
,
854 Sset_window_redisplay_end_trigger
, 2, 2, 0,
855 doc
: /* Set WINDOW's redisplay end trigger value to VALUE.
856 WINDOW must be a live window and defaults to the selected one. VALUE
857 should be a buffer position (typically a marker) or nil. If it is a
858 buffer position, then if redisplay in WINDOW reaches a position beyond
859 VALUE, the functions in `redisplay-end-trigger-functions' are called
860 with two arguments: WINDOW, and the end trigger value. Afterwards the
861 end-trigger value is reset to nil. */)
862 (register Lisp_Object window
, Lisp_Object value
)
864 wset_redisplay_end_trigger (decode_live_window (window
), value
);
868 DEFUN ("window-edges", Fwindow_edges
, Swindow_edges
, 0, 1, 0,
869 doc
: /* Return a list of the edge coordinates of WINDOW.
870 WINDOW must be a valid window and defaults to the selected one.
872 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
873 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
874 0 at top left corner of frame.
876 RIGHT is one more than the rightmost column occupied by WINDOW. BOTTOM
877 is one more than the bottommost row occupied by WINDOW. The edges
878 include the space used by WINDOW's scroll bar, display margins, fringes,
879 header line, and/or mode line. For the edges of just the text area, use
880 `window-inside-edges'. */)
883 register struct window
*w
= decode_valid_window (window
);
885 return quad (WINDOW_LEFT_EDGE_COL (w
), WINDOW_TOP_EDGE_LINE (w
),
886 WINDOW_RIGHT_EDGE_COL (w
), WINDOW_BOTTOM_EDGE_LINE (w
));
889 DEFUN ("window-pixel-edges", Fwindow_pixel_edges
, Swindow_pixel_edges
, 0, 1, 0,
890 doc
: /* Return a list of the edge pixel coordinates of WINDOW.
891 WINDOW must be a valid window and defaults to the selected one.
893 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
894 0, 0 at the top left corner of the frame.
896 RIGHT is one more than the rightmost x position occupied by WINDOW.
897 BOTTOM is one more than the bottommost y position occupied by WINDOW.
898 The pixel edges include the space used by WINDOW's scroll bar, display
899 margins, fringes, header line, and/or mode line. For the pixel edges
900 of just the text area, use `window-inside-pixel-edges'. */)
903 register struct window
*w
= decode_valid_window (window
);
905 return quad (WINDOW_LEFT_EDGE_X (w
), WINDOW_TOP_EDGE_Y (w
),
906 WINDOW_RIGHT_EDGE_X (w
), WINDOW_BOTTOM_EDGE_Y (w
));
910 calc_absolute_offset (struct window
*w
, int *add_x
, int *add_y
)
912 struct frame
*f
= XFRAME (w
->frame
);
914 #ifdef FRAME_MENUBAR_HEIGHT
915 *add_y
+= FRAME_MENUBAR_HEIGHT (f
);
917 #ifdef FRAME_TOOLBAR_TOP_HEIGHT
918 *add_y
+= FRAME_TOOLBAR_TOP_HEIGHT (f
);
919 #elif FRAME_TOOLBAR_HEIGHT
920 *add_y
+= FRAME_TOOLBAR_HEIGHT (f
);
922 #ifdef FRAME_NS_TITLEBAR_HEIGHT
923 *add_y
+= FRAME_NS_TITLEBAR_HEIGHT (f
);
925 *add_x
= f
->left_pos
;
926 #ifdef FRAME_TOOLBAR_LEFT_WIDTH
927 *add_x
+= FRAME_TOOLBAR_LEFT_WIDTH (f
);
931 DEFUN ("window-absolute-pixel-edges", Fwindow_absolute_pixel_edges
,
932 Swindow_absolute_pixel_edges
, 0, 1, 0,
933 doc
: /* Return a list of the edge pixel coordinates of WINDOW.
934 WINDOW must be a valid window and defaults to the selected one.
936 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
937 0, 0 at the top left corner of the display.
939 RIGHT is one more than the rightmost x position occupied by WINDOW.
940 BOTTOM is one more than the bottommost y position occupied by WINDOW.
941 The pixel edges include the space used by WINDOW's scroll bar, display
942 margins, fringes, header line, and/or mode line. For the pixel edges
943 of just the text area, use `window-inside-absolute-pixel-edges'. */)
946 register struct window
*w
= decode_valid_window (window
);
949 calc_absolute_offset (w
, &add_x
, &add_y
);
951 return quad (WINDOW_LEFT_EDGE_X (w
) + add_x
,
952 WINDOW_TOP_EDGE_Y (w
) + add_y
,
953 WINDOW_RIGHT_EDGE_X (w
) + add_x
,
954 WINDOW_BOTTOM_EDGE_Y (w
) + add_y
);
957 DEFUN ("window-inside-edges", Fwindow_inside_edges
, Swindow_inside_edges
, 0, 1, 0,
958 doc
: /* Return a list of the edge coordinates of WINDOW.
959 WINDOW must be a live window and defaults to the selected one.
961 The returned list has the form (LEFT TOP RIGHT BOTTOM). TOP and BOTTOM
962 count by lines, and LEFT and RIGHT count by columns, all relative to 0,
963 0 at top left corner of frame.
965 RIGHT is one more than the rightmost column of WINDOW's text area.
966 BOTTOM is one more than the bottommost row of WINDOW's text area. The
967 inside edges do not include the space used by the WINDOW's scroll bar,
968 display margins, fringes, header line, and/or mode line. */)
971 register struct window
*w
= decode_live_window (window
);
973 return quad (WINDOW_BOX_LEFT_EDGE_COL (w
)
974 + WINDOW_LEFT_MARGIN_COLS (w
)
975 + WINDOW_LEFT_FRINGE_COLS (w
),
976 WINDOW_TOP_EDGE_LINE (w
)
977 + WINDOW_HEADER_LINE_LINES (w
),
978 WINDOW_BOX_RIGHT_EDGE_COL (w
)
979 - WINDOW_RIGHT_MARGIN_COLS (w
)
980 - WINDOW_RIGHT_FRINGE_COLS (w
),
981 WINDOW_BOTTOM_EDGE_LINE (w
)
982 - WINDOW_MODE_LINE_LINES (w
));
985 DEFUN ("window-inside-pixel-edges", Fwindow_inside_pixel_edges
, Swindow_inside_pixel_edges
, 0, 1, 0,
986 doc
: /* Return a list of the edge pixel coordinates of WINDOW's text area.
987 WINDOW must be a live window and defaults to the selected one.
989 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
990 (0,0) at the top left corner of the frame's window area.
992 RIGHT is one more than the rightmost x position of WINDOW's text area.
993 BOTTOM is one more than the bottommost y position of WINDOW's text area.
994 The inside edges do not include the space used by WINDOW's scroll bar,
995 display margins, fringes, header line, and/or mode line. */)
998 register struct window
*w
= decode_live_window (window
);
1000 return quad (WINDOW_BOX_LEFT_EDGE_X (w
)
1001 + WINDOW_LEFT_MARGIN_WIDTH (w
)
1002 + WINDOW_LEFT_FRINGE_WIDTH (w
),
1003 WINDOW_TOP_EDGE_Y (w
)
1004 + WINDOW_HEADER_LINE_HEIGHT (w
),
1005 WINDOW_BOX_RIGHT_EDGE_X (w
)
1006 - WINDOW_RIGHT_MARGIN_WIDTH (w
)
1007 - WINDOW_RIGHT_FRINGE_WIDTH (w
),
1008 WINDOW_BOTTOM_EDGE_Y (w
)
1009 - WINDOW_MODE_LINE_HEIGHT (w
));
1012 DEFUN ("window-inside-absolute-pixel-edges",
1013 Fwindow_inside_absolute_pixel_edges
,
1014 Swindow_inside_absolute_pixel_edges
, 0, 1, 0,
1015 doc
: /* Return a list of the edge pixel coordinates of WINDOW's text area.
1016 WINDOW must be a live window and defaults to the selected one.
1018 The returned list has the form (LEFT TOP RIGHT BOTTOM), all relative to
1019 (0,0) at the top left corner of the frame's window area.
1021 RIGHT is one more than the rightmost x position of WINDOW's text area.
1022 BOTTOM is one more than the bottommost y position of WINDOW's text area.
1023 The inside edges do not include the space used by WINDOW's scroll bar,
1024 display margins, fringes, header line, and/or mode line. */)
1025 (Lisp_Object window
)
1027 register struct window
*w
= decode_live_window (window
);
1030 calc_absolute_offset (w
, &add_x
, &add_y
);
1032 return quad (WINDOW_BOX_LEFT_EDGE_X (w
)
1033 + WINDOW_LEFT_MARGIN_WIDTH (w
)
1034 + WINDOW_LEFT_FRINGE_WIDTH (w
) + add_x
,
1035 WINDOW_TOP_EDGE_Y (w
)
1036 + WINDOW_HEADER_LINE_HEIGHT (w
) + add_y
,
1037 WINDOW_BOX_RIGHT_EDGE_X (w
)
1038 - WINDOW_RIGHT_MARGIN_WIDTH (w
)
1039 - WINDOW_RIGHT_FRINGE_WIDTH (w
) + add_x
,
1040 WINDOW_BOTTOM_EDGE_Y (w
)
1041 - WINDOW_MODE_LINE_HEIGHT (w
) + add_y
);
1044 /* Test if the character at column X, row Y is within window W.
1045 If it is not, return ON_NOTHING;
1046 if it is in the window's text area, return ON_TEXT;
1047 if it is on the window's modeline, return ON_MODE_LINE;
1048 if it is on the border between the window and its right sibling,
1049 return ON_VERTICAL_BORDER.
1050 if it is on a scroll bar, return ON_SCROLL_BAR.
1051 if it is on the window's top line, return ON_HEADER_LINE;
1052 if it is in left or right fringe of the window,
1053 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
1054 if it is in the marginal area to the left/right of the window,
1055 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
1057 X and Y are frame relative pixel coordinates. */
1059 static enum window_part
1060 coordinates_in_window (register struct window
*w
, int x
, int y
)
1062 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
1063 enum window_part part
;
1064 int ux
= FRAME_COLUMN_WIDTH (f
);
1065 int left_x
= WINDOW_LEFT_EDGE_X (w
);
1066 int right_x
= WINDOW_RIGHT_EDGE_X (w
);
1067 int top_y
= WINDOW_TOP_EDGE_Y (w
);
1068 int bottom_y
= WINDOW_BOTTOM_EDGE_Y (w
);
1069 /* The width of the area where the vertical line can be dragged.
1070 (Between mode lines for instance. */
1071 int grabbable_width
= ux
;
1072 int lmargin_width
, rmargin_width
, text_left
, text_right
;
1074 /* Outside any interesting row or column? */
1075 if (y
< top_y
|| y
>= bottom_y
|| x
< left_x
|| x
>= right_x
)
1078 /* On the mode line or header line? */
1079 if ((WINDOW_WANTS_MODELINE_P (w
)
1080 && y
>= bottom_y
- CURRENT_MODE_LINE_HEIGHT (w
)
1081 && (part
= ON_MODE_LINE
))
1082 || (WINDOW_WANTS_HEADER_LINE_P (w
)
1083 && y
< top_y
+ CURRENT_HEADER_LINE_HEIGHT (w
)
1084 && (part
= ON_HEADER_LINE
)))
1086 /* If it's under/over the scroll bar portion of the mode/header
1087 line, say it's on the vertical line. That's to be able to
1088 resize windows horizontally in case we're using toolkit scroll
1089 bars. Note: If scrollbars are on the left, the window that
1090 must be eventually resized is that on the left of WINDOW. */
1091 if ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
1092 && !WINDOW_LEFTMOST_P (w
)
1093 && eabs (x
- left_x
) < grabbable_width
)
1094 || (!WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
1095 && !WINDOW_RIGHTMOST_P (w
)
1096 && eabs (x
- right_x
) < grabbable_width
))
1097 return ON_VERTICAL_BORDER
;
1102 /* In what's below, we subtract 1 when computing right_x because we
1103 want the rightmost pixel, which is given by left_pixel+width-1. */
1104 if (w
->pseudo_window_p
)
1107 right_x
= WINDOW_TOTAL_WIDTH (w
) - 1;
1111 left_x
= WINDOW_BOX_LEFT_EDGE_X (w
);
1112 right_x
= WINDOW_BOX_RIGHT_EDGE_X (w
) - 1;
1115 /* Outside any interesting column? */
1116 if (x
< left_x
|| x
> right_x
)
1117 return ON_SCROLL_BAR
;
1119 lmargin_width
= window_box_width (w
, LEFT_MARGIN_AREA
);
1120 rmargin_width
= window_box_width (w
, RIGHT_MARGIN_AREA
);
1122 text_left
= window_box_left (w
, TEXT_AREA
);
1123 text_right
= text_left
+ window_box_width (w
, TEXT_AREA
);
1125 if (FRAME_WINDOW_P (f
))
1127 if (!w
->pseudo_window_p
1128 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w
)
1129 && !WINDOW_RIGHTMOST_P (w
)
1130 && (eabs (x
- right_x
) < grabbable_width
))
1131 return ON_VERTICAL_BORDER
;
1133 /* Need to say "x > right_x" rather than >=, since on character
1134 terminals, the vertical line's x coordinate is right_x. */
1135 else if (!w
->pseudo_window_p
1136 && !WINDOW_RIGHTMOST_P (w
)
1137 && x
> right_x
- ux
)
1138 return ON_VERTICAL_BORDER
;
1142 if (lmargin_width
> 0
1143 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1144 ? (x
>= left_x
+ WINDOW_LEFT_FRINGE_WIDTH (w
))
1145 : (x
< left_x
+ lmargin_width
)))
1146 return ON_LEFT_MARGIN
;
1148 return ON_LEFT_FRINGE
;
1151 if (x
>= text_right
)
1153 if (rmargin_width
> 0
1154 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1155 ? (x
< right_x
- WINDOW_RIGHT_FRINGE_WIDTH (w
))
1156 : (x
>= right_x
- rmargin_width
)))
1157 return ON_RIGHT_MARGIN
;
1159 return ON_RIGHT_FRINGE
;
1162 /* Everything special ruled out - must be on text area */
1166 /* Take X is the frame-relative pixel x-coordinate, and return the
1167 x-coordinate relative to part PART of window W. */
1169 window_relative_x_coord (struct window
*w
, enum window_part part
, int x
)
1171 int left_x
= (w
->pseudo_window_p
) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w
);
1176 return x
- window_box_left (w
, TEXT_AREA
);
1178 case ON_LEFT_FRINGE
:
1181 case ON_RIGHT_FRINGE
:
1182 return x
- left_x
- WINDOW_LEFT_FRINGE_WIDTH (w
);
1184 case ON_LEFT_MARGIN
:
1186 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1187 ? WINDOW_LEFT_FRINGE_WIDTH (w
) : 0));
1189 case ON_RIGHT_MARGIN
:
1191 - ((w
->pseudo_window_p
)
1192 ? WINDOW_TOTAL_WIDTH (w
)
1193 : WINDOW_BOX_RIGHT_EDGE_X (w
))
1194 + window_box_width (w
, RIGHT_MARGIN_AREA
)
1195 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1196 ? WINDOW_RIGHT_FRINGE_WIDTH (w
) : 0));
1199 /* ON_SCROLL_BAR, ON_NOTHING, and ON_VERTICAL_BORDER: */
1204 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p
,
1205 Scoordinates_in_window_p
, 2, 2, 0,
1206 doc
: /* Return non-nil if COORDINATES are in WINDOW.
1207 WINDOW must be a live window and defaults to the selected one.
1208 COORDINATES is a cons of the form (X . Y), X and Y being distances
1209 measured in characters from the upper-left corner of the frame.
1210 \(0 . 0) denotes the character in the upper left corner of the
1212 If COORDINATES are in the text portion of WINDOW,
1213 the coordinates relative to the window are returned.
1214 If they are in the mode line of WINDOW, `mode-line' is returned.
1215 If they are in the top mode line of WINDOW, `header-line' is returned.
1216 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1217 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1218 If they are on the border between WINDOW and its right sibling,
1219 `vertical-line' is returned.
1220 If they are in the windows's left or right marginal areas, `left-margin'\n\
1221 or `right-margin' is returned. */)
1222 (register Lisp_Object coordinates
, Lisp_Object window
)
1229 w
= decode_live_window (window
);
1230 f
= XFRAME (w
->frame
);
1231 CHECK_CONS (coordinates
);
1232 lx
= Fcar (coordinates
);
1233 ly
= Fcdr (coordinates
);
1234 CHECK_NUMBER_OR_FLOAT (lx
);
1235 CHECK_NUMBER_OR_FLOAT (ly
);
1236 x
= FRAME_PIXEL_X_FROM_CANON_X (f
, lx
) + FRAME_INTERNAL_BORDER_WIDTH (f
);
1237 y
= FRAME_PIXEL_Y_FROM_CANON_Y (f
, ly
) + FRAME_INTERNAL_BORDER_WIDTH (f
);
1239 switch (coordinates_in_window (w
, x
, y
))
1245 /* Convert X and Y to window relative pixel coordinates, and
1246 return the canonical char units. */
1247 x
-= window_box_left (w
, TEXT_AREA
);
1248 y
-= WINDOW_TOP_EDGE_Y (w
);
1249 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f
, x
),
1250 FRAME_CANON_Y_FROM_PIXEL_Y (f
, y
));
1255 case ON_VERTICAL_BORDER
:
1256 return Qvertical_line
;
1258 case ON_HEADER_LINE
:
1259 return Qheader_line
;
1261 case ON_LEFT_FRINGE
:
1262 return Qleft_fringe
;
1264 case ON_RIGHT_FRINGE
:
1265 return Qright_fringe
;
1267 case ON_LEFT_MARGIN
:
1268 return Qleft_margin
;
1270 case ON_RIGHT_MARGIN
:
1271 return Qright_margin
;
1274 /* Historically we are supposed to return nil in this case. */
1283 /* Callback for foreach_window, used in window_from_coordinates.
1284 Check if window W contains coordinates specified by USER_DATA which
1285 is actually a pointer to a struct check_window_data CW.
1287 Check if window W contains coordinates *CW->x and *CW->y. If it
1288 does, return W in *CW->window, as Lisp_Object, and return in
1289 *CW->part the part of the window under coordinates *X,*Y. Return
1290 zero from this function to stop iterating over windows. */
1292 struct check_window_data
1294 Lisp_Object
*window
;
1296 enum window_part
*part
;
1300 check_window_containing (struct window
*w
, void *user_data
)
1302 struct check_window_data
*cw
= (struct check_window_data
*) user_data
;
1303 enum window_part found
;
1306 found
= coordinates_in_window (w
, cw
->x
, cw
->y
);
1307 if (found
!= ON_NOTHING
)
1310 XSETWINDOW (*cw
->window
, w
);
1318 /* Find the window containing frame-relative pixel position X/Y and
1319 return it as a Lisp_Object.
1321 If X, Y is on one of the window's special `window_part' elements,
1322 set *PART to the id of that element.
1324 If there is no window under X, Y return nil and leave *PART
1325 unmodified. TOOL_BAR_P non-zero means detect tool-bar windows.
1327 This function was previously implemented with a loop cycling over
1328 windows with Fnext_window, and starting with the frame's selected
1329 window. It turned out that this doesn't work with an
1330 implementation of next_window using Vwindow_list, because
1331 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1332 tree of F when this function is called asynchronously from
1333 note_mouse_highlight. The original loop didn't terminate in this
1337 window_from_coordinates (struct frame
*f
, int x
, int y
,
1338 enum window_part
*part
, int tool_bar_p
)
1341 struct check_window_data cw
;
1342 enum window_part dummy
;
1348 cw
.window
= &window
, cw
.x
= x
, cw
.y
= y
; cw
.part
= part
;
1349 foreach_window (f
, check_window_containing
, &cw
);
1351 /* If not found above, see if it's in the tool bar window, if a tool
1355 && WINDOWP (f
->tool_bar_window
)
1356 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0
1357 && (coordinates_in_window (XWINDOW (f
->tool_bar_window
), x
, y
)
1361 window
= f
->tool_bar_window
;
1367 DEFUN ("window-at", Fwindow_at
, Swindow_at
, 2, 3, 0,
1368 doc
: /* Return window containing coordinates X and Y on FRAME.
1369 FRAME must be a live frame and defaults to the selected one.
1370 The top left corner of the frame is considered to be row 0,
1372 (Lisp_Object x
, Lisp_Object y
, Lisp_Object frame
)
1374 struct frame
*f
= decode_live_frame (frame
);
1376 /* Check that arguments are integers or floats. */
1377 CHECK_NUMBER_OR_FLOAT (x
);
1378 CHECK_NUMBER_OR_FLOAT (y
);
1380 return window_from_coordinates (f
,
1381 (FRAME_PIXEL_X_FROM_CANON_X (f
, x
)
1382 + FRAME_INTERNAL_BORDER_WIDTH (f
)),
1383 (FRAME_PIXEL_Y_FROM_CANON_Y (f
, y
)
1384 + FRAME_INTERNAL_BORDER_WIDTH (f
)),
1388 DEFUN ("window-point", Fwindow_point
, Swindow_point
, 0, 1, 0,
1389 doc
: /* Return current value of point in WINDOW.
1390 WINDOW must be a live window and defaults to the selected one.
1392 For a nonselected window, this is the value point would have if that
1393 window were selected.
1395 Note that, when WINDOW is selected, the value returned is the same as
1396 that returned by `point' for WINDOW's buffer. It would be more strictly
1397 correct to return the `top-level' value of `point', outside of any
1398 `save-excursion' forms. But that is hard to define. */)
1399 (Lisp_Object window
)
1401 register struct window
*w
= decode_live_window (window
);
1403 if (w
== XWINDOW (selected_window
))
1404 return make_number (BUF_PT (XBUFFER (w
->buffer
)));
1406 return Fmarker_position (w
->pointm
);
1409 DEFUN ("window-start", Fwindow_start
, Swindow_start
, 0, 1, 0,
1410 doc
: /* Return position at which display currently starts in WINDOW.
1411 WINDOW must be a live window and defaults to the selected one.
1412 This is updated by redisplay or by calling `set-window-start'. */)
1413 (Lisp_Object window
)
1415 return Fmarker_position (decode_live_window (window
)->start
);
1418 /* This is text temporarily removed from the doc string below.
1420 This function returns nil if the position is not currently known.
1421 That happens when redisplay is preempted and doesn't finish.
1422 If in that case you want to compute where the end of the window would
1423 have been if redisplay had finished, do this:
1425 (goto-char (window-start window))
1426 (vertical-motion (1- (window-height window)) window)
1429 DEFUN ("window-end", Fwindow_end
, Swindow_end
, 0, 2, 0,
1430 doc
: /* Return position at which display currently ends in WINDOW.
1431 WINDOW must be a live window and defaults to the selected one.
1432 This is updated by redisplay, when it runs to completion.
1433 Simply changing the buffer text or setting `window-start'
1434 does not update this value.
1435 Return nil if there is no recorded value. (This can happen if the
1436 last redisplay of WINDOW was preempted, and did not finish.)
1437 If UPDATE is non-nil, compute the up-to-date position
1438 if it isn't already recorded. */)
1439 (Lisp_Object window
, Lisp_Object update
)
1442 struct window
*w
= decode_live_window (window
);
1450 #if 0 /* This change broke some things. We should make it later. */
1451 /* If we don't know the end position, return nil.
1452 The user can compute it with vertical-motion if he wants to.
1453 It would be nicer to do it automatically,
1454 but that's so slow that it would probably bother people. */
1455 if (NILP (w
->window_end_valid
))
1460 && (windows_or_buffers_changed
|| NILP (w
->window_end_valid
))
1463 struct text_pos startp
;
1465 struct buffer
*old_buffer
= NULL
;
1466 void *itdata
= NULL
;
1468 /* Cannot use Fvertical_motion because that function doesn't
1469 cope with variable-height lines. */
1470 if (b
!= current_buffer
)
1472 old_buffer
= current_buffer
;
1473 set_buffer_internal (b
);
1476 /* In case W->start is out of the range, use something
1477 reasonable. This situation occurred when loading a file with
1478 `-l' containing a call to `rmail' with subsequent other
1479 commands. At the end, W->start happened to be BEG, while
1480 rmail had already narrowed the buffer. */
1481 if (XMARKER (w
->start
)->charpos
< BEGV
)
1482 SET_TEXT_POS (startp
, BEGV
, BEGV_BYTE
);
1483 else if (XMARKER (w
->start
)->charpos
> ZV
)
1484 SET_TEXT_POS (startp
, ZV
, ZV_BYTE
);
1486 SET_TEXT_POS_FROM_MARKER (startp
, w
->start
);
1488 itdata
= bidi_shelve_cache ();
1489 start_display (&it
, w
, startp
);
1490 move_it_vertically (&it
, window_box_height (w
));
1491 if (it
.current_y
< it
.last_visible_y
)
1492 move_it_past_eol (&it
);
1493 value
= make_number (IT_CHARPOS (it
));
1494 bidi_unshelve_cache (itdata
, 0);
1497 set_buffer_internal (old_buffer
);
1500 XSETINT (value
, BUF_Z (b
) - XFASTINT (w
->window_end_pos
));
1505 DEFUN ("set-window-point", Fset_window_point
, Sset_window_point
, 2, 2, 0,
1506 doc
: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1507 WINDOW must be a live window and defaults to the selected one.
1509 (Lisp_Object window
, Lisp_Object pos
)
1511 register struct window
*w
= decode_live_window (window
);
1513 CHECK_NUMBER_COERCE_MARKER (pos
);
1515 if (w
== XWINDOW (selected_window
))
1517 if (XBUFFER (w
->buffer
) == current_buffer
)
1521 struct buffer
*old_buffer
= current_buffer
;
1523 set_buffer_internal (XBUFFER (w
->buffer
));
1525 set_buffer_internal (old_buffer
);
1530 set_marker_restricted (w
->pointm
, pos
, w
->buffer
);
1531 /* We have to make sure that redisplay updates the window to show
1532 the new value of point. */
1533 ++windows_or_buffers_changed
;
1539 DEFUN ("set-window-start", Fset_window_start
, Sset_window_start
, 2, 3, 0,
1540 doc
: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1541 WINDOW must be a live window and defaults to the selected one. Return
1542 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1543 overriding motion of point in order to display at this exact start. */)
1544 (Lisp_Object window
, Lisp_Object pos
, Lisp_Object noforce
)
1546 register struct window
*w
= decode_live_window (window
);
1548 CHECK_NUMBER_COERCE_MARKER (pos
);
1549 set_marker_restricted (w
->start
, pos
, w
->buffer
);
1550 /* this is not right, but much easier than doing what is right. */
1551 w
->start_at_line_beg
= 0;
1554 w
->update_mode_line
= 1;
1555 w
->last_modified
= 0;
1556 w
->last_overlay_modified
= 0;
1557 if (!EQ (window
, selected_window
))
1558 windows_or_buffers_changed
++;
1563 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p
,
1564 Spos_visible_in_window_p
, 0, 3, 0,
1565 doc
: /* Return non-nil if position POS is currently on the frame in WINDOW.
1566 WINDOW must be a live window and defaults to the selected one.
1568 Return nil if that position is scrolled vertically out of view. If a
1569 character is only partially visible, nil is returned, unless the
1570 optional argument PARTIALLY is non-nil. If POS is only out of view
1571 because of horizontal scrolling, return non-nil. If POS is t, it
1572 specifies the position of the last visible glyph in WINDOW. POS
1573 defaults to point in WINDOW; WINDOW defaults to the selected window.
1575 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1576 return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1577 where X and Y are the pixel coordinates relative to the top left corner
1578 of the window. The remaining elements are omitted if the character after
1579 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1580 off-window at the top and bottom of the row, ROWH is the height of the
1581 display row, and VPOS is the row number (0-based) containing POS. */)
1582 (Lisp_Object pos
, Lisp_Object window
, Lisp_Object partially
)
1584 register struct window
*w
;
1585 register EMACS_INT posint
;
1586 register struct buffer
*buf
;
1587 struct text_pos top
;
1588 Lisp_Object in_window
= Qnil
;
1589 int rtop
, rbot
, rowh
, vpos
, fully_p
= 1;
1592 w
= decode_live_window (window
);
1593 buf
= XBUFFER (w
->buffer
);
1594 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1598 else if (!NILP (pos
))
1600 CHECK_NUMBER_COERCE_MARKER (pos
);
1601 posint
= XINT (pos
);
1603 else if (w
== XWINDOW (selected_window
))
1606 posint
= XMARKER (w
->pointm
)->charpos
;
1608 /* If position is above window start or outside buffer boundaries,
1609 or if window start is out of range, position is not visible. */
1611 || (posint
>= CHARPOS (top
) && posint
<= BUF_ZV (buf
)))
1612 && CHARPOS (top
) >= BUF_BEGV (buf
)
1613 && CHARPOS (top
) <= BUF_ZV (buf
)
1614 && pos_visible_p (w
, posint
, &x
, &y
, &rtop
, &rbot
, &rowh
, &vpos
)
1615 && (fully_p
= !rtop
&& !rbot
, (!NILP (partially
) || fully_p
)))
1618 if (!NILP (in_window
) && !NILP (partially
))
1620 Lisp_Object part
= Qnil
;
1622 part
= quad (rtop
, rbot
, rowh
, vpos
);
1623 in_window
= Fcons (make_number (x
),
1624 Fcons (make_number (y
), part
));
1630 DEFUN ("window-line-height", Fwindow_line_height
,
1631 Swindow_line_height
, 0, 2, 0,
1632 doc
: /* Return height in pixels of text line LINE in window WINDOW.
1633 WINDOW must be a live window and defaults to the selected one.
1635 Return height of current line if LINE is omitted or nil. Return height of
1636 header or mode line if LINE is `header-line' or `mode-line'.
1637 Otherwise, LINE is a text line number starting from 0. A negative number
1638 counts from the end of the window.
1640 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1641 in pixels of the visible part of the line, VPOS and YPOS are the
1642 vertical position in lines and pixels of the line, relative to the top
1643 of the first text line, and OFFBOT is the number of off-window pixels at
1644 the bottom of the text line. If there are off-window pixels at the top
1645 of the (first) text line, YPOS is negative.
1647 Return nil if window display is not up-to-date. In that case, use
1648 `pos-visible-in-window-p' to obtain the information. */)
1649 (Lisp_Object line
, Lisp_Object window
)
1651 register struct window
*w
;
1652 register struct buffer
*b
;
1653 struct glyph_row
*row
, *end_row
;
1657 w
= decode_live_window (window
);
1659 if (noninteractive
|| w
->pseudo_window_p
)
1662 CHECK_BUFFER (w
->buffer
);
1663 b
= XBUFFER (w
->buffer
);
1665 /* Fail if current matrix is not up-to-date. */
1666 if (NILP (w
->window_end_valid
)
1667 || current_buffer
->clip_changed
1668 || current_buffer
->prevent_redisplay_optimizations_p
1669 || w
->last_modified
< BUF_MODIFF (b
)
1670 || w
->last_overlay_modified
< BUF_OVERLAY_MODIFF (b
))
1676 if (i
< 0 || i
>= w
->current_matrix
->nrows
1677 || (row
= MATRIX_ROW (w
->current_matrix
, i
), !row
->enabled_p
))
1679 max_y
= window_text_bottom_y (w
);
1683 if (EQ (line
, Qheader_line
))
1685 if (!WINDOW_WANTS_HEADER_LINE_P (w
))
1687 row
= MATRIX_HEADER_LINE_ROW (w
->current_matrix
);
1688 return row
->enabled_p
? quad (row
->height
, 0, 0, 0) : Qnil
;
1691 if (EQ (line
, Qmode_line
))
1693 row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
);
1694 return (row
->enabled_p
?
1696 0, /* not accurate */
1697 WINDOW_HEADER_LINE_HEIGHT (w
)
1698 + window_text_bottom_y (w
), 0)
1702 CHECK_NUMBER (line
);
1705 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
1706 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
1707 max_y
= window_text_bottom_y (w
);
1710 while ((n
< 0 || i
< n
)
1711 && row
<= end_row
&& row
->enabled_p
1712 && row
->y
+ row
->height
< max_y
)
1715 if (row
> end_row
|| !row
->enabled_p
)
1727 crop
= max (0, (row
->y
+ row
->height
) - max_y
);
1728 return quad (row
->height
+ min (0, row
->y
) - crop
, i
, row
->y
, crop
);
1731 DEFUN ("window-dedicated-p", Fwindow_dedicated_p
, Swindow_dedicated_p
,
1733 doc
: /* Return non-nil when WINDOW is dedicated to its buffer.
1734 More precisely, return the value assigned by the last call of
1735 `set-window-dedicated-p' for WINDOW. Return nil if that function was
1736 never called with WINDOW as its argument, or the value set by that
1737 function was internally reset since its last call. WINDOW must be a
1738 live window and defaults to the selected one.
1740 When a window is dedicated to its buffer, `display-buffer' will refrain
1741 from displaying another buffer in it. `get-lru-window' and
1742 `get-largest-window' treat dedicated windows specially.
1743 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
1744 `kill-buffer' can delete a dedicated window and the containing frame.
1746 Functions like `set-window-buffer' may change the buffer displayed by a
1747 window, unless that window is "strongly" dedicated to its buffer, that
1748 is the value returned by `window-dedicated-p' is t. */)
1749 (Lisp_Object window
)
1751 return decode_live_window (window
)->dedicated
;
1754 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p
,
1755 Sset_window_dedicated_p
, 2, 2, 0,
1756 doc
: /* Mark WINDOW as dedicated according to FLAG.
1757 WINDOW must be a live window and defaults to the selected one. FLAG
1758 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
1759 mark WINDOW as non-dedicated. Return FLAG.
1761 When a window is dedicated to its buffer, `display-buffer' will refrain
1762 from displaying another buffer in it. `get-lru-window' and
1763 `get-largest-window' treat dedicated windows specially.
1764 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
1765 `quit-restore-window' and `kill-buffer' can delete a dedicated window
1766 and the containing frame.
1768 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
1769 its buffer. Functions like `set-window-buffer' may change the buffer
1770 displayed by a window, unless that window is strongly dedicated to its
1771 buffer. If and when `set-window-buffer' displays another buffer in a
1772 window, it also makes sure that the window is no more dedicated. */)
1773 (Lisp_Object window
, Lisp_Object flag
)
1775 wset_dedicated (decode_live_window (window
), flag
);
1779 DEFUN ("window-prev-buffers", Fwindow_prev_buffers
, Swindow_prev_buffers
,
1781 doc
: /* Return buffers previously shown in WINDOW.
1782 WINDOW must be a live window and defaults to the selected one.
1784 The return value is a list of elements (BUFFER WINDOW-START POS),
1785 where BUFFER is a buffer, WINDOW-START is the start position of the
1786 window for that buffer, and POS is a window-specific point value. */)
1787 (Lisp_Object window
)
1789 return decode_live_window (window
)->prev_buffers
;
1792 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers
,
1793 Sset_window_prev_buffers
, 2, 2, 0,
1794 doc
: /* Set WINDOW's previous buffers to PREV-BUFFERS.
1795 WINDOW must be a live window and defaults to the selected one.
1797 PREV-BUFFERS should be a list of elements (BUFFER WINDOW-START POS),
1798 where BUFFER is a buffer, WINDOW-START is the start position of the
1799 window for that buffer, and POS is a window-specific point value. */)
1800 (Lisp_Object window
, Lisp_Object prev_buffers
)
1802 wset_prev_buffers (decode_live_window (window
), prev_buffers
);
1803 return prev_buffers
;
1806 DEFUN ("window-next-buffers", Fwindow_next_buffers
, Swindow_next_buffers
,
1808 doc
: /* Return list of buffers recently re-shown in WINDOW.
1809 WINDOW must be a live window and defaults to the selected one. */)
1810 (Lisp_Object window
)
1812 return decode_live_window (window
)->next_buffers
;
1815 DEFUN ("set-window-next-buffers", Fset_window_next_buffers
,
1816 Sset_window_next_buffers
, 2, 2, 0,
1817 doc
: /* Set WINDOW's next buffers to NEXT-BUFFERS.
1818 WINDOW must be a live window and defaults to the selected one.
1819 NEXT-BUFFERS should be a list of buffers. */)
1820 (Lisp_Object window
, Lisp_Object next_buffers
)
1822 wset_next_buffers (decode_live_window (window
), next_buffers
);
1823 return next_buffers
;
1826 DEFUN ("window-parameters", Fwindow_parameters
, Swindow_parameters
,
1828 doc
: /* Return the parameters of WINDOW and their values.
1829 WINDOW must be a valid window and defaults to the selected one. The
1830 return value is a list of elements of the form (PARAMETER . VALUE). */)
1831 (Lisp_Object window
)
1833 return Fcopy_alist (decode_valid_window (window
)->window_parameters
);
1836 DEFUN ("window-parameter", Fwindow_parameter
, Swindow_parameter
,
1838 doc
: /* Return WINDOW's value for PARAMETER.
1839 WINDOW can be any window and defaults to the selected one. */)
1840 (Lisp_Object window
, Lisp_Object parameter
)
1844 result
= Fassq (parameter
, decode_any_window (window
)->window_parameters
);
1845 return CDR_SAFE (result
);
1848 DEFUN ("set-window-parameter", Fset_window_parameter
,
1849 Sset_window_parameter
, 3, 3, 0,
1850 doc
: /* Set WINDOW's value of PARAMETER to VALUE.
1851 WINDOW can be any window and defaults to the selected one.
1853 (Lisp_Object window
, Lisp_Object parameter
, Lisp_Object value
)
1855 register struct window
*w
= decode_any_window (window
);
1856 Lisp_Object old_alist_elt
;
1858 old_alist_elt
= Fassq (parameter
, w
->window_parameters
);
1859 if (NILP (old_alist_elt
))
1860 wset_window_parameters
1861 (w
, Fcons (Fcons (parameter
, value
), w
->window_parameters
));
1863 Fsetcdr (old_alist_elt
, value
);
1867 DEFUN ("window-display-table", Fwindow_display_table
, Swindow_display_table
,
1869 doc
: /* Return the display-table that WINDOW is using.
1870 WINDOW must be a live window and defaults to the selected one. */)
1871 (Lisp_Object window
)
1873 return decode_live_window (window
)->display_table
;
1876 /* Get the display table for use on window W. This is either W's
1877 display table or W's buffer's display table. Ignore the specified
1878 tables if they are not valid; if no valid table is specified,
1881 struct Lisp_Char_Table
*
1882 window_display_table (struct window
*w
)
1884 struct Lisp_Char_Table
*dp
= NULL
;
1886 if (DISP_TABLE_P (w
->display_table
))
1887 dp
= XCHAR_TABLE (w
->display_table
);
1888 else if (BUFFERP (w
->buffer
))
1890 struct buffer
*b
= XBUFFER (w
->buffer
);
1892 if (DISP_TABLE_P (BVAR (b
, display_table
)))
1893 dp
= XCHAR_TABLE (BVAR (b
, display_table
));
1894 else if (DISP_TABLE_P (Vstandard_display_table
))
1895 dp
= XCHAR_TABLE (Vstandard_display_table
);
1901 DEFUN ("set-window-display-table", Fset_window_display_table
, Sset_window_display_table
, 2, 2, 0,
1902 doc
: /* Set WINDOW's display-table to TABLE.
1903 WINDOW must be a live window and defaults to the selected one. */)
1904 (register Lisp_Object window
, Lisp_Object table
)
1906 wset_display_table (decode_live_window (window
), table
);
1910 /* Record info on buffer window W is displaying
1911 when it is about to cease to display that buffer. */
1913 unshow_buffer (register struct window
*w
)
1920 if (b
!= XMARKER (w
->pointm
)->buffer
)
1924 if (w
== XWINDOW (selected_window
)
1925 || ! EQ (buf
, XWINDOW (selected_window
)->buffer
))
1926 /* Do this except when the selected window's buffer
1927 is being removed from some other window. */
1929 /* last_window_start records the start position that this buffer
1930 had in the last window to be disconnected from it.
1931 Now that this statement is unconditional,
1932 it is possible for the buffer to be displayed in the
1933 selected window, while last_window_start reflects another
1934 window which was recently showing the same buffer.
1935 Some people might say that might be a good thing. Let's see. */
1936 b
->last_window_start
= marker_position (w
->start
);
1938 /* Point in the selected window's buffer
1939 is actually stored in that buffer, and the window's pointm isn't used.
1940 So don't clobber point in that buffer. */
1941 if (! EQ (buf
, XWINDOW (selected_window
)->buffer
)
1942 /* Don't clobber point in current buffer either (this could be
1943 useful in connection with bug#12208).
1944 && XBUFFER (buf) != current_buffer */
1945 /* This line helps to fix Horsley's testbug.el bug. */
1946 && !(WINDOWP (BVAR (b
, last_selected_window
))
1947 && w
!= XWINDOW (BVAR (b
, last_selected_window
))
1948 && EQ (buf
, XWINDOW (BVAR (b
, last_selected_window
))->buffer
)))
1949 temp_set_point_both (b
,
1950 clip_to_bounds (BUF_BEGV (b
),
1951 XMARKER (w
->pointm
)->charpos
,
1953 clip_to_bounds (BUF_BEGV_BYTE (b
),
1954 marker_byte_position (w
->pointm
),
1957 if (WINDOWP (BVAR (b
, last_selected_window
))
1958 && w
== XWINDOW (BVAR (b
, last_selected_window
)))
1959 bset_last_selected_window (b
, Qnil
);
1962 /* Put NEW into the window structure in place of OLD. SETFLAG zero
1963 means change window structure only. Otherwise store geometry and
1964 other settings as well. */
1966 replace_window (Lisp_Object old
, Lisp_Object
new, int setflag
)
1968 register Lisp_Object tem
;
1969 register struct window
*o
= XWINDOW (old
), *n
= XWINDOW (new);
1971 /* If OLD is its frame's root window, then NEW is the new
1972 root window for that frame. */
1973 if (EQ (old
, FRAME_ROOT_WINDOW (XFRAME (o
->frame
))))
1974 fset_root_window (XFRAME (o
->frame
), new);
1978 wset_left_col (n
, o
->left_col
);
1979 wset_top_line (n
, o
->top_line
);
1980 wset_total_cols (n
, o
->total_cols
);
1981 wset_total_lines (n
, o
->total_lines
);
1982 wset_normal_cols (n
, o
->normal_cols
);
1983 wset_normal_cols (o
, make_float (1.0));
1984 wset_normal_lines (n
, o
->normal_lines
);
1985 wset_normal_lines (o
, make_float (1.0));
1986 n
->desired_matrix
= n
->current_matrix
= 0;
1988 memset (&n
->cursor
, 0, sizeof (n
->cursor
));
1989 memset (&n
->last_cursor
, 0, sizeof (n
->last_cursor
));
1990 memset (&n
->phys_cursor
, 0, sizeof (n
->phys_cursor
));
1991 n
->phys_cursor_type
= -1;
1992 n
->phys_cursor_width
= -1;
1993 n
->must_be_updated_p
= 0;
1994 n
->pseudo_window_p
= 0;
1995 wset_window_end_vpos (n
, make_number (0));
1996 wset_window_end_pos (n
, make_number (0));
1997 wset_window_end_valid (n
, Qnil
);
1998 n
->frozen_window_start_p
= 0;
2004 wset_prev (XWINDOW (tem
), new);
2009 wset_next (XWINDOW (tem
), new);
2012 wset_parent (n
, tem
);
2015 if (EQ (XWINDOW (tem
)->vchild
, old
))
2016 wset_vchild (XWINDOW (tem
), new);
2017 if (EQ (XWINDOW (tem
)->hchild
, old
))
2018 wset_hchild (XWINDOW (tem
), new);
2022 /* If window WINDOW and its parent window are iso-combined, merge
2023 WINDOW's children into those of its parent window and mark WINDOW as
2027 recombine_windows (Lisp_Object window
)
2029 struct window
*w
, *p
, *c
;
2030 Lisp_Object parent
, child
;
2033 w
= XWINDOW (window
);
2035 if (!NILP (parent
) && NILP (w
->combination_limit
))
2037 p
= XWINDOW (parent
);
2038 if (((!NILP (p
->vchild
) && !NILP (w
->vchild
))
2039 || (!NILP (p
->hchild
) && !NILP (w
->hchild
))))
2040 /* WINDOW and PARENT are both either a vertical or a horizontal
2043 horflag
= NILP (w
->vchild
);
2044 child
= horflag
? w
->hchild
: w
->vchild
;
2045 c
= XWINDOW (child
);
2047 /* Splice WINDOW's children into its parent's children and
2048 assign new normal sizes. */
2051 wset_hchild (p
, child
);
2053 wset_vchild (p
, child
);
2056 wset_prev (c
, w
->prev
);
2057 wset_next (XWINDOW (w
->prev
), child
);
2062 wset_parent (c
, parent
);
2065 wset_normal_cols (c
,
2066 make_float (XFLOATINT (c
->total_cols
)
2067 / XFLOATINT (p
->total_cols
)));
2069 wset_normal_lines (c
,
2070 make_float (XFLOATINT (c
->total_lines
)
2071 / XFLOATINT (p
->total_lines
)));
2075 if (!NILP (w
->next
))
2077 wset_next (c
, w
->next
);
2078 wset_prev (XWINDOW (c
->next
), child
);
2086 c
= XWINDOW (child
);
2090 /* WINDOW can be deleted now. */
2091 wset_vchild (w
, Qnil
);
2092 wset_hchild (w
, Qnil
);
2097 /* If WINDOW can be deleted, delete it. */
2099 delete_deletable_window (Lisp_Object window
)
2101 if (!NILP (call1 (Qwindow_deletable_p
, window
)))
2102 call1 (Qdelete_window
, window
);
2105 /***********************************************************************
2107 ***********************************************************************/
2109 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
2110 pointer. This is a callback function for foreach_window, used in
2111 the window_list function. */
2114 add_window_to_list (struct window
*w
, void *user_data
)
2116 Lisp_Object
*list
= (Lisp_Object
*) user_data
;
2118 XSETWINDOW (window
, w
);
2119 *list
= Fcons (window
, *list
);
2124 /* Return a list of all windows, for use by next_window. If
2125 Vwindow_list is a list, return that list. Otherwise, build a new
2126 list, cache it in Vwindow_list, and return that. */
2131 if (!CONSP (Vwindow_list
))
2135 Vwindow_list
= Qnil
;
2136 for (tail
= Vframe_list
; CONSP (tail
); tail
= XCDR (tail
))
2138 Lisp_Object args
[2];
2140 /* We are visiting windows in canonical order, and add
2141 new windows at the front of args[1], which means we
2142 have to reverse this list at the end. */
2144 foreach_window (XFRAME (XCAR (tail
)), add_window_to_list
, &args
[1]);
2145 args
[0] = Vwindow_list
;
2146 args
[1] = Fnreverse (args
[1]);
2147 Vwindow_list
= Fnconc (2, args
);
2151 return Vwindow_list
;
2155 /* Value is non-zero if WINDOW satisfies the constraints given by
2156 OWINDOW, MINIBUF and ALL_FRAMES.
2158 MINIBUF t means WINDOW may be minibuffer windows.
2159 `lambda' means WINDOW may not be a minibuffer window.
2160 a window means a specific minibuffer window
2162 ALL_FRAMES t means search all frames,
2163 nil means search just current frame,
2164 `visible' means search just visible frames on the
2166 0 means search visible and iconified frames on the
2168 a window means search the frame that window belongs to,
2169 a frame means consider windows on that frame, only. */
2172 candidate_window_p (Lisp_Object window
, Lisp_Object owindow
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2174 struct window
*w
= XWINDOW (window
);
2175 struct frame
*f
= XFRAME (w
->frame
);
2176 int candidate_p
= 1;
2178 if (!BUFFERP (w
->buffer
))
2180 else if (MINI_WINDOW_P (w
)
2181 && (EQ (minibuf
, Qlambda
)
2182 || (WINDOWP (minibuf
) && !EQ (minibuf
, window
))))
2184 /* If MINIBUF is `lambda' don't consider any mini-windows.
2185 If it is a window, consider only that one. */
2188 else if (EQ (all_frames
, Qt
))
2190 else if (NILP (all_frames
))
2192 eassert (WINDOWP (owindow
));
2193 candidate_p
= EQ (w
->frame
, XWINDOW (owindow
)->frame
);
2195 else if (EQ (all_frames
, Qvisible
))
2197 FRAME_SAMPLE_VISIBILITY (f
);
2198 candidate_p
= FRAME_VISIBLE_P (f
)
2199 && (FRAME_TERMINAL (XFRAME (w
->frame
))
2200 == FRAME_TERMINAL (XFRAME (selected_frame
)));
2203 else if (INTEGERP (all_frames
) && XINT (all_frames
) == 0)
2205 FRAME_SAMPLE_VISIBILITY (f
);
2206 candidate_p
= (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)
2207 #ifdef HAVE_X_WINDOWS
2208 /* Yuck!! If we've just created the frame and the
2209 window-manager requested the user to place it
2210 manually, the window may still not be considered
2211 `visible'. I'd argue it should be at least
2212 something like `iconified', but don't know how to do
2214 || (FRAME_X_P (f
) && f
->output_data
.x
->asked_for_visible
2215 && !f
->output_data
.x
->has_been_visible
)
2218 && (FRAME_TERMINAL (XFRAME (w
->frame
))
2219 == FRAME_TERMINAL (XFRAME (selected_frame
)));
2221 else if (WINDOWP (all_frames
))
2222 candidate_p
= (EQ (FRAME_MINIBUF_WINDOW (f
), all_frames
)
2223 || EQ (XWINDOW (all_frames
)->frame
, w
->frame
)
2224 || EQ (XWINDOW (all_frames
)->frame
, FRAME_FOCUS_FRAME (f
)));
2225 else if (FRAMEP (all_frames
))
2226 candidate_p
= EQ (all_frames
, w
->frame
);
2232 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2233 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2234 MINIBUF, and ALL_FRAMES. */
2237 decode_next_window_args (Lisp_Object
*window
, Lisp_Object
*minibuf
, Lisp_Object
*all_frames
)
2239 struct window
*w
= decode_live_window (*window
);
2241 XSETWINDOW (*window
, w
);
2242 /* MINIBUF nil may or may not include minibuffers. Decide if it
2244 if (NILP (*minibuf
))
2245 *minibuf
= minibuf_level
? minibuf_window
: Qlambda
;
2246 else if (!EQ (*minibuf
, Qt
))
2249 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2250 => count none of them, or a specific minibuffer window (the
2251 active one) to count. */
2253 /* ALL_FRAMES nil doesn't specify which frames to include. */
2254 if (NILP (*all_frames
))
2256 = (!EQ (*minibuf
, Qlambda
)
2257 ? FRAME_MINIBUF_WINDOW (XFRAME (w
->frame
))
2259 else if (EQ (*all_frames
, Qvisible
))
2261 else if (EQ (*all_frames
, make_number (0)))
2263 else if (FRAMEP (*all_frames
))
2265 else if (!EQ (*all_frames
, Qt
))
2270 /* Return the next or previous window of WINDOW in cyclic ordering
2271 of windows. NEXT_P non-zero means return the next window. See the
2272 documentation string of next-window for the meaning of MINIBUF and
2276 next_window (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
, int next_p
)
2278 decode_next_window_args (&window
, &minibuf
, &all_frames
);
2280 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2281 return the first window on the frame. */
2282 if (FRAMEP (all_frames
)
2283 && !EQ (all_frames
, XWINDOW (window
)->frame
))
2284 return Fframe_first_window (all_frames
);
2290 /* Find WINDOW in the list of all windows. */
2291 list
= Fmemq (window
, window_list ());
2293 /* Scan forward from WINDOW to the end of the window list. */
2295 for (list
= XCDR (list
); CONSP (list
); list
= XCDR (list
))
2296 if (candidate_window_p (XCAR (list
), window
, minibuf
, all_frames
))
2299 /* Scan from the start of the window list up to WINDOW. */
2301 for (list
= Vwindow_list
;
2302 CONSP (list
) && !EQ (XCAR (list
), window
);
2304 if (candidate_window_p (XCAR (list
), window
, minibuf
, all_frames
))
2308 window
= XCAR (list
);
2312 Lisp_Object candidate
, list
;
2314 /* Scan through the list of windows for candidates. If there are
2315 candidate windows in front of WINDOW, the last one of these
2316 is the one we want. If there are candidates following WINDOW
2317 in the list, again the last one of these is the one we want. */
2319 for (list
= window_list (); CONSP (list
); list
= XCDR (list
))
2321 if (EQ (XCAR (list
), window
))
2323 if (WINDOWP (candidate
))
2326 else if (candidate_window_p (XCAR (list
), window
, minibuf
,
2328 candidate
= XCAR (list
);
2331 if (WINDOWP (candidate
))
2339 DEFUN ("next-window", Fnext_window
, Snext_window
, 0, 3, 0,
2340 doc
: /* Return live window after WINDOW in the cyclic ordering of windows.
2341 WINDOW must be a live window and defaults to the selected one. The
2342 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2345 MINIBUF nil or omitted means consider the minibuffer window only if the
2346 minibuffer is active. MINIBUF t means consider the minibuffer window
2347 even if the minibuffer is not active. Any other value means do not
2348 consider the minibuffer window even if the minibuffer is active.
2350 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2351 plus the minibuffer window if specified by the MINIBUF argument. If the
2352 minibuffer counts, consider all windows on all frames that share that
2353 minibuffer too. The following non-nil values of ALL-FRAMES have special
2356 - t means consider all windows on all existing frames.
2358 - `visible' means consider all windows on all visible frames.
2360 - 0 (the number zero) means consider all windows on all visible and
2363 - A frame means consider all windows on that frame only.
2365 Anything else means consider all windows on WINDOW's frame and no
2368 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2369 `next-window' to iterate through the entire cycle of acceptable
2370 windows, eventually ending up back at the window you started with.
2371 `previous-window' traverses the same cycle, in the reverse order. */)
2372 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2374 return next_window (window
, minibuf
, all_frames
, 1);
2378 DEFUN ("previous-window", Fprevious_window
, Sprevious_window
, 0, 3, 0,
2379 doc
: /* Return live window before WINDOW in the cyclic ordering of windows.
2380 WINDOW must be a live window and defaults to the selected one. The
2381 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2384 MINIBUF nil or omitted means consider the minibuffer window only if the
2385 minibuffer is active. MINIBUF t means consider the minibuffer window
2386 even if the minibuffer is not active. Any other value means do not
2387 consider the minibuffer window even if the minibuffer is active.
2389 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2390 plus the minibuffer window if specified by the MINIBUF argument. If the
2391 minibuffer counts, consider all windows on all frames that share that
2392 minibuffer too. The following non-nil values of ALL-FRAMES have special
2395 - t means consider all windows on all existing frames.
2397 - `visible' means consider all windows on all visible frames.
2399 - 0 (the number zero) means consider all windows on all visible and
2402 - A frame means consider all windows on that frame only.
2404 Anything else means consider all windows on WINDOW's frame and no
2407 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2408 use `previous-window' to iterate through the entire cycle of
2409 acceptable windows, eventually ending up back at the window you
2410 started with. `next-window' traverses the same cycle, in the
2412 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2414 return next_window (window
, minibuf
, all_frames
, 0);
2418 /* Return a list of windows in cyclic ordering. Arguments are like
2419 for `next-window'. */
2422 window_list_1 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2424 Lisp_Object tail
, list
, rest
;
2426 decode_next_window_args (&window
, &minibuf
, &all_frames
);
2429 for (tail
= window_list (); CONSP (tail
); tail
= XCDR (tail
))
2430 if (candidate_window_p (XCAR (tail
), window
, minibuf
, all_frames
))
2431 list
= Fcons (XCAR (tail
), list
);
2433 /* Rotate the list to start with WINDOW. */
2434 list
= Fnreverse (list
);
2435 rest
= Fmemq (window
, list
);
2436 if (!NILP (rest
) && !EQ (rest
, list
))
2438 for (tail
= list
; !EQ (XCDR (tail
), rest
); tail
= XCDR (tail
))
2440 XSETCDR (tail
, Qnil
);
2441 list
= nconc2 (rest
, list
);
2447 DEFUN ("window-list", Fwindow_list
, Swindow_list
, 0, 3, 0,
2448 doc
: /* Return a list of windows on FRAME, starting with WINDOW.
2449 FRAME nil or omitted means use the selected frame.
2450 WINDOW nil or omitted means use the window selected within FRAME.
2451 MINIBUF t means include the minibuffer window, even if it isn't active.
2452 MINIBUF nil or omitted means include the minibuffer window only
2454 MINIBUF neither nil nor t means never include the minibuffer window. */)
2455 (Lisp_Object frame
, Lisp_Object minibuf
, Lisp_Object window
)
2458 window
= FRAMEP (frame
) ? XFRAME (frame
)->selected_window
: selected_window
;
2459 CHECK_WINDOW (window
);
2461 frame
= selected_frame
;
2463 if (!EQ (frame
, XWINDOW (window
)->frame
))
2464 error ("Window is on a different frame");
2466 return window_list_1 (window
, minibuf
, frame
);
2470 DEFUN ("window-list-1", Fwindow_list_1
, Swindow_list_1
, 0, 3, 0,
2471 doc
: /* Return a list of all live windows.
2472 WINDOW specifies the first window to list and defaults to the selected
2475 Optional argument MINIBUF nil or omitted means consider the minibuffer
2476 window only if the minibuffer is active. MINIBUF t means consider the
2477 minibuffer window even if the minibuffer is not active. Any other value
2478 means do not consider the minibuffer window even if the minibuffer is
2481 Optional argument ALL-FRAMES nil or omitted means consider all windows
2482 on WINDOW's frame, plus the minibuffer window if specified by the
2483 MINIBUF argument. If the minibuffer counts, consider all windows on all
2484 frames that share that minibuffer too. The following non-nil values of
2485 ALL-FRAMES have special meanings:
2487 - t means consider all windows on all existing frames.
2489 - `visible' means consider all windows on all visible frames.
2491 - 0 (the number zero) means consider all windows on all visible and
2494 - A frame means consider all windows on that frame only.
2496 Anything else means consider all windows on WINDOW's frame and no
2499 If WINDOW is not on the list of windows returned, some other window will
2500 be listed first but no error is signaled. */)
2501 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2503 return window_list_1 (window
, minibuf
, all_frames
);
2506 /* Look at all windows, performing an operation specified by TYPE
2508 If FRAMES is Qt, look at all frames;
2509 Qnil, look at just the selected frame;
2510 Qvisible, look at visible frames;
2511 a frame, just look at windows on that frame.
2512 If MINI is non-zero, perform the operation on minibuffer windows too. */
2517 GET_BUFFER_WINDOW
, /* Arg is buffer */
2518 REPLACE_BUFFER_IN_WINDOWS_SAFELY
, /* Arg is buffer */
2519 REDISPLAY_BUFFER_WINDOWS
, /* Arg is buffer */
2524 window_loop (enum window_loop type
, Lisp_Object obj
, int mini
, Lisp_Object frames
)
2526 Lisp_Object window
, windows
, best_window
, frame_arg
;
2527 int frame_best_window_flag
= 0;
2529 struct gcpro gcpro1
;
2531 /* If we're only looping through windows on a particular frame,
2532 frame points to that frame. If we're looping through windows
2533 on all frames, frame is 0. */
2534 if (FRAMEP (frames
))
2535 f
= XFRAME (frames
);
2536 else if (NILP (frames
))
2537 f
= SELECTED_FRAME ();
2542 frame_arg
= Qlambda
;
2543 else if (EQ (frames
, make_number (0)))
2545 else if (EQ (frames
, Qvisible
))
2550 /* frame_arg is Qlambda to stick to one frame,
2551 Qvisible to consider all visible frames,
2554 /* Pick a window to start with. */
2558 window
= FRAME_SELECTED_WINDOW (f
);
2560 window
= FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2562 windows
= window_list_1 (window
, mini
? Qt
: Qnil
, frame_arg
);
2566 for (; CONSP (windows
); windows
= XCDR (windows
))
2570 window
= XCAR (windows
);
2571 w
= XWINDOW (window
);
2573 /* Note that we do not pay attention here to whether the frame
2574 is visible, since Fwindow_list skips non-visible frames if
2575 that is desired, under the control of frame_arg. */
2576 if (!MINI_WINDOW_P (w
)
2577 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2578 consider all windows. */
2579 || type
== REPLACE_BUFFER_IN_WINDOWS_SAFELY
2580 || (mini
&& minibuf_level
> 0))
2583 case GET_BUFFER_WINDOW
:
2584 if (EQ (w
->buffer
, obj
)
2585 /* Don't find any minibuffer window except the one that
2586 is currently in use. */
2587 && (MINI_WINDOW_P (w
) ? EQ (window
, minibuf_window
) : 1))
2589 if (EQ (window
, selected_window
))
2590 /* Preferably return the selected window. */
2591 RETURN_UNGCPRO (window
);
2592 else if (EQ (XWINDOW (window
)->frame
, selected_frame
)
2593 && !frame_best_window_flag
)
2594 /* Prefer windows on the current frame (but don't
2595 choose another one if we have one already). */
2597 best_window
= window
;
2598 frame_best_window_flag
= 1;
2600 else if (NILP (best_window
))
2601 best_window
= window
;
2605 case REPLACE_BUFFER_IN_WINDOWS_SAFELY
:
2606 /* We could simply check whether the buffer shown by window
2607 is live, and show another buffer in case it isn't. */
2608 if (EQ (w
->buffer
, obj
))
2610 /* Undedicate WINDOW. */
2611 wset_dedicated (w
, Qnil
);
2612 /* Make WINDOW show the buffer returned by
2613 other_buffer_safely, don't run any hooks. */
2615 (window
, other_buffer_safely (w
->buffer
), 0, 0);
2616 /* If WINDOW is the selected window, make its buffer
2617 current. But do so only if the window shows the
2618 current buffer (Bug#6454). */
2619 if (EQ (window
, selected_window
)
2620 && XBUFFER (w
->buffer
) == current_buffer
)
2621 Fset_buffer (w
->buffer
);
2625 case REDISPLAY_BUFFER_WINDOWS
:
2626 if (EQ (w
->buffer
, obj
))
2628 mark_window_display_accurate (window
, 0);
2629 w
->update_mode_line
= 1;
2630 XBUFFER (obj
)->prevent_redisplay_optimizations_p
= 1;
2631 ++update_mode_lines
;
2632 best_window
= window
;
2636 /* Check for a window that has a killed buffer. */
2637 case CHECK_ALL_WINDOWS
:
2638 if (! NILP (w
->buffer
)
2639 && !BUFFER_LIVE_P (XBUFFER (w
->buffer
)))
2643 case WINDOW_LOOP_UNUSED
:
2652 /* Used for debugging. Abort if any window has a dead buffer. */
2654 extern void check_all_windows (void) EXTERNALLY_VISIBLE
;
2656 check_all_windows (void)
2658 window_loop (CHECK_ALL_WINDOWS
, Qnil
, 1, Qt
);
2661 DEFUN ("get-buffer-window", Fget_buffer_window
, Sget_buffer_window
, 0, 2, 0,
2662 doc
: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2663 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2666 The optional argument ALL-FRAMES specifies the frames to consider:
2668 - t means consider all windows on all existing frames.
2670 - `visible' means consider all windows on all visible frames.
2672 - 0 (the number zero) means consider all windows on all visible
2673 and iconified frames.
2675 - A frame means consider all windows on that frame only.
2677 Any other value of ALL-FRAMES means consider all windows on the
2678 selected frame and no others. */)
2679 (Lisp_Object buffer_or_name
, Lisp_Object all_frames
)
2683 if (NILP (buffer_or_name
))
2684 buffer
= Fcurrent_buffer ();
2686 buffer
= Fget_buffer (buffer_or_name
);
2688 if (BUFFERP (buffer
))
2689 return window_loop (GET_BUFFER_WINDOW
, buffer
, 1, all_frames
);
2695 resize_root_window (Lisp_Object window
, Lisp_Object delta
, Lisp_Object horizontal
, Lisp_Object ignore
)
2697 return call4 (Qwindow_resize_root_window
, window
, delta
, horizontal
, ignore
);
2701 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal
,
2702 Sdelete_other_windows_internal
, 0, 2, "",
2703 doc
: /* Make WINDOW fill its frame.
2704 Only the frame WINDOW is on is affected. WINDOW must be a valid window
2705 and defaults to the selected one.
2707 Optional argument ROOT, if non-nil, must specify an internal window such
2708 that WINDOW is in its window subtree. If this is the case, replace ROOT
2709 by WINDOW and leave alone any windows not part of ROOT's subtree.
2711 When WINDOW is live try to reduce display jumps by keeping the text
2712 previously visible in WINDOW in the same place on the frame. Doing this
2713 depends on the value of (window-start WINDOW), so if calling this
2714 function in a program gives strange scrolling, make sure the
2715 window-start value is reasonable when this function is called. */)
2716 (Lisp_Object window
, Lisp_Object root
)
2718 struct window
*w
, *r
, *s
;
2720 Lisp_Object sibling
, pwindow
, swindow
IF_LINT (= Qnil
), delta
;
2721 ptrdiff_t startpos
IF_LINT (= 0);
2722 int top
IF_LINT (= 0), new_top
, resize_failed
;
2724 w
= decode_valid_window (window
);
2725 XSETWINDOW (window
, w
);
2726 f
= XFRAME (w
->frame
);
2729 /* ROOT is the frame's root window. */
2731 root
= FRAME_ROOT_WINDOW (f
);
2735 /* ROOT must be an ancestor of WINDOW. */
2737 r
= decode_valid_window (root
);
2738 pwindow
= XWINDOW (window
)->parent
;
2739 while (!NILP (pwindow
))
2740 if (EQ (pwindow
, root
))
2743 pwindow
= XWINDOW (pwindow
)->parent
;
2744 if (!EQ (pwindow
, root
))
2745 error ("Specified root is not an ancestor of specified window");
2748 if (EQ (window
, root
))
2751 /* I don't understand the "top > 0" part below. If we deal with a
2752 standalone minibuffer it would have been caught by the preceding
2754 else if (MINI_WINDOW_P (w
)) /* && top > 0) */
2755 error ("Can't expand minibuffer to full frame");
2757 if (!NILP (w
->buffer
))
2759 startpos
= marker_position (w
->start
);
2760 top
= WINDOW_TOP_EDGE_LINE (w
)
2761 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w
)));
2762 /* Make sure WINDOW is the frame's selected window. */
2763 if (!EQ (window
, FRAME_SELECTED_WINDOW (f
)))
2765 if (EQ (selected_frame
, w
->frame
))
2766 Fselect_window (window
, Qnil
);
2768 fset_selected_window (f
, window
);
2773 /* See if the frame's selected window is a part of the window
2774 subtree rooted at WINDOW, by finding all the selected window's
2775 parents and comparing each one with WINDOW. If it isn't we
2776 need a new selected window for this frame. */
2777 swindow
= FRAME_SELECTED_WINDOW (f
);
2781 while (!NILP (pwindow
) && !EQ (window
, pwindow
))
2782 pwindow
= XWINDOW (pwindow
)->parent
;
2784 if (EQ (window
, pwindow
))
2785 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
2786 as the new selected window. */
2789 /* Else try the previous window of SWINDOW. */
2790 swindow
= Fprevious_window (swindow
, Qlambda
, Qnil
);
2793 if (!EQ (swindow
, FRAME_SELECTED_WINDOW (f
)))
2795 if (EQ (selected_frame
, w
->frame
))
2796 Fselect_window (swindow
, Qnil
);
2798 fset_selected_window (f
, swindow
);
2803 if (!FRAME_INITIAL_P (f
))
2805 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
2807 /* We are going to free the glyph matrices of WINDOW, and with
2808 that we might lose any information about glyph rows that have
2809 some of their glyphs highlighted in mouse face. (These rows
2810 are marked with a non-zero mouse_face_p flag.) If WINDOW
2811 indeed has some glyphs highlighted in mouse face, signal to
2812 frame's up-to-date hook that mouse highlight was overwritten,
2813 so that it will arrange for redisplaying the highlight. */
2814 if (EQ (hlinfo
->mouse_face_window
, window
))
2816 hlinfo
->mouse_face_beg_row
= hlinfo
->mouse_face_beg_col
= -1;
2817 hlinfo
->mouse_face_end_row
= hlinfo
->mouse_face_end_col
= -1;
2818 hlinfo
->mouse_face_window
= Qnil
;
2821 free_window_matrices (r
);
2823 windows_or_buffers_changed
++;
2824 Vwindow_list
= Qnil
;
2825 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
2828 if (NILP (w
->buffer
))
2830 /* Resize child windows vertically. */
2831 XSETINT (delta
, XINT (r
->total_lines
)
2832 - XINT (w
->total_lines
));
2833 wset_top_line (w
, r
->top_line
);
2834 resize_root_window (window
, delta
, Qnil
, Qnil
);
2835 if (window_resize_check (w
, 0))
2836 window_resize_apply (w
, 0);
2839 resize_root_window (window
, delta
, Qnil
, Qt
);
2840 if (window_resize_check (w
, 0))
2841 window_resize_apply (w
, 0);
2846 /* Resize child windows horizontally. */
2849 wset_left_col (w
, r
->left_col
);
2851 XINT (r
->total_cols
) - XINT (w
->total_cols
));
2852 wset_left_col (w
, r
->left_col
);
2853 resize_root_window (window
, delta
, Qt
, Qnil
);
2854 if (window_resize_check (w
, 1))
2855 window_resize_apply (w
, 1);
2858 resize_root_window (window
, delta
, Qt
, Qt
);
2859 if (window_resize_check (w
, 1))
2860 window_resize_apply (w
, 1);
2867 /* Play safe, if we still can ... */
2870 w
= XWINDOW (window
);
2874 /* Cleanly unlink WINDOW from window-tree. */
2875 if (!NILP (w
->prev
))
2876 /* Get SIBLING above (on the left of) WINDOW. */
2879 s
= XWINDOW (sibling
);
2880 wset_next (s
, w
->next
);
2881 if (!NILP (s
->next
))
2882 wset_prev (XWINDOW (s
->next
), sibling
);
2885 /* Get SIBLING below (on the right of) WINDOW. */
2888 s
= XWINDOW (sibling
);
2889 wset_prev (s
, Qnil
);
2890 if (!NILP (XWINDOW (w
->parent
)->vchild
))
2891 wset_vchild (XWINDOW (w
->parent
), sibling
);
2893 wset_hchild (XWINDOW (w
->parent
), sibling
);
2896 /* Delete ROOT and all child windows of ROOT. */
2897 if (!NILP (r
->vchild
))
2899 delete_all_child_windows (r
->vchild
);
2900 wset_vchild (r
, Qnil
);
2902 else if (!NILP (r
->hchild
))
2904 delete_all_child_windows (r
->hchild
);
2905 wset_hchild (r
, Qnil
);
2908 replace_window (root
, window
, 1);
2910 /* This must become SWINDOW anyway ....... */
2911 if (!NILP (w
->buffer
) && !resize_failed
)
2913 /* Try to minimize scrolling, by setting the window start to the
2914 point will cause the text at the old window start to be at the
2915 same place on the frame. But don't try to do this if the
2916 window start is outside the visible portion (as might happen
2917 when the display is not current, due to typeahead). */
2918 new_top
= WINDOW_TOP_EDGE_LINE (w
) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w
)));
2920 && startpos
>= BUF_BEGV (XBUFFER (w
->buffer
))
2921 && startpos
<= BUF_ZV (XBUFFER (w
->buffer
)))
2923 struct position pos
;
2924 struct buffer
*obuf
= current_buffer
;
2926 Fset_buffer (w
->buffer
);
2927 /* This computation used to temporarily move point, but that
2928 can have unwanted side effects due to text properties. */
2929 pos
= *vmotion (startpos
, -top
, w
);
2931 set_marker_both (w
->start
, w
->buffer
, pos
.bufpos
, pos
.bytepos
);
2932 wset_window_end_valid (w
, Qnil
);
2933 w
->start_at_line_beg
= (pos
.bytepos
== BEGV_BYTE
2934 || FETCH_BYTE (pos
.bytepos
- 1) == '\n');
2935 /* We need to do this, so that the window-scroll-functions
2937 w
->optional_new_start
= 1;
2939 set_buffer_internal (obuf
);
2946 run_window_configuration_change_hook (f
);
2953 replace_buffer_in_windows (Lisp_Object buffer
)
2955 call1 (Qreplace_buffer_in_windows
, buffer
);
2959 /* Safely replace BUFFER with some other buffer in all windows of all
2960 frames, even those on other keyboards. */
2963 replace_buffer_in_windows_safely (Lisp_Object buffer
)
2965 Lisp_Object tail
, frame
;
2967 /* A single call to window_loop won't do the job because it only
2968 considers frames on the current keyboard. So loop manually over
2969 frames, and handle each one. */
2970 FOR_EACH_FRAME (tail
, frame
)
2971 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY
, buffer
, 1, frame
);
2974 /* If *ROWS or *COLS are too small a size for FRAME, set them to the
2975 minimum allowable size. */
2978 check_frame_size (FRAME_PTR frame
, int *rows
, int *cols
)
2980 /* For height, we have to see:
2981 how many windows the frame has at minimum (one or two),
2982 and whether it has a menu bar or other special stuff at the top. */
2984 = ((FRAME_MINIBUF_ONLY_P (frame
) || ! FRAME_HAS_MINIBUF_P (frame
))
2985 ? MIN_SAFE_WINDOW_HEIGHT
2986 : 2 * MIN_SAFE_WINDOW_HEIGHT
);
2988 if (FRAME_TOP_MARGIN (frame
) > 0)
2989 min_height
+= FRAME_TOP_MARGIN (frame
);
2991 if (*rows
< min_height
)
2993 if (*cols
< MIN_SAFE_WINDOW_WIDTH
)
2994 *cols
= MIN_SAFE_WINDOW_WIDTH
;
2997 /* Adjust the margins of window W if text area is too small.
2998 Return 1 if window width is ok after adjustment; 0 if window
2999 is still too narrow. */
3002 adjust_window_margins (struct window
*w
)
3004 int box_cols
= (WINDOW_TOTAL_COLS (w
)
3005 - WINDOW_FRINGE_COLS (w
)
3006 - WINDOW_SCROLL_BAR_COLS (w
));
3007 int margin_cols
= (WINDOW_LEFT_MARGIN_COLS (w
)
3008 + WINDOW_RIGHT_MARGIN_COLS (w
));
3010 if (box_cols
- margin_cols
>= MIN_SAFE_WINDOW_WIDTH
)
3013 if (margin_cols
< 0 || box_cols
< MIN_SAFE_WINDOW_WIDTH
)
3016 /* Window's text area is too narrow, but reducing the window
3017 margins will fix that. */
3018 margin_cols
= box_cols
- MIN_SAFE_WINDOW_WIDTH
;
3019 if (WINDOW_RIGHT_MARGIN_COLS (w
) > 0)
3021 if (WINDOW_LEFT_MARGIN_COLS (w
) > 0)
3023 wset_left_margin_cols (w
, make_number (margin_cols
/ 2));
3024 wset_right_margin_cols (w
, make_number (margin_cols
/ 2));
3027 wset_right_margin_cols (w
, make_number (margin_cols
));
3030 wset_left_margin_cols (w
, make_number (margin_cols
));
3034 /* The following three routines are needed for running a window's
3035 configuration change hook. */
3037 run_funs (Lisp_Object funs
)
3039 for (; CONSP (funs
); funs
= XCDR (funs
))
3040 if (!EQ (XCAR (funs
), Qt
))
3041 call0 (XCAR (funs
));
3045 select_window_norecord (Lisp_Object window
)
3047 return WINDOW_LIVE_P (window
)
3048 ? Fselect_window (window
, Qt
) : selected_window
;
3052 select_frame_norecord (Lisp_Object frame
)
3054 return FRAME_LIVE_P (XFRAME (frame
))
3055 ? Fselect_frame (frame
, Qt
) : selected_frame
;
3059 run_window_configuration_change_hook (struct frame
*f
)
3061 ptrdiff_t count
= SPECPDL_INDEX ();
3062 Lisp_Object frame
, global_wcch
3063 = Fdefault_value (Qwindow_configuration_change_hook
);
3064 XSETFRAME (frame
, f
);
3066 if (NILP (Vrun_hooks
) || !NILP (inhibit_lisp_code
))
3069 /* Use the right buffer. Matters when running the local hooks. */
3070 if (current_buffer
!= XBUFFER (Fwindow_buffer (Qnil
)))
3072 record_unwind_current_buffer ();
3073 Fset_buffer (Fwindow_buffer (Qnil
));
3076 if (SELECTED_FRAME () != f
)
3078 record_unwind_protect (select_frame_norecord
, Fselected_frame ());
3079 select_frame_norecord (frame
);
3082 /* Look for buffer-local values. */
3084 Lisp_Object windows
= Fwindow_list (frame
, Qlambda
, Qnil
);
3085 for (; CONSP (windows
); windows
= XCDR (windows
))
3087 Lisp_Object window
= XCAR (windows
);
3088 Lisp_Object buffer
= Fwindow_buffer (window
);
3089 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook
,
3092 ptrdiff_t inner_count
= SPECPDL_INDEX ();
3093 record_unwind_protect (select_window_norecord
, Fselected_window ());
3094 select_window_norecord (window
);
3095 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook
,
3097 unbind_to (inner_count
, Qnil
);
3102 run_funs (global_wcch
);
3103 unbind_to (count
, Qnil
);
3106 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook
,
3107 Srun_window_configuration_change_hook
, 0, 1, 0,
3108 doc
: /* Run `window-configuration-change-hook' for FRAME.
3109 If FRAME is omitted or nil, it defaults to the selected frame. */)
3112 run_window_configuration_change_hook (decode_live_frame (frame
));
3116 /* Make WINDOW display BUFFER as its contents. RUN_HOOKS_P non-zero
3117 means it's allowed to run hooks. See make_frame for a case where
3118 it's not allowed. KEEP_MARGINS_P non-zero means that the current
3119 margins, fringes, and scroll-bar settings of the window are not
3120 reset from the buffer's local settings. */
3123 set_window_buffer (Lisp_Object window
, Lisp_Object buffer
, int run_hooks_p
, int keep_margins_p
)
3125 struct window
*w
= XWINDOW (window
);
3126 struct buffer
*b
= XBUFFER (buffer
);
3127 ptrdiff_t count
= SPECPDL_INDEX ();
3128 int samebuf
= EQ (buffer
, w
->buffer
);
3130 wset_buffer (w
, buffer
);
3132 if (EQ (window
, selected_window
))
3133 bset_last_selected_window (b
, window
);
3135 /* Let redisplay errors through. */
3136 b
->display_error_modiff
= 0;
3138 /* Update time stamps of buffer display. */
3139 if (INTEGERP (BVAR (b
, display_count
)))
3140 bset_display_count (b
, make_number (XINT (BVAR (b
, display_count
)) + 1));
3141 bset_display_time (b
, Fcurrent_time ());
3143 wset_window_end_pos (w
, make_number (0));
3144 wset_window_end_vpos (w
, make_number (0));
3145 memset (&w
->last_cursor
, 0, sizeof w
->last_cursor
);
3146 wset_window_end_valid (w
, Qnil
);
3147 if (!(keep_margins_p
&& samebuf
))
3148 { /* If we're not actually changing the buffer, don't reset hscroll and
3149 vscroll. This case happens for example when called from
3150 change_frame_size_1, where we use a dummy call to
3151 Fset_window_buffer on the frame's selected window (and no other)
3152 just in order to run window-configuration-change-hook.
3153 Resetting hscroll and vscroll here is problematic for things like
3154 image-mode and doc-view-mode since it resets the image's position
3155 whenever we resize the frame. */
3156 w
->hscroll
= w
->min_hscroll
= 0;
3158 set_marker_both (w
->pointm
, buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
3159 set_marker_restricted (w
->start
,
3160 make_number (b
->last_window_start
),
3162 w
->start_at_line_beg
= 0;
3164 w
->last_modified
= 0;
3165 w
->last_overlay_modified
= 0;
3167 /* Maybe we could move this into the `if' but it's not obviously safe and
3168 I doubt it's worth the trouble. */
3169 windows_or_buffers_changed
++;
3171 /* We must select BUFFER for running the window-scroll-functions. */
3172 /* We can't check ! NILP (Vwindow_scroll_functions) here
3173 because that might itself be a local variable. */
3174 if (window_initialized
)
3176 record_unwind_current_buffer ();
3177 Fset_buffer (buffer
);
3180 XMARKER (w
->pointm
)->insertion_type
= !NILP (Vwindow_point_insertion_type
);
3182 if (!keep_margins_p
)
3184 /* Set left and right marginal area width etc. from buffer. */
3186 /* This may call adjust_window_margins three times, so
3187 temporarily disable window margins. */
3188 Lisp_Object save_left
= w
->left_margin_cols
;
3189 Lisp_Object save_right
= w
->right_margin_cols
;
3191 wset_left_margin_cols (w
, Qnil
);
3192 wset_right_margin_cols (w
, Qnil
);
3194 Fset_window_fringes (window
,
3195 BVAR (b
, left_fringe_width
), BVAR (b
, right_fringe_width
),
3196 BVAR (b
, fringes_outside_margins
));
3198 Fset_window_scroll_bars (window
,
3199 BVAR (b
, scroll_bar_width
),
3200 BVAR (b
, vertical_scroll_bar_type
), Qnil
);
3202 wset_left_margin_cols (w
, save_left
);
3203 wset_right_margin_cols (w
, save_right
);
3205 Fset_window_margins (window
,
3206 BVAR (b
, left_margin_cols
), BVAR (b
, right_margin_cols
));
3211 if (! NILP (Vwindow_scroll_functions
))
3212 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
3213 Fmarker_position (w
->start
));
3214 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w
)));
3217 unbind_to (count
, Qnil
);
3220 DEFUN ("set-window-buffer", Fset_window_buffer
, Sset_window_buffer
, 2, 3, 0,
3221 doc
: /* Make WINDOW display BUFFER-OR-NAME as its contents.
3222 WINDOW must be a live window and defaults to the selected one.
3223 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3225 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3226 display margins, fringe widths, and scroll bar settings are preserved;
3227 the default is to reset these from the local settings for BUFFER-OR-NAME
3228 or the frame defaults. Return nil.
3230 This function throws an error when WINDOW is strongly dedicated to its
3231 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3232 already display BUFFER-OR-NAME.
3234 This function runs `window-scroll-functions' before running
3235 `window-configuration-change-hook'. */)
3236 (register Lisp_Object window
, Lisp_Object buffer_or_name
, Lisp_Object keep_margins
)
3238 register Lisp_Object tem
, buffer
;
3239 register struct window
*w
= decode_live_window (window
);
3241 XSETWINDOW (window
, w
);
3242 buffer
= Fget_buffer (buffer_or_name
);
3243 CHECK_BUFFER (buffer
);
3244 if (!BUFFER_LIVE_P (XBUFFER (buffer
)))
3245 error ("Attempt to display deleted buffer");
3249 error ("Window is deleted");
3250 else if (!EQ (tem
, Qt
))
3251 /* w->buffer is t when the window is first being set up. */
3253 if (!EQ (tem
, buffer
))
3255 if (EQ (w
->dedicated
, Qt
))
3256 /* WINDOW is strongly dedicated to its buffer, signal an
3258 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem
), name
)));
3260 /* WINDOW is weakly dedicated to its buffer, reset
3262 wset_dedicated (w
, Qnil
);
3264 call1 (Qrecord_window_buffer
, window
);
3270 set_window_buffer (window
, buffer
, 1, !NILP (keep_margins
));
3276 display_buffer (Lisp_Object buffer
, Lisp_Object not_this_window_p
, Lisp_Object override_frame
)
3278 return call3 (Qdisplay_buffer
, buffer
, not_this_window_p
, override_frame
);
3281 DEFUN ("force-window-update", Fforce_window_update
, Sforce_window_update
,
3283 doc
: /* Force all windows to be updated on next redisplay.
3284 If optional arg OBJECT is a window, force redisplay of that window only.
3285 If OBJECT is a buffer or buffer name, force redisplay of all windows
3286 displaying that buffer. */)
3287 (Lisp_Object object
)
3291 windows_or_buffers_changed
++;
3292 update_mode_lines
++;
3296 if (WINDOWP (object
))
3298 struct window
*w
= XWINDOW (object
);
3299 mark_window_display_accurate (object
, 0);
3300 w
->update_mode_line
= 1;
3301 if (BUFFERP (w
->buffer
))
3302 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
3303 ++update_mode_lines
;
3307 if (STRINGP (object
))
3308 object
= Fget_buffer (object
);
3309 if (BUFFERP (object
) && BUFFER_LIVE_P (XBUFFER (object
)))
3311 /* Walk all windows looking for buffer, and force update
3312 of each of those windows. */
3314 object
= window_loop (REDISPLAY_BUFFER_WINDOWS
, object
, 0, Qvisible
);
3315 return NILP (object
) ? Qnil
: Qt
;
3318 /* If nothing suitable was found, just return.
3319 We could signal an error, but this feature will typically be used
3320 asynchronously in timers or process sentinels, so we don't. */
3324 /* Obsolete since 24.3. */
3326 temp_output_buffer_show (register Lisp_Object buf
)
3328 register struct buffer
*old
= current_buffer
;
3329 register Lisp_Object window
;
3330 register struct window
*w
;
3332 bset_directory (XBUFFER (buf
), BVAR (current_buffer
, directory
));
3335 BUF_SAVE_MODIFF (XBUFFER (buf
)) = MODIFF
;
3339 set_buffer_internal (old
);
3341 if (!NILP (Vtemp_buffer_show_function
))
3342 call1 (Vtemp_buffer_show_function
, buf
);
3345 window
= display_buffer (buf
, Qnil
, Qnil
);
3347 if (!EQ (XWINDOW (window
)->frame
, selected_frame
))
3348 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window
)));
3349 Vminibuf_scroll_window
= window
;
3350 w
= XWINDOW (window
);
3353 set_marker_restricted_both (w
->start
, buf
, BEG
, BEG
);
3354 set_marker_restricted_both (w
->pointm
, buf
, BEG
, BEG
);
3356 /* Run temp-buffer-show-hook, with the chosen window selected
3357 and its buffer current. */
3359 ptrdiff_t count
= SPECPDL_INDEX ();
3360 Lisp_Object prev_window
, prev_buffer
;
3361 prev_window
= selected_window
;
3362 XSETBUFFER (prev_buffer
, old
);
3364 /* Select the window that was chosen, for running the hook.
3365 Note: Both Fselect_window and select_window_norecord may
3366 set-buffer to the buffer displayed in the window,
3367 so we need to save the current buffer. --stef */
3368 record_unwind_protect (Fset_buffer
, prev_buffer
);
3369 record_unwind_protect (select_window_norecord
, prev_window
);
3370 Fselect_window (window
, Qt
);
3371 Fset_buffer (w
->buffer
);
3372 Frun_hooks (1, &Qtemp_buffer_show_hook
);
3373 unbind_to (count
, Qnil
);
3378 /* Make new window, have it replace WINDOW in window-tree, and make
3379 WINDOW its only vertical child (HORFLAG 1 means make WINDOW its only
3380 horizontal child). */
3382 make_parent_window (Lisp_Object window
, int horflag
)
3385 register struct window
*o
, *p
;
3387 o
= XWINDOW (window
);
3388 p
= allocate_window ();
3389 memcpy ((char *) p
+ sizeof (struct vectorlike_header
),
3390 (char *) o
+ sizeof (struct vectorlike_header
),
3391 word_size
* VECSIZE (struct window
));
3392 XSETWINDOW (parent
, p
);
3394 p
->sequence_number
= ++sequence_number
;
3396 replace_window (window
, parent
, 1);
3398 wset_next (o
, Qnil
);
3399 wset_prev (o
, Qnil
);
3400 wset_parent (o
, parent
);
3402 wset_hchild (p
, horflag
? window
: Qnil
);
3403 wset_vchild (p
, horflag
? Qnil
: window
);
3404 wset_start (p
, Qnil
);
3405 wset_pointm (p
, Qnil
);
3406 wset_buffer (p
, Qnil
);
3407 wset_combination_limit (p
, Qnil
);
3408 wset_window_parameters (p
, Qnil
);
3411 /* Make new window from scratch. */
3416 register struct window
*w
;
3418 w
= allocate_window ();
3419 /* Initialize Lisp data. Note that allocate_window initializes all
3420 Lisp data to nil, so do it only for slots which should not be nil. */
3421 wset_left_col (w
, make_number (0));
3422 wset_top_line (w
, make_number (0));
3423 wset_total_lines (w
, make_number (0));
3424 wset_total_cols (w
, make_number (0));
3425 wset_normal_lines (w
, make_float (1.0));
3426 wset_normal_cols (w
, make_float (1.0));
3427 wset_new_total (w
, make_number (0));
3428 wset_new_normal (w
, make_number (0));
3429 wset_start (w
, Fmake_marker ());
3430 wset_pointm (w
, Fmake_marker ());
3431 wset_vertical_scroll_bar_type (w
, Qt
);
3432 wset_window_end_pos (w
, make_number (0));
3433 wset_window_end_vpos (w
, make_number (0));
3434 /* These Lisp fields are marked specially so they're not set to nil by
3436 wset_prev_buffers (w
, Qnil
);
3437 wset_next_buffers (w
, Qnil
);
3439 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3440 non-Lisp data, so do it only for slots which should not be zero. */
3441 w
->nrows_scale_factor
= w
->ncols_scale_factor
= 1;
3442 w
->phys_cursor_type
= -1;
3443 w
->phys_cursor_width
= -1;
3444 w
->sequence_number
= ++sequence_number
;
3446 /* Reset window_list. */
3447 Vwindow_list
= Qnil
;
3448 /* Return window. */
3449 XSETWINDOW (window
, w
);
3453 DEFUN ("set-window-new-total", Fset_window_new_total
, Sset_window_new_total
, 2, 3, 0,
3454 doc
: /* Set new total size of WINDOW to SIZE.
3455 WINDOW must be a valid window and defaults to the selected one.
3458 Optional argument ADD non-nil means add SIZE to the new total size of
3459 WINDOW and return the sum.
3461 Note: This function does not operate on any child windows of WINDOW. */)
3462 (Lisp_Object window
, Lisp_Object size
, Lisp_Object add
)
3464 struct window
*w
= decode_valid_window (window
);
3466 CHECK_NUMBER (size
);
3468 wset_new_total (w
, size
);
3470 wset_new_total (w
, make_number (XINT (w
->new_total
) + XINT (size
)));
3472 return w
->new_total
;
3475 DEFUN ("set-window-new-normal", Fset_window_new_normal
, Sset_window_new_normal
, 1, 2, 0,
3476 doc
: /* Set new normal size of WINDOW to SIZE.
3477 WINDOW must be a valid window and defaults to the selected one.
3480 Note: This function does not operate on any child windows of WINDOW. */)
3481 (Lisp_Object window
, Lisp_Object size
)
3483 wset_new_normal (decode_valid_window (window
), size
);
3487 /* Return 1 if setting w->total_lines (w->total_cols if HORFLAG is
3488 non-zero) to w->new_total would result in correct heights (widths)
3489 for window W and recursively all child windows of W.
3491 Note: This function does not check any of `window-fixed-size-p',
3492 `window-min-height' or `window-min-width'. It does check that window
3493 sizes do not drop below one line (two columns). */
3495 window_resize_check (struct window
*w
, int horflag
)
3499 if (!NILP (w
->vchild
))
3500 /* W is a vertical combination. */
3502 c
= XWINDOW (w
->vchild
);
3504 /* All child windows of W must have the same width as W. */
3508 if ((XINT (c
->new_total
) != XINT (w
->new_total
))
3509 || !window_resize_check (c
, horflag
))
3511 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3516 /* The sum of the heights of the child windows of W must equal
3519 int sum_of_sizes
= 0;
3522 if (!window_resize_check (c
, horflag
))
3524 sum_of_sizes
= sum_of_sizes
+ XINT (c
->new_total
);
3525 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3527 return (sum_of_sizes
== XINT (w
->new_total
));
3530 else if (!NILP (w
->hchild
))
3531 /* W is a horizontal combination. */
3533 c
= XWINDOW (w
->hchild
);
3535 /* The sum of the widths of the child windows of W must equal W's
3538 int sum_of_sizes
= 0;
3541 if (!window_resize_check (c
, horflag
))
3543 sum_of_sizes
= sum_of_sizes
+ XINT (c
->new_total
);
3544 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3546 return (sum_of_sizes
== XINT (w
->new_total
));
3549 /* All child windows of W must have the same height as W. */
3553 if ((XINT (c
->new_total
) != XINT (w
->new_total
))
3554 || !window_resize_check (c
, horflag
))
3556 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3562 /* A leaf window. Make sure it's not too small. The following
3563 hardcodes the values of `window-safe-min-width' (2) and
3564 `window-safe-min-height' (1) which are defined in window.el. */
3565 return XINT (w
->new_total
) >= (horflag
? 2 : 1);
3568 /* Set w->total_lines (w->total_cols if HORIZONTAL is non-zero) to
3569 w->new_total for window W and recursively all child windows of W.
3570 Also calculate and assign the new vertical (horizontal) start
3571 positions of each of these windows.
3573 This function does not perform any error checks. Make sure you have
3574 run window_resize_check on W before applying this function. */
3576 window_resize_apply (struct window
*w
, int horflag
)
3581 /* Note: Assigning new_normal requires that the new total size of the
3582 parent window has been set *before*. */
3585 wset_total_cols (w
, w
->new_total
);
3586 if (NUMBERP (w
->new_normal
))
3587 wset_normal_cols (w
, w
->new_normal
);
3589 pos
= XINT (w
->left_col
);
3593 wset_total_lines (w
, w
->new_total
);
3594 if (NUMBERP (w
->new_normal
))
3595 wset_normal_lines (w
, w
->new_normal
);
3597 pos
= XINT (w
->top_line
);
3600 if (!NILP (w
->vchild
))
3601 /* W is a vertical combination. */
3603 c
= XWINDOW (w
->vchild
);
3607 wset_left_col (c
, make_number (pos
));
3609 wset_top_line (c
, make_number (pos
));
3610 window_resize_apply (c
, horflag
);
3612 pos
= pos
+ XINT (c
->total_lines
);
3613 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3616 else if (!NILP (w
->hchild
))
3617 /* W is a horizontal combination. */
3619 c
= XWINDOW (w
->hchild
);
3623 wset_left_col (c
, make_number (pos
));
3625 wset_top_line (c
, make_number (pos
));
3626 window_resize_apply (c
, horflag
);
3628 pos
= pos
+ XINT (c
->total_cols
);
3629 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3633 /* Clear out some redisplay caches. */
3634 w
->last_modified
= 0;
3635 w
->last_overlay_modified
= 0;
3639 DEFUN ("window-resize-apply", Fwindow_resize_apply
, Swindow_resize_apply
, 0, 2, 0,
3640 doc
: /* Apply requested size values for window-tree of FRAME.
3641 If FRAME is omitted or nil, it defaults to the selected frame.
3643 Optional argument HORIZONTAL omitted or nil means apply requested
3644 height values. HORIZONTAL non-nil means apply requested width values.
3646 This function checks whether the requested values sum up to a valid
3647 window layout, recursively assigns the new sizes of all child windows
3648 and calculates and assigns the new start positions of these windows.
3650 Note: This function does not check any of `window-fixed-size-p',
3651 `window-min-height' or `window-min-width'. All these checks have to
3652 be applied on the Elisp level. */)
3653 (Lisp_Object frame
, Lisp_Object horizontal
)
3655 struct frame
*f
= decode_live_frame (frame
);
3656 struct window
*r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
3657 int horflag
= !NILP (horizontal
);
3659 if (!window_resize_check (r
, horflag
)
3660 || ! EQ (r
->new_total
,
3661 (horflag
? r
->total_cols
: r
->total_lines
)))
3665 window_resize_apply (r
, horflag
);
3667 windows_or_buffers_changed
++;
3668 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
3673 run_window_configuration_change_hook (f
);
3679 /* Resize frame F's windows when number of lines of F is set to SIZE.
3680 HORFLAG 1 means resize windows when number of columns of F is set to
3683 This function can delete all windows but the selected one in order to
3684 satisfy the request. The result will be meaningful if and only if
3685 F's windows have meaningful sizes when you call this. */
3687 resize_frame_windows (struct frame
*f
, int size
, int horflag
)
3689 Lisp_Object root
= f
->root_window
;
3690 struct window
*r
= XWINDOW (root
);
3691 Lisp_Object mini
= f
->minibuffer_window
;
3693 /* new_size is the new size of the frame's root window. */
3694 int new_size
= (horflag
3697 - FRAME_TOP_MARGIN (f
)
3698 - ((FRAME_HAS_MINIBUF_P (f
) && !FRAME_MINIBUF_ONLY_P (f
))
3701 wset_top_line (r
, make_number (FRAME_TOP_MARGIN (f
)));
3702 if (NILP (r
->vchild
) && NILP (r
->hchild
))
3703 /* For a leaf root window just set the size. */
3705 wset_total_cols (r
, make_number (new_size
));
3707 wset_total_lines (r
, make_number (new_size
));
3710 /* old_size is the old size of the frame's root window. */
3711 int old_size
= XFASTINT (horflag
? r
->total_cols
3715 XSETINT (delta
, new_size
- old_size
);
3716 /* Try a "normal" resize first. */
3717 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qnil
);
3718 if (window_resize_check (r
, horflag
)
3719 && new_size
== XINT (r
->new_total
))
3720 window_resize_apply (r
, horflag
);
3723 /* Try with "reasonable" minimum sizes next. */
3724 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qt
);
3725 if (window_resize_check (r
, horflag
)
3726 && new_size
== XINT (r
->new_total
))
3727 window_resize_apply (r
, horflag
);
3730 /* Finally, try with "safe" minimum sizes. */
3731 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qsafe
);
3732 if (window_resize_check (r
, horflag
)
3733 && new_size
== XINT (r
->new_total
))
3734 window_resize_apply (r
, horflag
);
3737 /* We lost. Delete all windows but the frame's
3739 root
= f
->selected_window
;
3740 Fdelete_other_windows_internal (root
, Qnil
);
3742 wset_total_cols (XWINDOW (root
), make_number (new_size
));
3744 wset_total_lines (XWINDOW (root
), make_number (new_size
));
3750 if (FRAME_HAS_MINIBUF_P (f
) && !FRAME_MINIBUF_ONLY_P (f
))
3754 wset_total_cols (m
, make_number (size
));
3757 /* Are we sure we always want 1 line here? */
3758 wset_total_lines (m
, make_number (1));
3760 (m
, make_number (XINT (r
->top_line
) + XINT (r
->total_lines
)));
3764 windows_or_buffers_changed
++;
3768 DEFUN ("split-window-internal", Fsplit_window_internal
, Ssplit_window_internal
, 4, 4, 0,
3769 doc
: /* Split window OLD.
3770 Second argument TOTAL-SIZE specifies the number of lines or columns of the
3771 new window. In any case TOTAL-SIZE must be a positive integer.
3773 Third argument SIDE nil (or `below') specifies that the new window shall
3774 be located below WINDOW. SIDE `above' means the new window shall be
3775 located above WINDOW. In both cases TOTAL-SIZE specifies the number of
3776 lines of the new window including space reserved for the mode and/or
3779 SIDE t (or `right') specifies that the new window shall be located on
3780 the right side of WINDOW. SIDE `left' means the new window shall be
3781 located on the left of WINDOW. In both cases TOTAL-SIZE specifies the
3782 number of columns of the new window including space reserved for fringes
3783 and the scrollbar or a divider column.
3785 Fourth argument NORMAL-SIZE specifies the normal size of the new window
3786 according to the SIDE argument.
3788 The new total and normal sizes of all involved windows must have been
3789 set correctly. See the code of `split-window' for how this is done. */)
3790 (Lisp_Object old
, Lisp_Object total_size
, Lisp_Object side
, Lisp_Object normal_size
)
3792 /* OLD (*o) is the window we have to split. (*p) is either OLD's
3793 parent window or an internal window we have to install as OLD's new
3794 parent. REFERENCE (*r) must denote a live window, or is set to OLD
3795 provided OLD is a leaf window, or to the frame's selected window.
3796 NEW (*n) is the new window created with some parameters taken from
3798 register Lisp_Object
new, frame
, reference
;
3799 register struct window
*o
, *p
, *n
, *r
;
3802 /* HORFLAG is 1 when we split side-by-side, 0 otherwise. */
3803 = EQ (side
, Qt
) || EQ (side
, Qleft
) || EQ (side
, Qright
);
3804 int combination_limit
= 0;
3808 frame
= WINDOW_FRAME (o
);
3811 CHECK_NUMBER (total_size
);
3813 /* Set combination_limit to 1 if we have to make a new parent window.
3814 We do that if either `window-combination-limit' is t, or OLD has no
3815 parent, or OLD is ortho-combined. */
3817 EQ (Vwindow_combination_limit
, Qt
)
3820 ? (XWINDOW (o
->parent
)->hchild
)
3821 : (XWINDOW (o
->parent
)->vchild
));
3823 /* We need a live reference window to initialize some parameters. */
3824 if (WINDOW_LIVE_P (old
))
3825 /* OLD is live, use it as reference window. */
3828 /* Use the frame's selected window as reference window. */
3829 reference
= FRAME_SELECTED_WINDOW (f
);
3830 r
= XWINDOW (reference
);
3832 /* The following bugs are caught by `split-window'. */
3833 if (MINI_WINDOW_P (o
))
3834 error ("Attempt to split minibuffer window");
3835 else if (XINT (total_size
) < (horflag
? 2 : 1))
3836 error ("Size of new window too small (after split)");
3837 else if (!combination_limit
&& !NILP (Vwindow_combination_resize
))
3838 /* `window-combination-resize' non-nil means try to resize OLD's siblings
3841 p
= XWINDOW (o
->parent
);
3842 /* Temporarily pretend we split the parent window. */
3844 (p
, make_number (XINT (horflag
? p
->total_cols
: p
->total_lines
)
3845 - XINT (total_size
)));
3846 if (!window_resize_check (p
, horflag
))
3847 error ("Window sizes don't fit");
3849 /* Undo the temporary pretension. */
3850 wset_new_total (p
, horflag
? p
->total_cols
: p
->total_lines
);
3854 if (!window_resize_check (o
, horflag
))
3855 error ("Resizing old window failed");
3856 else if (XINT (total_size
) + XINT (o
->new_total
)
3857 != XINT (horflag
? o
->total_cols
: o
->total_lines
))
3858 error ("Sum of sizes of old and new window don't fit");
3861 /* This is our point of no return. */
3862 if (combination_limit
)
3864 /* Save the old value of o->normal_cols/lines. It gets corrupted
3865 by make_parent_window and we need it below for assigning it to
3867 Lisp_Object new_normal
3868 = horflag
? o
->normal_cols
: o
->normal_lines
;
3870 make_parent_window (old
, horflag
);
3871 p
= XWINDOW (o
->parent
);
3872 /* Store t in the new parent's combination_limit slot to avoid
3873 that its children get merged into another window. */
3874 wset_combination_limit (p
, Qt
);
3875 /* These get applied below. */
3876 wset_new_total (p
, horflag
? o
->total_cols
: o
->total_lines
);
3877 wset_new_normal (p
, new_normal
);
3880 p
= XWINDOW (o
->parent
);
3882 windows_or_buffers_changed
++;
3883 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
3884 new = make_window ();
3886 wset_frame (n
, frame
);
3887 wset_parent (n
, o
->parent
);
3888 wset_vchild (n
, Qnil
);
3889 wset_hchild (n
, Qnil
);
3891 if (EQ (side
, Qabove
) || EQ (side
, Qleft
))
3893 wset_prev (n
, o
->prev
);
3896 wset_hchild (p
, new);
3898 wset_vchild (p
, new);
3900 wset_next (XWINDOW (n
->prev
), new);
3906 wset_next (n
, o
->next
);
3907 if (!NILP (n
->next
))
3908 wset_prev (XWINDOW (n
->next
), new);
3913 wset_buffer (n
, Qt
);
3914 wset_window_end_valid (n
, Qnil
);
3915 memset (&n
->last_cursor
, 0, sizeof n
->last_cursor
);
3917 /* Get special geometry settings from reference window. */
3918 wset_left_margin_cols (n
, r
->left_margin_cols
);
3919 wset_right_margin_cols (n
, r
->right_margin_cols
);
3920 wset_left_fringe_width (n
, r
->left_fringe_width
);
3921 wset_right_fringe_width (n
, r
->right_fringe_width
);
3922 n
->fringes_outside_margins
= r
->fringes_outside_margins
;
3923 wset_scroll_bar_width (n
, r
->scroll_bar_width
);
3924 wset_vertical_scroll_bar_type (n
, r
->vertical_scroll_bar_type
);
3926 /* Directly assign orthogonal coordinates and sizes. */
3929 wset_top_line (n
, o
->top_line
);
3930 wset_total_lines (n
, o
->total_lines
);
3934 wset_left_col (n
, o
->left_col
);
3935 wset_total_cols (n
, o
->total_cols
);
3938 /* Iso-coordinates and sizes are assigned by window_resize_apply,
3939 get them ready here. */
3940 wset_new_total (n
, total_size
);
3941 wset_new_normal (n
, normal_size
);
3944 window_resize_apply (p
, horflag
);
3946 /* Set buffer of NEW to buffer of reference window. Don't run
3948 set_window_buffer (new, r
->buffer
, 0, 1);
3951 /* Maybe we should run the scroll functions in Elisp (which already
3952 runs the configuration change hook). */
3953 if (! NILP (Vwindow_scroll_functions
))
3954 run_hook_with_args_2 (Qwindow_scroll_functions
, new,
3955 Fmarker_position (n
->start
));
3961 DEFUN ("delete-window-internal", Fdelete_window_internal
, Sdelete_window_internal
, 1, 1, 0,
3962 doc
: /* Remove WINDOW from its frame.
3963 WINDOW defaults to the selected window. Return nil.
3964 Signal an error when WINDOW is the only window on its frame. */)
3965 (register Lisp_Object window
)
3967 register Lisp_Object parent
, sibling
, frame
, root
;
3968 struct window
*w
, *p
, *s
, *r
;
3971 int before_sibling
= 0;
3973 w
= decode_any_window (window
);
3974 XSETWINDOW (window
, w
);
3975 if (NILP (w
->buffer
)
3976 && NILP (w
->hchild
) && NILP (w
->vchild
))
3977 /* It's a no-op to delete an already deleted window. */
3982 /* Never delete a minibuffer or frame root window. */
3983 error ("Attempt to delete minibuffer or sole ordinary window");
3984 else if (NILP (w
->prev
) && NILP (w
->next
))
3985 /* Rather bow out here, this case should be handled on the Elisp
3987 error ("Attempt to delete sole window of parent");
3989 p
= XWINDOW (parent
);
3990 horflag
= NILP (p
->vchild
);
3992 frame
= WINDOW_FRAME (w
);
3995 root
= FRAME_ROOT_WINDOW (f
);
3998 /* Unlink WINDOW from window tree. */
4000 /* Get SIBLING below (on the right of) WINDOW. */
4002 /* before_sibling 1 means WINDOW is the first child of its
4003 parent and thus before the sibling. */
4006 s
= XWINDOW (sibling
);
4007 wset_prev (s
, Qnil
);
4009 wset_hchild (p
, sibling
);
4011 wset_vchild (p
, sibling
);
4014 /* Get SIBLING above (on the left of) WINDOW. */
4017 s
= XWINDOW (sibling
);
4018 wset_next (s
, w
->next
);
4019 if (!NILP (s
->next
))
4020 wset_prev (XWINDOW (s
->next
), sibling
);
4023 if (window_resize_check (r
, horflag
)
4024 && EQ (r
->new_total
,
4025 (horflag
? r
->total_cols
: r
->total_lines
)))
4026 /* We can delete WINDOW now. */
4031 window_resize_apply (p
, horflag
);
4033 /* If this window is referred to by the dpyinfo's mouse
4034 highlight, invalidate that slot to be safe (Bug#9904). */
4035 if (!FRAME_INITIAL_P (f
))
4037 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
4039 if (EQ (hlinfo
->mouse_face_window
, window
))
4040 hlinfo
->mouse_face_window
= Qnil
;
4043 windows_or_buffers_changed
++;
4044 Vwindow_list
= Qnil
;
4045 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
4047 wset_next (w
, Qnil
); /* Don't delete w->next too. */
4048 free_window_matrices (w
);
4050 if (!NILP (w
->vchild
))
4052 delete_all_child_windows (w
->vchild
);
4053 wset_vchild (w
, Qnil
);
4055 else if (!NILP (w
->hchild
))
4057 delete_all_child_windows (w
->hchild
);
4058 wset_hchild (w
, Qnil
);
4060 else if (!NILP (w
->buffer
))
4063 unchain_marker (XMARKER (w
->pointm
));
4064 unchain_marker (XMARKER (w
->start
));
4065 wset_buffer (w
, Qnil
);
4068 if (NILP (s
->prev
) && NILP (s
->next
))
4069 /* A matrjoshka where SIBLING has become the only child of
4072 /* Put SIBLING into PARENT's place. */
4073 replace_window (parent
, sibling
, 0);
4074 /* Have SIBLING inherit the following three slot values from
4075 PARENT (the combination_limit slot is not inherited). */
4076 wset_normal_cols (s
, p
->normal_cols
);
4077 wset_normal_lines (s
, p
->normal_lines
);
4078 /* Mark PARENT as deleted. */
4079 wset_vchild (p
, Qnil
);
4080 wset_hchild (p
, Qnil
);
4081 /* Try to merge SIBLING into its new parent. */
4082 recombine_windows (sibling
);
4087 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f
)))
4088 /* We deleted the frame's selected window. */
4090 /* Use the frame's first window as fallback ... */
4091 Lisp_Object new_selected_window
= Fframe_first_window (frame
);
4092 /* ... but preferably use its most recently used window. */
4093 Lisp_Object mru_window
;
4095 /* `get-mru-window' might fail for some reason so play it safe
4096 - promote the first window _without recording it_ first. */
4097 if (EQ (FRAME_SELECTED_WINDOW (f
), selected_window
))
4098 Fselect_window (new_selected_window
, Qt
);
4100 fset_selected_window (f
, new_selected_window
);
4104 /* Now look whether `get-mru-window' gets us something. */
4105 mru_window
= call1 (Qget_mru_window
, frame
);
4106 if (WINDOW_LIVE_P (mru_window
)
4107 && EQ (XWINDOW (mru_window
)->frame
, frame
))
4108 new_selected_window
= mru_window
;
4110 /* If all ended up well, we now promote the mru window. */
4111 if (EQ (FRAME_SELECTED_WINDOW (f
), selected_window
))
4112 Fselect_window (new_selected_window
, Qnil
);
4114 fset_selected_window (f
, new_selected_window
);
4119 /* Must be run by the caller:
4120 run_window_configuration_change_hook (f); */
4123 /* We failed: Relink WINDOW into window tree. */
4127 wset_prev (s
, window
);
4129 wset_hchild (p
, window
);
4131 wset_vchild (p
, window
);
4135 wset_next (s
, window
);
4136 if (!NILP (w
->next
))
4137 wset_prev (XWINDOW (w
->next
), window
);
4139 error ("Deletion failed");
4145 /***********************************************************************
4146 Resizing Mini-Windows
4147 ***********************************************************************/
4149 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4152 grow_mini_window (struct window
*w
, int delta
)
4154 struct frame
*f
= XFRAME (w
->frame
);
4156 Lisp_Object root
, value
;
4158 eassert (MINI_WINDOW_P (w
));
4159 eassert (delta
>= 0);
4161 root
= FRAME_ROOT_WINDOW (f
);
4163 value
= call2 (Qwindow_resize_root_window_vertically
,
4164 root
, make_number (- delta
));
4165 if (INTEGERP (value
) && window_resize_check (r
, 0))
4168 window_resize_apply (r
, 0);
4170 /* Grow the mini-window. */
4172 (w
, make_number (XFASTINT (r
->top_line
) + XFASTINT (r
->total_lines
)));
4174 (w
, make_number (XFASTINT (w
->total_lines
) - XINT (value
)));
4175 w
->last_modified
= 0;
4176 w
->last_overlay_modified
= 0;
4178 windows_or_buffers_changed
++;
4185 /* Shrink mini-window W. */
4187 shrink_mini_window (struct window
*w
)
4189 struct frame
*f
= XFRAME (w
->frame
);
4191 Lisp_Object root
, value
;
4194 eassert (MINI_WINDOW_P (w
));
4196 size
= XINT (w
->total_lines
);
4199 root
= FRAME_ROOT_WINDOW (f
);
4201 value
= call2 (Qwindow_resize_root_window_vertically
,
4202 root
, make_number (size
- 1));
4203 if (INTEGERP (value
) && window_resize_check (r
, 0))
4206 window_resize_apply (r
, 0);
4208 /* Shrink the mini-window. */
4209 wset_top_line (w
, make_number (XFASTINT (r
->top_line
)
4210 + XFASTINT (r
->total_lines
)));
4211 wset_total_lines (w
, make_number (1));
4213 w
->last_modified
= 0;
4214 w
->last_overlay_modified
= 0;
4216 windows_or_buffers_changed
++;
4220 /* If the above failed for whatever strange reason we must make a
4221 one window frame here. The same routine will be needed when
4222 shrinking the frame (and probably when making the initial
4223 *scratch* window). For the moment leave things as they are. */
4227 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal
, Sresize_mini_window_internal
, 1, 1, 0,
4228 doc
: /* Resize minibuffer window WINDOW. */)
4229 (Lisp_Object window
)
4231 struct window
*w
= XWINDOW (window
);
4236 CHECK_WINDOW (window
);
4237 f
= XFRAME (w
->frame
);
4239 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w
->frame
)), window
))
4240 error ("Not a valid minibuffer window");
4241 else if (FRAME_MINIBUF_ONLY_P (f
))
4242 error ("Cannot resize a minibuffer-only frame");
4244 r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
4245 height
= XINT (r
->total_lines
) + XINT (w
->total_lines
);
4246 if (window_resize_check (r
, 0)
4247 && XINT (w
->new_total
) > 0
4248 && height
== XINT (r
->new_total
) + XINT (w
->new_total
))
4251 window_resize_apply (r
, 0);
4253 wset_total_lines (w
, w
->new_total
);
4254 wset_top_line (w
, make_number (XINT (r
->top_line
)
4255 + XINT (r
->total_lines
)));
4257 windows_or_buffers_changed
++;
4258 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
4262 run_window_configuration_change_hook (f
);
4265 else error ("Failed to resize minibuffer window");
4268 /* Mark window cursors off for all windows in the window tree rooted
4269 at W by setting their phys_cursor_on_p flag to zero. Called from
4270 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4271 the frame are cleared. */
4274 mark_window_cursors_off (struct window
*w
)
4278 if (!NILP (w
->hchild
))
4279 mark_window_cursors_off (XWINDOW (w
->hchild
));
4280 else if (!NILP (w
->vchild
))
4281 mark_window_cursors_off (XWINDOW (w
->vchild
));
4283 w
->phys_cursor_on_p
= 0;
4285 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
4290 /* Return number of lines of text (not counting mode lines) in W. */
4293 window_internal_height (struct window
*w
)
4295 int ht
= XFASTINT (w
->total_lines
);
4297 if (!MINI_WINDOW_P (w
))
4299 if (!NILP (w
->parent
)
4300 || !NILP (w
->vchild
)
4301 || !NILP (w
->hchild
)
4304 || WINDOW_WANTS_MODELINE_P (w
))
4307 if (WINDOW_WANTS_HEADER_LINE_P (w
))
4314 /************************************************************************
4316 ***********************************************************************/
4318 /* Scroll contents of window WINDOW up. If WHOLE is non-zero, scroll
4319 N screen-fulls, which is defined as the height of the window minus
4320 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4321 instead. Negative values of N mean scroll down. NOERROR non-zero
4322 means don't signal an error if we try to move over BEGV or ZV,
4326 window_scroll (Lisp_Object window
, EMACS_INT n
, int whole
, int noerror
)
4329 n
= clip_to_bounds (INT_MIN
, n
, INT_MAX
);
4331 /* If we must, use the pixel-based version which is much slower than
4332 the line-based one but can handle varying line heights. */
4333 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window
)->frame
)))
4334 window_scroll_pixel_based (window
, n
, whole
, noerror
);
4336 window_scroll_line_based (window
, n
, whole
, noerror
);
4342 /* Implementation of window_scroll that works based on pixel line
4343 heights. See the comment of window_scroll for parameter
4347 window_scroll_pixel_based (Lisp_Object window
, int n
, int whole
, int noerror
)
4350 struct window
*w
= XWINDOW (window
);
4351 struct text_pos start
;
4352 int this_scroll_margin
;
4353 /* True if we fiddled the window vscroll field without really scrolling. */
4355 int x
, y
, rtop
, rbot
, rowh
, vpos
;
4356 void *itdata
= NULL
;
4358 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
4359 /* Scrolling a minibuffer window via scroll bar when the echo area
4360 shows long text sometimes resets the minibuffer contents behind
4362 if (CHARPOS (start
) > ZV
)
4363 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
4365 /* If PT is not visible in WINDOW, move back one half of
4366 the screen. Allow PT to be partially visible, otherwise
4367 something like (scroll-down 1) with PT in the line before
4368 the partially visible one would recenter. */
4370 if (!pos_visible_p (w
, PT
, &x
, &y
, &rtop
, &rbot
, &rowh
, &vpos
))
4372 itdata
= bidi_shelve_cache ();
4373 /* Move backward half the height of the window. Performance note:
4374 vmotion used here is about 10% faster, but would give wrong
4375 results for variable height lines. */
4376 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
4377 it
.current_y
= it
.last_visible_y
;
4378 move_it_vertically_backward (&it
, window_box_height (w
) / 2);
4380 /* The function move_iterator_vertically may move over more than
4381 the specified y-distance. If it->w is small, e.g. a
4382 mini-buffer window, we may end up in front of the window's
4383 display area. This is the case when Start displaying at the
4384 start of the line containing PT in this case. */
4385 if (it
.current_y
<= 0)
4387 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
4388 move_it_vertically_backward (&it
, 0);
4392 start
= it
.current
.pos
;
4393 bidi_unshelve_cache (itdata
, 0);
4395 else if (auto_window_vscroll_p
)
4397 if (rtop
|| rbot
) /* partially visible */
4400 int dy
= WINDOW_FRAME_LINE_HEIGHT (w
);
4402 dy
= max ((window_box_height (w
)
4403 - next_screen_context_lines
* dy
),
4409 /* Only vscroll backwards if already vscrolled forwards. */
4410 if (w
->vscroll
< 0 && rtop
> 0)
4412 px
= max (0, -w
->vscroll
- min (rtop
, -dy
));
4413 Fset_window_vscroll (window
, make_number (px
), Qt
);
4419 /* Do vscroll if already vscrolled or only display line. */
4420 if (rbot
> 0 && (w
->vscroll
< 0 || vpos
== 0))
4422 px
= max (0, -w
->vscroll
+ min (rbot
, dy
));
4423 Fset_window_vscroll (window
, make_number (px
), Qt
);
4427 /* Maybe modify window start instead of scrolling. */
4428 if (rbot
> 0 || w
->vscroll
< 0)
4432 Fset_window_vscroll (window
, make_number (0), Qt
);
4433 /* If there are other text lines above the current row,
4434 move window start to current row. Else to next row. */
4436 spos
= XINT (Fline_beginning_position (Qnil
));
4438 spos
= min (XINT (Fline_end_position (Qnil
)) + 1, ZV
);
4439 set_marker_restricted (w
->start
, make_number (spos
),
4441 w
->start_at_line_beg
= 1;
4442 w
->update_mode_line
= 1;
4443 w
->last_modified
= 0;
4444 w
->last_overlay_modified
= 0;
4445 /* Set force_start so that redisplay_window will run the
4446 window-scroll-functions. */
4452 /* Cancel previous vscroll. */
4453 Fset_window_vscroll (window
, make_number (0), Qt
);
4456 itdata
= bidi_shelve_cache ();
4457 /* If scroll_preserve_screen_position is non-nil, we try to set
4458 point in the same window line as it is now, so get that line. */
4459 if (!NILP (Vscroll_preserve_screen_position
))
4461 /* We preserve the goal pixel coordinate across consecutive
4462 calls to scroll-up, scroll-down and other commands that
4463 have the `scroll-command' property. This avoids the
4464 possibility of point becoming "stuck" on a tall line when
4465 scrolling by one line. */
4466 if (window_scroll_pixel_based_preserve_y
< 0
4467 || !SYMBOLP (KVAR (current_kboard
, Vlast_command
))
4468 || NILP (Fget (KVAR (current_kboard
, Vlast_command
), Qscroll_command
)))
4470 start_display (&it
, w
, start
);
4471 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
4472 window_scroll_pixel_based_preserve_y
= it
.current_y
;
4473 window_scroll_pixel_based_preserve_x
= it
.current_x
;
4477 window_scroll_pixel_based_preserve_y
4478 = window_scroll_pixel_based_preserve_x
= -1;
4480 /* Move iterator it from start the specified distance forward or
4481 backward. The result is the new window start. */
4482 start_display (&it
, w
, start
);
4485 ptrdiff_t start_pos
= IT_CHARPOS (it
);
4486 int dy
= WINDOW_FRAME_LINE_HEIGHT (w
);
4487 dy
= max ((window_box_height (w
)
4488 - next_screen_context_lines
* dy
),
4491 /* Note that move_it_vertically always moves the iterator to the
4492 start of a line. So, if the last line doesn't have a newline,
4493 we would end up at the start of the line ending at ZV. */
4496 move_it_vertically_backward (&it
, -dy
);
4497 /* Ensure we actually do move, e.g. in case we are currently
4498 looking at an image that is taller that the window height. */
4499 while (start_pos
== IT_CHARPOS (it
)
4500 && start_pos
> BEGV
)
4501 move_it_by_lines (&it
, -1);
4505 move_it_to (&it
, ZV
, -1, it
.current_y
+ dy
, -1,
4506 MOVE_TO_POS
| MOVE_TO_Y
);
4507 /* Ensure we actually do move, e.g. in case we are currently
4508 looking at an image that is taller that the window height. */
4509 while (start_pos
== IT_CHARPOS (it
)
4511 move_it_by_lines (&it
, 1);
4515 move_it_by_lines (&it
, n
);
4517 /* We failed if we find ZV is already on the screen (scrolling up,
4518 means there's nothing past the end), or if we can't start any
4519 earlier (scrolling down, means there's nothing past the top). */
4520 if ((n
> 0 && IT_CHARPOS (it
) == ZV
)
4521 || (n
< 0 && IT_CHARPOS (it
) == CHARPOS (start
)))
4523 if (IT_CHARPOS (it
) == ZV
)
4525 if (it
.current_y
< it
.last_visible_y
4526 && (it
.current_y
+ it
.max_ascent
+ it
.max_descent
4527 > it
.last_visible_y
))
4529 /* The last line was only partially visible, make it fully
4531 w
->vscroll
= (it
.last_visible_y
4532 - it
.current_y
+ it
.max_ascent
+ it
.max_descent
);
4533 adjust_glyphs (it
.f
);
4537 bidi_unshelve_cache (itdata
, 0);
4540 else if (n
< 0) /* could happen with empty buffers */
4541 xsignal0 (Qbeginning_of_buffer
);
4543 xsignal0 (Qend_of_buffer
);
4548 if (w
->vscroll
!= 0)
4549 /* The first line was only partially visible, make it fully
4554 bidi_unshelve_cache (itdata
, 0);
4558 xsignal0 (Qbeginning_of_buffer
);
4562 /* If control gets here, then we vscrolled. */
4564 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
4566 /* Don't try to change the window start below. */
4572 ptrdiff_t pos
= IT_CHARPOS (it
);
4575 /* If in the middle of a multi-glyph character move forward to
4576 the next character. */
4577 if (in_display_vector_p (&it
))
4580 move_it_to (&it
, pos
, -1, -1, -1, MOVE_TO_POS
);
4583 /* Set the window start, and set up the window for redisplay. */
4584 set_marker_restricted (w
->start
, make_number (pos
),
4586 bytepos
= XMARKER (w
->start
)->bytepos
;
4587 w
->start_at_line_beg
= (pos
== BEGV
|| FETCH_BYTE (bytepos
- 1) == '\n');
4588 w
->update_mode_line
= 1;
4589 w
->last_modified
= 0;
4590 w
->last_overlay_modified
= 0;
4591 /* Set force_start so that redisplay_window will run the
4592 window-scroll-functions. */
4596 /* The rest of this function uses current_y in a nonstandard way,
4597 not including the height of the header line if any. */
4598 it
.current_y
= it
.vpos
= 0;
4600 /* Move PT out of scroll margins.
4601 This code wants current_y to be zero at the window start position
4602 even if there is a header line. */
4603 this_scroll_margin
= max (0, scroll_margin
);
4605 = min (this_scroll_margin
, XFASTINT (w
->total_lines
) / 4);
4606 this_scroll_margin
*= FRAME_LINE_HEIGHT (it
.f
);
4610 /* We moved the window start towards ZV, so PT may be now
4611 in the scroll margin at the top. */
4612 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
4613 if (IT_CHARPOS (it
) == PT
&& it
.current_y
>= this_scroll_margin
4614 && (NILP (Vscroll_preserve_screen_position
)
4615 || EQ (Vscroll_preserve_screen_position
, Qt
)))
4616 /* We found PT at a legitimate height. Leave it alone. */
4618 else if (window_scroll_pixel_based_preserve_y
>= 0)
4620 /* If we have a header line, take account of it.
4621 This is necessary because we set it.current_y to 0, above. */
4622 move_it_to (&it
, -1,
4623 window_scroll_pixel_based_preserve_x
,
4624 window_scroll_pixel_based_preserve_y
4625 - (WINDOW_WANTS_HEADER_LINE_P (w
) ? 1 : 0 ),
4626 -1, MOVE_TO_Y
| MOVE_TO_X
);
4627 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4631 while (it
.current_y
< this_scroll_margin
)
4633 int prev
= it
.current_y
;
4634 move_it_by_lines (&it
, 1);
4635 if (prev
== it
.current_y
)
4638 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4643 ptrdiff_t charpos
, bytepos
;
4646 /* Save our position, for the
4647 window_scroll_pixel_based_preserve_y case. */
4648 charpos
= IT_CHARPOS (it
);
4649 bytepos
= IT_BYTEPOS (it
);
4651 /* We moved the window start towards BEGV, so PT may be now
4652 in the scroll margin at the bottom. */
4653 move_it_to (&it
, PT
, -1,
4654 (it
.last_visible_y
- CURRENT_HEADER_LINE_HEIGHT (w
)
4655 - this_scroll_margin
- 1),
4657 MOVE_TO_POS
| MOVE_TO_Y
);
4659 /* Save our position, in case it's correct. */
4660 charpos
= IT_CHARPOS (it
);
4661 bytepos
= IT_BYTEPOS (it
);
4663 /* See if point is on a partially visible line at the end. */
4664 if (it
.what
== IT_EOB
)
4665 partial_p
= it
.current_y
+ it
.ascent
+ it
.descent
> it
.last_visible_y
;
4668 move_it_by_lines (&it
, 1);
4669 partial_p
= it
.current_y
> it
.last_visible_y
;
4672 if (charpos
== PT
&& !partial_p
4673 && (NILP (Vscroll_preserve_screen_position
)
4674 || EQ (Vscroll_preserve_screen_position
, Qt
)))
4675 /* We found PT before we found the display margin, so PT is ok. */
4677 else if (window_scroll_pixel_based_preserve_y
>= 0)
4679 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
4680 start_display (&it
, w
, start
);
4681 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
4682 here because we called start_display again and did not
4683 alter it.current_y this time. */
4684 move_it_to (&it
, -1, window_scroll_pixel_based_preserve_x
,
4685 window_scroll_pixel_based_preserve_y
, -1,
4686 MOVE_TO_Y
| MOVE_TO_X
);
4687 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4692 /* The last line was only partially visible, so back up two
4693 lines to make sure we're on a fully visible line. */
4695 move_it_by_lines (&it
, -2);
4696 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
4699 /* No, the position we saved is OK, so use it. */
4700 SET_PT_BOTH (charpos
, bytepos
);
4703 bidi_unshelve_cache (itdata
, 0);
4707 /* Implementation of window_scroll that works based on screen lines.
4708 See the comment of window_scroll for parameter descriptions. */
4711 window_scroll_line_based (Lisp_Object window
, int n
, int whole
, int noerror
)
4713 register struct window
*w
= XWINDOW (window
);
4714 /* Fvertical_motion enters redisplay, which can trigger
4715 fontification, which in turn can modify buffer text (e.g., if the
4716 fontification functions replace escape sequences with faces, as
4717 in `grep-mode-font-lock-keywords'). So we use a marker to record
4718 the old point position, to prevent crashes in SET_PT_BOTH. */
4719 Lisp_Object opoint_marker
= Fpoint_marker ();
4720 register ptrdiff_t pos
, pos_byte
;
4721 register int ht
= window_internal_height (w
);
4722 register Lisp_Object tem
;
4726 Lisp_Object original_pos
= Qnil
;
4728 /* If scrolling screen-fulls, compute the number of lines to
4729 scroll from the window's height. */
4731 n
*= max (1, ht
- next_screen_context_lines
);
4733 startpos
= marker_position (w
->start
);
4735 if (!NILP (Vscroll_preserve_screen_position
))
4737 if (window_scroll_preserve_vpos
<= 0
4738 || !SYMBOLP (KVAR (current_kboard
, Vlast_command
))
4739 || NILP (Fget (KVAR (current_kboard
, Vlast_command
), Qscroll_command
)))
4741 struct position posit
4742 = *compute_motion (startpos
, 0, 0, 0,
4746 window_scroll_preserve_vpos
= posit
.vpos
;
4747 window_scroll_preserve_hpos
= posit
.hpos
+ w
->hscroll
;
4750 original_pos
= Fcons (make_number (window_scroll_preserve_hpos
),
4751 make_number (window_scroll_preserve_vpos
));
4754 XSETFASTINT (tem
, PT
);
4755 tem
= Fpos_visible_in_window_p (tem
, window
, Qnil
);
4759 Fvertical_motion (make_number (- (ht
/ 2)), window
);
4764 lose
= n
< 0 && PT
== BEGV
;
4765 Fvertical_motion (make_number (n
), window
);
4769 SET_PT_BOTH (marker_position (opoint_marker
),
4770 marker_byte_position (opoint_marker
));
4777 xsignal0 (Qbeginning_of_buffer
);
4782 /* Don't use a scroll margin that is negative or too large. */
4783 int this_scroll_margin
=
4784 max (0, min (scroll_margin
, XINT (w
->total_lines
) / 4));
4786 set_marker_restricted_both (w
->start
, w
->buffer
, pos
, pos_byte
);
4787 w
->start_at_line_beg
= !NILP (bolp
);
4788 w
->update_mode_line
= 1;
4789 w
->last_modified
= 0;
4790 w
->last_overlay_modified
= 0;
4791 /* Set force_start so that redisplay_window will run
4792 the window-scroll-functions. */
4795 if (!NILP (Vscroll_preserve_screen_position
)
4796 && (whole
|| !EQ (Vscroll_preserve_screen_position
, Qt
)))
4798 SET_PT_BOTH (pos
, pos_byte
);
4799 Fvertical_motion (original_pos
, window
);
4801 /* If we scrolled forward, put point enough lines down
4802 that it is outside the scroll margin. */
4807 if (this_scroll_margin
> 0)
4809 SET_PT_BOTH (pos
, pos_byte
);
4810 Fvertical_motion (make_number (this_scroll_margin
), window
);
4816 if (top_margin
<= marker_position (opoint_marker
))
4817 SET_PT_BOTH (marker_position (opoint_marker
),
4818 marker_byte_position (opoint_marker
));
4819 else if (!NILP (Vscroll_preserve_screen_position
))
4821 SET_PT_BOTH (pos
, pos_byte
);
4822 Fvertical_motion (original_pos
, window
);
4825 SET_PT (top_margin
);
4831 /* If we scrolled backward, put point near the end of the window
4832 but not within the scroll margin. */
4833 SET_PT_BOTH (pos
, pos_byte
);
4834 tem
= Fvertical_motion (make_number (ht
- this_scroll_margin
), window
);
4835 if (XFASTINT (tem
) == ht
- this_scroll_margin
)
4838 bottom_margin
= PT
+ 1;
4840 if (bottom_margin
> marker_position (opoint_marker
))
4841 SET_PT_BOTH (marker_position (opoint_marker
),
4842 marker_byte_position (opoint_marker
));
4845 if (!NILP (Vscroll_preserve_screen_position
))
4847 SET_PT_BOTH (pos
, pos_byte
);
4848 Fvertical_motion (original_pos
, window
);
4851 Fvertical_motion (make_number (-1), window
);
4860 xsignal0 (Qend_of_buffer
);
4865 /* Scroll selected_window up or down. If N is nil, scroll a
4866 screen-full which is defined as the height of the window minus
4867 next_screen_context_lines. If N is the symbol `-', scroll.
4868 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
4869 up. This is the guts of Fscroll_up and Fscroll_down. */
4872 scroll_command (Lisp_Object n
, int direction
)
4874 ptrdiff_t count
= SPECPDL_INDEX ();
4876 eassert (eabs (direction
) == 1);
4878 /* If selected window's buffer isn't current, make it current for
4879 the moment. But don't screw up if window_scroll gets an error. */
4880 if (XBUFFER (XWINDOW (selected_window
)->buffer
) != current_buffer
)
4882 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
4883 Fset_buffer (XWINDOW (selected_window
)->buffer
);
4885 /* Make redisplay consider other windows than just selected_window. */
4886 ++windows_or_buffers_changed
;
4890 window_scroll (selected_window
, direction
, 1, 0);
4891 else if (EQ (n
, Qminus
))
4892 window_scroll (selected_window
, -direction
, 1, 0);
4895 n
= Fprefix_numeric_value (n
);
4896 window_scroll (selected_window
, XINT (n
) * direction
, 0, 0);
4899 unbind_to (count
, Qnil
);
4902 DEFUN ("scroll-up", Fscroll_up
, Sscroll_up
, 0, 1, "^P",
4903 doc
: /* Scroll text of selected window upward ARG lines.
4904 If ARG is omitted or nil, scroll upward by a near full screen.
4905 A near full screen is `next-screen-context-lines' less than a full screen.
4906 Negative ARG means scroll downward.
4907 If ARG is the atom `-', scroll downward by nearly full screen.
4908 When calling from a program, supply as argument a number, nil, or `-'. */)
4911 scroll_command (arg
, 1);
4915 DEFUN ("scroll-down", Fscroll_down
, Sscroll_down
, 0, 1, "^P",
4916 doc
: /* Scroll text of selected window down ARG lines.
4917 If ARG is omitted or nil, scroll down by a near full screen.
4918 A near full screen is `next-screen-context-lines' less than a full screen.
4919 Negative ARG means scroll upward.
4920 If ARG is the atom `-', scroll upward by nearly full screen.
4921 When calling from a program, supply as argument a number, nil, or `-'. */)
4924 scroll_command (arg
, -1);
4928 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling
, Sother_window_for_scrolling
, 0, 0, 0,
4929 doc
: /* Return the other window for \"other window scroll\" commands.
4930 If `other-window-scroll-buffer' is non-nil, a window
4931 showing that buffer is used.
4932 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4933 specifies the window. This takes precedence over
4934 `other-window-scroll-buffer'. */)
4939 if (MINI_WINDOW_P (XWINDOW (selected_window
))
4940 && !NILP (Vminibuf_scroll_window
))
4941 window
= Vminibuf_scroll_window
;
4942 /* If buffer is specified, scroll that buffer. */
4943 else if (!NILP (Vother_window_scroll_buffer
))
4945 window
= Fget_buffer_window (Vother_window_scroll_buffer
, Qnil
);
4947 window
= display_buffer (Vother_window_scroll_buffer
, Qt
, Qnil
);
4951 /* Nothing specified; look for a neighboring window on the same
4953 window
= Fnext_window (selected_window
, Qnil
, Qnil
);
4955 if (EQ (window
, selected_window
))
4956 /* That didn't get us anywhere; look for a window on another
4959 window
= Fnext_window (window
, Qnil
, Qt
);
4960 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window
))))
4961 && ! EQ (window
, selected_window
));
4964 CHECK_LIVE_WINDOW (window
);
4966 if (EQ (window
, selected_window
))
4967 error ("There is no other window");
4972 DEFUN ("scroll-other-window", Fscroll_other_window
, Sscroll_other_window
, 0, 1, "P",
4973 doc
: /* Scroll next window upward ARG lines; or near full screen if no ARG.
4974 A near full screen is `next-screen-context-lines' less than a full screen.
4975 The next window is the one below the current one; or the one at the top
4976 if the current one is at the bottom. Negative ARG means scroll downward.
4977 If ARG is the atom `-', scroll downward by nearly full screen.
4978 When calling from a program, supply as argument a number, nil, or `-'.
4980 If `other-window-scroll-buffer' is non-nil, scroll the window
4981 showing that buffer, popping the buffer up if necessary.
4982 If in the minibuffer, `minibuffer-scroll-window' if non-nil
4983 specifies the window to scroll. This takes precedence over
4984 `other-window-scroll-buffer'. */)
4989 ptrdiff_t count
= SPECPDL_INDEX ();
4991 window
= Fother_window_for_scrolling ();
4992 w
= XWINDOW (window
);
4994 /* Don't screw up if window_scroll gets an error. */
4995 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
4996 ++windows_or_buffers_changed
;
4998 Fset_buffer (w
->buffer
);
4999 SET_PT (marker_position (w
->pointm
));
5002 window_scroll (window
, 1, 1, 1);
5003 else if (EQ (arg
, Qminus
))
5004 window_scroll (window
, -1, 1, 1);
5010 window_scroll (window
, XINT (arg
), 0, 1);
5013 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
5014 unbind_to (count
, Qnil
);
5019 DEFUN ("scroll-left", Fscroll_left
, Sscroll_left
, 0, 2, "^P\np",
5020 doc
: /* Scroll selected window display ARG columns left.
5021 Default for ARG is window width minus 2.
5022 Value is the total amount of leftward horizontal scrolling in
5023 effect after the change.
5024 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5025 lower bound for automatic scrolling, i.e. automatic scrolling
5026 will not scroll a window to a column less than the value returned
5027 by this function. This happens in an interactive call. */)
5028 (register Lisp_Object arg
, Lisp_Object set_minimum
)
5030 struct window
*w
= XWINDOW (selected_window
);
5031 EMACS_INT requested_arg
= (NILP (arg
)
5032 ? window_body_cols (w
) - 2
5033 : XINT (Fprefix_numeric_value (arg
)));
5034 Lisp_Object result
= set_window_hscroll (w
, w
->hscroll
+ requested_arg
);
5036 if (!NILP (set_minimum
))
5037 w
->min_hscroll
= w
->hscroll
;
5042 DEFUN ("scroll-right", Fscroll_right
, Sscroll_right
, 0, 2, "^P\np",
5043 doc
: /* Scroll selected window display ARG columns right.
5044 Default for ARG is window width minus 2.
5045 Value is the total amount of leftward horizontal scrolling in
5046 effect after the change.
5047 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5048 lower bound for automatic scrolling, i.e. automatic scrolling
5049 will not scroll a window to a column less than the value returned
5050 by this function. This happens in an interactive call. */)
5051 (register Lisp_Object arg
, Lisp_Object set_minimum
)
5053 struct window
*w
= XWINDOW (selected_window
);
5054 EMACS_INT requested_arg
= (NILP (arg
)
5055 ? window_body_cols (w
) - 2
5056 : XINT (Fprefix_numeric_value (arg
)));
5057 Lisp_Object result
= set_window_hscroll (w
, w
->hscroll
- requested_arg
);
5059 if (!NILP (set_minimum
))
5060 w
->min_hscroll
= w
->hscroll
;
5065 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window
, Sminibuffer_selected_window
, 0, 0, 0,
5066 doc
: /* Return the window which was selected when entering the minibuffer.
5067 Returns nil, if selected window is not a minibuffer window. */)
5070 if (minibuf_level
> 0
5071 && MINI_WINDOW_P (XWINDOW (selected_window
))
5072 && WINDOW_LIVE_P (minibuf_selected_window
))
5073 return minibuf_selected_window
;
5078 /* Value is the number of lines actually displayed in window W,
5079 as opposed to its height. */
5082 displayed_window_lines (struct window
*w
)
5085 struct text_pos start
;
5086 int height
= window_box_height (w
);
5087 struct buffer
*old_buffer
;
5089 void *itdata
= NULL
;
5091 if (XBUFFER (w
->buffer
) != current_buffer
)
5093 old_buffer
= current_buffer
;
5094 set_buffer_internal (XBUFFER (w
->buffer
));
5099 /* In case W->start is out of the accessible range, do something
5100 reasonable. This happens in Info mode when Info-scroll-down
5101 calls (recenter -1) while W->start is 1. */
5102 if (XMARKER (w
->start
)->charpos
< BEGV
)
5103 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
5104 else if (XMARKER (w
->start
)->charpos
> ZV
)
5105 SET_TEXT_POS (start
, ZV
, ZV_BYTE
);
5107 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
5109 itdata
= bidi_shelve_cache ();
5110 start_display (&it
, w
, start
);
5111 move_it_vertically (&it
, height
);
5112 bottom_y
= line_bottom_y (&it
);
5113 bidi_unshelve_cache (itdata
, 0);
5115 /* rms: On a non-window display,
5116 the value of it.vpos at the bottom of the screen
5117 seems to be 1 larger than window_box_height (w).
5118 This kludge fixes a bug whereby (move-to-window-line -1)
5119 when ZV is on the last screen line
5120 moves to the previous screen line instead of the last one. */
5121 if (! FRAME_WINDOW_P (XFRAME (w
->frame
)))
5124 /* Add in empty lines at the bottom of the window. */
5125 if (bottom_y
< height
)
5127 int uy
= FRAME_LINE_HEIGHT (it
.f
);
5128 it
.vpos
+= (height
- bottom_y
+ uy
- 1) / uy
;
5132 set_buffer_internal (old_buffer
);
5138 DEFUN ("recenter", Frecenter
, Srecenter
, 0, 1, "P",
5139 doc
: /* Center point in selected window and maybe redisplay frame.
5140 With prefix argument ARG, recenter putting point on screen line ARG
5141 relative to the selected window. If ARG is negative, it counts up from the
5142 bottom of the window. (ARG should be less than the height of the window.)
5144 If ARG is omitted or nil, then recenter with point on the middle line of
5145 the selected window; if the variable `recenter-redisplay' is non-nil,
5146 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5147 is set to `grow-only', this resets the tool-bar's height to the minimum
5148 height needed); if `recenter-redisplay' has the special value `tty',
5149 then only tty frames are redrawn.
5151 Just C-u as prefix means put point in the center of the window
5152 and redisplay normally--don't erase and redraw the frame. */)
5153 (register Lisp_Object arg
)
5155 struct window
*w
= XWINDOW (selected_window
);
5156 struct buffer
*buf
= XBUFFER (w
->buffer
);
5157 struct buffer
*obuf
= current_buffer
;
5159 ptrdiff_t charpos
, bytepos
;
5160 EMACS_INT iarg
IF_LINT (= 0);
5161 int this_scroll_margin
;
5163 /* If redisplay is suppressed due to an error, try again. */
5164 obuf
->display_error_modiff
= 0;
5168 if (!NILP (Vrecenter_redisplay
)
5169 && (!EQ (Vrecenter_redisplay
, Qtty
)
5170 || !NILP (Ftty_type (selected_frame
))))
5174 /* Invalidate pixel data calculated for all compositions. */
5175 for (i
= 0; i
< n_compositions
; i
++)
5176 composition_table
[i
]->font
= NULL
;
5178 WINDOW_XFRAME (w
)->minimize_tool_bar_window_p
= 1;
5180 Fredraw_frame (WINDOW_FRAME (w
));
5181 SET_FRAME_GARBAGED (WINDOW_XFRAME (w
));
5186 else if (CONSP (arg
)) /* Just C-u. */
5190 arg
= Fprefix_numeric_value (arg
);
5195 set_buffer_internal (buf
);
5197 /* Do this after making BUF current
5198 in case scroll_margin is buffer-local. */
5199 this_scroll_margin
=
5200 max (0, min (scroll_margin
, XFASTINT (w
->total_lines
) / 4));
5202 /* Handle centering on a graphical frame specially. Such frames can
5203 have variable-height lines and centering point on the basis of
5204 line counts would lead to strange effects. */
5205 if (FRAME_WINDOW_P (XFRAME (w
->frame
)))
5211 void *itdata
= bidi_shelve_cache ();
5213 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5214 start_display (&it
, w
, pt
);
5215 move_it_vertically_backward (&it
, window_box_height (w
) / 2);
5216 charpos
= IT_CHARPOS (it
);
5217 bytepos
= IT_BYTEPOS (it
);
5218 bidi_unshelve_cache (itdata
, 0);
5224 ptrdiff_t nlines
= min (PTRDIFF_MAX
, -iarg
);
5225 int extra_line_spacing
;
5226 int h
= window_box_height (w
);
5227 void *itdata
= bidi_shelve_cache ();
5229 iarg
= - max (-iarg
, this_scroll_margin
);
5231 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5232 start_display (&it
, w
, pt
);
5234 /* Be sure we have the exact height of the full line containing PT. */
5235 move_it_by_lines (&it
, 0);
5237 /* The amount of pixels we have to move back is the window
5238 height minus what's displayed in the line containing PT,
5239 and the lines below. */
5242 move_it_by_lines (&it
, nlines
);
5244 if (it
.vpos
== nlines
)
5248 /* Last line has no newline */
5249 h
-= line_bottom_y (&it
);
5253 /* Don't reserve space for extra line spacing of last line. */
5254 extra_line_spacing
= it
.max_extra_line_spacing
;
5256 /* If we can't move down NLINES lines because we hit
5257 the end of the buffer, count in some empty lines. */
5258 if (it
.vpos
< nlines
)
5261 extra_line_spacing
= it
.extra_line_spacing
;
5262 h
-= nlines
* (FRAME_LINE_HEIGHT (it
.f
) + extra_line_spacing
);
5266 bidi_unshelve_cache (itdata
, 0);
5270 /* Now find the new top line (starting position) of the window. */
5271 start_display (&it
, w
, pt
);
5273 move_it_vertically_backward (&it
, h
);
5275 /* If extra line spacing is present, we may move too far
5276 back. This causes the last line to be only partially
5277 visible (which triggers redisplay to recenter that line
5278 in the middle), so move forward.
5279 But ignore extra line spacing on last line, as it is not
5280 considered to be part of the visible height of the line.
5282 h
+= extra_line_spacing
;
5283 while (-it
.current_y
> h
)
5284 move_it_by_lines (&it
, 1);
5286 charpos
= IT_CHARPOS (it
);
5287 bytepos
= IT_BYTEPOS (it
);
5289 bidi_unshelve_cache (itdata
, 0);
5293 struct position pos
;
5295 iarg
= max (iarg
, this_scroll_margin
);
5297 pos
= *vmotion (PT
, -iarg
, w
);
5298 charpos
= pos
.bufpos
;
5299 bytepos
= pos
.bytepos
;
5304 struct position pos
;
5305 int ht
= window_internal_height (w
);
5312 /* Don't let it get into the margin at either top or bottom. */
5313 iarg
= max (iarg
, this_scroll_margin
);
5314 iarg
= min (iarg
, ht
- this_scroll_margin
- 1);
5316 pos
= *vmotion (PT
, - iarg
, w
);
5317 charpos
= pos
.bufpos
;
5318 bytepos
= pos
.bytepos
;
5321 /* Set the new window start. */
5322 set_marker_both (w
->start
, w
->buffer
, charpos
, bytepos
);
5323 wset_window_end_valid (w
, Qnil
);
5325 w
->optional_new_start
= 1;
5327 w
->start_at_line_beg
= (bytepos
== BEGV_BYTE
||
5328 FETCH_BYTE (bytepos
- 1) == '\n');
5330 set_buffer_internal (obuf
);
5334 DEFUN ("window-text-height", Fwindow_text_height
, Swindow_text_height
,
5336 doc
: /* Return the height in lines of the text display area of WINDOW.
5337 WINDOW must be a live window and defaults to the selected one.
5339 The returned height does not include the mode line, any header line,
5340 nor any partial-height lines at the bottom of the text area. */)
5341 (Lisp_Object window
)
5343 struct window
*w
= decode_live_window (window
);
5344 int pixel_height
= window_box_height (w
);
5345 int line_height
= pixel_height
/ FRAME_LINE_HEIGHT (XFRAME (w
->frame
));
5346 return make_number (line_height
);
5351 DEFUN ("move-to-window-line", Fmove_to_window_line
, Smove_to_window_line
,
5353 doc
: /* Position point relative to window.
5354 ARG nil means position point at center of window.
5355 Else, ARG specifies vertical position within the window;
5356 zero means top of window, negative means relative to bottom of window. */)
5359 struct window
*w
= XWINDOW (selected_window
);
5363 int this_scroll_margin
;
5366 if (!(BUFFERP (w
->buffer
)
5367 && XBUFFER (w
->buffer
) == current_buffer
))
5368 /* This test is needed to make sure PT/PT_BYTE make sense in w->buffer
5369 when passed below to set_marker_both. */
5370 error ("move-to-window-line called from unrelated buffer");
5372 window
= selected_window
;
5373 start
= marker_position (w
->start
);
5374 if (start
< BEGV
|| start
> ZV
)
5376 int height
= window_internal_height (w
);
5377 Fvertical_motion (make_number (- (height
/ 2)), window
);
5378 set_marker_both (w
->start
, w
->buffer
, PT
, PT_BYTE
);
5379 w
->start_at_line_beg
= !NILP (Fbolp ());
5383 Fgoto_char (w
->start
);
5385 lines
= displayed_window_lines (w
);
5388 this_scroll_margin
= max (0, min (scroll_margin
, lines
/ 4));
5392 XSETFASTINT (arg
, lines
/ 2);
5395 EMACS_INT iarg
= XINT (Fprefix_numeric_value (arg
));
5398 iarg
= iarg
+ lines
;
5400 #if 0 /* This code would prevent move-to-window-line from moving point
5401 to a place inside the scroll margins (which would cause the
5402 next redisplay to scroll). I wrote this code, but then concluded
5403 it is probably better not to install it. However, it is here
5404 inside #if 0 so as not to lose it. -- rms. */
5406 /* Don't let it get into the margin at either top or bottom. */
5407 iarg
= max (iarg
, this_scroll_margin
);
5408 iarg
= min (iarg
, lines
- this_scroll_margin
- 1);
5411 arg
= make_number (iarg
);
5414 /* Skip past a partially visible first line. */
5416 XSETINT (arg
, XINT (arg
) + 1);
5418 return Fvertical_motion (arg
, window
);
5423 /***********************************************************************
5424 Window Configuration
5425 ***********************************************************************/
5427 struct save_window_data
5429 struct vectorlike_header header
;
5430 Lisp_Object selected_frame
;
5431 Lisp_Object current_window
;
5432 Lisp_Object current_buffer
;
5433 Lisp_Object minibuf_scroll_window
;
5434 Lisp_Object minibuf_selected_window
;
5435 Lisp_Object root_window
;
5436 Lisp_Object focus_frame
;
5437 /* A vector, each of whose elements is a struct saved_window
5439 Lisp_Object saved_windows
;
5441 /* All fields above are traced by the GC.
5442 From `fame-cols' down, the fields are ignored by the GC. */
5444 int frame_cols
, frame_lines
, frame_menu_bar_lines
;
5445 int frame_tool_bar_lines
;
5448 /* This is saved as a Lisp_Vector */
5451 struct vectorlike_header header
;
5453 Lisp_Object window
, buffer
, start
, pointm
, mark
;
5454 Lisp_Object left_col
, top_line
, total_cols
, total_lines
;
5455 Lisp_Object normal_cols
, normal_lines
;
5456 Lisp_Object hscroll
, min_hscroll
;
5457 Lisp_Object parent
, prev
;
5458 Lisp_Object start_at_line_beg
;
5459 Lisp_Object display_table
;
5460 Lisp_Object left_margin_cols
, right_margin_cols
;
5461 Lisp_Object left_fringe_width
, right_fringe_width
, fringes_outside_margins
;
5462 Lisp_Object scroll_bar_width
, vertical_scroll_bar_type
, dedicated
;
5463 Lisp_Object combination_limit
, window_parameters
;
5466 #define SAVED_WINDOW_N(swv,n) \
5467 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
5469 DEFUN ("window-configuration-p", Fwindow_configuration_p
, Swindow_configuration_p
, 1, 1, 0,
5470 doc
: /* Return t if OBJECT is a window-configuration object. */)
5471 (Lisp_Object object
)
5473 return WINDOW_CONFIGURATIONP (object
) ? Qt
: Qnil
;
5476 DEFUN ("window-configuration-frame", Fwindow_configuration_frame
, Swindow_configuration_frame
, 1, 1, 0,
5477 doc
: /* Return the frame that CONFIG, a window-configuration object, is about. */)
5478 (Lisp_Object config
)
5480 register struct save_window_data
*data
;
5481 struct Lisp_Vector
*saved_windows
;
5483 CHECK_WINDOW_CONFIGURATION (config
);
5485 data
= (struct save_window_data
*) XVECTOR (config
);
5486 saved_windows
= XVECTOR (data
->saved_windows
);
5487 return XWINDOW (SAVED_WINDOW_N (saved_windows
, 0)->window
)->frame
;
5490 DEFUN ("set-window-configuration", Fset_window_configuration
,
5491 Sset_window_configuration
, 1, 1, 0,
5492 doc
: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
5493 CONFIGURATION must be a value previously returned
5494 by `current-window-configuration' (which see).
5495 If CONFIGURATION was made from a frame that is now deleted,
5496 only frame-independent values can be restored. In this case,
5497 the return value is nil. Otherwise the value is t. */)
5498 (Lisp_Object configuration
)
5500 register struct save_window_data
*data
;
5501 struct Lisp_Vector
*saved_windows
;
5502 Lisp_Object new_current_buffer
;
5505 ptrdiff_t old_point
= -1;
5507 CHECK_WINDOW_CONFIGURATION (configuration
);
5509 data
= (struct save_window_data
*) XVECTOR (configuration
);
5510 saved_windows
= XVECTOR (data
->saved_windows
);
5512 new_current_buffer
= data
->current_buffer
;
5513 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer
)))
5514 new_current_buffer
= Qnil
;
5517 if (XBUFFER (new_current_buffer
) == current_buffer
)
5518 /* The code further down "preserves point" by saving here PT in
5519 old_point and then setting it later back into PT. When the
5520 current-selected-window and the final-selected-window both show
5521 the current buffer, this suffers from the problem that the
5522 current PT is the window-point of the current-selected-window,
5523 while the final PT is the point of the final-selected-window, so
5524 this copy from one PT to the other would end up moving the
5525 window-point of the final-selected-window to the window-point of
5526 the current-selected-window. So we have to be careful which
5527 point of the current-buffer we copy into old_point. */
5528 if (EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
)
5529 && WINDOWP (selected_window
)
5530 && EQ (XWINDOW (selected_window
)->buffer
, new_current_buffer
)
5531 && !EQ (selected_window
, data
->current_window
))
5532 old_point
= XMARKER (XWINDOW (data
->current_window
)->pointm
)->charpos
;
5536 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
5537 point in new_current_buffer as of the last time this buffer was
5538 used. This can be non-deterministic since it can be changed by
5539 things like jit-lock by mere temporary selection of some random
5540 window that happens to show this buffer.
5541 So if possible we want this arbitrary choice of "which point" to
5542 be the one from the to-be-selected-window so as to prevent this
5543 window's cursor from being copied from another window. */
5544 if (EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
)
5545 /* If current_window = selected_window, its point is in BUF_PT. */
5546 && !EQ (selected_window
, data
->current_window
))
5547 old_point
= XMARKER (XWINDOW (data
->current_window
)->pointm
)->charpos
;
5549 old_point
= BUF_PT (XBUFFER (new_current_buffer
));
5552 frame
= XWINDOW (SAVED_WINDOW_N (saved_windows
, 0)->window
)->frame
;
5555 /* If f is a dead frame, don't bother rebuilding its window tree.
5556 However, there is other stuff we should still try to do below. */
5557 if (FRAME_LIVE_P (f
))
5560 Lisp_Object dead_windows
= Qnil
;
5561 register Lisp_Object tem
, par
, pers
;
5562 register struct window
*w
;
5563 register struct saved_window
*p
;
5564 struct window
*root_window
;
5565 struct window
**leaf_windows
;
5570 /* If the frame has been resized since this window configuration was
5571 made, we change the frame to the size specified in the
5572 configuration, restore the configuration, and then resize it
5573 back. We keep track of the prevailing height in these variables. */
5574 int previous_frame_lines
= FRAME_LINES (f
);
5575 int previous_frame_cols
= FRAME_COLS (f
);
5576 int previous_frame_menu_bar_lines
= FRAME_MENU_BAR_LINES (f
);
5577 int previous_frame_tool_bar_lines
= FRAME_TOOL_BAR_LINES (f
);
5579 /* Don't do this within the main loop below: This may call Lisp
5580 code and is thus potentially unsafe while input is blocked. */
5581 for (k
= 0; k
< saved_windows
->header
.size
; k
++)
5583 p
= SAVED_WINDOW_N (saved_windows
, k
);
5585 w
= XWINDOW (window
);
5586 if (!NILP (w
->buffer
)
5587 && !EQ (w
->buffer
, p
->buffer
)
5588 && BUFFER_LIVE_P (XBUFFER (p
->buffer
)))
5589 /* If a window we restore gets another buffer, record the
5590 window's old buffer. */
5591 call1 (Qrecord_window_buffer
, window
);
5594 /* The mouse highlighting code could get screwed up
5595 if it runs during this. */
5598 if (data
->frame_lines
!= previous_frame_lines
5599 || data
->frame_cols
!= previous_frame_cols
)
5600 change_frame_size (f
, data
->frame_lines
,
5601 data
->frame_cols
, 0, 0, 0);
5602 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5603 if (data
->frame_menu_bar_lines
5604 != previous_frame_menu_bar_lines
)
5605 x_set_menu_bar_lines (f
, make_number (data
->frame_menu_bar_lines
),
5607 #ifdef HAVE_WINDOW_SYSTEM
5608 if (data
->frame_tool_bar_lines
5609 != previous_frame_tool_bar_lines
)
5610 x_set_tool_bar_lines (f
, make_number (data
->frame_tool_bar_lines
),
5615 /* "Swap out" point from the selected window's buffer
5616 into the window itself. (Normally the pointm of the selected
5617 window holds garbage.) We do this now, before
5618 restoring the window contents, and prevent it from
5619 being done later on when we select a new window. */
5620 if (! NILP (XWINDOW (selected_window
)->buffer
))
5622 w
= XWINDOW (selected_window
);
5623 set_marker_both (w
->pointm
,
5625 BUF_PT (XBUFFER (w
->buffer
)),
5626 BUF_PT_BYTE (XBUFFER (w
->buffer
)));
5629 windows_or_buffers_changed
++;
5630 FRAME_WINDOW_SIZES_CHANGED (f
) = 1;
5632 /* Problem: Freeing all matrices and later allocating them again
5633 is a serious redisplay flickering problem. What we would
5634 really like to do is to free only those matrices not reused
5636 root_window
= XWINDOW (FRAME_ROOT_WINDOW (f
));
5637 leaf_windows
= alloca (count_windows (root_window
)
5638 * sizeof *leaf_windows
);
5639 n_leaf_windows
= get_leaf_windows (root_window
, leaf_windows
, 0);
5642 Mark all windows now on frame as "deleted".
5643 Restoring the new configuration "undeletes" any that are in it.
5645 Save their current buffers in their height fields, since we may
5646 need it later, if a buffer saved in the configuration is now
5648 delete_all_child_windows (FRAME_ROOT_WINDOW (f
));
5650 for (k
= 0; k
< saved_windows
->header
.size
; k
++)
5652 p
= SAVED_WINDOW_N (saved_windows
, k
);
5654 w
= XWINDOW (window
);
5655 wset_next (w
, Qnil
);
5657 if (!NILP (p
->parent
))
5659 (w
, SAVED_WINDOW_N (saved_windows
, XFASTINT (p
->parent
))->window
);
5661 wset_parent (w
, Qnil
);
5663 if (!NILP (p
->prev
))
5666 (w
, SAVED_WINDOW_N (saved_windows
, XFASTINT (p
->prev
))->window
);
5667 wset_next (XWINDOW (w
->prev
), p
->window
);
5671 wset_prev (w
, Qnil
);
5672 if (!NILP (w
->parent
))
5674 if (EQ (p
->total_cols
, XWINDOW (w
->parent
)->total_cols
))
5676 wset_vchild (XWINDOW (w
->parent
), p
->window
);
5677 wset_hchild (XWINDOW (w
->parent
), Qnil
);
5681 wset_hchild (XWINDOW (w
->parent
), p
->window
);
5682 wset_vchild (XWINDOW (w
->parent
), Qnil
);
5687 /* If we squirreled away the buffer in the window's height,
5689 if (BUFFERP (w
->total_lines
))
5690 wset_buffer (w
, w
->total_lines
);
5691 wset_left_col (w
, p
->left_col
);
5692 wset_top_line (w
, p
->top_line
);
5693 wset_total_cols (w
, p
->total_cols
);
5694 wset_total_lines (w
, p
->total_lines
);
5695 wset_normal_cols (w
, p
->normal_cols
);
5696 wset_normal_lines (w
, p
->normal_lines
);
5697 w
->hscroll
= XFASTINT (p
->hscroll
);
5698 w
->min_hscroll
= XFASTINT (p
->min_hscroll
);
5699 wset_display_table (w
, p
->display_table
);
5700 wset_left_margin_cols (w
, p
->left_margin_cols
);
5701 wset_right_margin_cols (w
, p
->right_margin_cols
);
5702 wset_left_fringe_width (w
, p
->left_fringe_width
);
5703 wset_right_fringe_width (w
, p
->right_fringe_width
);
5704 w
->fringes_outside_margins
= !NILP (p
->fringes_outside_margins
);
5705 wset_scroll_bar_width (w
, p
->scroll_bar_width
);
5706 wset_vertical_scroll_bar_type (w
, p
->vertical_scroll_bar_type
);
5707 wset_dedicated (w
, p
->dedicated
);
5708 wset_combination_limit (w
, p
->combination_limit
);
5709 /* Restore any window parameters that have been saved.
5710 Parameters that have not been saved are left alone. */
5711 for (tem
= p
->window_parameters
; CONSP (tem
); tem
= XCDR (tem
))
5716 if (NILP (XCDR (pers
)))
5718 par
= Fassq (XCAR (pers
), w
->window_parameters
);
5719 if (CONSP (par
) && !NILP (XCDR (par
)))
5720 /* Reset a parameter to nil if and only if it
5721 has a non-nil association. Don't make new
5723 Fsetcdr (par
, Qnil
);
5726 /* Always restore a non-nil value. */
5727 Fset_window_parameter (window
, XCAR (pers
), XCDR (pers
));
5731 w
->last_modified
= 0;
5732 w
->last_overlay_modified
= 0;
5734 /* Reinstall the saved buffer and pointers into it. */
5735 if (NILP (p
->buffer
))
5736 /* An internal window. */
5737 wset_buffer (w
, p
->buffer
);
5738 else if (BUFFER_LIVE_P (XBUFFER (p
->buffer
)))
5739 /* If saved buffer is alive, install it. */
5741 wset_buffer (w
, p
->buffer
);
5742 w
->start_at_line_beg
= !NILP (p
->start_at_line_beg
);
5743 set_marker_restricted (w
->start
, p
->start
, w
->buffer
);
5744 set_marker_restricted (w
->pointm
, p
->pointm
,
5746 Fset_marker (BVAR (XBUFFER (w
->buffer
), mark
),
5747 p
->mark
, w
->buffer
);
5749 /* As documented in Fcurrent_window_configuration, don't
5750 restore the location of point in the buffer which was
5751 current when the window configuration was recorded. */
5752 if (!EQ (p
->buffer
, new_current_buffer
)
5753 && XBUFFER (p
->buffer
) == current_buffer
)
5754 Fgoto_char (w
->pointm
);
5756 else if (!NILP (w
->buffer
)
5757 && BUFFER_LIVE_P (XBUFFER (w
->buffer
)))
5758 /* Keep window's old buffer; make sure the markers are
5761 /* Set window markers at start of visible range. */
5762 if (XMARKER (w
->start
)->buffer
== 0)
5763 set_marker_restricted (w
->start
, make_number (0),
5765 if (XMARKER (w
->pointm
)->buffer
== 0)
5766 set_marker_restricted_both
5767 (w
->pointm
, w
->buffer
,
5768 BUF_PT (XBUFFER (w
->buffer
)),
5769 BUF_PT_BYTE (XBUFFER (w
->buffer
)));
5770 w
->start_at_line_beg
= 1;
5773 /* Window has no live buffer, get one. */
5775 /* Get the buffer via other_buffer_safely in order to
5776 avoid showing an unimportant buffer and, if necessary, to
5777 recreate *scratch* in the course (part of Juanma's bs-show
5778 scenario from March 2011). */
5779 wset_buffer (w
, other_buffer_safely (Fcurrent_buffer ()));
5780 /* This will set the markers to beginning of visible
5782 set_marker_restricted (w
->start
,
5783 make_number (0), w
->buffer
);
5784 set_marker_restricted (w
->pointm
,
5785 make_number (0), w
->buffer
);
5786 w
->start_at_line_beg
= 1;
5787 if (!NILP (w
->dedicated
))
5788 /* Record this window as dead. */
5789 dead_windows
= Fcons (window
, dead_windows
);
5790 /* Make sure window is no more dedicated. */
5791 wset_dedicated (w
, Qnil
);
5795 fset_root_window (f
, data
->root_window
);
5796 /* Arrange *not* to restore point in the buffer that was
5797 current when the window configuration was saved. */
5798 if (EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
))
5799 set_marker_restricted (XWINDOW (data
->current_window
)->pointm
,
5800 make_number (old_point
),
5801 XWINDOW (data
->current_window
)->buffer
);
5803 /* In the following call to `select-window', prevent "swapping out
5804 point" in the old selected window using the buffer that has
5805 been restored into it. We already swapped out that point from
5806 that window's old buffer. */
5807 select_window (data
->current_window
, Qnil
, 1);
5808 BVAR (XBUFFER (XWINDOW (selected_window
)->buffer
), last_selected_window
)
5811 if (NILP (data
->focus_frame
)
5812 || (FRAMEP (data
->focus_frame
)
5813 && FRAME_LIVE_P (XFRAME (data
->focus_frame
))))
5814 Fredirect_frame_focus (frame
, data
->focus_frame
);
5816 /* Set the screen height to the value it had before this function. */
5817 if (previous_frame_lines
!= FRAME_LINES (f
)
5818 || previous_frame_cols
!= FRAME_COLS (f
))
5819 change_frame_size (f
, previous_frame_lines
, previous_frame_cols
,
5821 #if defined (HAVE_WINDOW_SYSTEM) || defined (MSDOS)
5822 if (previous_frame_menu_bar_lines
!= FRAME_MENU_BAR_LINES (f
))
5823 x_set_menu_bar_lines (f
, make_number (previous_frame_menu_bar_lines
),
5825 #ifdef HAVE_WINDOW_SYSTEM
5826 if (previous_frame_tool_bar_lines
!= FRAME_TOOL_BAR_LINES (f
))
5827 x_set_tool_bar_lines (f
, make_number (previous_frame_tool_bar_lines
),
5832 /* Now, free glyph matrices in windows that were not reused. */
5833 for (i
= n
= 0; i
< n_leaf_windows
; ++i
)
5835 if (NILP (leaf_windows
[i
]->buffer
))
5837 /* Assert it's not reused as a combination. */
5838 eassert (NILP (leaf_windows
[i
]->hchild
)
5839 && NILP (leaf_windows
[i
]->vchild
));
5840 free_window_matrices (leaf_windows
[i
]);
5842 else if (EQ (leaf_windows
[i
]->buffer
, new_current_buffer
))
5849 /* Scan dead buffer windows. */
5850 for (; CONSP (dead_windows
); dead_windows
= XCDR (dead_windows
))
5852 window
= XCAR (dead_windows
);
5853 if (WINDOW_LIVE_P (window
) && !EQ (window
, FRAME_ROOT_WINDOW (f
)))
5854 delete_deletable_window (window
);
5857 /* Fselect_window will have made f the selected frame, so we
5858 reselect the proper frame here. Fhandle_switch_frame will change the
5859 selected window too, but that doesn't make the call to
5860 Fselect_window above totally superfluous; it still sets f's
5862 if (FRAME_LIVE_P (XFRAME (data
->selected_frame
)))
5863 do_switch_frame (data
->selected_frame
, 0, 0, Qnil
);
5865 run_window_configuration_change_hook (f
);
5868 if (!NILP (new_current_buffer
))
5870 Fset_buffer (new_current_buffer
);
5871 /* If the new current buffer doesn't appear in the selected
5872 window, go to its old point (see bug#12208). */
5873 if (!EQ (XWINDOW (data
->current_window
)->buffer
, new_current_buffer
))
5874 Fgoto_char (make_number (old_point
));
5877 Vminibuf_scroll_window
= data
->minibuf_scroll_window
;
5878 minibuf_selected_window
= data
->minibuf_selected_window
;
5880 return (FRAME_LIVE_P (f
) ? Qt
: Qnil
);
5884 /* Recursively delete all child windows reachable via the next, vchild,
5885 and hchild slots of WINDOW. */
5887 delete_all_child_windows (Lisp_Object window
)
5889 register struct window
*w
;
5891 w
= XWINDOW (window
);
5893 if (!NILP (w
->next
))
5894 /* Delete WINDOW's siblings (we traverse postorderly). */
5895 delete_all_child_windows (w
->next
);
5897 /* See Fset_window_configuration for excuse. */
5898 wset_total_lines (w
, w
->buffer
);
5900 if (!NILP (w
->vchild
))
5902 delete_all_child_windows (w
->vchild
);
5903 wset_vchild (w
, Qnil
);
5905 else if (!NILP (w
->hchild
))
5907 delete_all_child_windows (w
->hchild
);
5908 wset_hchild (w
, Qnil
);
5910 else if (!NILP (w
->buffer
))
5913 unchain_marker (XMARKER (w
->pointm
));
5914 unchain_marker (XMARKER (w
->start
));
5915 wset_buffer (w
, Qnil
);
5918 Vwindow_list
= Qnil
;
5922 count_windows (register struct window
*window
)
5924 register int count
= 1;
5925 if (!NILP (window
->next
))
5926 count
+= count_windows (XWINDOW (window
->next
));
5927 if (!NILP (window
->vchild
))
5928 count
+= count_windows (XWINDOW (window
->vchild
));
5929 if (!NILP (window
->hchild
))
5930 count
+= count_windows (XWINDOW (window
->hchild
));
5935 /* Fill vector FLAT with leaf windows under W, starting at index I.
5936 Value is last index + 1. */
5938 get_leaf_windows (struct window
*w
, struct window
**flat
, int i
)
5942 if (!NILP (w
->hchild
))
5943 i
= get_leaf_windows (XWINDOW (w
->hchild
), flat
, i
);
5944 else if (!NILP (w
->vchild
))
5945 i
= get_leaf_windows (XWINDOW (w
->vchild
), flat
, i
);
5949 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
5956 /* Return a pointer to the glyph W's physical cursor is on. Value is
5957 null if W's current matrix is invalid, so that no meaningful glyph
5960 get_phys_cursor_glyph (struct window
*w
)
5962 struct glyph_row
*row
;
5963 struct glyph
*glyph
;
5964 int hpos
= w
->phys_cursor
.hpos
;
5966 if (!(w
->phys_cursor
.vpos
>= 0
5967 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
))
5970 row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
);
5971 if (!row
->enabled_p
)
5976 /* When the window is hscrolled, cursor hpos can legitimately be
5977 out of bounds, but we draw the cursor at the corresponding
5978 window margin in that case. */
5979 if (!row
->reversed_p
&& hpos
< 0)
5981 if (row
->reversed_p
&& hpos
>= row
->used
[TEXT_AREA
])
5982 hpos
= row
->used
[TEXT_AREA
] - 1;
5985 if (row
->used
[TEXT_AREA
] > hpos
5987 glyph
= row
->glyphs
[TEXT_AREA
] + hpos
;
5996 save_window_save (Lisp_Object window
, struct Lisp_Vector
*vector
, int i
)
5998 register struct saved_window
*p
;
5999 register struct window
*w
;
6000 register Lisp_Object tem
, pers
, par
;
6002 for (;!NILP (window
); window
= w
->next
)
6004 p
= SAVED_WINDOW_N (vector
, i
);
6005 w
= XWINDOW (window
);
6007 wset_temslot (w
, make_number (i
)); i
++;
6009 p
->buffer
= w
->buffer
;
6010 p
->left_col
= w
->left_col
;
6011 p
->top_line
= w
->top_line
;
6012 p
->total_cols
= w
->total_cols
;
6013 p
->total_lines
= w
->total_lines
;
6014 p
->normal_cols
= w
->normal_cols
;
6015 p
->normal_lines
= w
->normal_lines
;
6016 XSETFASTINT (p
->hscroll
, w
->hscroll
);
6017 XSETFASTINT (p
->min_hscroll
, w
->min_hscroll
);
6018 p
->display_table
= w
->display_table
;
6019 p
->left_margin_cols
= w
->left_margin_cols
;
6020 p
->right_margin_cols
= w
->right_margin_cols
;
6021 p
->left_fringe_width
= w
->left_fringe_width
;
6022 p
->right_fringe_width
= w
->right_fringe_width
;
6023 p
->fringes_outside_margins
= w
->fringes_outside_margins
? Qt
: Qnil
;
6024 p
->scroll_bar_width
= w
->scroll_bar_width
;
6025 p
->vertical_scroll_bar_type
= w
->vertical_scroll_bar_type
;
6026 p
->dedicated
= w
->dedicated
;
6027 p
->combination_limit
= w
->combination_limit
;
6028 p
->window_parameters
= Qnil
;
6030 if (!NILP (Vwindow_persistent_parameters
))
6032 /* Run cycle detection on Vwindow_persistent_parameters. */
6033 Lisp_Object tortoise
, hare
;
6035 hare
= tortoise
= Vwindow_persistent_parameters
;
6036 while (CONSP (hare
))
6043 tortoise
= XCDR (tortoise
);
6045 if (EQ (hare
, tortoise
))
6046 /* Reset Vwindow_persistent_parameters to Qnil. */
6048 Vwindow_persistent_parameters
= Qnil
;
6053 for (tem
= Vwindow_persistent_parameters
; CONSP (tem
);
6057 /* Save values for persistent window parameters. */
6058 if (CONSP (pers
) && !NILP (XCDR (pers
)))
6060 par
= Fassq (XCAR (pers
), w
->window_parameters
);
6062 /* If the window has no value for the parameter,
6064 p
->window_parameters
= Fcons (Fcons (XCAR (pers
), Qnil
),
6065 p
->window_parameters
);
6067 /* If the window has a value for the parameter,
6069 p
->window_parameters
= Fcons (Fcons (XCAR (par
),
6071 p
->window_parameters
);
6076 if (!NILP (w
->buffer
))
6078 /* Save w's value of point in the window configuration. If w
6079 is the selected window, then get the value of point from
6080 the buffer; pointm is garbage in the selected window. */
6081 if (EQ (window
, selected_window
))
6082 p
->pointm
= build_marker (XBUFFER (w
->buffer
),
6083 BUF_PT (XBUFFER (w
->buffer
)),
6084 BUF_PT_BYTE (XBUFFER (w
->buffer
)));
6086 p
->pointm
= Fcopy_marker (w
->pointm
, Qnil
);
6087 XMARKER (p
->pointm
)->insertion_type
6088 = !NILP (Vwindow_point_insertion_type
);
6090 p
->start
= Fcopy_marker (w
->start
, Qnil
);
6091 p
->start_at_line_beg
= w
->start_at_line_beg
? Qt
: Qnil
;
6093 tem
= BVAR (XBUFFER (w
->buffer
), mark
);
6094 p
->mark
= Fcopy_marker (tem
, Qnil
);
6101 p
->start_at_line_beg
= Qnil
;
6104 if (NILP (w
->parent
))
6107 p
->parent
= XWINDOW (w
->parent
)->temslot
;
6112 p
->prev
= XWINDOW (w
->prev
)->temslot
;
6114 if (!NILP (w
->vchild
))
6115 i
= save_window_save (w
->vchild
, vector
, i
);
6116 if (!NILP (w
->hchild
))
6117 i
= save_window_save (w
->hchild
, vector
, i
);
6123 DEFUN ("current-window-configuration", Fcurrent_window_configuration
,
6124 Scurrent_window_configuration
, 0, 1, 0,
6125 doc
: /* Return an object representing the current window configuration of FRAME.
6126 If FRAME is nil or omitted, use the selected frame.
6127 This describes the number of windows, their sizes and current buffers,
6128 and for each displayed buffer, where display starts, and the positions of
6129 point and mark. An exception is made for point in the current buffer:
6130 its value is -not- saved.
6131 This also records the currently selected frame, and FRAME's focus
6132 redirection (see `redirect-frame-focus'). The variable
6133 `window-persistent-parameters' specifies which window parameters are
6134 saved by this function. */)
6137 register Lisp_Object tem
;
6138 register int n_windows
;
6139 register struct save_window_data
*data
;
6141 struct frame
*f
= decode_live_frame (frame
);
6143 n_windows
= count_windows (XWINDOW (FRAME_ROOT_WINDOW (f
)));
6144 data
= ALLOCATE_PSEUDOVECTOR (struct save_window_data
, frame_cols
,
6145 PVEC_WINDOW_CONFIGURATION
);
6147 data
->frame_cols
= FRAME_COLS (f
);
6148 data
->frame_lines
= FRAME_LINES (f
);
6149 data
->frame_menu_bar_lines
= FRAME_MENU_BAR_LINES (f
);
6150 data
->frame_tool_bar_lines
= FRAME_TOOL_BAR_LINES (f
);
6151 data
->selected_frame
= selected_frame
;
6152 data
->current_window
= FRAME_SELECTED_WINDOW (f
);
6153 XSETBUFFER (data
->current_buffer
, current_buffer
);
6154 data
->minibuf_scroll_window
= minibuf_level
> 0 ? Vminibuf_scroll_window
: Qnil
;
6155 data
->minibuf_selected_window
= minibuf_level
> 0 ? minibuf_selected_window
: Qnil
;
6156 data
->root_window
= FRAME_ROOT_WINDOW (f
);
6157 data
->focus_frame
= FRAME_FOCUS_FRAME (f
);
6158 tem
= Fmake_vector (make_number (n_windows
), Qnil
);
6159 data
->saved_windows
= tem
;
6160 for (i
= 0; i
< n_windows
; i
++)
6162 Fmake_vector (make_number (VECSIZE (struct saved_window
)), Qnil
));
6163 save_window_save (FRAME_ROOT_WINDOW (f
), XVECTOR (tem
), 0);
6164 XSETWINDOW_CONFIGURATION (tem
, data
);
6168 /***********************************************************************
6170 ***********************************************************************/
6172 DEFUN ("set-window-margins", Fset_window_margins
, Sset_window_margins
,
6174 doc
: /* Set width of marginal areas of window WINDOW.
6175 WINDOW must be a live window and defaults to the selected one.
6177 Second arg LEFT-WIDTH specifies the number of character cells to
6178 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6179 does the same for the right marginal area. A nil width parameter
6180 means no margin. */)
6181 (Lisp_Object window
, Lisp_Object left_width
, Lisp_Object right_width
)
6183 struct window
*w
= decode_live_window (window
);
6185 /* Translate negative or zero widths to nil.
6186 Margins that are too wide have to be checked elsewhere. */
6188 if (!NILP (left_width
))
6190 CHECK_NUMBER (left_width
);
6191 if (XINT (left_width
) <= 0)
6195 if (!NILP (right_width
))
6197 CHECK_NUMBER (right_width
);
6198 if (XINT (right_width
) <= 0)
6202 if (!EQ (w
->left_margin_cols
, left_width
)
6203 || !EQ (w
->right_margin_cols
, right_width
))
6205 wset_left_margin_cols (w
, left_width
);
6206 wset_right_margin_cols (w
, right_width
);
6208 adjust_window_margins (w
);
6210 ++windows_or_buffers_changed
;
6211 adjust_glyphs (XFRAME (WINDOW_FRAME (w
)));
6218 DEFUN ("window-margins", Fwindow_margins
, Swindow_margins
,
6220 doc
: /* Get width of marginal areas of window WINDOW.
6221 WINDOW must be a live window and defaults to the selected one.
6223 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6224 If a marginal area does not exist, its width will be returned
6226 (Lisp_Object window
)
6228 struct window
*w
= decode_live_window (window
);
6229 return Fcons (w
->left_margin_cols
, w
->right_margin_cols
);
6234 /***********************************************************************
6236 ***********************************************************************/
6238 DEFUN ("set-window-fringes", Fset_window_fringes
, Sset_window_fringes
,
6240 doc
: /* Set the fringe widths of window WINDOW.
6241 WINDOW must be a live window and defaults to the selected one.
6243 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6244 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6245 fringe width. If a fringe width arg is nil, that means to use the
6246 frame's default fringe width. Default fringe widths can be set with
6247 the command `set-fringe-style'.
6248 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6249 outside of the display margins. By default, fringes are drawn between
6250 display marginal areas and the text area. */)
6251 (Lisp_Object window
, Lisp_Object left_width
, Lisp_Object right_width
, Lisp_Object outside_margins
)
6253 struct window
*w
= decode_live_window (window
);
6254 int outside
= !NILP (outside_margins
);
6256 if (!NILP (left_width
))
6257 CHECK_NATNUM (left_width
);
6258 if (!NILP (right_width
))
6259 CHECK_NATNUM (right_width
);
6261 /* Do nothing on a tty. */
6262 if (FRAME_WINDOW_P (WINDOW_XFRAME (w
))
6263 && (!EQ (w
->left_fringe_width
, left_width
)
6264 || !EQ (w
->right_fringe_width
, right_width
)
6265 || w
->fringes_outside_margins
!= outside
))
6267 wset_left_fringe_width (w
, left_width
);
6268 wset_right_fringe_width (w
, right_width
);
6269 w
->fringes_outside_margins
= outside
;
6271 adjust_window_margins (w
);
6273 clear_glyph_matrix (w
->current_matrix
);
6274 wset_window_end_valid (w
, Qnil
);
6276 ++windows_or_buffers_changed
;
6277 adjust_glyphs (XFRAME (WINDOW_FRAME (w
)));
6284 DEFUN ("window-fringes", Fwindow_fringes
, Swindow_fringes
,
6286 doc
: /* Get width of fringes of window WINDOW.
6287 WINDOW must be a live window and defaults to the selected one.
6289 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6290 (Lisp_Object window
)
6292 struct window
*w
= decode_live_window (window
);
6294 return list3 (make_number (WINDOW_LEFT_FRINGE_WIDTH (w
)),
6295 make_number (WINDOW_RIGHT_FRINGE_WIDTH (w
)),
6296 WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
) ? Qt
: Qnil
);
6301 /***********************************************************************
6303 ***********************************************************************/
6305 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars
,
6306 Sset_window_scroll_bars
, 2, 4, 0,
6307 doc
: /* Set width and type of scroll bars of window WINDOW.
6308 WINDOW must be a live window and defaults to the selected one.
6310 Second parameter WIDTH specifies the pixel width for the scroll bar;
6311 this is automatically adjusted to a multiple of the frame column width.
6312 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6313 bar: left, right, or nil.
6314 If WIDTH is nil, use the frame's scroll-bar width.
6315 If VERTICAL-TYPE is t, use the frame's scroll-bar type.
6316 Fourth parameter HORIZONTAL-TYPE is currently unused. */)
6317 (Lisp_Object window
, Lisp_Object width
, Lisp_Object vertical_type
, Lisp_Object horizontal_type
)
6319 struct window
*w
= decode_live_window (window
);
6323 CHECK_RANGED_INTEGER (width
, 0, INT_MAX
);
6325 if (XINT (width
) == 0)
6326 vertical_type
= Qnil
;
6329 if (!(NILP (vertical_type
)
6330 || EQ (vertical_type
, Qleft
)
6331 || EQ (vertical_type
, Qright
)
6332 || EQ (vertical_type
, Qt
)))
6333 error ("Invalid type of vertical scroll bar");
6335 if (!EQ (w
->scroll_bar_width
, width
)
6336 || !EQ (w
->vertical_scroll_bar_type
, vertical_type
))
6338 wset_scroll_bar_width (w
, width
);
6339 wset_vertical_scroll_bar_type (w
, vertical_type
);
6341 adjust_window_margins (w
);
6343 clear_glyph_matrix (w
->current_matrix
);
6344 wset_window_end_valid (w
, Qnil
);
6346 ++windows_or_buffers_changed
;
6347 adjust_glyphs (XFRAME (WINDOW_FRAME (w
)));
6354 DEFUN ("window-scroll-bars", Fwindow_scroll_bars
, Swindow_scroll_bars
,
6356 doc
: /* Get width and type of scroll bars of window WINDOW.
6357 WINDOW must be a live window and defaults to the selected one.
6359 Value is a list of the form (WIDTH COLS VERTICAL-TYPE HORIZONTAL-TYPE).
6360 If WIDTH is nil or TYPE is t, the window is using the frame's corresponding
6362 (Lisp_Object window
)
6364 struct window
*w
= decode_live_window (window
);
6366 return list4 (make_number ((WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
)
6367 ? WINDOW_CONFIG_SCROLL_BAR_WIDTH (w
)
6368 : WINDOW_SCROLL_BAR_AREA_WIDTH (w
))),
6369 make_number (WINDOW_SCROLL_BAR_COLS (w
)),
6370 w
->vertical_scroll_bar_type
, Qnil
);
6375 /***********************************************************************
6377 ***********************************************************************/
6379 DEFUN ("window-vscroll", Fwindow_vscroll
, Swindow_vscroll
, 0, 2, 0,
6380 doc
: /* Return the amount by which WINDOW is scrolled vertically.
6381 If WINDOW is omitted or nil, it defaults to the selected window.
6382 Normally, value is a multiple of the canonical character height of WINDOW;
6383 optional second arg PIXELS-P means value is measured in pixels. */)
6384 (Lisp_Object window
, Lisp_Object pixels_p
)
6387 struct window
*w
= decode_live_window (window
);
6388 struct frame
*f
= XFRAME (w
->frame
);
6390 if (FRAME_WINDOW_P (f
))
6391 result
= (NILP (pixels_p
)
6392 ? FRAME_CANON_Y_FROM_PIXEL_Y (f
, -w
->vscroll
)
6393 : make_number (-w
->vscroll
));
6395 result
= make_number (0);
6400 DEFUN ("set-window-vscroll", Fset_window_vscroll
, Sset_window_vscroll
,
6402 doc
: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6403 WINDOW nil means use the selected window. Normally, VSCROLL is a
6404 non-negative multiple of the canonical character height of WINDOW;
6405 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6406 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6407 corresponds to an integral number of pixels. The return value is the
6408 result of this rounding.
6409 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6410 (Lisp_Object window
, Lisp_Object vscroll
, Lisp_Object pixels_p
)
6412 struct window
*w
= decode_live_window (window
);
6413 struct frame
*f
= XFRAME (w
->frame
);
6415 CHECK_NUMBER_OR_FLOAT (vscroll
);
6417 if (FRAME_WINDOW_P (f
))
6419 int old_dy
= w
->vscroll
;
6421 w
->vscroll
= - (NILP (pixels_p
)
6422 ? FRAME_LINE_HEIGHT (f
) * XFLOATINT (vscroll
)
6423 : XFLOATINT (vscroll
));
6424 w
->vscroll
= min (w
->vscroll
, 0);
6426 if (w
->vscroll
!= old_dy
)
6428 /* Adjust glyph matrix of the frame if the virtual display
6429 area becomes larger than before. */
6430 if (w
->vscroll
< 0 && w
->vscroll
< old_dy
)
6433 /* Prevent redisplay shortcuts. */
6434 XBUFFER (w
->buffer
)->prevent_redisplay_optimizations_p
= 1;
6438 return Fwindow_vscroll (window
, pixels_p
);
6442 /* Call FN for all leaf windows on frame F. FN is called with the
6443 first argument being a pointer to the leaf window, and with
6444 additional argument USER_DATA. Stops when FN returns 0. */
6447 foreach_window (struct frame
*f
, int (*fn
) (struct window
*, void *),
6450 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
6451 if (WINDOWP (FRAME_ROOT_WINDOW (f
)))
6452 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f
)), fn
, user_data
);
6456 /* Helper function for foreach_window. Call FN for all leaf windows
6457 reachable from W. FN is called with the first argument being a
6458 pointer to the leaf window, and with additional argument USER_DATA.
6459 Stop when FN returns 0. Value is 0 if stopped by FN. */
6462 foreach_window_1 (struct window
*w
, int (*fn
) (struct window
*, void *), void *user_data
)
6466 for (cont
= 1; w
&& cont
;)
6468 if (!NILP (w
->hchild
))
6469 cont
= foreach_window_1 (XWINDOW (w
->hchild
), fn
, user_data
);
6470 else if (!NILP (w
->vchild
))
6471 cont
= foreach_window_1 (XWINDOW (w
->vchild
), fn
, user_data
);
6473 cont
= fn (w
, user_data
);
6475 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
6482 /* Freeze or unfreeze the window start of W unless it is a
6483 mini-window or the selected window. FREEZE_P non-null means freeze
6484 the window start. */
6487 freeze_window_start (struct window
*w
, void *freeze_p
)
6489 if (MINI_WINDOW_P (w
)
6490 || (WINDOWP (selected_window
) /* Can be nil in corner cases. */
6491 && (w
== XWINDOW (selected_window
)
6492 || (MINI_WINDOW_P (XWINDOW (selected_window
))
6493 && ! NILP (Vminibuf_scroll_window
)
6494 && w
== XWINDOW (Vminibuf_scroll_window
)))))
6497 w
->frozen_window_start_p
= freeze_p
!= NULL
;
6502 /* Freeze or unfreeze the window starts of all leaf windows on frame
6503 F, except the selected window and a mini-window. FREEZE_P non-zero
6504 means freeze the window start. */
6507 freeze_window_starts (struct frame
*f
, int freeze_p
)
6509 foreach_window (f
, freeze_window_start
, (void *) (freeze_p
? f
: 0));
6513 /***********************************************************************
6515 ***********************************************************************/
6517 /* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2
6518 describe the same state of affairs. This is used by Fequal.
6520 IGNORE_POSITIONS means ignore non-matching scroll positions
6523 This ignores a couple of things like the dedication status of
6524 window, combination_limit and the like. This might have to be
6528 compare_window_configurations (Lisp_Object configuration1
,
6529 Lisp_Object configuration2
,
6530 bool ignore_positions
)
6532 register struct save_window_data
*d1
, *d2
;
6533 struct Lisp_Vector
*sws1
, *sws2
;
6536 CHECK_WINDOW_CONFIGURATION (configuration1
);
6537 CHECK_WINDOW_CONFIGURATION (configuration2
);
6539 d1
= (struct save_window_data
*) XVECTOR (configuration1
);
6540 d2
= (struct save_window_data
*) XVECTOR (configuration2
);
6541 sws1
= XVECTOR (d1
->saved_windows
);
6542 sws2
= XVECTOR (d2
->saved_windows
);
6544 /* Frame settings must match. */
6545 if (d1
->frame_cols
!= d2
->frame_cols
6546 || d1
->frame_lines
!= d2
->frame_lines
6547 || d1
->frame_menu_bar_lines
!= d2
->frame_menu_bar_lines
6548 || !EQ (d1
->selected_frame
, d2
->selected_frame
)
6549 || !EQ (d1
->current_buffer
, d2
->current_buffer
)
6550 || (!ignore_positions
6551 && (!EQ (d1
->minibuf_scroll_window
, d2
->minibuf_scroll_window
)
6552 || !EQ (d1
->minibuf_selected_window
, d2
->minibuf_selected_window
)))
6553 || !EQ (d1
->focus_frame
, d2
->focus_frame
)
6554 /* Verify that the two configurations have the same number of windows. */
6555 || sws1
->header
.size
!= sws2
->header
.size
)
6558 for (i
= 0; i
< sws1
->header
.size
; i
++)
6560 struct saved_window
*sw1
, *sw2
;
6562 sw1
= SAVED_WINDOW_N (sws1
, i
);
6563 sw2
= SAVED_WINDOW_N (sws2
, i
);
6566 /* The "current" windows in the two configurations must
6567 correspond to each other. */
6568 EQ (d1
->current_window
, sw1
->window
)
6569 != EQ (d2
->current_window
, sw2
->window
)
6570 /* Windows' buffers must match. */
6571 || !EQ (sw1
->buffer
, sw2
->buffer
)
6572 || !EQ (sw1
->left_col
, sw2
->left_col
)
6573 || !EQ (sw1
->top_line
, sw2
->top_line
)
6574 || !EQ (sw1
->total_cols
, sw2
->total_cols
)
6575 || !EQ (sw1
->total_lines
, sw2
->total_lines
)
6576 || !EQ (sw1
->display_table
, sw2
->display_table
)
6577 /* The next two disjuncts check the window structure for
6579 || !EQ (sw1
->parent
, sw2
->parent
)
6580 || !EQ (sw1
->prev
, sw2
->prev
)
6581 || (!ignore_positions
6582 && (!EQ (sw1
->hscroll
, sw2
->hscroll
)
6583 || !EQ (sw1
->min_hscroll
, sw2
->min_hscroll
)
6584 || !EQ (sw1
->start_at_line_beg
, sw2
->start_at_line_beg
)
6585 || NILP (Fequal (sw1
->start
, sw2
->start
))
6586 || NILP (Fequal (sw1
->pointm
, sw2
->pointm
))
6587 || NILP (Fequal (sw1
->mark
, sw2
->mark
))))
6588 || !EQ (sw1
->left_margin_cols
, sw2
->left_margin_cols
)
6589 || !EQ (sw1
->right_margin_cols
, sw2
->right_margin_cols
)
6590 || !EQ (sw1
->left_fringe_width
, sw2
->left_fringe_width
)
6591 || !EQ (sw1
->right_fringe_width
, sw2
->right_fringe_width
)
6592 || !EQ (sw1
->fringes_outside_margins
, sw2
->fringes_outside_margins
)
6593 || !EQ (sw1
->scroll_bar_width
, sw2
->scroll_bar_width
)
6594 || !EQ (sw1
->vertical_scroll_bar_type
, sw2
->vertical_scroll_bar_type
))
6601 DEFUN ("compare-window-configurations", Fcompare_window_configurations
,
6602 Scompare_window_configurations
, 2, 2, 0,
6603 doc
: /* Compare two window configurations as regards the structure of windows.
6604 This function ignores details such as the values of point and mark
6605 and scrolling positions. */)
6606 (Lisp_Object x
, Lisp_Object y
)
6608 if (compare_window_configurations (x
, y
, 1))
6614 init_window_once (void)
6616 struct frame
*f
= make_initial_frame ();
6617 XSETFRAME (selected_frame
, f
);
6618 Vterminal_frame
= selected_frame
;
6619 minibuf_window
= f
->minibuffer_window
;
6620 selected_window
= f
->selected_window
;
6621 last_nonminibuf_frame
= f
;
6623 window_initialized
= 1;
6629 Vwindow_list
= Qnil
;
6633 syms_of_window (void)
6635 DEFSYM (Qscroll_up
, "scroll-up");
6636 DEFSYM (Qscroll_down
, "scroll-down");
6637 DEFSYM (Qscroll_command
, "scroll-command");
6639 Fput (Qscroll_up
, Qscroll_command
, Qt
);
6640 Fput (Qscroll_down
, Qscroll_command
, Qt
);
6642 DEFSYM (Qwindow_configuration_change_hook
, "window-configuration-change-hook");
6643 DEFSYM (Qwindowp
, "windowp");
6644 DEFSYM (Qwindow_configuration_p
, "window-configuration-p");
6645 DEFSYM (Qwindow_live_p
, "window-live-p");
6646 DEFSYM (Qwindow_valid_p
, "window-valid-p");
6647 DEFSYM (Qwindow_deletable_p
, "window-deletable-p");
6648 DEFSYM (Qdelete_window
, "delete-window");
6649 DEFSYM (Qwindow_resize_root_window
, "window--resize-root-window");
6650 DEFSYM (Qwindow_resize_root_window_vertically
, "window--resize-root-window-vertically");
6651 DEFSYM (Qsafe
, "safe");
6652 DEFSYM (Qdisplay_buffer
, "display-buffer");
6653 DEFSYM (Qreplace_buffer_in_windows
, "replace-buffer-in-windows");
6654 DEFSYM (Qrecord_window_buffer
, "record-window-buffer");
6655 DEFSYM (Qget_mru_window
, "get-mru-window");
6656 DEFSYM (Qwindow_size
, "window-size");
6657 DEFSYM (Qtemp_buffer_show_hook
, "temp-buffer-show-hook");
6658 DEFSYM (Qabove
, "above");
6659 DEFSYM (Qbelow
, "below");
6660 DEFSYM (Qclone_of
, "clone-of");
6662 staticpro (&Vwindow_list
);
6664 minibuf_selected_window
= Qnil
;
6665 staticpro (&minibuf_selected_window
);
6667 window_scroll_pixel_based_preserve_x
= -1;
6668 window_scroll_pixel_based_preserve_y
= -1;
6669 window_scroll_preserve_hpos
= -1;
6670 window_scroll_preserve_vpos
= -1;
6672 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function
,
6673 doc
: /* Non-nil means call as function to display a help buffer.
6674 The function is called with one argument, the buffer to be displayed.
6675 Used by `with-output-to-temp-buffer'.
6676 If this function is used, then it must do the entire job of showing
6677 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
6678 Vtemp_buffer_show_function
= Qnil
;
6680 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window
,
6681 doc
: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
6682 Vminibuf_scroll_window
= Qnil
;
6684 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows
,
6685 doc
: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
6686 If the minibuffer is active, the `minibuffer-scroll-window' mode line
6687 is displayed in the `mode-line' face. */);
6688 mode_line_in_non_selected_windows
= 1;
6690 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer
,
6691 doc
: /* If non-nil, this is a buffer and \\[scroll-other-window] should scroll its window. */);
6692 Vother_window_scroll_buffer
= Qnil
;
6694 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p
,
6695 doc
: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
6696 auto_window_vscroll_p
= 1;
6698 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines
,
6699 doc
: /* Number of lines of continuity when scrolling by screenfuls. */);
6700 next_screen_context_lines
= 2;
6702 DEFVAR_LISP ("scroll-preserve-screen-position",
6703 Vscroll_preserve_screen_position
,
6704 doc
: /* Controls if scroll commands move point to keep its screen position unchanged.
6705 A value of nil means point does not keep its screen position except
6706 at the scroll margin or window boundary respectively.
6707 A value of t means point keeps its screen position if the scroll
6708 command moved it vertically out of the window, e.g. when scrolling
6710 Any other value means point always keeps its screen position.
6711 Scroll commands should have the `scroll-command' property
6712 on their symbols to be controlled by this variable. */);
6713 Vscroll_preserve_screen_position
= Qnil
;
6715 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type
,
6716 doc
: /* Type of marker to use for `window-point'. */);
6717 Vwindow_point_insertion_type
= Qnil
;
6719 DEFVAR_LISP ("window-configuration-change-hook",
6720 Vwindow_configuration_change_hook
,
6721 doc
: /* Functions to call when window configuration changes.
6722 The buffer-local part is run once per window, with the relevant window
6723 selected; while the global part is run only once for the modified frame,
6724 with the relevant frame selected. */);
6725 Vwindow_configuration_change_hook
= Qnil
;
6727 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay
,
6728 doc
: /* Non-nil means `recenter' redraws entire frame.
6729 If this option is non-nil, then the `recenter' command with a nil
6730 argument will redraw the entire frame; the special value `tty' causes
6731 the frame to be redrawn only if it is a tty frame. */);
6732 Vrecenter_redisplay
= Qtty
;
6734 DEFVAR_LISP ("window-combination-resize", Vwindow_combination_resize
,
6735 doc
: /* If t, resize window combinations proportionally.
6736 If this variable is nil, splitting a window gets the entire screen space
6737 for displaying the new window from the window to split. Deleting and
6738 resizing a window preferably resizes one adjacent window only.
6740 If this variable is t, splitting a window tries to get the space
6741 proportionally from all windows in the same combination. This also
6742 allows to split a window that is otherwise too small or of fixed size.
6743 Resizing and deleting a window proportionally resize all windows in the
6746 Other values are reserved for future use.
6748 This variable takes no effect if `window-combination-limit' is non-nil. */);
6749 Vwindow_combination_resize
= Qnil
;
6751 DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit
,
6752 doc
: /* If non-nil, splitting a window makes a new parent window.
6753 The following values are recognized:
6755 nil means splitting a window will create a new parent window only if the
6756 window has no parent window or the window shall become part of a
6757 combination orthogonal to the one it is part of.
6759 `window-size' means that splitting a window for displaying a buffer
6760 makes a new parent window provided `display-buffer' is supposed to
6761 explicitly set the window's size due to the presence of a
6762 `window-height' or `window-width' entry in the alist used by
6763 `display-buffer'. Otherwise, this value is handled like nil.
6765 `temp-buffer' means that splitting a window for displaying a temporary
6766 buffer always makes a new parent window. Otherwise, this value is
6769 `display-buffer' means that splitting a window for displaying a buffer
6770 always makes a new parent window. Since temporary buffers are
6771 displayed by the function `display-buffer', this value is stronger
6772 than `temp-buffer'. Splitting a window for other purpose makes a
6773 new parent window only if needed.
6775 t means that splitting a window always creates a new parent window. If
6776 all splits behave this way, each frame's window tree is a binary
6777 tree and every window but the frame's root window has exactly one
6780 Other values are reserved for future use. */);
6781 Vwindow_combination_limit
= Qwindow_size
;
6783 DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters
,
6784 doc
: /* Alist of persistent window parameters.
6785 This alist specifies which window parameters shall get saved by
6786 `current-window-configuration' and `window-state-get' and subsequently
6787 restored to their previous values by `set-window-configuration' and
6790 The car of each entry of this alist is the symbol specifying the
6791 parameter. The cdr is one of the following:
6793 nil means the parameter is neither saved by `window-state-get' nor by
6794 `current-window-configuration'.
6796 t means the parameter is saved by `current-window-configuration' and,
6797 provided its WRITABLE argument is nil, by `window-state-get'.
6799 The symbol `writable' means the parameter is saved unconditionally by
6800 both `current-window-configuration' and `window-state-get'. Do not use
6801 this value for parameters without read syntax (like windows or frames).
6803 Parameters not saved by `current-window-configuration' or
6804 `window-state-get' are left alone by `set-window-configuration'
6805 respectively are not installed by `window-state-put'. */);
6806 Vwindow_persistent_parameters
= list1 (Fcons (Qclone_of
, Qt
));
6808 defsubr (&Sselected_window
);
6809 defsubr (&Sminibuffer_window
);
6810 defsubr (&Swindow_minibuffer_p
);
6811 defsubr (&Swindowp
);
6812 defsubr (&Swindow_valid_p
);
6813 defsubr (&Swindow_live_p
);
6814 defsubr (&Swindow_frame
);
6815 defsubr (&Sframe_root_window
);
6816 defsubr (&Sframe_first_window
);
6817 defsubr (&Sframe_selected_window
);
6818 defsubr (&Sset_frame_selected_window
);
6819 defsubr (&Spos_visible_in_window_p
);
6820 defsubr (&Swindow_line_height
);
6821 defsubr (&Swindow_buffer
);
6822 defsubr (&Swindow_parent
);
6823 defsubr (&Swindow_top_child
);
6824 defsubr (&Swindow_left_child
);
6825 defsubr (&Swindow_next_sibling
);
6826 defsubr (&Swindow_prev_sibling
);
6827 defsubr (&Swindow_combination_limit
);
6828 defsubr (&Sset_window_combination_limit
);
6829 defsubr (&Swindow_use_time
);
6830 defsubr (&Swindow_top_line
);
6831 defsubr (&Swindow_left_column
);
6832 defsubr (&Swindow_total_height
);
6833 defsubr (&Swindow_total_width
);
6834 defsubr (&Swindow_normal_size
);
6835 defsubr (&Swindow_new_total
);
6836 defsubr (&Swindow_new_normal
);
6837 defsubr (&Sset_window_new_total
);
6838 defsubr (&Sset_window_new_normal
);
6839 defsubr (&Swindow_resize_apply
);
6840 defsubr (&Swindow_body_height
);
6841 defsubr (&Swindow_body_width
);
6842 defsubr (&Swindow_hscroll
);
6843 defsubr (&Sset_window_hscroll
);
6844 defsubr (&Swindow_redisplay_end_trigger
);
6845 defsubr (&Sset_window_redisplay_end_trigger
);
6846 defsubr (&Swindow_edges
);
6847 defsubr (&Swindow_pixel_edges
);
6848 defsubr (&Swindow_absolute_pixel_edges
);
6849 defsubr (&Swindow_inside_edges
);
6850 defsubr (&Swindow_inside_pixel_edges
);
6851 defsubr (&Swindow_inside_absolute_pixel_edges
);
6852 defsubr (&Scoordinates_in_window_p
);
6853 defsubr (&Swindow_at
);
6854 defsubr (&Swindow_point
);
6855 defsubr (&Swindow_start
);
6856 defsubr (&Swindow_end
);
6857 defsubr (&Sset_window_point
);
6858 defsubr (&Sset_window_start
);
6859 defsubr (&Swindow_dedicated_p
);
6860 defsubr (&Sset_window_dedicated_p
);
6861 defsubr (&Swindow_display_table
);
6862 defsubr (&Sset_window_display_table
);
6863 defsubr (&Snext_window
);
6864 defsubr (&Sprevious_window
);
6865 defsubr (&Sget_buffer_window
);
6866 defsubr (&Sdelete_other_windows_internal
);
6867 defsubr (&Sdelete_window_internal
);
6868 defsubr (&Sresize_mini_window_internal
);
6869 defsubr (&Sset_window_buffer
);
6870 defsubr (&Srun_window_configuration_change_hook
);
6871 defsubr (&Sselect_window
);
6872 defsubr (&Sforce_window_update
);
6873 defsubr (&Ssplit_window_internal
);
6874 defsubr (&Sscroll_up
);
6875 defsubr (&Sscroll_down
);
6876 defsubr (&Sscroll_left
);
6877 defsubr (&Sscroll_right
);
6878 defsubr (&Sother_window_for_scrolling
);
6879 defsubr (&Sscroll_other_window
);
6880 defsubr (&Sminibuffer_selected_window
);
6881 defsubr (&Srecenter
);
6882 defsubr (&Swindow_text_height
);
6883 defsubr (&Smove_to_window_line
);
6884 defsubr (&Swindow_configuration_p
);
6885 defsubr (&Swindow_configuration_frame
);
6886 defsubr (&Sset_window_configuration
);
6887 defsubr (&Scurrent_window_configuration
);
6888 defsubr (&Sset_window_margins
);
6889 defsubr (&Swindow_margins
);
6890 defsubr (&Sset_window_fringes
);
6891 defsubr (&Swindow_fringes
);
6892 defsubr (&Sset_window_scroll_bars
);
6893 defsubr (&Swindow_scroll_bars
);
6894 defsubr (&Swindow_vscroll
);
6895 defsubr (&Sset_window_vscroll
);
6896 defsubr (&Scompare_window_configurations
);
6897 defsubr (&Swindow_list
);
6898 defsubr (&Swindow_list_1
);
6899 defsubr (&Swindow_prev_buffers
);
6900 defsubr (&Sset_window_prev_buffers
);
6901 defsubr (&Swindow_next_buffers
);
6902 defsubr (&Sset_window_next_buffers
);
6903 defsubr (&Swindow_parameters
);
6904 defsubr (&Swindow_parameter
);
6905 defsubr (&Sset_window_parameter
);
6909 keys_of_window (void)
6911 initial_define_key (control_x_map
, '<', "scroll-left");
6912 initial_define_key (control_x_map
, '>', "scroll-right");
6914 initial_define_key (global_map
, Ctl ('V'), "scroll-up-command");
6915 initial_define_key (meta_map
, Ctl ('V'), "scroll-other-window");
6916 initial_define_key (meta_map
, 'v', "scroll-down-command");