1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985-1987, 1993-1998, 2000-2015 Free Software
6 This file is part of GNU Emacs.
8 GNU Emacs is free software: you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation, either version 3 of the License, or
11 (at your option) any later version.
13 GNU Emacs is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
35 #include "dispextern.h"
36 #include "blockinput.h"
37 #include "termhooks.h" /* For FRAME_TERMINAL. */
38 #ifdef HAVE_WINDOW_SYSTEM
40 #endif /* HAVE_WINDOW_SYSTEM */
45 static ptrdiff_t count_windows (struct window
*);
46 static ptrdiff_t get_leaf_windows (struct window
*, struct window
**,
48 static void window_scroll_pixel_based (Lisp_Object
, int, bool, bool);
49 static void window_scroll_line_based (Lisp_Object
, int, bool, bool);
50 static void foreach_window (struct frame
*,
51 bool (* fn
) (struct window
*, void *),
53 static bool foreach_window_1 (struct window
*,
54 bool (* fn
) (struct window
*, void *),
56 static bool window_resize_check (struct window
*, bool);
57 static void window_resize_apply (struct window
*, bool);
58 static void select_window_1 (Lisp_Object
, bool);
60 static struct window
*set_window_fringes (struct window
*, Lisp_Object
,
61 Lisp_Object
, Lisp_Object
);
62 static struct window
*set_window_margins (struct window
*, Lisp_Object
,
64 static struct window
*set_window_scroll_bars (struct window
*, Lisp_Object
,
65 Lisp_Object
, Lisp_Object
,
67 static void apply_window_adjustment (struct window
*);
69 /* This is the window in which the terminal's cursor should
70 be left when nothing is being done with it. This must
71 always be a leaf window, and its buffer is selected by
72 the top level editing loop at the end of each command.
74 This value is always the same as
75 FRAME_SELECTED_WINDOW (selected_frame). */
76 Lisp_Object selected_window
;
78 /* A list of all windows for use by next_window and Fwindow_list.
79 Functions creating or deleting windows should invalidate this cache
80 by setting it to nil. */
81 Lisp_Object Vwindow_list
;
83 /* The mini-buffer window of the selected frame.
84 Note that you cannot test for mini-bufferness of an arbitrary window
85 by comparing against this; but you can test for mini-bufferness of
86 the selected window. */
87 Lisp_Object minibuf_window
;
89 /* Non-nil means it is the window whose mode line should be
90 shown as the selected window when the minibuffer is selected. */
91 Lisp_Object minibuf_selected_window
;
93 /* Incremented for each window created. */
94 static EMACS_INT sequence_number
;
96 /* Used by the function window_scroll_pixel_based. */
97 static int window_scroll_pixel_based_preserve_x
;
98 static int window_scroll_pixel_based_preserve_y
;
100 /* Same for window_scroll_line_based. */
101 static EMACS_INT window_scroll_preserve_hpos
;
102 static EMACS_INT window_scroll_preserve_vpos
;
105 CHECK_WINDOW_CONFIGURATION (Lisp_Object x
)
107 CHECK_TYPE (WINDOW_CONFIGURATIONP (x
), Qwindow_configuration_p
, x
);
110 /* These setters are used only in this file, so they can be private. */
112 wset_combination_limit (struct window
*w
, Lisp_Object val
)
114 w
->combination_limit
= val
;
118 wset_dedicated (struct window
*w
, Lisp_Object val
)
124 wset_display_table (struct window
*w
, Lisp_Object val
)
126 w
->display_table
= val
;
130 wset_new_normal (struct window
*w
, Lisp_Object val
)
136 wset_new_total (struct window
*w
, Lisp_Object val
)
142 wset_normal_cols (struct window
*w
, Lisp_Object val
)
144 w
->normal_cols
= val
;
148 wset_normal_lines (struct window
*w
, Lisp_Object val
)
150 w
->normal_lines
= val
;
154 wset_parent (struct window
*w
, Lisp_Object val
)
160 wset_pointm (struct window
*w
, Lisp_Object val
)
166 wset_old_pointm (struct window
*w
, Lisp_Object val
)
172 wset_start (struct window
*w
, Lisp_Object val
)
178 wset_temslot (struct window
*w
, Lisp_Object val
)
184 wset_vertical_scroll_bar_type (struct window
*w
, Lisp_Object val
)
186 w
->vertical_scroll_bar_type
= val
;
190 wset_window_parameters (struct window
*w
, Lisp_Object val
)
192 w
->window_parameters
= val
;
196 wset_combination (struct window
*w
, bool horflag
, Lisp_Object val
)
198 /* Since leaf windows never becomes non-leaf, there should
199 be no buffer and markers in start and pointm fields of W. */
200 eassert (!BUFFERP (w
->contents
) && NILP (w
->start
) && NILP (w
->pointm
));
202 /* When an internal window is deleted and VAL is nil, HORFLAG
205 w
->horizontal
= horflag
;
209 wset_update_mode_line (struct window
*w
)
211 /* If this window is the selected window on its frame, set the
212 global variable update_mode_lines, so that x_consider_frame_title
213 will consider this frame's title for redisplay. */
214 Lisp_Object fselected_window
= XFRAME (WINDOW_FRAME (w
))->selected_window
;
216 if (WINDOWP (fselected_window
) && XWINDOW (fselected_window
) == w
)
217 update_mode_lines
= 42;
219 w
->update_mode_line
= true;
222 /* True if leaf window W doesn't reflect the actual state
223 of displayed buffer due to its text or overlays change. */
226 window_outdated (struct window
*w
)
228 struct buffer
*b
= XBUFFER (w
->contents
);
229 return (w
->last_modified
< BUF_MODIFF (b
)
230 || w
->last_overlay_modified
< BUF_OVERLAY_MODIFF (b
));
234 decode_live_window (register Lisp_Object window
)
237 return XWINDOW (selected_window
);
239 CHECK_LIVE_WINDOW (window
);
240 return XWINDOW (window
);
244 decode_any_window (register Lisp_Object window
)
249 return XWINDOW (selected_window
);
251 CHECK_WINDOW (window
);
252 w
= XWINDOW (window
);
256 static struct window
*
257 decode_valid_window (register Lisp_Object window
)
262 return XWINDOW (selected_window
);
264 CHECK_VALID_WINDOW (window
);
265 w
= XWINDOW (window
);
269 /* Called when W's buffer slot is changed. ARG -1 means that W is about to
270 cease its buffer, and 1 means that W is about to set up the new one. */
273 adjust_window_count (struct window
*w
, int arg
)
275 eassert (eabs (arg
) == 1);
276 if (BUFFERP (w
->contents
))
278 struct buffer
*b
= XBUFFER (w
->contents
);
282 b
->window_count
+= arg
;
283 eassert (b
->window_count
>= 0);
284 /* These should be recalculated by redisplay code. */
285 w
->window_end_valid
= false;
286 w
->base_line_pos
= 0;
290 /* Set W's buffer slot to VAL and recompute number
291 of windows showing VAL if it is a buffer. */
294 wset_buffer (struct window
*w
, Lisp_Object val
)
296 adjust_window_count (w
, -1);
298 /* Make sure that we do not assign the buffer
299 to an internal window. */
300 eassert (MARKERP (w
->start
) && MARKERP (w
->pointm
));
302 adjust_window_count (w
, 1);
305 DEFUN ("windowp", Fwindowp
, Swindowp
, 1, 1, 0,
306 doc
: /* Return t if OBJECT is a window and nil otherwise. */)
309 return WINDOWP (object
) ? Qt
: Qnil
;
312 DEFUN ("window-valid-p", Fwindow_valid_p
, Swindow_valid_p
, 1, 1, 0,
313 doc
: /* Return t if OBJECT is a valid window and nil otherwise.
314 A valid window is either a window that displays a buffer or an internal
315 window. Windows that have been deleted are not valid. */)
318 return WINDOW_VALID_P (object
) ? Qt
: Qnil
;
321 DEFUN ("window-live-p", Fwindow_live_p
, Swindow_live_p
, 1, 1, 0,
322 doc
: /* Return t if OBJECT is a live window and nil otherwise.
323 A live window is a window that displays a buffer.
324 Internal windows and deleted windows are not live. */)
327 return WINDOW_LIVE_P (object
) ? Qt
: Qnil
;
330 /* Frames and windows. */
331 DEFUN ("window-frame", Fwindow_frame
, Swindow_frame
, 0, 1, 0,
332 doc
: /* Return the frame that window WINDOW is on.
333 WINDOW must be a valid window and defaults to the selected one. */)
336 return decode_valid_window (window
)->frame
;
339 DEFUN ("frame-root-window", Fframe_root_window
, Sframe_root_window
, 0, 1, 0,
340 doc
: /* Return the root window of FRAME-OR-WINDOW.
341 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
342 With a frame argument, return that frame's root window.
343 With a window argument, return the root window of that window's frame. */)
344 (Lisp_Object frame_or_window
)
348 if (NILP (frame_or_window
))
349 window
= SELECTED_FRAME ()->root_window
;
350 else if (WINDOW_VALID_P (frame_or_window
))
351 window
= XFRAME (XWINDOW (frame_or_window
)->frame
)->root_window
;
354 CHECK_LIVE_FRAME (frame_or_window
);
355 window
= XFRAME (frame_or_window
)->root_window
;
361 DEFUN ("minibuffer-window", Fminibuffer_window
, Sminibuffer_window
, 0, 1, 0,
362 doc
: /* Return the minibuffer window for frame FRAME.
363 If FRAME is omitted or nil, it defaults to the selected frame. */)
366 return FRAME_MINIBUF_WINDOW (decode_live_frame (frame
));
369 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p
,
370 Swindow_minibuffer_p
, 0, 1, 0,
371 doc
: /* Return non-nil if WINDOW is a minibuffer window.
372 WINDOW must be a valid window and defaults to the selected one. */)
375 return MINI_WINDOW_P (decode_valid_window (window
)) ? Qt
: Qnil
;
378 /* Don't move this to window.el - this must be a safe routine. */
379 DEFUN ("frame-first-window", Fframe_first_window
, Sframe_first_window
, 0, 1, 0,
380 doc
: /* Return the topmost, leftmost live window on FRAME-OR-WINDOW.
381 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
382 Else if FRAME-OR-WINDOW denotes a valid window, return the first window
383 of that window's frame. If FRAME-OR-WINDOW denotes a live frame, return
384 the first window of that frame. */)
385 (Lisp_Object frame_or_window
)
389 if (NILP (frame_or_window
))
390 window
= SELECTED_FRAME ()->root_window
;
391 else if (WINDOW_VALID_P (frame_or_window
))
392 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->root_window
;
395 CHECK_LIVE_FRAME (frame_or_window
);
396 window
= XFRAME (frame_or_window
)->root_window
;
399 while (WINDOWP (XWINDOW (window
)->contents
))
400 window
= XWINDOW (window
)->contents
;
405 DEFUN ("frame-selected-window", Fframe_selected_window
,
406 Sframe_selected_window
, 0, 1, 0,
407 doc
: /* Return the selected window of FRAME-OR-WINDOW.
408 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
409 Else if FRAME-OR-WINDOW denotes a valid window, return the selected
410 window of that window's frame. If FRAME-OR-WINDOW denotes a live frame,
411 return the selected window of that frame. */)
412 (Lisp_Object frame_or_window
)
416 if (NILP (frame_or_window
))
417 window
= SELECTED_FRAME ()->selected_window
;
418 else if (WINDOW_VALID_P (frame_or_window
))
419 window
= XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window
)))->selected_window
;
422 CHECK_LIVE_FRAME (frame_or_window
);
423 window
= XFRAME (frame_or_window
)->selected_window
;
429 DEFUN ("set-frame-selected-window", Fset_frame_selected_window
,
430 Sset_frame_selected_window
, 2, 3, 0,
431 doc
: /* Set selected window of FRAME to WINDOW.
432 FRAME must be a live frame and defaults to the selected one. If FRAME
433 is the selected frame, this makes WINDOW the selected window. Optional
434 argument NORECORD non-nil means to neither change the order of recently
435 selected windows nor the buffer list. WINDOW must denote a live window.
437 (Lisp_Object frame
, Lisp_Object window
, Lisp_Object norecord
)
440 frame
= selected_frame
;
442 CHECK_LIVE_FRAME (frame
);
443 CHECK_LIVE_WINDOW (window
);
445 if (! EQ (frame
, WINDOW_FRAME (XWINDOW (window
))))
446 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
448 if (EQ (frame
, selected_frame
))
449 return Fselect_window (window
, norecord
);
452 fset_selected_window (XFRAME (frame
), window
);
457 DEFUN ("selected-window", Fselected_window
, Sselected_window
, 0, 0, 0,
458 doc
: /* Return the selected window.
459 The selected window is the window in which the standard cursor for
460 selected windows appears and to which many commands apply. */)
463 return selected_window
;
466 EMACS_INT window_select_count
;
468 /* If select_window is called with inhibit_point_swap true it will
469 not store point of the old selected window's buffer back into that
470 window's pointm slot. This is needed by Fset_window_configuration to
471 avoid that the display routine is called with selected_window set to
472 Qnil causing a subsequent crash. */
474 select_window (Lisp_Object window
, Lisp_Object norecord
,
475 bool inhibit_point_swap
)
480 CHECK_LIVE_WINDOW (window
);
482 w
= XWINDOW (window
);
484 /* Make the selected window's buffer current. */
485 Fset_buffer (w
->contents
);
487 if (EQ (window
, selected_window
) && !inhibit_point_swap
)
488 /* `switch-to-buffer' uses (select-window (selected-window)) as a "clever"
489 way to call record_buffer from Elisp, so it's important that we call
490 record_buffer before returning here. */
491 goto record_and_return
;
494 { /* Mark the window for redisplay since the selected-window has
495 a different mode-line. */
496 wset_redisplay (XWINDOW (selected_window
));
500 redisplay_other_windows ();
502 sf
= SELECTED_FRAME ();
503 if (XFRAME (WINDOW_FRAME (w
)) != sf
)
505 fset_selected_window (XFRAME (WINDOW_FRAME (w
)), window
);
506 /* Use this rather than Fhandle_switch_frame
507 so that FRAME_FOCUS_FRAME is moved appropriately as we
508 move around in the state where a minibuffer in a separate
510 Fselect_frame (WINDOW_FRAME (w
), norecord
);
511 /* Fselect_frame called us back so we've done all the work already. */
512 eassert (EQ (window
, selected_window
));
516 fset_selected_window (sf
, window
);
518 select_window_1 (window
, inhibit_point_swap
);
519 bset_last_selected_window (XBUFFER (w
->contents
), window
);
522 /* record_buffer can run QUIT, so make sure it is run only after we have
523 re-established the invariant between selected_window and selected_frame,
524 otherwise the temporary broken invariant might "escape" (bug#14161). */
527 w
->use_time
= ++window_select_count
;
528 record_buffer (w
->contents
);
534 /* Select window with a minimum of fuss, i.e. don't record the change anywhere
535 (not even for redisplay's benefit), and assume that the window's frame is
538 select_window_1 (Lisp_Object window
, bool inhibit_point_swap
)
540 /* Store the old selected window's buffer's point in pointm of the old
541 selected window. It belongs to that window, and when the window is
542 not selected, must be in the window. */
543 if (!inhibit_point_swap
)
545 struct window
*ow
= XWINDOW (selected_window
);
546 if (BUFFERP (ow
->contents
))
547 set_marker_both (ow
->pointm
, ow
->contents
,
548 BUF_PT (XBUFFER (ow
->contents
)),
549 BUF_PT_BYTE (XBUFFER (ow
->contents
)));
552 selected_window
= window
;
554 /* Go to the point recorded in the window.
555 This is important when the buffer is in more
556 than one window. It also matters when
557 redisplay_window has altered point after scrolling,
558 because it makes the change only in the window. */
559 set_point_from_marker (XWINDOW (window
)->pointm
);
562 DEFUN ("select-window", Fselect_window
, Sselect_window
, 1, 2, 0,
563 doc
: /* Select WINDOW which must be a live window.
564 Also make WINDOW's frame the selected frame and WINDOW that frame's
565 selected window. In addition, make WINDOW's buffer current and set its
566 buffer's value of `point' to the value of WINDOW's `window-point'.
569 Optional second arg NORECORD non-nil means do not put this buffer at the
570 front of the buffer list and do not make this window the most recently
573 Run `buffer-list-update-hook' unless NORECORD is non-nil. Note that
574 applications and internal routines often select a window temporarily for
575 various purposes; mostly, to simplify coding. As a rule, such
576 selections should be not recorded and therefore will not pollute
577 `buffer-list-update-hook'. Selections that "really count" are those
578 causing a visible change in the next redisplay of WINDOW's frame and
579 should be always recorded. So if you think of running a function each
580 time a window gets selected put it on `buffer-list-update-hook'.
582 Also note that the main editor command loop sets the current buffer to
583 the buffer of the selected window before each command. */)
584 (Lisp_Object window
, Lisp_Object norecord
)
586 return select_window (window
, norecord
, false);
589 DEFUN ("window-buffer", Fwindow_buffer
, Swindow_buffer
, 0, 1, 0,
590 doc
: /* Return the buffer displayed in window WINDOW.
591 If WINDOW is omitted or nil, it defaults to the selected window.
592 Return nil for an internal window or a deleted window. */)
595 struct window
*w
= decode_any_window (window
);
596 return WINDOW_LEAF_P (w
) ? w
->contents
: Qnil
;
599 DEFUN ("window-parent", Fwindow_parent
, Swindow_parent
, 0, 1, 0,
600 doc
: /* Return the parent window of window WINDOW.
601 WINDOW must be a valid window and defaults to the selected one.
602 Return nil for a window with no parent (e.g. a root window). */)
605 return decode_valid_window (window
)->parent
;
608 DEFUN ("window-top-child", Fwindow_top_child
, Swindow_top_child
, 0, 1, 0,
609 doc
: /* Return the topmost child window of window WINDOW.
610 WINDOW must be a valid window and defaults to the selected one.
611 Return nil if WINDOW is a live window (live windows have no children).
612 Return nil if WINDOW is an internal window whose children form a
613 horizontal combination. */)
616 struct window
*w
= decode_valid_window (window
);
617 return WINDOW_VERTICAL_COMBINATION_P (w
) ? w
->contents
: Qnil
;
620 DEFUN ("window-left-child", Fwindow_left_child
, Swindow_left_child
, 0, 1, 0,
621 doc
: /* Return the leftmost child window of window WINDOW.
622 WINDOW must be a valid window and defaults to the selected one.
623 Return nil if WINDOW is a live window (live windows have no children).
624 Return nil if WINDOW is an internal window whose children form a
625 vertical combination. */)
628 struct window
*w
= decode_valid_window (window
);
629 return WINDOW_HORIZONTAL_COMBINATION_P (w
) ? w
->contents
: Qnil
;
632 DEFUN ("window-next-sibling", Fwindow_next_sibling
, Swindow_next_sibling
, 0, 1, 0,
633 doc
: /* Return the next sibling window of window WINDOW.
634 WINDOW must be a valid window and defaults to the selected one.
635 Return nil if WINDOW has no next sibling. */)
638 return decode_valid_window (window
)->next
;
641 DEFUN ("window-prev-sibling", Fwindow_prev_sibling
, Swindow_prev_sibling
, 0, 1, 0,
642 doc
: /* Return the previous sibling window of window WINDOW.
643 WINDOW must be a valid window and defaults to the selected one.
644 Return nil if WINDOW has no previous sibling. */)
647 return decode_valid_window (window
)->prev
;
650 DEFUN ("window-combination-limit", Fwindow_combination_limit
, Swindow_combination_limit
, 1, 1, 0,
651 doc
: /* Return combination limit of window WINDOW.
652 WINDOW must be a valid window used in horizontal or vertical combination.
653 If the return value is nil, child windows of WINDOW can be recombined with
654 WINDOW's siblings. A return value of t means that child windows of
655 WINDOW are never (re-)combined with WINDOW's siblings. */)
660 CHECK_VALID_WINDOW (window
);
661 w
= XWINDOW (window
);
662 if (WINDOW_LEAF_P (w
))
663 error ("Combination limit is meaningful for internal windows only");
664 return w
->combination_limit
;
667 DEFUN ("set-window-combination-limit", Fset_window_combination_limit
, Sset_window_combination_limit
, 2, 2, 0,
668 doc
: /* Set combination limit of window WINDOW to LIMIT; return LIMIT.
669 WINDOW must be a valid window used in horizontal or vertical combination.
670 If LIMIT is nil, child windows of WINDOW can be recombined with WINDOW's
671 siblings. LIMIT t means that child windows of WINDOW are never
672 (re-)combined with WINDOW's siblings. Other values are reserved for
674 (Lisp_Object window
, Lisp_Object limit
)
678 CHECK_VALID_WINDOW (window
);
679 w
= XWINDOW (window
);
680 if (WINDOW_LEAF_P (w
))
681 error ("Combination limit is meaningful for internal windows only");
682 wset_combination_limit (w
, limit
);
686 DEFUN ("window-use-time", Fwindow_use_time
, Swindow_use_time
, 0, 1, 0,
687 doc
: /* Return the use time of window WINDOW.
688 WINDOW must be a live window and defaults to the selected one.
689 The window with the highest use time is the most recently selected
690 one. The window with the lowest use time is the least recently
694 return make_number (decode_live_window (window
)->use_time
);
697 DEFUN ("window-pixel-width", Fwindow_pixel_width
, Swindow_pixel_width
, 0, 1, 0,
698 doc
: /* Return the width of window WINDOW in pixels.
699 WINDOW must be a valid window and defaults to the selected one.
701 The return value includes the fringes and margins of WINDOW as well as
702 any vertical dividers or scroll bars belonging to WINDOW. If WINDOW is
703 an internal window, its pixel width is the width of the screen areas
704 spanned by its children. */)
707 return make_number (decode_valid_window (window
)->pixel_width
);
710 DEFUN ("window-pixel-height", Fwindow_pixel_height
, Swindow_pixel_height
, 0, 1, 0,
711 doc
: /* Return the height of window WINDOW in pixels.
712 WINDOW must be a valid window and defaults to the selected one.
714 The return value includes the mode line and header line and the bottom
715 divider, if any. If WINDOW is an internal window, its pixel height is
716 the height of the screen areas spanned by its children. */)
719 return make_number (decode_valid_window (window
)->pixel_height
);
722 DEFUN ("window-total-height", Fwindow_total_height
, Swindow_total_height
, 0, 2, 0,
723 doc
: /* Return the height of window WINDOW in lines.
724 WINDOW must be a valid window and defaults to the selected one.
726 The return value includes the heights of WINDOW's mode and header line
727 and its bottom divider, if any. If WINDOW is an internal window, the
728 total height is the height of the screen areas spanned by its children.
730 If WINDOW's pixel height is not an integral multiple of its frame's
731 character height, the number of lines occupied by WINDOW is rounded
732 internally. This is done in a way such that, if WINDOW is a parent
733 window, the sum of the total heights of all its children internally
734 equals the total height of WINDOW.
736 If the optional argument ROUND is `ceiling', return the smallest integer
737 larger than WINDOW's pixel height divided by the character height of
738 WINDOW's frame. ROUND `floor' means to return the largest integer
739 smaller than WINDOW's pixel height divided by the character height of
740 WINDOW's frame. Any other value of ROUND means to return the internal
741 total height of WINDOW. */)
742 (Lisp_Object window
, Lisp_Object round
)
744 struct window
*w
= decode_valid_window (window
);
746 if (! EQ (round
, Qfloor
) && ! EQ (round
, Qceiling
))
747 return make_number (w
->total_lines
);
750 int unit
= FRAME_LINE_HEIGHT (WINDOW_XFRAME (w
));
752 return make_number (EQ (round
, Qceiling
)
753 ? ((w
->pixel_height
+ unit
- 1) /unit
)
754 : (w
->pixel_height
/ unit
));
758 DEFUN ("window-total-width", Fwindow_total_width
, Swindow_total_width
, 0, 2, 0,
759 doc
: /* Return the total width of window WINDOW in columns.
760 WINDOW must be a valid window and defaults to the selected one.
762 The return value includes the widths of WINDOW's fringes, margins,
763 scroll bars and its right divider, if any. If WINDOW is an internal
764 window, the total width is the width of the screen areas spanned by its
767 If WINDOW's pixel width is not an integral multiple of its frame's
768 character width, the number of lines occupied by WINDOW is rounded
769 internally. This is done in a way such that, if WINDOW is a parent
770 window, the sum of the total widths of all its children internally
771 equals the total width of WINDOW.
773 If the optional argument ROUND is `ceiling', return the smallest integer
774 larger than WINDOW's pixel width divided by the character width of
775 WINDOW's frame. ROUND `floor' means to return the largest integer
776 smaller than WINDOW's pixel width divided by the character width of
777 WINDOW's frame. Any other value of ROUND means to return the internal
778 total width of WINDOW. */)
779 (Lisp_Object window
, Lisp_Object round
)
781 struct window
*w
= decode_valid_window (window
);
783 if (! EQ (round
, Qfloor
) && ! EQ (round
, Qceiling
))
784 return make_number (w
->total_cols
);
787 int unit
= FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w
));
789 return make_number (EQ (round
, Qceiling
)
790 ? ((w
->pixel_width
+ unit
- 1) /unit
)
791 : (w
->pixel_width
/ unit
));
795 DEFUN ("window-new-total", Fwindow_new_total
, Swindow_new_total
, 0, 1, 0,
796 doc
: /* Return the new total size of window WINDOW.
797 WINDOW must be a valid window and defaults to the selected one.
799 The new total size of WINDOW is the value set by the last call of
800 `set-window-new-total' for WINDOW. If it is valid, it will be shortly
801 installed as WINDOW's total height (see `window-total-height') or total
802 width (see `window-total-width'). */)
805 return decode_valid_window (window
)->new_total
;
808 DEFUN ("window-normal-size", Fwindow_normal_size
, Swindow_normal_size
, 0, 2, 0,
809 doc
: /* Return the normal height of window WINDOW.
810 WINDOW must be a valid window and defaults to the selected one.
811 If HORIZONTAL is non-nil, return the normal width of WINDOW.
813 The normal height of a frame's root window or a window that is
814 horizontally combined (a window that has a left or right sibling) is
815 1.0. The normal height of a window that is vertically combined (has a
816 sibling above or below) is the fraction of the window's height with
817 respect to its parent. The sum of the normal heights of all windows in a
818 vertical combination equals 1.0.
820 Similarly, the normal width of a frame's root window or a window that is
821 vertically combined equals 1.0. The normal width of a window that is
822 horizontally combined is the fraction of the window's width with respect
823 to its parent. The sum of the normal widths of all windows in a
824 horizontal combination equals 1.0.
826 The normal sizes of windows are used to restore the proportional sizes
827 of windows after they have been shrunk to their minimum sizes; for
828 example when a frame is temporarily made very small and afterwards gets
829 re-enlarged to its previous size. */)
830 (Lisp_Object window
, Lisp_Object horizontal
)
832 struct window
*w
= decode_valid_window (window
);
834 return NILP (horizontal
) ? w
->normal_lines
: w
->normal_cols
;
837 DEFUN ("window-new-normal", Fwindow_new_normal
, Swindow_new_normal
, 0, 1, 0,
838 doc
: /* Return new normal size of window WINDOW.
839 WINDOW must be a valid window and defaults to the selected one.
841 The new normal size of WINDOW is the value set by the last call of
842 `set-window-new-normal' for WINDOW. If valid, it will be shortly
843 installed as WINDOW's normal size (see `window-normal-size'). */)
846 return decode_valid_window (window
)->new_normal
;
849 DEFUN ("window-new-pixel", Fwindow_new_pixel
, Swindow_new_pixel
, 0, 1, 0,
850 doc
: /* Return new pixel size of window WINDOW.
851 WINDOW must be a valid window and defaults to the selected one.
853 The new pixel size of WINDOW is the value set by the last call of
854 `set-window-new-pixel' for WINDOW. If it is valid, it will be shortly
855 installed as WINDOW's pixel height (see `window-pixel-height') or pixel
856 width (see `window-pixel-width'). */)
859 return decode_valid_window (window
)->new_pixel
;
862 DEFUN ("window-pixel-left", Fwindow_pixel_left
, Swindow_pixel_left
, 0, 1, 0,
863 doc
: /* Return left pixel edge of window WINDOW.
864 WINDOW must be a valid window and defaults to the selected one. */)
867 return make_number (decode_valid_window (window
)->pixel_left
);
870 DEFUN ("window-pixel-top", Fwindow_pixel_top
, Swindow_pixel_top
, 0, 1, 0,
871 doc
: /* Return top pixel edge of window WINDOW.
872 WINDOW must be a valid window and defaults to the selected one. */)
875 return make_number (decode_valid_window (window
)->pixel_top
);
878 DEFUN ("window-left-column", Fwindow_left_column
, Swindow_left_column
, 0, 1, 0,
879 doc
: /* Return left column of window WINDOW.
880 This is the distance, in columns, between the left edge of WINDOW and
881 the left edge of the frame's window area. For instance, the return
882 value is 0 if there is no window to the left of WINDOW.
884 WINDOW must be a valid window and defaults to the selected one. */)
887 return make_number (decode_valid_window (window
)->left_col
);
890 DEFUN ("window-top-line", Fwindow_top_line
, Swindow_top_line
, 0, 1, 0,
891 doc
: /* Return top line of window WINDOW.
892 This is the distance, in lines, between the top of WINDOW and the top
893 of the frame's window area. For instance, the return value is 0 if
894 there is no window above WINDOW.
896 WINDOW must be a valid window and defaults to the selected one. */)
899 return make_number (decode_valid_window (window
)->top_line
);
902 /* Return the number of lines/pixels of W's body. Don't count any mode
903 or header line or horizontal divider of W. Rounds down to nearest
904 integer when not working pixelwise. */
906 window_body_height (struct window
*w
, bool pixelwise
)
908 int height
= (w
->pixel_height
909 - WINDOW_HEADER_LINE_HEIGHT (w
)
910 - (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w
)
911 ? WINDOW_SCROLL_BAR_AREA_HEIGHT (w
)
913 - WINDOW_MODE_LINE_HEIGHT (w
)
914 - WINDOW_BOTTOM_DIVIDER_WIDTH (w
));
916 /* Don't return a negative value. */
917 return max (pixelwise
919 : height
/ FRAME_LINE_HEIGHT (WINDOW_XFRAME (w
)),
923 /* Return the number of columns/pixels of W's body. Don't count columns
924 occupied by the scroll bar or the divider/vertical bar separating W
925 from its right sibling or margins. On window-systems don't count
926 fringes either. Round down to nearest integer when not working
929 window_body_width (struct window
*w
, bool pixelwise
)
931 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
933 int width
= (w
->pixel_width
934 - WINDOW_RIGHT_DIVIDER_WIDTH (w
)
935 - (WINDOW_HAS_VERTICAL_SCROLL_BAR (w
)
936 ? WINDOW_SCROLL_BAR_AREA_WIDTH (w
)
937 : (/* A vertical bar is either 1 or 0. */
939 && !WINDOW_RIGHTMOST_P (w
)
940 && !WINDOW_RIGHT_DIVIDER_WIDTH (w
)))
941 - WINDOW_MARGINS_WIDTH (w
)
942 - (FRAME_WINDOW_P (f
)
943 ? WINDOW_FRINGES_WIDTH (w
)
946 /* Don't return a negative value. */
947 return max (pixelwise
949 : width
/ FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w
)),
953 DEFUN ("window-body-height", Fwindow_body_height
, Swindow_body_height
, 0, 2, 0,
954 doc
: /* Return the height of WINDOW's text area.
955 WINDOW must be a live window and defaults to the selected one. Optional
956 argument PIXELWISE non-nil means return the height of WINDOW's text area
957 in pixels. The return value does not include the mode line or header
958 line or any horizontal divider.
960 If PIXELWISE is nil, return the largest integer smaller than WINDOW's
961 pixel height divided by the character height of WINDOW's frame. This
962 means that if a line at the bottom of the text area is only partially
963 visible, that line is not counted. */)
964 (Lisp_Object window
, Lisp_Object pixelwise
)
966 return make_number (window_body_height (decode_live_window (window
),
970 DEFUN ("window-body-width", Fwindow_body_width
, Swindow_body_width
, 0, 2, 0,
971 doc
: /* Return the width of WINDOW's text area.
972 WINDOW must be a live window and defaults to the selected one. Optional
973 argument PIXELWISE non-nil means return the width in pixels. The return
974 value does not include any vertical dividers, fringes or marginal areas,
977 If PIXELWISE is nil, return the largest integer smaller than WINDOW's
978 pixel width divided by the character width of WINDOW's frame. This
979 means that if a column at the right of the text area is only partially
980 visible, that column is not counted.
982 Note that the returned value includes the column reserved for the
983 continuation glyph. */)
984 (Lisp_Object window
, Lisp_Object pixelwise
)
986 return make_number (window_body_width (decode_live_window (window
),
990 DEFUN ("window-mode-line-height", Fwindow_mode_line_height
,
991 Swindow_mode_line_height
, 0, 1, 0,
992 doc
: /* Return the height in pixels of WINDOW's mode-line.
993 WINDOW must be a live window and defaults to the selected one. */)
996 return (make_number (WINDOW_MODE_LINE_HEIGHT (decode_live_window (window
))));
999 DEFUN ("window-header-line-height", Fwindow_header_line_height
,
1000 Swindow_header_line_height
, 0, 1, 0,
1001 doc
: /* Return the height in pixels of WINDOW's header-line.
1002 WINDOW must be a live window and defaults to the selected one. */)
1003 (Lisp_Object window
)
1005 return (make_number (WINDOW_HEADER_LINE_HEIGHT (decode_live_window (window
))));
1008 DEFUN ("window-right-divider-width", Fwindow_right_divider_width
,
1009 Swindow_right_divider_width
, 0, 1, 0,
1010 doc
: /* Return the width in pixels of WINDOW's right divider.
1011 WINDOW must be a live window and defaults to the selected one. */)
1012 (Lisp_Object window
)
1014 return (make_number (WINDOW_RIGHT_DIVIDER_WIDTH (decode_live_window (window
))));
1017 DEFUN ("window-bottom-divider-width", Fwindow_bottom_divider_width
,
1018 Swindow_bottom_divider_width
, 0, 1, 0,
1019 doc
: /* Return the width in pixels of WINDOW's bottom divider.
1020 WINDOW must be a live window and defaults to the selected one. */)
1021 (Lisp_Object window
)
1023 return (make_number (WINDOW_BOTTOM_DIVIDER_WIDTH (decode_live_window (window
))));
1026 DEFUN ("window-scroll-bar-width", Fwindow_scroll_bar_width
,
1027 Swindow_scroll_bar_width
, 0, 1, 0,
1028 doc
: /* Return the width in pixels of WINDOW's vertical scrollbar.
1029 WINDOW must be a live window and defaults to the selected one. */)
1030 (Lisp_Object window
)
1032 return (make_number (WINDOW_SCROLL_BAR_AREA_WIDTH (decode_live_window (window
))));
1035 DEFUN ("window-scroll-bar-height", Fwindow_scroll_bar_height
,
1036 Swindow_scroll_bar_height
, 0, 1, 0,
1037 doc
: /* Return the height in pixels of WINDOW's horizontal scrollbar.
1038 WINDOW must be a live window and defaults to the selected one. */)
1039 (Lisp_Object window
)
1041 return (make_number (WINDOW_SCROLL_BAR_AREA_HEIGHT (decode_live_window (window
))));
1044 DEFUN ("window-hscroll", Fwindow_hscroll
, Swindow_hscroll
, 0, 1, 0,
1045 doc
: /* Return the number of columns by which WINDOW is scrolled from left margin.
1046 WINDOW must be a live window and defaults to the selected one. */)
1047 (Lisp_Object window
)
1049 return make_number (decode_live_window (window
)->hscroll
);
1052 /* Set W's horizontal scroll amount to HSCROLL clipped to a reasonable
1053 range, returning the new amount as a fixnum. */
1055 set_window_hscroll (struct window
*w
, EMACS_INT hscroll
)
1057 /* Horizontal scrolling has problems with large scroll amounts.
1058 It's too slow with long lines, and even with small lines the
1059 display can be messed up. For now, though, impose only the limits
1060 required by the internal representation: horizontal scrolling must
1061 fit in fixnum (since it's visible to Elisp) and into ptrdiff_t
1062 (since it's stored in a ptrdiff_t). */
1063 ptrdiff_t hscroll_max
= min (MOST_POSITIVE_FIXNUM
, PTRDIFF_MAX
);
1064 ptrdiff_t new_hscroll
= clip_to_bounds (0, hscroll
, hscroll_max
);
1066 /* Prevent redisplay shortcuts when changing the hscroll. */
1067 if (w
->hscroll
!= new_hscroll
)
1068 XBUFFER (w
->contents
)->prevent_redisplay_optimizations_p
= true;
1070 w
->hscroll
= new_hscroll
;
1071 w
->suspend_auto_hscroll
= true;
1073 return make_number (new_hscroll
);
1076 DEFUN ("set-window-hscroll", Fset_window_hscroll
, Sset_window_hscroll
, 2, 2, 0,
1077 doc
: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
1078 WINDOW must be a live window and defaults to the selected one.
1079 Clip the number to a reasonable value if out of range.
1080 Return the new number. NCOL should be zero or positive.
1082 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
1083 window so that the location of point moves off-window. */)
1084 (Lisp_Object window
, Lisp_Object ncol
)
1086 CHECK_NUMBER (ncol
);
1087 return set_window_hscroll (decode_live_window (window
), XINT (ncol
));
1090 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger
,
1091 Swindow_redisplay_end_trigger
, 0, 1, 0,
1092 doc
: /* Return WINDOW's redisplay end trigger value.
1093 WINDOW must be a live window and defaults to the selected one.
1094 See `set-window-redisplay-end-trigger' for more information. */)
1095 (Lisp_Object window
)
1097 return decode_live_window (window
)->redisplay_end_trigger
;
1100 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger
,
1101 Sset_window_redisplay_end_trigger
, 2, 2, 0,
1102 doc
: /* Set WINDOW's redisplay end trigger value to VALUE.
1103 WINDOW must be a live window and defaults to the selected one. VALUE
1104 should be a buffer position (typically a marker) or nil. If it is a
1105 buffer position, then if redisplay in WINDOW reaches a position beyond
1106 VALUE, the functions in `redisplay-end-trigger-functions' are called
1107 with two arguments: WINDOW, and the end trigger value. Afterwards the
1108 end-trigger value is reset to nil. */)
1109 (register Lisp_Object window
, Lisp_Object value
)
1111 wset_redisplay_end_trigger (decode_live_window (window
), value
);
1115 /* Test if the character at column X, row Y is within window W.
1116 If it is not, return ON_NOTHING;
1117 if it is on the window's vertical divider, return
1119 if it is on the window's horizontal divider, return
1121 if it is in the window's text area, return ON_TEXT;
1122 if it is on the window's modeline, return ON_MODE_LINE;
1123 if it is on the border between the window and its right sibling,
1124 return ON_VERTICAL_BORDER;
1125 if it is on a scroll bar, return ON_SCROLL_BAR;
1126 if it is on the window's top line, return ON_HEADER_LINE;
1127 if it is in left or right fringe of the window,
1128 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
1129 if it is in the marginal area to the left/right of the window,
1130 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
1132 X and Y are frame relative pixel coordinates. */
1134 static enum window_part
1135 coordinates_in_window (register struct window
*w
, int x
, int y
)
1137 struct frame
*f
= XFRAME (WINDOW_FRAME (w
));
1138 enum window_part part
;
1139 int ux
= FRAME_COLUMN_WIDTH (f
);
1140 int left_x
= WINDOW_LEFT_EDGE_X (w
);
1141 int right_x
= WINDOW_RIGHT_EDGE_X (w
);
1142 int top_y
= WINDOW_TOP_EDGE_Y (w
);
1143 int bottom_y
= WINDOW_BOTTOM_EDGE_Y (w
);
1144 /* The width of the area where the vertical line can be dragged.
1145 (Between mode lines for instance. */
1146 int grabbable_width
= ux
;
1147 int lmargin_width
, rmargin_width
, text_left
, text_right
;
1149 /* Outside any interesting row or column? */
1150 if (y
< top_y
|| y
>= bottom_y
|| x
< left_x
|| x
>= right_x
)
1153 /* On the horizontal window divider (which prevails the vertical
1155 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w
) > 0
1156 && y
>= (bottom_y
- WINDOW_BOTTOM_DIVIDER_WIDTH (w
))
1158 return ON_BOTTOM_DIVIDER
;
1159 /* On vertical window divider? */
1160 else if (!WINDOW_RIGHTMOST_P (w
)
1161 && WINDOW_RIGHT_DIVIDER_WIDTH (w
) > 0
1162 && x
>= right_x
- WINDOW_RIGHT_DIVIDER_WIDTH (w
)
1164 return ON_RIGHT_DIVIDER
;
1165 /* On the horizontal scroll bar? (Including the empty space at its
1167 else if ((WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w
)
1169 - WINDOW_SCROLL_BAR_AREA_HEIGHT (w
)
1170 - CURRENT_MODE_LINE_HEIGHT (w
)
1171 - WINDOW_BOTTOM_DIVIDER_WIDTH (w
))
1173 - CURRENT_MODE_LINE_HEIGHT (w
)
1174 - WINDOW_BOTTOM_DIVIDER_WIDTH (w
))))
1175 return ON_HORIZONTAL_SCROLL_BAR
;
1176 /* On the mode or header line? */
1177 else if ((WINDOW_WANTS_MODELINE_P (w
)
1179 - CURRENT_MODE_LINE_HEIGHT (w
)
1180 - WINDOW_BOTTOM_DIVIDER_WIDTH (w
))
1181 && y
<= bottom_y
- WINDOW_BOTTOM_DIVIDER_WIDTH (w
)
1182 && (part
= ON_MODE_LINE
))
1183 || (WINDOW_WANTS_HEADER_LINE_P (w
)
1184 && y
< top_y
+ CURRENT_HEADER_LINE_HEIGHT (w
)
1185 && (part
= ON_HEADER_LINE
)))
1187 /* If it's under/over the scroll bar portion of the mode/header
1188 line, say it's on the vertical line. That's to be able to
1189 resize windows horizontally in case we're using toolkit scroll
1190 bars. Note: If scrollbars are on the left, the window that
1191 must be eventually resized is that on the left of WINDOW. */
1192 if ((WINDOW_RIGHT_DIVIDER_WIDTH (w
) == 0)
1193 && ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
1194 && !WINDOW_LEFTMOST_P (w
)
1195 && eabs (x
- left_x
) < grabbable_width
)
1196 || (!WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w
)
1197 && !WINDOW_RIGHTMOST_P (w
)
1198 && eabs (x
- right_x
) < grabbable_width
)))
1199 return ON_VERTICAL_BORDER
;
1204 /* In what's below, we subtract 1 when computing right_x because we
1205 want the rightmost pixel, which is given by left_pixel+width-1. */
1206 if (w
->pseudo_window_p
)
1209 right_x
= WINDOW_PIXEL_WIDTH (w
) - 1;
1213 left_x
= WINDOW_BOX_LEFT_EDGE_X (w
);
1214 right_x
= WINDOW_BOX_RIGHT_EDGE_X (w
) - 1;
1217 /* Outside any interesting column? */
1218 if (x
< left_x
|| x
> right_x
)
1219 return ON_VERTICAL_SCROLL_BAR
;
1221 lmargin_width
= window_box_width (w
, LEFT_MARGIN_AREA
);
1222 rmargin_width
= window_box_width (w
, RIGHT_MARGIN_AREA
);
1224 text_left
= window_box_left (w
, TEXT_AREA
);
1225 text_right
= text_left
+ window_box_width (w
, TEXT_AREA
);
1227 if (FRAME_WINDOW_P (f
))
1229 if (!w
->pseudo_window_p
1230 && WINDOW_RIGHT_DIVIDER_WIDTH (w
) == 0
1231 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w
)
1232 && !WINDOW_RIGHTMOST_P (w
)
1233 && (eabs (x
- right_x
) < grabbable_width
))
1234 return ON_VERTICAL_BORDER
;
1236 /* Need to say "x > right_x" rather than >=, since on character
1237 terminals, the vertical line's x coordinate is right_x. */
1238 else if (!w
->pseudo_window_p
1239 && WINDOW_RIGHT_DIVIDER_WIDTH (w
) == 0
1240 && !WINDOW_RIGHTMOST_P (w
)
1241 /* Why check ux if we are not the rightmost window? Also
1242 shouldn't a pseudo window always be rightmost? */
1243 && x
> right_x
- ux
)
1244 return ON_VERTICAL_BORDER
;
1248 if (lmargin_width
> 0
1249 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1250 ? (x
>= left_x
+ WINDOW_LEFT_FRINGE_WIDTH (w
))
1251 : (x
< left_x
+ lmargin_width
)))
1252 return ON_LEFT_MARGIN
;
1254 return ON_LEFT_FRINGE
;
1257 if (x
>= text_right
)
1259 if (rmargin_width
> 0
1260 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
)
1261 ? (x
< right_x
- WINDOW_RIGHT_FRINGE_WIDTH (w
))
1262 : (x
>= right_x
- rmargin_width
)))
1263 return ON_RIGHT_MARGIN
;
1265 return ON_RIGHT_FRINGE
;
1268 /* Everything special ruled out - must be on text area */
1272 /* Take X is the frame-relative pixel x-coordinate, and return the
1273 x-coordinate relative to part PART of window W. */
1275 window_relative_x_coord (struct window
*w
, enum window_part part
, int x
)
1277 int left_x
= (w
->pseudo_window_p
) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w
);
1282 return x
- window_box_left (w
, TEXT_AREA
);
1284 case ON_HEADER_LINE
:
1286 case ON_LEFT_FRINGE
:
1289 case ON_RIGHT_FRINGE
:
1290 return x
- left_x
- WINDOW_LEFT_FRINGE_WIDTH (w
);
1292 case ON_LEFT_MARGIN
:
1294 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1295 ? WINDOW_LEFT_FRINGE_WIDTH (w
) : 0));
1297 case ON_RIGHT_MARGIN
:
1299 - ((w
->pseudo_window_p
)
1300 ? WINDOW_PIXEL_WIDTH (w
)
1301 : WINDOW_BOX_RIGHT_EDGE_X (w
))
1302 + window_box_width (w
, RIGHT_MARGIN_AREA
)
1303 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
))
1304 ? WINDOW_RIGHT_FRINGE_WIDTH (w
) : 0));
1307 case ON_VERTICAL_BORDER
:
1308 case ON_VERTICAL_SCROLL_BAR
:
1309 case ON_HORIZONTAL_SCROLL_BAR
:
1310 case ON_RIGHT_DIVIDER
:
1311 case ON_BOTTOM_DIVIDER
:
1320 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p
,
1321 Scoordinates_in_window_p
, 2, 2, 0,
1322 doc
: /* Return non-nil if COORDINATES are in WINDOW.
1323 WINDOW must be a live window and defaults to the selected one.
1324 COORDINATES is a cons of the form (X . Y), X and Y being distances
1325 measured in characters from the upper-left corner of the frame.
1326 (0 . 0) denotes the character in the upper left corner of the
1328 If COORDINATES are in the text portion of WINDOW,
1329 the coordinates relative to the window are returned.
1330 If they are in the bottom divider of WINDOW, `bottom-divider' is returned.
1331 If they are in the right divider of WINDOW, `right-divider' is returned.
1332 If they are in the mode line of WINDOW, `mode-line' is returned.
1333 If they are in the header line of WINDOW, `header-line' is returned.
1334 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1335 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1336 If they are on the border between WINDOW and its right sibling,
1337 `vertical-line' is returned.
1338 If they are in the windows's left or right marginal areas, `left-margin'\n\
1339 or `right-margin' is returned. */)
1340 (register Lisp_Object coordinates
, Lisp_Object window
)
1347 w
= decode_live_window (window
);
1348 f
= XFRAME (w
->frame
);
1349 CHECK_CONS (coordinates
);
1350 lx
= Fcar (coordinates
);
1351 ly
= Fcdr (coordinates
);
1352 CHECK_NUMBER_OR_FLOAT (lx
);
1353 CHECK_NUMBER_OR_FLOAT (ly
);
1354 x
= FRAME_PIXEL_X_FROM_CANON_X (f
, lx
) + FRAME_INTERNAL_BORDER_WIDTH (f
);
1355 y
= FRAME_PIXEL_Y_FROM_CANON_Y (f
, ly
) + FRAME_INTERNAL_BORDER_WIDTH (f
);
1357 switch (coordinates_in_window (w
, x
, y
))
1363 /* Convert X and Y to window relative pixel coordinates, and
1364 return the canonical char units. */
1365 x
-= window_box_left (w
, TEXT_AREA
);
1366 y
-= WINDOW_TOP_EDGE_Y (w
);
1367 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f
, x
),
1368 FRAME_CANON_Y_FROM_PIXEL_Y (f
, y
));
1373 case ON_VERTICAL_BORDER
:
1374 return Qvertical_line
;
1376 case ON_HEADER_LINE
:
1377 return Qheader_line
;
1379 case ON_LEFT_FRINGE
:
1380 return Qleft_fringe
;
1382 case ON_RIGHT_FRINGE
:
1383 return Qright_fringe
;
1385 case ON_LEFT_MARGIN
:
1386 return Qleft_margin
;
1388 case ON_RIGHT_MARGIN
:
1389 return Qright_margin
;
1391 case ON_VERTICAL_SCROLL_BAR
:
1392 /* Historically we are supposed to return nil in this case. */
1395 case ON_HORIZONTAL_SCROLL_BAR
:
1398 case ON_RIGHT_DIVIDER
:
1399 return Qright_divider
;
1401 case ON_BOTTOM_DIVIDER
:
1402 return Qbottom_divider
;
1410 /* Callback for foreach_window, used in window_from_coordinates.
1411 Check if window W contains coordinates specified by USER_DATA which
1412 is actually a pointer to a struct check_window_data CW.
1414 Check if window W contains coordinates *CW->x and *CW->y. If it
1415 does, return W in *CW->window, as Lisp_Object, and return in
1416 *CW->part the part of the window under coordinates *X,*Y. Return
1417 false from this function to stop iterating over windows. */
1419 struct check_window_data
1421 Lisp_Object
*window
;
1423 enum window_part
*part
;
1427 check_window_containing (struct window
*w
, void *user_data
)
1429 struct check_window_data
*cw
= user_data
;
1430 enum window_part found
= coordinates_in_window (w
, cw
->x
, cw
->y
);
1431 if (found
== ON_NOTHING
)
1436 XSETWINDOW (*cw
->window
, w
);
1442 /* Find the window containing frame-relative pixel position X/Y and
1443 return it as a Lisp_Object.
1445 If X, Y is on one of the window's special `window_part' elements,
1446 set *PART to the id of that element.
1448 If there is no window under X, Y return nil and leave *PART
1449 unmodified. TOOL_BAR_P means detect tool-bar windows.
1451 This function was previously implemented with a loop cycling over
1452 windows with Fnext_window, and starting with the frame's selected
1453 window. It turned out that this doesn't work with an
1454 implementation of next_window using Vwindow_list, because
1455 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1456 tree of F when this function is called asynchronously from
1457 note_mouse_highlight. The original loop didn't terminate in this
1461 window_from_coordinates (struct frame
*f
, int x
, int y
,
1462 enum window_part
*part
, bool tool_bar_p
)
1465 struct check_window_data cw
;
1466 enum window_part dummy
;
1472 cw
.window
= &window
, cw
.x
= x
, cw
.y
= y
; cw
.part
= part
;
1473 foreach_window (f
, check_window_containing
, &cw
);
1475 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
1476 /* If not found above, see if it's in the tool bar window, if a tool
1480 && WINDOWP (f
->tool_bar_window
)
1481 && WINDOW_TOTAL_LINES (XWINDOW (f
->tool_bar_window
)) > 0
1482 && (coordinates_in_window (XWINDOW (f
->tool_bar_window
), x
, y
)
1486 window
= f
->tool_bar_window
;
1493 DEFUN ("window-at", Fwindow_at
, Swindow_at
, 2, 3, 0,
1494 doc
: /* Return window containing coordinates X and Y on FRAME.
1495 FRAME must be a live frame and defaults to the selected one.
1496 The top left corner of the frame is considered to be row 0,
1498 (Lisp_Object x
, Lisp_Object y
, Lisp_Object frame
)
1500 struct frame
*f
= decode_live_frame (frame
);
1502 /* Check that arguments are integers or floats. */
1503 CHECK_NUMBER_OR_FLOAT (x
);
1504 CHECK_NUMBER_OR_FLOAT (y
);
1506 return window_from_coordinates (f
,
1507 (FRAME_PIXEL_X_FROM_CANON_X (f
, x
)
1508 + FRAME_INTERNAL_BORDER_WIDTH (f
)),
1509 (FRAME_PIXEL_Y_FROM_CANON_Y (f
, y
)
1510 + FRAME_INTERNAL_BORDER_WIDTH (f
)),
1514 DEFUN ("window-point", Fwindow_point
, Swindow_point
, 0, 1, 0,
1515 doc
: /* Return current value of point in WINDOW.
1516 WINDOW must be a live window and defaults to the selected one.
1518 For a nonselected window, this is the value point would have if that
1519 window were selected.
1521 Note that, when WINDOW is selected, the value returned is the same as
1522 that returned by `point' for WINDOW's buffer. It would be more strictly
1523 correct to return the top-level value of `point', outside of any
1524 `save-excursion' forms. But that is hard to define. */)
1525 (Lisp_Object window
)
1527 register struct window
*w
= decode_live_window (window
);
1529 if (w
== XWINDOW (selected_window
))
1530 return make_number (BUF_PT (XBUFFER (w
->contents
)));
1532 return Fmarker_position (w
->pointm
);
1535 DEFUN ("window-old-point", Fwindow_old_point
, Swindow_old_point
, 0, 1, 0,
1536 doc
: /* Return old value of point in WINDOW.
1537 WINDOW must be a live window and defaults to the selected one. */)
1538 (Lisp_Object window
)
1540 return Fmarker_position (decode_live_window (window
)->old_pointm
);
1543 DEFUN ("window-start", Fwindow_start
, Swindow_start
, 0, 1, 0,
1544 doc
: /* Return position at which display currently starts in WINDOW.
1545 WINDOW must be a live window and defaults to the selected one.
1546 This is updated by redisplay or by calling `set-window-start'. */)
1547 (Lisp_Object window
)
1549 return Fmarker_position (decode_live_window (window
)->start
);
1552 /* This is text temporarily removed from the doc string below.
1554 This function returns nil if the position is not currently known.
1555 That happens when redisplay is preempted and doesn't finish.
1556 If in that case you want to compute where the end of the window would
1557 have been if redisplay had finished, do this:
1559 (goto-char (window-start window))
1560 (vertical-motion (1- (window-height window)) window)
1563 DEFUN ("window-end", Fwindow_end
, Swindow_end
, 0, 2, 0,
1564 doc
: /* Return position at which display currently ends in WINDOW.
1565 WINDOW must be a live window and defaults to the selected one.
1566 This is updated by redisplay, when it runs to completion.
1567 Simply changing the buffer text or setting `window-start'
1568 does not update this value.
1569 Return nil if there is no recorded value. (This can happen if the
1570 last redisplay of WINDOW was preempted, and did not finish.)
1571 If UPDATE is non-nil, compute the up-to-date position
1572 if it isn't already recorded. */)
1573 (Lisp_Object window
, Lisp_Object update
)
1576 struct window
*w
= decode_live_window (window
);
1585 && (windows_or_buffers_changed
1586 || !w
->window_end_valid
1588 || b
->prevent_redisplay_optimizations_p
1589 || window_outdated (w
))
1590 /* Don't call display routines if we didn't yet create any real
1591 frames, because the glyph matrices are not yet allocated in
1592 that case. This could happen in some code that runs in the
1593 daemon during initialization (e.g., see bug#20565). */
1594 && !(noninteractive
|| FRAME_INITIAL_P (WINDOW_XFRAME (w
))))
1596 struct text_pos startp
;
1598 struct buffer
*old_buffer
= NULL
;
1599 void *itdata
= NULL
;
1601 /* Cannot use Fvertical_motion because that function doesn't
1602 cope with variable-height lines. */
1603 if (b
!= current_buffer
)
1605 old_buffer
= current_buffer
;
1606 set_buffer_internal (b
);
1609 /* In case W->start is out of the range, use something
1610 reasonable. This situation occurred when loading a file with
1611 `-l' containing a call to `rmail' with subsequent other
1612 commands. At the end, W->start happened to be BEG, while
1613 rmail had already narrowed the buffer. */
1614 CLIP_TEXT_POS_FROM_MARKER (startp
, w
->start
);
1616 itdata
= bidi_shelve_cache ();
1617 start_display (&it
, w
, startp
);
1618 move_it_vertically (&it
, window_box_height (w
));
1619 if (it
.current_y
< it
.last_visible_y
)
1620 move_it_past_eol (&it
);
1621 value
= make_number (IT_CHARPOS (it
));
1622 bidi_unshelve_cache (itdata
, false);
1625 set_buffer_internal (old_buffer
);
1628 XSETINT (value
, BUF_Z (b
) - w
->window_end_pos
);
1633 DEFUN ("set-window-point", Fset_window_point
, Sset_window_point
, 2, 2, 0,
1634 doc
: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1635 WINDOW must be a live window and defaults to the selected one.
1637 (Lisp_Object window
, Lisp_Object pos
)
1639 register struct window
*w
= decode_live_window (window
);
1641 /* Type of POS is checked by Fgoto_char or set_marker_restricted ... */
1643 if (w
== XWINDOW (selected_window
))
1645 if (XBUFFER (w
->contents
) == current_buffer
)
1649 struct buffer
*old_buffer
= current_buffer
;
1651 /* ... but here we want to catch type error before buffer change. */
1652 CHECK_NUMBER_COERCE_MARKER (pos
);
1653 set_buffer_internal (XBUFFER (w
->contents
));
1655 set_buffer_internal (old_buffer
);
1660 set_marker_restricted (w
->pointm
, pos
, w
->contents
);
1661 /* We have to make sure that redisplay updates the window to show
1662 the new value of point. */
1669 DEFUN ("set-window-start", Fset_window_start
, Sset_window_start
, 2, 3, 0,
1670 doc
: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1671 WINDOW must be a live window and defaults to the selected one. Return
1672 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1673 overriding motion of point in order to display at this exact start. */)
1674 (Lisp_Object window
, Lisp_Object pos
, Lisp_Object noforce
)
1676 register struct window
*w
= decode_live_window (window
);
1678 set_marker_restricted (w
->start
, pos
, w
->contents
);
1679 /* This is not right, but much easier than doing what is right. */
1680 w
->start_at_line_beg
= false;
1682 w
->force_start
= true;
1683 wset_update_mode_line (w
);
1685 w
->window_end_valid
= false;
1691 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p
,
1692 Spos_visible_in_window_p
, 0, 3, 0,
1693 doc
: /* Return non-nil if position POS is currently on the frame in WINDOW.
1694 WINDOW must be a live window and defaults to the selected one.
1696 Return nil if that position is scrolled vertically out of view. If a
1697 character is only partially visible, nil is returned, unless the
1698 optional argument PARTIALLY is non-nil. If POS is only out of view
1699 because of horizontal scrolling, return non-nil. If POS is t, it
1700 specifies either the first position displayed on the last visible
1701 screen line in WINDOW, or the end-of-buffer position, whichever comes
1702 first. POS defaults to point in WINDOW; WINDOW defaults to the
1705 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1706 the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1707 where X and Y are the pixel coordinates relative to the top left corner
1708 of the window. The remaining elements are omitted if the character after
1709 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1710 off-window at the top and bottom of the screen line ("row") containing
1711 POS, ROWH is the visible height of that row, and VPOS is the row number
1713 (Lisp_Object pos
, Lisp_Object window
, Lisp_Object partially
)
1718 struct text_pos top
;
1719 Lisp_Object in_window
= Qnil
;
1720 int rtop
, rbot
, rowh
, vpos
;
1721 bool fully_p
= true;
1724 w
= decode_live_window (window
);
1725 buf
= XBUFFER (w
->contents
);
1726 SET_TEXT_POS_FROM_MARKER (top
, w
->start
);
1730 else if (!NILP (pos
))
1732 CHECK_NUMBER_COERCE_MARKER (pos
);
1733 posint
= XINT (pos
);
1735 else if (w
== XWINDOW (selected_window
))
1738 posint
= marker_position (w
->pointm
);
1740 /* If position is above window start or outside buffer boundaries,
1741 or if window start is out of range, position is not visible. */
1743 || (posint
>= CHARPOS (top
) && posint
<= BUF_ZV (buf
)))
1744 && CHARPOS (top
) >= BUF_BEGV (buf
)
1745 && CHARPOS (top
) <= BUF_ZV (buf
)
1746 && pos_visible_p (w
, posint
, &x
, &y
, &rtop
, &rbot
, &rowh
, &vpos
))
1748 fully_p
= !rtop
&& !rbot
;
1749 if (!NILP (partially
) || fully_p
)
1753 if (!NILP (in_window
) && !NILP (partially
))
1755 Lisp_Object part
= Qnil
;
1757 part
= list4i (rtop
, rbot
, rowh
, vpos
);
1758 in_window
= Fcons (make_number (x
),
1759 Fcons (make_number (y
), part
));
1765 DEFUN ("window-line-height", Fwindow_line_height
,
1766 Swindow_line_height
, 0, 2, 0,
1767 doc
: /* Return height in pixels of text line LINE in window WINDOW.
1768 WINDOW must be a live window and defaults to the selected one.
1770 Return height of current line if LINE is omitted or nil. Return height of
1771 header or mode line if LINE is `header-line' or `mode-line'.
1772 Otherwise, LINE is a text line number starting from 0. A negative number
1773 counts from the end of the window.
1775 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1776 in pixels of the visible part of the line, VPOS and YPOS are the
1777 vertical position in lines and pixels of the line, relative to the top
1778 of the first text line, and OFFBOT is the number of off-window pixels at
1779 the bottom of the text line. If there are off-window pixels at the top
1780 of the (first) text line, YPOS is negative.
1782 Return nil if window display is not up-to-date. In that case, use
1783 `pos-visible-in-window-p' to obtain the information. */)
1784 (Lisp_Object line
, Lisp_Object window
)
1786 register struct window
*w
;
1787 register struct buffer
*b
;
1788 struct glyph_row
*row
, *end_row
;
1792 w
= decode_live_window (window
);
1794 if (noninteractive
|| w
->pseudo_window_p
)
1797 CHECK_BUFFER (w
->contents
);
1798 b
= XBUFFER (w
->contents
);
1800 /* Fail if current matrix is not up-to-date. */
1801 if (!w
->window_end_valid
1802 || windows_or_buffers_changed
1804 || b
->prevent_redisplay_optimizations_p
1805 || window_outdated (w
))
1811 if (i
< 0 || i
>= w
->current_matrix
->nrows
1812 || (row
= MATRIX_ROW (w
->current_matrix
, i
), !row
->enabled_p
))
1814 max_y
= window_text_bottom_y (w
);
1818 if (EQ (line
, Qheader_line
))
1820 if (!WINDOW_WANTS_HEADER_LINE_P (w
))
1822 row
= MATRIX_HEADER_LINE_ROW (w
->current_matrix
);
1823 return row
->enabled_p
? list4i (row
->height
, 0, 0, 0) : Qnil
;
1826 if (EQ (line
, Qmode_line
))
1828 row
= MATRIX_MODE_LINE_ROW (w
->current_matrix
);
1829 return (row
->enabled_p
?
1830 list4i (row
->height
,
1831 0, /* not accurate */
1832 (WINDOW_HEADER_LINE_HEIGHT (w
)
1833 + window_text_bottom_y (w
)),
1838 CHECK_NUMBER (line
);
1841 row
= MATRIX_FIRST_TEXT_ROW (w
->current_matrix
);
1842 end_row
= MATRIX_BOTTOM_TEXT_ROW (w
->current_matrix
, w
);
1843 max_y
= window_text_bottom_y (w
);
1846 while ((n
< 0 || i
< n
)
1847 && row
<= end_row
&& row
->enabled_p
1848 && row
->y
+ row
->height
< max_y
)
1851 if (row
> end_row
|| !row
->enabled_p
)
1863 crop
= max (0, (row
->y
+ row
->height
) - max_y
);
1864 return list4i (row
->height
+ min (0, row
->y
) - crop
, i
, row
->y
, crop
);
1867 DEFUN ("window-dedicated-p", Fwindow_dedicated_p
, Swindow_dedicated_p
,
1869 doc
: /* Return non-nil when WINDOW is dedicated to its buffer.
1870 More precisely, return the value assigned by the last call of
1871 `set-window-dedicated-p' for WINDOW. Return nil if that function was
1872 never called with WINDOW as its argument, or the value set by that
1873 function was internally reset since its last call. WINDOW must be a
1874 live window and defaults to the selected one.
1876 When a window is dedicated to its buffer, `display-buffer' will refrain
1877 from displaying another buffer in it. `get-lru-window' and
1878 `get-largest-window' treat dedicated windows specially.
1879 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
1880 `kill-buffer' can delete a dedicated window and the containing frame.
1882 Functions like `set-window-buffer' may change the buffer displayed by a
1883 window, unless that window is "strongly" dedicated to its buffer, that
1884 is the value returned by `window-dedicated-p' is t. */)
1885 (Lisp_Object window
)
1887 return decode_live_window (window
)->dedicated
;
1890 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p
,
1891 Sset_window_dedicated_p
, 2, 2, 0,
1892 doc
: /* Mark WINDOW as dedicated according to FLAG.
1893 WINDOW must be a live window and defaults to the selected one. FLAG
1894 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
1895 mark WINDOW as non-dedicated. Return FLAG.
1897 When a window is dedicated to its buffer, `display-buffer' will refrain
1898 from displaying another buffer in it. `get-lru-window' and
1899 `get-largest-window' treat dedicated windows specially.
1900 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
1901 `quit-restore-window' and `kill-buffer' can delete a dedicated window
1902 and the containing frame.
1904 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
1905 its buffer. Functions like `set-window-buffer' may change the buffer
1906 displayed by a window, unless that window is strongly dedicated to its
1907 buffer. If and when `set-window-buffer' displays another buffer in a
1908 window, it also makes sure that the window is no more dedicated. */)
1909 (Lisp_Object window
, Lisp_Object flag
)
1911 wset_dedicated (decode_live_window (window
), flag
);
1915 DEFUN ("window-prev-buffers", Fwindow_prev_buffers
, Swindow_prev_buffers
,
1917 doc
: /* Return buffers previously shown in WINDOW.
1918 WINDOW must be a live window and defaults to the selected one.
1920 The return value is a list of elements (BUFFER WINDOW-START POS),
1921 where BUFFER is a buffer, WINDOW-START is the start position of the
1922 window for that buffer, and POS is a window-specific point value. */)
1923 (Lisp_Object window
)
1925 return decode_live_window (window
)->prev_buffers
;
1928 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers
,
1929 Sset_window_prev_buffers
, 2, 2, 0,
1930 doc
: /* Set WINDOW's previous buffers to PREV-BUFFERS.
1931 WINDOW must be a live window and defaults to the selected one.
1933 PREV-BUFFERS should be a list of elements (BUFFER WINDOW-START POS),
1934 where BUFFER is a buffer, WINDOW-START is the start position of the
1935 window for that buffer, and POS is a window-specific point value. */)
1936 (Lisp_Object window
, Lisp_Object prev_buffers
)
1938 wset_prev_buffers (decode_live_window (window
), prev_buffers
);
1939 return prev_buffers
;
1942 DEFUN ("window-next-buffers", Fwindow_next_buffers
, Swindow_next_buffers
,
1944 doc
: /* Return list of buffers recently re-shown in WINDOW.
1945 WINDOW must be a live window and defaults to the selected one. */)
1946 (Lisp_Object window
)
1948 return decode_live_window (window
)->next_buffers
;
1951 DEFUN ("set-window-next-buffers", Fset_window_next_buffers
,
1952 Sset_window_next_buffers
, 2, 2, 0,
1953 doc
: /* Set WINDOW's next buffers to NEXT-BUFFERS.
1954 WINDOW must be a live window and defaults to the selected one.
1955 NEXT-BUFFERS should be a list of buffers. */)
1956 (Lisp_Object window
, Lisp_Object next_buffers
)
1958 wset_next_buffers (decode_live_window (window
), next_buffers
);
1959 return next_buffers
;
1962 DEFUN ("window-parameters", Fwindow_parameters
, Swindow_parameters
,
1964 doc
: /* Return the parameters of WINDOW and their values.
1965 WINDOW must be a valid window and defaults to the selected one. The
1966 return value is a list of elements of the form (PARAMETER . VALUE). */)
1967 (Lisp_Object window
)
1969 return Fcopy_alist (decode_valid_window (window
)->window_parameters
);
1972 DEFUN ("window-parameter", Fwindow_parameter
, Swindow_parameter
,
1974 doc
: /* Return WINDOW's value for PARAMETER.
1975 WINDOW can be any window and defaults to the selected one. */)
1976 (Lisp_Object window
, Lisp_Object parameter
)
1980 result
= Fassq (parameter
, decode_any_window (window
)->window_parameters
);
1981 return CDR_SAFE (result
);
1984 DEFUN ("set-window-parameter", Fset_window_parameter
,
1985 Sset_window_parameter
, 3, 3, 0,
1986 doc
: /* Set WINDOW's value of PARAMETER to VALUE.
1987 WINDOW can be any window and defaults to the selected one.
1989 (Lisp_Object window
, Lisp_Object parameter
, Lisp_Object value
)
1991 register struct window
*w
= decode_any_window (window
);
1992 Lisp_Object old_alist_elt
;
1994 old_alist_elt
= Fassq (parameter
, w
->window_parameters
);
1995 if (NILP (old_alist_elt
))
1996 wset_window_parameters
1997 (w
, Fcons (Fcons (parameter
, value
), w
->window_parameters
));
1999 Fsetcdr (old_alist_elt
, value
);
2003 DEFUN ("window-display-table", Fwindow_display_table
, Swindow_display_table
,
2005 doc
: /* Return the display-table that WINDOW is using.
2006 WINDOW must be a live window and defaults to the selected one. */)
2007 (Lisp_Object window
)
2009 return decode_live_window (window
)->display_table
;
2012 /* Get the display table for use on window W. This is either W's
2013 display table or W's buffer's display table. Ignore the specified
2014 tables if they are not valid; if no valid table is specified,
2017 struct Lisp_Char_Table
*
2018 window_display_table (struct window
*w
)
2020 struct Lisp_Char_Table
*dp
= NULL
;
2022 if (DISP_TABLE_P (w
->display_table
))
2023 dp
= XCHAR_TABLE (w
->display_table
);
2024 else if (BUFFERP (w
->contents
))
2026 struct buffer
*b
= XBUFFER (w
->contents
);
2028 if (DISP_TABLE_P (BVAR (b
, display_table
)))
2029 dp
= XCHAR_TABLE (BVAR (b
, display_table
));
2030 else if (DISP_TABLE_P (Vstandard_display_table
))
2031 dp
= XCHAR_TABLE (Vstandard_display_table
);
2037 DEFUN ("set-window-display-table", Fset_window_display_table
, Sset_window_display_table
, 2, 2, 0,
2038 doc
: /* Set WINDOW's display-table to TABLE.
2039 WINDOW must be a live window and defaults to the selected one. */)
2040 (register Lisp_Object window
, Lisp_Object table
)
2042 wset_display_table (decode_live_window (window
), table
);
2046 /* Record info on buffer window W is displaying
2047 when it is about to cease to display that buffer. */
2049 unshow_buffer (register struct window
*w
)
2051 Lisp_Object buf
= w
->contents
;
2052 struct buffer
*b
= XBUFFER (buf
);
2054 eassert (b
== XMARKER (w
->pointm
)->buffer
);
2057 if (w
== XWINDOW (selected_window
)
2058 || ! EQ (buf
, XWINDOW (selected_window
)->contents
))
2059 /* Do this except when the selected window's buffer
2060 is being removed from some other window. */
2062 /* last_window_start records the start position that this buffer
2063 had in the last window to be disconnected from it.
2064 Now that this statement is unconditional,
2065 it is possible for the buffer to be displayed in the
2066 selected window, while last_window_start reflects another
2067 window which was recently showing the same buffer.
2068 Some people might say that might be a good thing. Let's see. */
2069 b
->last_window_start
= marker_position (w
->start
);
2071 /* Point in the selected window's buffer
2072 is actually stored in that buffer, and the window's pointm isn't used.
2073 So don't clobber point in that buffer. */
2074 if (! EQ (buf
, XWINDOW (selected_window
)->contents
)
2075 /* Don't clobber point in current buffer either (this could be
2076 useful in connection with bug#12208).
2077 && XBUFFER (buf) != current_buffer */
2078 /* This line helps to fix Horsley's testbug.el bug. */
2079 && !(WINDOWP (BVAR (b
, last_selected_window
))
2080 && w
!= XWINDOW (BVAR (b
, last_selected_window
))
2081 && EQ (buf
, XWINDOW (BVAR (b
, last_selected_window
))->contents
)))
2082 temp_set_point_both (b
,
2083 clip_to_bounds (BUF_BEGV (b
),
2084 marker_position (w
->pointm
),
2086 clip_to_bounds (BUF_BEGV_BYTE (b
),
2087 marker_byte_position (w
->pointm
),
2090 if (WINDOWP (BVAR (b
, last_selected_window
))
2091 && w
== XWINDOW (BVAR (b
, last_selected_window
)))
2092 bset_last_selected_window (b
, Qnil
);
2095 /* Put NEW into the window structure in place of OLD. SETFLAG false
2096 means change window structure only. Otherwise store geometry and
2097 other settings as well. */
2099 replace_window (Lisp_Object old
, Lisp_Object
new, bool setflag
)
2102 struct window
*o
= XWINDOW (old
), *n
= XWINDOW (new);
2104 /* If OLD is its frame's root window, then NEW is the new
2105 root window for that frame. */
2106 if (EQ (old
, FRAME_ROOT_WINDOW (XFRAME (o
->frame
))))
2107 fset_root_window (XFRAME (o
->frame
), new);
2111 n
->pixel_left
= o
->pixel_left
;
2112 n
->pixel_top
= o
->pixel_top
;
2113 n
->pixel_width
= o
->pixel_width
;
2114 n
->pixel_height
= o
->pixel_height
;
2115 n
->left_col
= o
->left_col
;
2116 n
->top_line
= o
->top_line
;
2117 n
->total_cols
= o
->total_cols
;
2118 n
->total_lines
= o
->total_lines
;
2119 wset_normal_cols (n
, o
->normal_cols
);
2120 wset_normal_cols (o
, make_float (1.0));
2121 wset_normal_lines (n
, o
->normal_lines
);
2122 wset_normal_lines (o
, make_float (1.0));
2123 n
->desired_matrix
= n
->current_matrix
= 0;
2125 memset (&n
->cursor
, 0, sizeof (n
->cursor
));
2126 memset (&n
->phys_cursor
, 0, sizeof (n
->phys_cursor
));
2127 n
->last_cursor_vpos
= 0;
2128 #ifdef HAVE_WINDOW_SYSTEM
2129 n
->phys_cursor_type
= NO_CURSOR
;
2130 n
->phys_cursor_width
= -1;
2132 n
->must_be_updated_p
= false;
2133 n
->pseudo_window_p
= false;
2134 n
->window_end_vpos
= 0;
2135 n
->window_end_pos
= 0;
2136 n
->window_end_valid
= false;
2142 wset_prev (XWINDOW (tem
), new);
2147 wset_next (XWINDOW (tem
), new);
2150 wset_parent (n
, tem
);
2151 if (!NILP (tem
) && EQ (XWINDOW (tem
)->contents
, old
))
2152 wset_combination (XWINDOW (tem
), XWINDOW (tem
)->horizontal
, new);
2155 /* If window WINDOW and its parent window are iso-combined, merge
2156 WINDOW's children into those of its parent window and mark WINDOW as
2160 recombine_windows (Lisp_Object window
)
2162 struct window
*w
, *p
, *c
;
2163 Lisp_Object parent
, child
;
2166 w
= XWINDOW (window
);
2168 if (!NILP (parent
) && NILP (w
->combination_limit
))
2170 p
= XWINDOW (parent
);
2171 if (WINDOWP (p
->contents
) && WINDOWP (w
->contents
)
2172 && p
->horizontal
== w
->horizontal
)
2173 /* WINDOW and PARENT are both either a vertical or a horizontal
2176 horflag
= WINDOW_HORIZONTAL_COMBINATION_P (w
);
2177 child
= w
->contents
;
2178 c
= XWINDOW (child
);
2180 /* Splice WINDOW's children into its parent's children and
2181 assign new normal sizes. */
2183 wset_combination (p
, horflag
, child
);
2186 wset_prev (c
, w
->prev
);
2187 wset_next (XWINDOW (w
->prev
), child
);
2192 wset_parent (c
, parent
);
2196 (c
, make_float ((double) c
->pixel_width
2197 / (double) p
->pixel_width
));
2200 (c
, make_float ((double) c
->pixel_height
2201 / (double) p
->pixel_height
));
2205 if (!NILP (w
->next
))
2207 wset_next (c
, w
->next
);
2208 wset_prev (XWINDOW (c
->next
), child
);
2216 c
= XWINDOW (child
);
2220 /* WINDOW can be deleted now. */
2221 wset_combination (w
, false, Qnil
);
2226 /* If WINDOW can be deleted, delete it. */
2228 delete_deletable_window (Lisp_Object window
)
2230 if (!NILP (call1 (Qwindow_deletable_p
, window
)))
2231 call1 (Qdelete_window
, window
);
2234 /***********************************************************************
2236 ***********************************************************************/
2238 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
2239 pointer. This is a callback function for foreach_window, used in
2240 the window_list function. */
2243 add_window_to_list (struct window
*w
, void *user_data
)
2245 Lisp_Object
*list
= user_data
;
2247 XSETWINDOW (window
, w
);
2248 *list
= Fcons (window
, *list
);
2253 /* Return a list of all windows, for use by next_window. If
2254 Vwindow_list is a list, return that list. Otherwise, build a new
2255 list, cache it in Vwindow_list, and return that. */
2260 if (!CONSP (Vwindow_list
))
2262 Lisp_Object tail
, frame
;
2264 Vwindow_list
= Qnil
;
2265 FOR_EACH_FRAME (tail
, frame
)
2267 Lisp_Object arglist
= Qnil
;
2269 /* We are visiting windows in canonical order, and add
2270 new windows at the front of args[1], which means we
2271 have to reverse this list at the end. */
2272 foreach_window (XFRAME (frame
), add_window_to_list
, &arglist
);
2273 arglist
= Fnreverse (arglist
);
2274 Vwindow_list
= CALLN (Fnconc
, Vwindow_list
, arglist
);
2278 return Vwindow_list
;
2282 /* Value is true if WINDOW satisfies the constraints given by
2283 OWINDOW, MINIBUF and ALL_FRAMES.
2285 MINIBUF t means WINDOW may be minibuffer windows.
2286 `lambda' means WINDOW may not be a minibuffer window.
2287 a window means a specific minibuffer window
2289 ALL_FRAMES t means search all frames,
2290 nil means search just current frame,
2291 `visible' means search just visible frames on the
2293 0 means search visible and iconified frames on the
2295 a window means search the frame that window belongs to,
2296 a frame means consider windows on that frame, only. */
2299 candidate_window_p (Lisp_Object window
, Lisp_Object owindow
,
2300 Lisp_Object minibuf
, Lisp_Object all_frames
)
2302 struct window
*w
= XWINDOW (window
);
2303 struct frame
*f
= XFRAME (w
->frame
);
2304 bool candidate_p
= true;
2306 if (!BUFFERP (w
->contents
))
2307 candidate_p
= false;
2308 else if (MINI_WINDOW_P (w
)
2309 && (EQ (minibuf
, Qlambda
)
2310 || (WINDOWP (minibuf
) && !EQ (minibuf
, window
))))
2312 /* If MINIBUF is `lambda' don't consider any mini-windows.
2313 If it is a window, consider only that one. */
2314 candidate_p
= false;
2316 else if (EQ (all_frames
, Qt
))
2318 else if (NILP (all_frames
))
2320 eassert (WINDOWP (owindow
));
2321 candidate_p
= EQ (w
->frame
, XWINDOW (owindow
)->frame
);
2323 else if (EQ (all_frames
, Qvisible
))
2325 candidate_p
= FRAME_VISIBLE_P (f
)
2326 && (FRAME_TERMINAL (XFRAME (w
->frame
))
2327 == FRAME_TERMINAL (XFRAME (selected_frame
)));
2330 else if (INTEGERP (all_frames
) && XINT (all_frames
) == 0)
2332 candidate_p
= (FRAME_VISIBLE_P (f
) || FRAME_ICONIFIED_P (f
)
2333 #ifdef HAVE_X_WINDOWS
2334 /* Yuck!! If we've just created the frame and the
2335 window-manager requested the user to place it
2336 manually, the window may still not be considered
2337 `visible'. I'd argue it should be at least
2338 something like `iconified', but don't know how to do
2340 || (FRAME_X_P (f
) && f
->output_data
.x
->asked_for_visible
2341 && !f
->output_data
.x
->has_been_visible
)
2344 && (FRAME_TERMINAL (XFRAME (w
->frame
))
2345 == FRAME_TERMINAL (XFRAME (selected_frame
)));
2347 else if (WINDOWP (all_frames
))
2348 candidate_p
= (EQ (FRAME_MINIBUF_WINDOW (f
), all_frames
)
2349 || EQ (XWINDOW (all_frames
)->frame
, w
->frame
)
2350 || EQ (XWINDOW (all_frames
)->frame
, FRAME_FOCUS_FRAME (f
)));
2351 else if (FRAMEP (all_frames
))
2352 candidate_p
= EQ (all_frames
, w
->frame
);
2358 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2359 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2360 MINIBUF, and ALL_FRAMES. */
2363 decode_next_window_args (Lisp_Object
*window
, Lisp_Object
*minibuf
, Lisp_Object
*all_frames
)
2365 struct window
*w
= decode_live_window (*window
);
2367 XSETWINDOW (*window
, w
);
2368 /* MINIBUF nil may or may not include minibuffers. Decide if it
2370 if (NILP (*minibuf
))
2371 *minibuf
= minibuf_level
? minibuf_window
: Qlambda
;
2372 else if (!EQ (*minibuf
, Qt
))
2375 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2376 => count none of them, or a specific minibuffer window (the
2377 active one) to count. */
2379 /* ALL_FRAMES nil doesn't specify which frames to include. */
2380 if (NILP (*all_frames
))
2382 = (!EQ (*minibuf
, Qlambda
)
2383 ? FRAME_MINIBUF_WINDOW (XFRAME (w
->frame
))
2385 else if (EQ (*all_frames
, Qvisible
))
2387 else if (EQ (*all_frames
, make_number (0)))
2389 else if (FRAMEP (*all_frames
))
2391 else if (!EQ (*all_frames
, Qt
))
2396 /* Return the next or previous window of WINDOW in cyclic ordering
2397 of windows. NEXT_P means return the next window. See the
2398 documentation string of next-window for the meaning of MINIBUF and
2402 next_window (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
,
2405 decode_next_window_args (&window
, &minibuf
, &all_frames
);
2407 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2408 return the first window on the frame. */
2409 if (FRAMEP (all_frames
)
2410 && !EQ (all_frames
, XWINDOW (window
)->frame
))
2411 return Fframe_first_window (all_frames
);
2417 /* Find WINDOW in the list of all windows. */
2418 list
= Fmemq (window
, window_list ());
2420 /* Scan forward from WINDOW to the end of the window list. */
2422 for (list
= XCDR (list
); CONSP (list
); list
= XCDR (list
))
2423 if (candidate_window_p (XCAR (list
), window
, minibuf
, all_frames
))
2426 /* Scan from the start of the window list up to WINDOW. */
2428 for (list
= Vwindow_list
;
2429 CONSP (list
) && !EQ (XCAR (list
), window
);
2431 if (candidate_window_p (XCAR (list
), window
, minibuf
, all_frames
))
2435 window
= XCAR (list
);
2439 Lisp_Object candidate
, list
;
2441 /* Scan through the list of windows for candidates. If there are
2442 candidate windows in front of WINDOW, the last one of these
2443 is the one we want. If there are candidates following WINDOW
2444 in the list, again the last one of these is the one we want. */
2446 for (list
= window_list (); CONSP (list
); list
= XCDR (list
))
2448 if (EQ (XCAR (list
), window
))
2450 if (WINDOWP (candidate
))
2453 else if (candidate_window_p (XCAR (list
), window
, minibuf
,
2455 candidate
= XCAR (list
);
2458 if (WINDOWP (candidate
))
2466 DEFUN ("next-window", Fnext_window
, Snext_window
, 0, 3, 0,
2467 doc
: /* Return live window after WINDOW in the cyclic ordering of windows.
2468 WINDOW must be a live window and defaults to the selected one. The
2469 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2472 MINIBUF nil or omitted means consider the minibuffer window only if the
2473 minibuffer is active. MINIBUF t means consider the minibuffer window
2474 even if the minibuffer is not active. Any other value means do not
2475 consider the minibuffer window even if the minibuffer is active.
2477 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2478 plus the minibuffer window if specified by the MINIBUF argument. If the
2479 minibuffer counts, consider all windows on all frames that share that
2480 minibuffer too. The following non-nil values of ALL-FRAMES have special
2483 - t means consider all windows on all existing frames.
2485 - `visible' means consider all windows on all visible frames.
2487 - 0 (the number zero) means consider all windows on all visible and
2490 - A frame means consider all windows on that frame only.
2492 Anything else means consider all windows on WINDOW's frame and no
2495 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2496 `next-window' to iterate through the entire cycle of acceptable
2497 windows, eventually ending up back at the window you started with.
2498 `previous-window' traverses the same cycle, in the reverse order. */)
2499 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2501 return next_window (window
, minibuf
, all_frames
, true);
2505 DEFUN ("previous-window", Fprevious_window
, Sprevious_window
, 0, 3, 0,
2506 doc
: /* Return live window before WINDOW in the cyclic ordering of windows.
2507 WINDOW must be a live window and defaults to the selected one. The
2508 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2511 MINIBUF nil or omitted means consider the minibuffer window only if the
2512 minibuffer is active. MINIBUF t means consider the minibuffer window
2513 even if the minibuffer is not active. Any other value means do not
2514 consider the minibuffer window even if the minibuffer is active.
2516 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2517 plus the minibuffer window if specified by the MINIBUF argument. If the
2518 minibuffer counts, consider all windows on all frames that share that
2519 minibuffer too. The following non-nil values of ALL-FRAMES have special
2522 - t means consider all windows on all existing frames.
2524 - `visible' means consider all windows on all visible frames.
2526 - 0 (the number zero) means consider all windows on all visible and
2529 - A frame means consider all windows on that frame only.
2531 Anything else means consider all windows on WINDOW's frame and no
2534 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2535 use `previous-window' to iterate through the entire cycle of
2536 acceptable windows, eventually ending up back at the window you
2537 started with. `next-window' traverses the same cycle, in the
2539 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2541 return next_window (window
, minibuf
, all_frames
, false);
2545 /* Return a list of windows in cyclic ordering. Arguments are like
2546 for `next-window'. */
2549 window_list_1 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2551 Lisp_Object tail
, list
, rest
;
2553 decode_next_window_args (&window
, &minibuf
, &all_frames
);
2556 for (tail
= window_list (); CONSP (tail
); tail
= XCDR (tail
))
2557 if (candidate_window_p (XCAR (tail
), window
, minibuf
, all_frames
))
2558 list
= Fcons (XCAR (tail
), list
);
2560 /* Rotate the list to start with WINDOW. */
2561 list
= Fnreverse (list
);
2562 rest
= Fmemq (window
, list
);
2563 if (!NILP (rest
) && !EQ (rest
, list
))
2565 for (tail
= list
; !EQ (XCDR (tail
), rest
); tail
= XCDR (tail
))
2567 XSETCDR (tail
, Qnil
);
2568 list
= nconc2 (rest
, list
);
2574 DEFUN ("window-list", Fwindow_list
, Swindow_list
, 0, 3, 0,
2575 doc
: /* Return a list of windows on FRAME, starting with WINDOW.
2576 FRAME nil or omitted means use the selected frame.
2577 WINDOW nil or omitted means use the window selected within FRAME.
2578 MINIBUF t means include the minibuffer window, even if it isn't active.
2579 MINIBUF nil or omitted means include the minibuffer window only
2581 MINIBUF neither nil nor t means never include the minibuffer window. */)
2582 (Lisp_Object frame
, Lisp_Object minibuf
, Lisp_Object window
)
2585 window
= FRAMEP (frame
) ? XFRAME (frame
)->selected_window
: selected_window
;
2586 CHECK_WINDOW (window
);
2588 frame
= selected_frame
;
2590 if (!EQ (frame
, XWINDOW (window
)->frame
))
2591 error ("Window is on a different frame");
2593 return window_list_1 (window
, minibuf
, frame
);
2597 DEFUN ("window-list-1", Fwindow_list_1
, Swindow_list_1
, 0, 3, 0,
2598 doc
: /* Return a list of all live windows.
2599 WINDOW specifies the first window to list and defaults to the selected
2602 Optional argument MINIBUF nil or omitted means consider the minibuffer
2603 window only if the minibuffer is active. MINIBUF t means consider the
2604 minibuffer window even if the minibuffer is not active. Any other value
2605 means do not consider the minibuffer window even if the minibuffer is
2608 Optional argument ALL-FRAMES nil or omitted means consider all windows
2609 on WINDOW's frame, plus the minibuffer window if specified by the
2610 MINIBUF argument. If the minibuffer counts, consider all windows on all
2611 frames that share that minibuffer too. The following non-nil values of
2612 ALL-FRAMES have special meanings:
2614 - t means consider all windows on all existing frames.
2616 - `visible' means consider all windows on all visible frames.
2618 - 0 (the number zero) means consider all windows on all visible and
2621 - A frame means consider all windows on that frame only.
2623 Anything else means consider all windows on WINDOW's frame and no
2626 If WINDOW is not on the list of windows returned, some other window will
2627 be listed first but no error is signaled. */)
2628 (Lisp_Object window
, Lisp_Object minibuf
, Lisp_Object all_frames
)
2630 return window_list_1 (window
, minibuf
, all_frames
);
2633 /* Look at all windows, performing an operation specified by TYPE
2635 If FRAMES is Qt, look at all frames;
2636 Qnil, look at just the selected frame;
2637 Qvisible, look at visible frames;
2638 a frame, just look at windows on that frame.
2639 If MINI, perform the operation on minibuffer windows too. */
2644 GET_BUFFER_WINDOW
, /* Arg is buffer */
2645 REPLACE_BUFFER_IN_WINDOWS_SAFELY
, /* Arg is buffer */
2646 REDISPLAY_BUFFER_WINDOWS
, /* Arg is buffer */
2647 CHECK_ALL_WINDOWS
/* Arg is ignored */
2651 window_loop (enum window_loop type
, Lisp_Object obj
, bool mini
,
2654 Lisp_Object window
, windows
, best_window
, frame_arg
;
2655 bool frame_best_window_flag
= false;
2658 /* If we're only looping through windows on a particular frame,
2659 frame points to that frame. If we're looping through windows
2660 on all frames, frame is 0. */
2661 if (FRAMEP (frames
))
2662 f
= XFRAME (frames
);
2663 else if (NILP (frames
))
2664 f
= SELECTED_FRAME ();
2669 frame_arg
= Qlambda
;
2670 else if (EQ (frames
, make_number (0)))
2672 else if (EQ (frames
, Qvisible
))
2677 /* frame_arg is Qlambda to stick to one frame,
2678 Qvisible to consider all visible frames,
2681 /* Pick a window to start with. */
2685 window
= FRAME_SELECTED_WINDOW (f
);
2687 window
= FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2689 windows
= window_list_1 (window
, mini
? Qt
: Qnil
, frame_arg
);
2692 for (; CONSP (windows
); windows
= XCDR (windows
))
2696 window
= XCAR (windows
);
2697 w
= XWINDOW (window
);
2699 /* Note that we do not pay attention here to whether the frame
2700 is visible, since Fwindow_list skips non-visible frames if
2701 that is desired, under the control of frame_arg. */
2702 if (!MINI_WINDOW_P (w
)
2703 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2704 consider all windows. */
2705 || type
== REPLACE_BUFFER_IN_WINDOWS_SAFELY
2706 || (mini
&& minibuf_level
> 0))
2709 case GET_BUFFER_WINDOW
:
2710 if (EQ (w
->contents
, obj
)
2711 /* Don't find any minibuffer window except the one that
2712 is currently in use. */
2713 && (!MINI_WINDOW_P (w
) || EQ (window
, minibuf_window
)))
2715 if (EQ (window
, selected_window
))
2716 /* Preferably return the selected window. */
2718 else if (EQ (XWINDOW (window
)->frame
, selected_frame
)
2719 && !frame_best_window_flag
)
2720 /* Prefer windows on the current frame (but don't
2721 choose another one if we have one already). */
2723 best_window
= window
;
2724 frame_best_window_flag
= true;
2726 else if (NILP (best_window
))
2727 best_window
= window
;
2731 case REPLACE_BUFFER_IN_WINDOWS_SAFELY
:
2732 /* We could simply check whether the buffer shown by window
2733 is live, and show another buffer in case it isn't. */
2734 if (EQ (w
->contents
, obj
))
2736 /* Undedicate WINDOW. */
2737 wset_dedicated (w
, Qnil
);
2738 /* Make WINDOW show the buffer returned by
2739 other_buffer_safely, don't run any hooks. */
2741 (window
, other_buffer_safely (w
->contents
), false, false);
2742 /* If WINDOW is the selected window, make its buffer
2743 current. But do so only if the window shows the
2744 current buffer (Bug#6454). */
2745 if (EQ (window
, selected_window
)
2746 && XBUFFER (w
->contents
) == current_buffer
)
2747 Fset_buffer (w
->contents
);
2751 case REDISPLAY_BUFFER_WINDOWS
:
2752 if (EQ (w
->contents
, obj
))
2754 mark_window_display_accurate (window
, false);
2755 w
->update_mode_line
= true;
2756 XBUFFER (obj
)->prevent_redisplay_optimizations_p
= true;
2757 update_mode_lines
= 27;
2758 best_window
= window
;
2762 /* Check for a leaf window that has a killed buffer
2763 or broken markers. */
2764 case CHECK_ALL_WINDOWS
:
2765 if (BUFFERP (w
->contents
))
2767 struct buffer
*b
= XBUFFER (w
->contents
);
2769 if (!BUFFER_LIVE_P (b
))
2771 if (!MARKERP (w
->start
) || XMARKER (w
->start
)->buffer
!= b
)
2773 if (!MARKERP (w
->pointm
) || XMARKER (w
->pointm
)->buffer
!= b
)
2778 case WINDOW_LOOP_UNUSED
:
2786 /* Used for debugging. Abort if any window has a dead buffer. */
2788 extern void check_all_windows (void) EXTERNALLY_VISIBLE
;
2790 check_all_windows (void)
2792 window_loop (CHECK_ALL_WINDOWS
, Qnil
, true, Qt
);
2795 DEFUN ("get-buffer-window", Fget_buffer_window
, Sget_buffer_window
, 0, 2, 0,
2796 doc
: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2797 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2800 The optional argument ALL-FRAMES specifies the frames to consider:
2802 - t means consider all windows on all existing frames.
2804 - `visible' means consider all windows on all visible frames.
2806 - 0 (the number zero) means consider all windows on all visible
2807 and iconified frames.
2809 - A frame means consider all windows on that frame only.
2811 Any other value of ALL-FRAMES means consider all windows on the
2812 selected frame and no others. */)
2813 (Lisp_Object buffer_or_name
, Lisp_Object all_frames
)
2817 if (NILP (buffer_or_name
))
2818 buffer
= Fcurrent_buffer ();
2820 buffer
= Fget_buffer (buffer_or_name
);
2822 if (BUFFERP (buffer
))
2823 return window_loop (GET_BUFFER_WINDOW
, buffer
, true, all_frames
);
2830 resize_root_window (Lisp_Object window
, Lisp_Object delta
, Lisp_Object horizontal
, Lisp_Object ignore
, Lisp_Object pixelwise
)
2832 return call5 (Qwindow_resize_root_window
, window
, delta
, horizontal
, ignore
, pixelwise
);
2835 /* Placeholder used by temacs -nw before window.el is loaded. */
2836 DEFUN ("window--sanitize-window-sizes", Fwindow__sanitize_window_sizes
,
2837 Swindow__sanitize_window_sizes
, 2, 2, 0,
2840 (Lisp_Object frame
, Lisp_Object horizontal
)
2846 sanitize_window_sizes (Lisp_Object frame
, Lisp_Object horizontal
)
2848 return call2 (Qwindow_sanitize_window_sizes
, frame
, horizontal
);
2853 window_pixel_to_total (Lisp_Object frame
, Lisp_Object horizontal
)
2855 return call2 (Qwindow_pixel_to_total
, frame
, horizontal
);
2859 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal
,
2860 Sdelete_other_windows_internal
, 0, 2, "",
2861 doc
: /* Make WINDOW fill its frame.
2862 Only the frame WINDOW is on is affected. WINDOW must be a valid window
2863 and defaults to the selected one.
2865 Optional argument ROOT, if non-nil, must specify an internal window such
2866 that WINDOW is in its window subtree. If this is the case, replace ROOT
2867 by WINDOW and leave alone any windows not part of ROOT's subtree.
2869 When WINDOW is live try to reduce display jumps by keeping the text
2870 previously visible in WINDOW in the same place on the frame. Doing this
2871 depends on the value of (window-start WINDOW), so if calling this
2872 function in a program gives strange scrolling, make sure the
2873 window-start value is reasonable when this function is called. */)
2874 (Lisp_Object window
, Lisp_Object root
)
2876 struct window
*w
, *r
, *s
;
2878 Lisp_Object sibling
, pwindow
, swindow
IF_LINT (= Qnil
), delta
;
2879 ptrdiff_t startpos
IF_LINT (= 0), startbyte
IF_LINT (= 0);
2880 int top
IF_LINT (= 0), new_top
;
2882 w
= decode_valid_window (window
);
2883 XSETWINDOW (window
, w
);
2884 f
= XFRAME (w
->frame
);
2887 /* ROOT is the frame's root window. */
2889 root
= FRAME_ROOT_WINDOW (f
);
2893 /* ROOT must be an ancestor of WINDOW. */
2895 r
= decode_valid_window (root
);
2896 pwindow
= XWINDOW (window
)->parent
;
2897 while (!NILP (pwindow
))
2898 if (EQ (pwindow
, root
))
2901 pwindow
= XWINDOW (pwindow
)->parent
;
2902 if (!EQ (pwindow
, root
))
2903 error ("Specified root is not an ancestor of specified window");
2906 if (EQ (window
, root
))
2909 /* I don't understand the "top > 0" part below. If we deal with a
2910 standalone minibuffer it would have been caught by the preceding
2912 else if (MINI_WINDOW_P (w
)) /* && top > 0) */
2913 error ("Can't expand minibuffer to full frame");
2915 if (BUFFERP (w
->contents
))
2917 startpos
= marker_position (w
->start
);
2918 startbyte
= marker_byte_position (w
->start
);
2919 top
= (WINDOW_TOP_EDGE_LINE (w
)
2920 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w
))));
2921 /* Make sure WINDOW is the frame's selected window. */
2922 if (!EQ (window
, FRAME_SELECTED_WINDOW (f
)))
2924 if (EQ (selected_frame
, w
->frame
))
2925 Fselect_window (window
, Qnil
);
2927 fset_selected_window (f
, window
);
2932 /* See if the frame's selected window is a part of the window
2933 subtree rooted at WINDOW, by finding all the selected window's
2934 parents and comparing each one with WINDOW. If it isn't we
2935 need a new selected window for this frame. */
2936 swindow
= FRAME_SELECTED_WINDOW (f
);
2940 while (!NILP (pwindow
) && !EQ (window
, pwindow
))
2941 pwindow
= XWINDOW (pwindow
)->parent
;
2943 if (EQ (window
, pwindow
))
2944 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
2945 as the new selected window. */
2948 /* Else try the previous window of SWINDOW. */
2949 swindow
= Fprevious_window (swindow
, Qlambda
, Qnil
);
2952 if (!EQ (swindow
, FRAME_SELECTED_WINDOW (f
)))
2954 if (EQ (selected_frame
, w
->frame
))
2955 Fselect_window (swindow
, Qnil
);
2957 fset_selected_window (f
, swindow
);
2962 if (!FRAME_INITIAL_P (f
))
2964 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
2966 /* We are going to free the glyph matrices of WINDOW, and with
2967 that we might lose any information about glyph rows that have
2968 some of their glyphs highlighted in mouse face. (These rows
2969 are marked with a mouse_face_p flag.) If WINDOW
2970 indeed has some glyphs highlighted in mouse face, signal to
2971 frame's up-to-date hook that mouse highlight was overwritten,
2972 so that it will arrange for redisplaying the highlight. */
2973 if (EQ (hlinfo
->mouse_face_window
, window
))
2974 reset_mouse_highlight (hlinfo
);
2976 free_window_matrices (r
);
2979 Vwindow_list
= Qnil
;
2980 FRAME_WINDOW_SIZES_CHANGED (f
) = true;
2981 bool resize_failed
= false;
2983 if (!WINDOW_LEAF_P (w
))
2985 /* Resize child windows vertically. */
2986 XSETINT (delta
, r
->pixel_height
- w
->pixel_height
);
2987 w
->pixel_top
= r
->pixel_top
;
2988 w
->top_line
= r
->top_line
;
2989 resize_root_window (window
, delta
, Qnil
, Qnil
, Qt
);
2990 if (window_resize_check (w
, false))
2992 window_resize_apply (w
, false);
2993 window_pixel_to_total (w
->frame
, Qnil
);
2997 resize_root_window (window
, delta
, Qnil
, Qt
, Qt
);
2998 if (window_resize_check (w
, false))
3000 window_resize_apply (w
, false);
3001 window_pixel_to_total (w
->frame
, Qnil
);
3004 resize_failed
= true;
3007 /* Resize child windows horizontally. */
3010 w
->left_col
= r
->left_col
;
3011 w
->pixel_left
= r
->pixel_left
;
3012 XSETINT (delta
, r
->pixel_width
- w
->pixel_width
);
3013 resize_root_window (window
, delta
, Qt
, Qnil
, Qt
);
3014 if (window_resize_check (w
, true))
3016 window_resize_apply (w
, true);
3017 window_pixel_to_total (w
->frame
, Qt
);
3021 resize_root_window (window
, delta
, Qt
, Qt
, Qt
);
3022 if (window_resize_check (w
, true))
3024 window_resize_apply (w
, true);
3025 window_pixel_to_total (w
->frame
, Qt
);
3028 resize_failed
= true;
3033 /* Play safe, if we still can ... */
3036 w
= XWINDOW (window
);
3040 /* Cleanly unlink WINDOW from window-tree. */
3041 if (!NILP (w
->prev
))
3042 /* Get SIBLING above (on the left of) WINDOW. */
3045 s
= XWINDOW (sibling
);
3046 wset_next (s
, w
->next
);
3047 if (!NILP (s
->next
))
3048 wset_prev (XWINDOW (s
->next
), sibling
);
3051 /* Get SIBLING below (on the right of) WINDOW. */
3054 s
= XWINDOW (sibling
);
3055 wset_prev (s
, Qnil
);
3056 wset_combination (XWINDOW (w
->parent
),
3057 XWINDOW (w
->parent
)->horizontal
, sibling
);
3060 /* Delete ROOT and all child windows of ROOT. */
3061 if (WINDOWP (r
->contents
))
3063 delete_all_child_windows (r
->contents
);
3064 wset_combination (r
, false, Qnil
);
3067 replace_window (root
, window
, true);
3069 /* This must become SWINDOW anyway ....... */
3070 if (BUFFERP (w
->contents
) && !resize_failed
)
3072 /* Try to minimize scrolling, by setting the window start to the
3073 point will cause the text at the old window start to be at the
3074 same place on the frame. But don't try to do this if the
3075 window start is outside the visible portion (as might happen
3076 when the display is not current, due to typeahead). */
3077 new_top
= WINDOW_TOP_EDGE_LINE (w
) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w
)));
3079 && startpos
>= BUF_BEGV (XBUFFER (w
->contents
))
3080 && startpos
<= BUF_ZV (XBUFFER (w
->contents
)))
3082 struct position pos
;
3083 struct buffer
*obuf
= current_buffer
;
3085 Fset_buffer (w
->contents
);
3086 /* This computation used to temporarily move point, but that
3087 can have unwanted side effects due to text properties. */
3088 pos
= *vmotion (startpos
, startbyte
, -top
, w
);
3090 set_marker_both (w
->start
, w
->contents
, pos
.bufpos
, pos
.bytepos
);
3091 w
->window_end_valid
= false;
3092 w
->start_at_line_beg
= (pos
.bytepos
== BEGV_BYTE
3093 || FETCH_BYTE (pos
.bytepos
- 1) == '\n');
3094 /* We need to do this, so that the window-scroll-functions
3096 w
->optional_new_start
= true;
3098 set_buffer_internal (obuf
);
3102 adjust_frame_glyphs (f
);
3105 run_window_configuration_change_hook (f
);
3112 replace_buffer_in_windows (Lisp_Object buffer
)
3114 call1 (Qreplace_buffer_in_windows
, buffer
);
3117 /* If BUFFER is shown in a window, safely replace it with some other
3118 buffer in all windows of all frames, even those on other keyboards. */
3121 replace_buffer_in_windows_safely (Lisp_Object buffer
)
3123 if (buffer_window_count (XBUFFER (buffer
)))
3125 Lisp_Object tail
, frame
;
3127 /* A single call to window_loop won't do the job because it only
3128 considers frames on the current keyboard. So loop manually over
3129 frames, and handle each one. */
3130 FOR_EACH_FRAME (tail
, frame
)
3131 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY
, buffer
, true, frame
);
3135 /* The following three routines are needed for running a window's
3136 configuration change hook. */
3138 run_funs (Lisp_Object funs
)
3140 for (; CONSP (funs
); funs
= XCDR (funs
))
3141 if (!EQ (XCAR (funs
), Qt
))
3142 call0 (XCAR (funs
));
3146 select_window_norecord (Lisp_Object window
)
3148 if (WINDOW_LIVE_P (window
))
3149 Fselect_window (window
, Qt
);
3153 select_frame_norecord (Lisp_Object frame
)
3155 if (FRAME_LIVE_P (XFRAME (frame
)))
3156 Fselect_frame (frame
, Qt
);
3160 run_window_configuration_change_hook (struct frame
*f
)
3162 ptrdiff_t count
= SPECPDL_INDEX ();
3163 Lisp_Object frame
, global_wcch
3164 = Fdefault_value (Qwindow_configuration_change_hook
);
3165 XSETFRAME (frame
, f
);
3167 if (NILP (Vrun_hooks
)
3168 || !(f
->can_x_set_window_size
)
3169 || !(f
->after_make_frame
))
3172 /* Use the right buffer. Matters when running the local hooks. */
3173 if (current_buffer
!= XBUFFER (Fwindow_buffer (Qnil
)))
3175 record_unwind_current_buffer ();
3176 Fset_buffer (Fwindow_buffer (Qnil
));
3179 if (SELECTED_FRAME () != f
)
3181 record_unwind_protect (select_frame_norecord
, selected_frame
);
3182 select_frame_norecord (frame
);
3185 /* Look for buffer-local values. */
3187 Lisp_Object windows
= Fwindow_list (frame
, Qlambda
, Qnil
);
3188 for (; CONSP (windows
); windows
= XCDR (windows
))
3190 Lisp_Object window
= XCAR (windows
);
3191 Lisp_Object buffer
= Fwindow_buffer (window
);
3192 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook
,
3195 ptrdiff_t inner_count
= SPECPDL_INDEX ();
3196 record_unwind_protect (select_window_norecord
, selected_window
);
3197 select_window_norecord (window
);
3198 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook
,
3200 unbind_to (inner_count
, Qnil
);
3205 run_funs (global_wcch
);
3206 unbind_to (count
, Qnil
);
3209 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook
,
3210 Srun_window_configuration_change_hook
, 0, 1, 0,
3211 doc
: /* Run `window-configuration-change-hook' for FRAME.
3212 If FRAME is omitted or nil, it defaults to the selected frame. */)
3215 run_window_configuration_change_hook (decode_live_frame (frame
));
3219 DEFUN ("run-window-scroll-functions", Frun_window_scroll_functions
,
3220 Srun_window_scroll_functions
, 0, 1, 0,
3221 doc
: /* Run `window-scroll-functions' for WINDOW.
3222 If WINDOW is omitted or nil, it defaults to the selected window. */)
3223 (Lisp_Object window
)
3225 if (! NILP (Vwindow_scroll_functions
))
3226 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
3227 Fmarker_position (decode_live_window (window
)->start
));
3231 /* Make WINDOW display BUFFER. RUN_HOOKS_P means it's allowed
3232 to run hooks. See make_frame for a case where it's not allowed.
3233 KEEP_MARGINS_P means that the current margins, fringes, and
3234 scroll-bar settings of the window are not reset from the buffer's
3238 set_window_buffer (Lisp_Object window
, Lisp_Object buffer
,
3239 bool run_hooks_p
, bool keep_margins_p
)
3241 struct window
*w
= XWINDOW (window
);
3242 struct buffer
*b
= XBUFFER (buffer
);
3243 ptrdiff_t count
= SPECPDL_INDEX ();
3244 bool samebuf
= EQ (buffer
, w
->contents
);
3246 wset_buffer (w
, buffer
);
3248 if (EQ (window
, selected_window
))
3249 bset_last_selected_window (b
, window
);
3251 /* Let redisplay errors through. */
3252 b
->display_error_modiff
= 0;
3254 /* Update time stamps of buffer display. */
3255 if (INTEGERP (BVAR (b
, display_count
)))
3256 bset_display_count (b
, make_number (XINT (BVAR (b
, display_count
)) + 1));
3257 bset_display_time (b
, Fcurrent_time ());
3259 w
->window_end_pos
= 0;
3260 w
->window_end_vpos
= 0;
3261 w
->last_cursor_vpos
= 0;
3263 if (!(keep_margins_p
&& samebuf
))
3264 { /* If we're not actually changing the buffer, don't reset hscroll
3265 and vscroll. This case happens for example when called from
3266 change_frame_size_1, where we use a dummy call to
3267 Fset_window_buffer on the frame's selected window (and no
3268 other) just in order to run window-configuration-change-hook
3269 (no longer true since change_frame_size_1 directly calls
3270 run_window_configuration_change_hook). Resetting hscroll and
3271 vscroll here is problematic for things like image-mode and
3272 doc-view-mode since it resets the image's position whenever we
3273 resize the frame. */
3274 w
->hscroll
= w
->min_hscroll
= w
->hscroll_whole
= 0;
3275 w
->suspend_auto_hscroll
= false;
3277 set_marker_both (w
->pointm
, buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
3278 set_marker_both (w
->old_pointm
, buffer
, BUF_PT (b
), BUF_PT_BYTE (b
));
3279 set_marker_restricted (w
->start
,
3280 make_number (b
->last_window_start
),
3282 w
->start_at_line_beg
= false;
3283 w
->force_start
= false;
3285 /* Maybe we could move this into the `if' but it's not obviously safe and
3286 I doubt it's worth the trouble. */
3289 wset_update_mode_line (w
);
3291 /* We must select BUFFER to run the window-scroll-functions and to look up
3292 the buffer-local value of Vwindow_point_insertion_type. */
3293 record_unwind_current_buffer ();
3294 Fset_buffer (buffer
);
3296 XMARKER (w
->pointm
)->insertion_type
= !NILP (Vwindow_point_insertion_type
);
3297 XMARKER (w
->old_pointm
)->insertion_type
= !NILP (Vwindow_point_insertion_type
);
3299 if (!keep_margins_p
)
3301 /* Set left and right marginal area width etc. from buffer. */
3302 set_window_fringes (w
, BVAR (b
, left_fringe_width
),
3303 BVAR (b
, right_fringe_width
),
3304 BVAR (b
, fringes_outside_margins
));
3305 set_window_scroll_bars (w
, BVAR (b
, scroll_bar_width
),
3306 BVAR (b
, vertical_scroll_bar_type
),
3307 BVAR (b
, scroll_bar_height
),
3308 BVAR (b
, horizontal_scroll_bar_type
));
3309 set_window_margins (w
, BVAR (b
, left_margin_cols
),
3310 BVAR (b
, right_margin_cols
));
3311 apply_window_adjustment (w
);
3316 if (! NILP (Vwindow_scroll_functions
))
3317 run_hook_with_args_2 (Qwindow_scroll_functions
, window
,
3318 Fmarker_position (w
->start
));
3320 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w
)));
3323 unbind_to (count
, Qnil
);
3326 DEFUN ("set-window-buffer", Fset_window_buffer
, Sset_window_buffer
, 2, 3, 0,
3327 doc
: /* Make WINDOW display BUFFER-OR-NAME.
3328 WINDOW must be a live window and defaults to the selected one.
3329 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3331 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3332 display margins, fringe widths, and scroll bar settings are preserved;
3333 the default is to reset these from the local settings for BUFFER-OR-NAME
3334 or the frame defaults. Return nil.
3336 This function throws an error when WINDOW is strongly dedicated to its
3337 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3338 already display BUFFER-OR-NAME.
3340 This function runs `window-scroll-functions' before running
3341 `window-configuration-change-hook'. */)
3342 (register Lisp_Object window
, Lisp_Object buffer_or_name
, Lisp_Object keep_margins
)
3344 register Lisp_Object tem
, buffer
;
3345 register struct window
*w
= decode_live_window (window
);
3347 XSETWINDOW (window
, w
);
3348 buffer
= Fget_buffer (buffer_or_name
);
3349 CHECK_BUFFER (buffer
);
3350 if (!BUFFER_LIVE_P (XBUFFER (buffer
)))
3351 error ("Attempt to display deleted buffer");
3355 error ("Window is deleted");
3358 if (!EQ (tem
, buffer
))
3360 if (EQ (w
->dedicated
, Qt
))
3361 /* WINDOW is strongly dedicated to its buffer, signal an
3363 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem
), name
)));
3365 /* WINDOW is weakly dedicated to its buffer, reset
3367 wset_dedicated (w
, Qnil
);
3369 call1 (Qrecord_window_buffer
, window
);
3375 set_window_buffer (window
, buffer
, true, !NILP (keep_margins
));
3381 display_buffer (Lisp_Object buffer
, Lisp_Object not_this_window_p
, Lisp_Object override_frame
)
3383 return call3 (Qdisplay_buffer
, buffer
, not_this_window_p
, override_frame
);
3386 DEFUN ("force-window-update", Fforce_window_update
, Sforce_window_update
,
3388 doc
: /* Force all windows to be updated on next redisplay.
3389 If optional arg OBJECT is a window, force redisplay of that window only.
3390 If OBJECT is a buffer or buffer name, force redisplay of all windows
3391 displaying that buffer. */)
3392 (Lisp_Object object
)
3396 windows_or_buffers_changed
= 29;
3397 update_mode_lines
= 28;
3401 if (WINDOWP (object
))
3403 struct window
*w
= XWINDOW (object
);
3404 mark_window_display_accurate (object
, false);
3405 w
->update_mode_line
= true;
3406 if (BUFFERP (w
->contents
))
3407 XBUFFER (w
->contents
)->prevent_redisplay_optimizations_p
= true;
3408 update_mode_lines
= 29;
3412 if (STRINGP (object
))
3413 object
= Fget_buffer (object
);
3414 if (BUFFERP (object
) && BUFFER_LIVE_P (XBUFFER (object
))
3415 && buffer_window_count (XBUFFER (object
)))
3417 /* If buffer is live and shown in at least one window, find
3418 all windows showing this buffer and force update of them. */
3419 object
= window_loop (REDISPLAY_BUFFER_WINDOWS
, object
, false, Qvisible
);
3420 return NILP (object
) ? Qnil
: Qt
;
3423 /* If nothing suitable was found, just return.
3424 We could signal an error, but this feature will typically be used
3425 asynchronously in timers or process sentinels, so we don't. */
3429 /* Obsolete since 24.3. */
3431 temp_output_buffer_show (register Lisp_Object buf
)
3433 register struct buffer
*old
= current_buffer
;
3434 register Lisp_Object window
;
3435 register struct window
*w
;
3437 bset_directory (XBUFFER (buf
), BVAR (current_buffer
, directory
));
3440 BUF_SAVE_MODIFF (XBUFFER (buf
)) = MODIFF
;
3444 set_buffer_internal (old
);
3446 if (!NILP (Vtemp_buffer_show_function
))
3447 call1 (Vtemp_buffer_show_function
, buf
);
3448 else if (WINDOW_LIVE_P (window
= display_buffer (buf
, Qnil
, Qnil
)))
3450 if (!EQ (XWINDOW (window
)->frame
, selected_frame
))
3451 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window
)));
3452 Vminibuf_scroll_window
= window
;
3453 w
= XWINDOW (window
);
3454 w
->hscroll
= w
->min_hscroll
= w
->hscroll_whole
= 0;
3455 w
->suspend_auto_hscroll
= false;
3456 set_marker_restricted_both (w
->start
, buf
, BEG
, BEG
);
3457 set_marker_restricted_both (w
->pointm
, buf
, BEG
, BEG
);
3458 set_marker_restricted_both (w
->old_pointm
, buf
, BEG
, BEG
);
3460 /* Run temp-buffer-show-hook, with the chosen window selected
3461 and its buffer current. */
3463 ptrdiff_t count
= SPECPDL_INDEX ();
3464 Lisp_Object prev_window
, prev_buffer
;
3465 prev_window
= selected_window
;
3466 XSETBUFFER (prev_buffer
, old
);
3468 /* Select the window that was chosen, for running the hook.
3469 Note: Both Fselect_window and select_window_norecord may
3470 set-buffer to the buffer displayed in the window,
3471 so we need to save the current buffer. --stef */
3472 record_unwind_protect (restore_buffer
, prev_buffer
);
3473 record_unwind_protect (select_window_norecord
, prev_window
);
3474 Fselect_window (window
, Qt
);
3475 Fset_buffer (w
->contents
);
3476 run_hook (Qtemp_buffer_show_hook
);
3477 unbind_to (count
, Qnil
);
3482 /* Allocate basically initialized window. */
3484 static struct window
*
3485 allocate_window (void)
3487 return ALLOCATE_ZEROED_PSEUDOVECTOR
3488 (struct window
, current_matrix
, PVEC_WINDOW
);
3491 /* Make new window, have it replace WINDOW in window-tree, and make
3492 WINDOW its only vertical child (HORFLAG means make WINDOW its only
3493 horizontal child). */
3495 make_parent_window (Lisp_Object window
, bool horflag
)
3498 register struct window
*o
, *p
;
3500 o
= XWINDOW (window
);
3501 p
= allocate_window ();
3502 memcpy ((char *) p
+ sizeof (struct vectorlike_header
),
3503 (char *) o
+ sizeof (struct vectorlike_header
),
3504 word_size
* VECSIZE (struct window
));
3505 /* P's buffer slot may change from nil to a buffer... */
3506 adjust_window_count (p
, 1);
3507 XSETWINDOW (parent
, p
);
3509 p
->sequence_number
= ++sequence_number
;
3511 replace_window (window
, parent
, true);
3513 wset_next (o
, Qnil
);
3514 wset_prev (o
, Qnil
);
3515 wset_parent (o
, parent
);
3516 /* ...but now P becomes an internal window. */
3517 wset_start (p
, Qnil
);
3518 wset_pointm (p
, Qnil
);
3519 wset_old_pointm (p
, Qnil
);
3520 wset_buffer (p
, Qnil
);
3521 wset_combination (p
, horflag
, window
);
3522 wset_combination_limit (p
, Qnil
);
3523 wset_window_parameters (p
, Qnil
);
3526 /* Make new window from scratch. */
3531 register struct window
*w
;
3533 w
= allocate_window ();
3534 /* Initialize Lisp data. Note that allocate_window initializes all
3535 Lisp data to nil, so do it only for slots which should not be nil. */
3536 wset_normal_lines (w
, make_float (1.0));
3537 wset_normal_cols (w
, make_float (1.0));
3538 wset_new_total (w
, make_number (0));
3539 wset_new_normal (w
, make_number (0));
3540 wset_new_pixel (w
, make_number (0));
3541 wset_start (w
, Fmake_marker ());
3542 wset_pointm (w
, Fmake_marker ());
3543 wset_old_pointm (w
, Fmake_marker ());
3544 wset_vertical_scroll_bar_type (w
, Qt
);
3545 wset_horizontal_scroll_bar_type (w
, Qt
);
3546 /* These Lisp fields are marked specially so they're not set to nil by
3548 wset_prev_buffers (w
, Qnil
);
3549 wset_next_buffers (w
, Qnil
);
3551 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3552 non-Lisp data, so do it only for slots which should not be zero. */
3553 w
->nrows_scale_factor
= w
->ncols_scale_factor
= 1;
3554 w
->left_fringe_width
= w
->right_fringe_width
= -1;
3555 w
->mode_line_height
= w
->header_line_height
= -1;
3556 #ifdef HAVE_WINDOW_SYSTEM
3557 w
->phys_cursor_type
= NO_CURSOR
;
3558 w
->phys_cursor_width
= -1;
3560 w
->sequence_number
= ++sequence_number
;
3561 w
->scroll_bar_width
= -1;
3562 w
->scroll_bar_height
= -1;
3563 w
->column_number_displayed
= -1;
3564 /* Reset window_list. */
3565 Vwindow_list
= Qnil
;
3566 /* Return window. */
3567 XSETWINDOW (window
, w
);
3571 DEFUN ("set-window-new-pixel", Fset_window_new_pixel
, Sset_window_new_pixel
, 2, 3, 0,
3572 doc
: /* Set new pixel size of WINDOW to SIZE.
3573 WINDOW must be a valid window and defaults to the selected one.
3576 Optional argument ADD non-nil means add SIZE to the new pixel size of
3577 WINDOW and return the sum.
3579 The new pixel size of WINDOW, if valid, will be shortly installed as
3580 WINDOW's pixel height (see `window-pixel-height') or pixel width (see
3581 `window-pixel-width').
3583 Note: This function does not operate on any child windows of WINDOW. */)
3584 (Lisp_Object window
, Lisp_Object size
, Lisp_Object add
)
3586 struct window
*w
= decode_valid_window (window
);
3587 EMACS_INT size_min
= NILP (add
) ? 0 : - XINT (w
->new_pixel
);
3588 EMACS_INT size_max
= size_min
+ min (INT_MAX
, MOST_POSITIVE_FIXNUM
);
3590 CHECK_RANGED_INTEGER (size
, size_min
, size_max
);
3592 wset_new_pixel (w
, size
);
3594 wset_new_pixel (w
, make_number (XINT (w
->new_pixel
) + XINT (size
)));
3596 return w
->new_pixel
;
3599 DEFUN ("set-window-new-total", Fset_window_new_total
, Sset_window_new_total
, 2, 3, 0,
3600 doc
: /* Set new total size of WINDOW to SIZE.
3601 WINDOW must be a valid window and defaults to the selected one.
3604 Optional argument ADD non-nil means add SIZE to the new total size of
3605 WINDOW and return the sum.
3607 The new total size of WINDOW, if valid, will be shortly installed as
3608 WINDOW's total height (see `window-total-height') or total width (see
3609 `window-total-width').
3611 Note: This function does not operate on any child windows of WINDOW. */)
3612 (Lisp_Object window
, Lisp_Object size
, Lisp_Object add
)
3614 struct window
*w
= decode_valid_window (window
);
3616 CHECK_NUMBER (size
);
3618 wset_new_total (w
, size
);
3620 wset_new_total (w
, make_number (XINT (w
->new_total
) + XINT (size
)));
3622 return w
->new_total
;
3625 DEFUN ("set-window-new-normal", Fset_window_new_normal
, Sset_window_new_normal
, 1, 2, 0,
3626 doc
: /* Set new normal size of WINDOW to SIZE.
3627 WINDOW must be a valid window and defaults to the selected one.
3630 The new normal size of WINDOW, if valid, will be shortly installed as
3631 WINDOW's normal size (see `window-normal-size').
3633 Note: This function does not operate on any child windows of WINDOW. */)
3634 (Lisp_Object window
, Lisp_Object size
)
3636 wset_new_normal (decode_valid_window (window
), size
);
3640 /* Return true if setting w->pixel_height (w->pixel_width if HORFLAG)
3641 to w->new_pixel would result in correct heights (widths)
3642 for window W and recursively all child windows of W.
3644 Note: This function does not check any of `window-fixed-size-p',
3645 `window-min-height' or `window-min-width'. It does check that window
3646 sizes do not drop below one line (two columns). */
3648 window_resize_check (struct window
*w
, bool horflag
)
3650 struct frame
*f
= XFRAME (w
->frame
);
3653 if (WINDOW_VERTICAL_COMBINATION_P (w
))
3654 /* W is a vertical combination. */
3656 c
= XWINDOW (w
->contents
);
3658 /* All child windows of W must have the same width as W. */
3662 if (XINT (c
->new_pixel
) != XINT (w
->new_pixel
)
3663 || !window_resize_check (c
, horflag
))
3666 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3672 /* The sum of the heights of the child windows of W must equal
3675 int remaining_pixels
= XINT (w
->new_pixel
);
3679 if (!window_resize_check (c
, horflag
))
3682 remaining_pixels
-= XINT (c
->new_pixel
);
3683 if (remaining_pixels
< 0)
3685 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3688 return remaining_pixels
== 0;
3691 else if (WINDOW_HORIZONTAL_COMBINATION_P (w
))
3692 /* W is a horizontal combination. */
3694 c
= XWINDOW (w
->contents
);
3696 /* The sum of the widths of the child windows of W must equal W's
3699 int remaining_pixels
= XINT (w
->new_pixel
);
3703 if (!window_resize_check (c
, horflag
))
3706 remaining_pixels
-= XINT (c
->new_pixel
);
3707 if (remaining_pixels
< 0)
3709 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3712 return remaining_pixels
== 0;
3715 /* All child windows of W must have the same height as W. */
3719 if (XINT (c
->new_pixel
) != XINT (w
->new_pixel
)
3720 || !window_resize_check (c
, horflag
))
3723 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3730 /* A leaf window. Make sure it's not too small. The following
3731 hardcodes the values of `window-safe-min-width' (2) and
3732 `window-safe-min-height' (1) which are defined in window.el. */
3733 return (XINT (w
->new_pixel
) >= (horflag
3734 ? (2 * FRAME_COLUMN_WIDTH (f
))
3735 : FRAME_LINE_HEIGHT (f
)));
3739 /* Set w->pixel_height (w->pixel_width if HORFLAG) to
3740 w->new_pixel for window W and recursively all child windows of W.
3741 Also calculate and assign the new vertical (horizontal) pixel start
3742 positions of each of these windows.
3744 This function does not perform any error checks. Make sure you have
3745 run window_resize_check on W before applying this function. */
3747 window_resize_apply (struct window
*w
, bool horflag
)
3752 ? FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w
))
3753 : FRAME_LINE_HEIGHT (WINDOW_XFRAME (w
)));
3755 /* Note: Assigning new_normal requires that the new total size of the
3756 parent window has been set *before*. */
3759 w
->pixel_width
= XFASTINT (w
->new_pixel
);
3760 w
->total_cols
= w
->pixel_width
/ unit
;
3761 if (NUMBERP (w
->new_normal
))
3762 wset_normal_cols (w
, w
->new_normal
);
3764 edge
= w
->pixel_left
;
3768 w
->pixel_height
= XFASTINT (w
->new_pixel
);
3769 w
->total_lines
= w
->pixel_height
/ unit
;
3770 if (NUMBERP (w
->new_normal
))
3771 wset_normal_lines (w
, w
->new_normal
);
3773 edge
= w
->pixel_top
;
3776 if (WINDOW_VERTICAL_COMBINATION_P (w
))
3777 /* W is a vertical combination. */
3779 c
= XWINDOW (w
->contents
);
3784 c
->pixel_left
= edge
;
3785 c
->left_col
= edge
/ unit
;
3789 c
->pixel_top
= edge
;
3790 c
->top_line
= edge
/ unit
;
3792 window_resize_apply (c
, horflag
);
3794 edge
= edge
+ c
->pixel_height
;
3796 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3799 else if (WINDOW_HORIZONTAL_COMBINATION_P (w
))
3800 /* W is a horizontal combination. */
3802 c
= XWINDOW (w
->contents
);
3807 c
->pixel_left
= edge
;
3808 c
->left_col
= edge
/ unit
;
3812 c
->pixel_top
= edge
;
3813 c
->top_line
= edge
/ unit
;
3816 window_resize_apply (c
, horflag
);
3818 edge
= edge
+ c
->pixel_width
;
3820 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3825 w
->window_end_valid
= false;
3829 /* Set w->total_lines (w->total_cols if HORFLAG) to
3830 w->new_total for window W and recursively all child windows of W.
3831 Also calculate and assign the new vertical (horizontal) start
3832 positions of each of these windows. */
3834 window_resize_apply_total (struct window
*w
, bool horflag
)
3839 /* Note: Assigning new_normal requires that the new total size of the
3840 parent window has been set *before*. */
3843 w
->total_cols
= XFASTINT (w
->new_total
);
3848 w
->total_lines
= XFASTINT (w
->new_total
);
3852 if (WINDOW_VERTICAL_COMBINATION_P (w
))
3853 /* W is a vertical combination. */
3855 c
= XWINDOW (w
->contents
);
3863 window_resize_apply_total (c
, horflag
);
3865 edge
= edge
+ c
->total_lines
;
3867 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3870 else if (WINDOW_HORIZONTAL_COMBINATION_P (w
))
3871 /* W is a horizontal combination. */
3873 c
= XWINDOW (w
->contents
);
3881 window_resize_apply_total (c
, horflag
);
3883 edge
= edge
+ c
->total_cols
;
3885 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
3890 DEFUN ("window-resize-apply", Fwindow_resize_apply
, Swindow_resize_apply
, 0, 2, 0,
3891 doc
: /* Apply requested size values for window-tree of FRAME.
3892 If FRAME is omitted or nil, it defaults to the selected frame.
3894 Optional argument HORIZONTAL omitted or nil means apply requested
3895 height values. HORIZONTAL non-nil means apply requested width values.
3897 The requested size values are those set by `set-window-new-pixel' and
3898 `set-window-new-normal'. This function checks whether the requested
3899 values sum up to a valid window layout, recursively assigns the new
3900 sizes of all child windows and calculates and assigns the new start
3901 positions of these windows.
3903 Return t if the requested values have been applied correctly, nil
3906 Note: This function does not check any of `window-fixed-size-p',
3907 `window-min-height' or `window-min-width'. All these checks have to
3908 be applied on the Elisp level. */)
3909 (Lisp_Object frame
, Lisp_Object horizontal
)
3911 struct frame
*f
= decode_live_frame (frame
);
3912 struct window
*r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
3913 bool horflag
= !NILP (horizontal
);
3915 if (!window_resize_check (r
, horflag
)
3916 || (XINT (r
->new_pixel
)
3917 != (horflag
? r
->pixel_width
: r
->pixel_height
)))
3921 window_resize_apply (r
, horflag
);
3924 FRAME_WINDOW_SIZES_CHANGED (f
) = true;
3926 adjust_frame_glyphs (f
);
3933 DEFUN ("window-resize-apply-total", Fwindow_resize_apply_total
, Swindow_resize_apply_total
, 0, 2, 0,
3934 doc
: /* Apply requested total size values for window-tree of FRAME.
3935 If FRAME is omitted or nil, it defaults to the selected frame.
3937 This function does not assign pixel or normal size values. You should
3938 have run `window-resize-apply' before running this.
3940 Optional argument HORIZONTAL omitted or nil means apply requested
3941 height values. HORIZONTAL non-nil means apply requested width
3943 (Lisp_Object frame
, Lisp_Object horizontal
)
3945 struct frame
*f
= decode_live_frame (frame
);
3946 struct window
*r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
3949 /* Necessary when deleting the top-/or leftmost window. */
3951 r
->top_line
= FRAME_TOP_MARGIN (f
);
3952 window_resize_apply_total (r
, !NILP (horizontal
));
3953 /* Handle the mini window. */
3954 if (FRAME_HAS_MINIBUF_P (f
) && !FRAME_MINIBUF_ONLY_P (f
))
3956 struct window
*m
= XWINDOW (f
->minibuffer_window
);
3958 if (NILP (horizontal
))
3960 m
->top_line
= r
->top_line
+ r
->total_lines
;
3961 m
->total_lines
= XFASTINT (m
->new_total
);
3964 m
->total_cols
= XFASTINT (m
->new_total
);
3973 /* Resize frame F's windows when number of lines of F is set to SIZE.
3974 HORFLAG means resize windows when number of columns of F is set to
3975 SIZE. PIXELWISE means to interpret SIZE as pixels. */
3977 resize_frame_windows (struct frame
*f
, int size
, bool horflag
, bool pixelwise
)
3979 Lisp_Object root
= f
->root_window
;
3980 struct window
*r
= XWINDOW (root
);
3981 Lisp_Object mini
= f
->minibuffer_window
;
3983 /* old_size is the old size of the frame's root window. */
3984 int old_size
= horflag
? r
->total_cols
: r
->total_lines
;
3985 int old_pixel_size
= horflag
? r
->pixel_width
: r
->pixel_height
;
3986 /* new_size is the new size of the frame's root window. */
3987 int new_size
, new_pixel_size
;
3988 int unit
= horflag
? FRAME_COLUMN_WIDTH (f
) : FRAME_LINE_HEIGHT (f
);
3990 /* Don't let the size drop below one unit. This is more comforting
3991 when we are called from x_set_tool_bar_lines since the latter may
3992 have implicitly given us a zero or negative height. */
3995 /* Note: This does not include the size for internal borders
3996 since these are not part of the frame's text area. */
3997 new_pixel_size
= max (horflag
4000 - ((FRAME_HAS_MINIBUF_P (f
)
4001 && !FRAME_MINIBUF_ONLY_P (f
))
4002 ? FRAME_LINE_HEIGHT (f
) : 0)),
4004 new_size
= new_pixel_size
/ unit
;
4008 new_size
= max (size
- (!horflag
4009 && FRAME_HAS_MINIBUF_P (f
)
4010 && !FRAME_MINIBUF_ONLY_P (f
)),
4012 new_pixel_size
= new_size
* unit
;
4015 if (new_pixel_size
== old_pixel_size
4016 && (horflag
|| r
->pixel_top
== FRAME_TOP_MARGIN_HEIGHT (f
)))
4018 else if (WINDOW_LEAF_P (r
))
4019 /* For a leaf root window just set the size. */
4022 r
->total_cols
= new_size
;
4023 r
->pixel_width
= new_pixel_size
;
4027 r
->top_line
= FRAME_TOP_MARGIN (f
);
4028 r
->pixel_top
= FRAME_TOP_MARGIN_HEIGHT (f
);
4030 r
->total_lines
= new_size
;
4031 r
->pixel_height
= new_pixel_size
;
4039 r
->top_line
= FRAME_TOP_MARGIN (f
);
4040 r
->pixel_top
= FRAME_TOP_MARGIN_HEIGHT (f
);
4044 XSETINT (delta
, new_pixel_size
- old_pixel_size
);
4046 XSETINT (delta
, new_size
- old_size
);
4048 /* Try a "normal" resize first. */
4049 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qnil
,
4050 pixelwise
? Qt
: Qnil
);
4051 if (window_resize_check (r
, horflag
)
4052 && new_pixel_size
== XINT (r
->new_pixel
))
4054 window_resize_apply (r
, horflag
);
4055 window_pixel_to_total (r
->frame
, horflag
? Qt
: Qnil
);
4059 /* Try with "reasonable" minimum sizes next. */
4060 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qt
,
4061 pixelwise
? Qt
: Qnil
);
4062 if (window_resize_check (r
, horflag
)
4063 && new_pixel_size
== XINT (r
->new_pixel
))
4065 window_resize_apply (r
, horflag
);
4066 window_pixel_to_total (r
->frame
, horflag
? Qt
: Qnil
);
4067 #if false /* Let's try without safe sizes and/or killing other windows. */
4071 /* Finally, try with "safe" minimum sizes. */
4072 resize_root_window (root
, delta
, horflag
? Qt
: Qnil
, Qsafe
,
4073 pixelwise
? Qt
: Qnil
);
4074 if (window_resize_check (r
, horflag
)
4075 && new_pixel_size
== XINT (r
->new_pixel
))
4077 window_resize_apply (r
, horflag
);
4078 window_pixel_to_total (r
->frame
, horflag
? Qt
: Qnil
);
4082 /* We lost. Delete all windows but the frame's
4084 root
= f
->selected_window
;
4085 Fdelete_other_windows_internal (root
, Qnil
);
4088 XWINDOW (root
)->total_cols
= new_size
;
4089 XWINDOW (root
)->pixel_width
= new_pixel_size
;
4093 XWINDOW (root
)->total_lines
= new_size
;
4094 XWINDOW (root
)->pixel_height
= new_pixel_size
;
4102 if (FRAME_HAS_MINIBUF_P (f
) && !FRAME_MINIBUF_ONLY_P (f
))
4107 m
->total_cols
= size
;
4108 m
->pixel_width
= new_pixel_size
;
4112 /* Are we sure we always want 1 line here? */
4114 m
->pixel_height
= FRAME_LINE_HEIGHT (f
);
4115 m
->top_line
= r
->top_line
+ r
->total_lines
;
4116 m
->pixel_top
= r
->pixel_top
+ r
->pixel_height
;
4124 DEFUN ("split-window-internal", Fsplit_window_internal
, Ssplit_window_internal
, 4, 4, 0,
4125 doc
: /* Split window OLD.
4126 Second argument PIXEL-SIZE specifies the number of pixels of the
4127 new window. It must be a positive integer.
4129 Third argument SIDE nil (or `below') specifies that the new window shall
4130 be located below WINDOW. SIDE `above' means the new window shall be
4131 located above WINDOW. In both cases PIXEL-SIZE specifies the pixel
4132 height of the new window including space reserved for the mode and/or
4135 SIDE t (or `right') specifies that the new window shall be located on
4136 the right side of WINDOW. SIDE `left' means the new window shall be
4137 located on the left of WINDOW. In both cases PIXEL-SIZE specifies the
4138 width of the new window including space reserved for fringes and the
4139 scrollbar or a divider column.
4141 Fourth argument NORMAL-SIZE specifies the normal size of the new window
4142 according to the SIDE argument.
4144 The new pixel and normal sizes of all involved windows must have been
4145 set correctly. See the code of `split-window' for how this is done. */)
4146 (Lisp_Object old
, Lisp_Object pixel_size
, Lisp_Object side
, Lisp_Object normal_size
)
4148 /* OLD (*o) is the window we have to split. (*p) is either OLD's
4149 parent window or an internal window we have to install as OLD's new
4150 parent. REFERENCE (*r) must denote a live window, or is set to OLD
4151 provided OLD is a leaf window, or to the frame's selected window.
4152 NEW (*n) is the new window created with some parameters taken from
4154 Lisp_Object
new, frame
, reference
;
4155 struct window
*o
, *p
, *n
, *r
, *c
;
4158 /* HORFLAG is true when we split side-by-side, false otherwise. */
4159 = EQ (side
, Qt
) || EQ (side
, Qleft
) || EQ (side
, Qright
);
4163 frame
= WINDOW_FRAME (o
);
4166 CHECK_NUMBER (pixel_size
);
4167 EMACS_INT total_size
4168 = XINT (pixel_size
) / (horflag
4169 ? FRAME_COLUMN_WIDTH (f
)
4170 : FRAME_LINE_HEIGHT (f
));
4172 /* Set combination_limit if we have to make a new parent window.
4173 We do that if either `window-combination-limit' is t, or OLD has no
4174 parent, or OLD is ortho-combined. */
4175 bool combination_limit
4176 = (EQ (Vwindow_combination_limit
, Qt
)
4179 ? WINDOW_VERTICAL_COMBINATION_P (XWINDOW (o
->parent
))
4180 : WINDOW_HORIZONTAL_COMBINATION_P (XWINDOW (o
->parent
))));
4182 /* We need a live reference window to initialize some parameters. */
4183 if (WINDOW_LIVE_P (old
))
4184 /* OLD is live, use it as reference window. */
4187 /* Use the frame's selected window as reference window. */
4188 reference
= FRAME_SELECTED_WINDOW (f
);
4189 r
= XWINDOW (reference
);
4191 /* The following bugs are caught by `split-window'. */
4192 if (MINI_WINDOW_P (o
))
4193 error ("Attempt to split minibuffer window");
4194 else if (total_size
< (horflag
? 2 : 1))
4195 error ("Size of new window too small (after split)");
4196 else if (!combination_limit
&& !NILP (Vwindow_combination_resize
))
4197 /* `window-combination-resize' non-nil means try to resize OLD's siblings
4200 p
= XWINDOW (o
->parent
);
4201 /* Temporarily pretend we split the parent window. */
4203 (p
, make_number ((horflag
? p
->pixel_width
: p
->pixel_height
)
4204 - XINT (pixel_size
)));
4205 if (!window_resize_check (p
, horflag
))
4206 error ("Window sizes don't fit");
4208 /* Undo the temporary pretension. */
4209 wset_new_pixel (p
, make_number (horflag
? p
->pixel_width
: p
->pixel_height
));
4213 if (!window_resize_check (o
, horflag
))
4214 error ("Resizing old window failed");
4215 else if (XINT (pixel_size
) + XINT (o
->new_pixel
)
4216 != (horflag
? o
->pixel_width
: o
->pixel_height
))
4217 error ("Sum of sizes of old and new window don't fit");
4220 /* This is our point of no return. */
4221 if (combination_limit
)
4223 /* Save the old value of o->normal_cols/lines. It gets corrupted
4224 by make_parent_window and we need it below for assigning it to
4226 Lisp_Object new_normal
4227 = horflag
? o
->normal_cols
: o
->normal_lines
;
4229 make_parent_window (old
, horflag
);
4230 p
= XWINDOW (o
->parent
);
4231 if (EQ (Vwindow_combination_limit
, Qt
))
4232 /* Store t in the new parent's combination_limit slot to avoid
4233 that its children get merged into another window. */
4234 wset_combination_limit (p
, Qt
);
4235 /* These get applied below. */
4237 (p
, make_number (horflag
? o
->pixel_width
: o
->pixel_height
));
4239 (p
, make_number (horflag
? o
->total_cols
: o
->total_lines
));
4240 wset_new_normal (p
, new_normal
);
4243 p
= XWINDOW (o
->parent
);
4246 FRAME_WINDOW_SIZES_CHANGED (f
) = true;
4247 new = make_window ();
4249 wset_frame (n
, frame
);
4250 wset_parent (n
, o
->parent
);
4252 if (EQ (side
, Qabove
) || EQ (side
, Qleft
))
4254 wset_prev (n
, o
->prev
);
4256 wset_combination (p
, horflag
, new);
4258 wset_next (XWINDOW (n
->prev
), new);
4264 wset_next (n
, o
->next
);
4265 if (!NILP (n
->next
))
4266 wset_prev (XWINDOW (n
->next
), new);
4271 n
->window_end_valid
= false;
4272 n
->last_cursor_vpos
= 0;
4274 /* Get special geometry settings from reference window. */
4275 n
->left_margin_cols
= r
->left_margin_cols
;
4276 n
->right_margin_cols
= r
->right_margin_cols
;
4277 n
->left_fringe_width
= r
->left_fringe_width
;
4278 n
->right_fringe_width
= r
->right_fringe_width
;
4279 n
->fringes_outside_margins
= r
->fringes_outside_margins
;
4280 n
->scroll_bar_width
= r
->scroll_bar_width
;
4281 n
->scroll_bar_height
= r
->scroll_bar_height
;
4282 wset_vertical_scroll_bar_type (n
, r
->vertical_scroll_bar_type
);
4283 wset_horizontal_scroll_bar_type (n
, r
->horizontal_scroll_bar_type
);
4285 /* Directly assign orthogonal coordinates and sizes. */
4288 n
->pixel_top
= o
->pixel_top
;
4289 n
->top_line
= o
->top_line
;
4290 n
->pixel_height
= o
->pixel_height
;
4291 n
->total_lines
= o
->total_lines
;
4295 n
->pixel_left
= o
->pixel_left
;
4296 n
->left_col
= o
->left_col
;
4297 n
->pixel_width
= o
->pixel_width
;
4298 n
->total_cols
= o
->total_cols
;
4301 /* Iso-coordinates and sizes are assigned by window_resize_apply,
4302 get them ready here. */
4303 wset_new_pixel (n
, pixel_size
);
4305 c
= XWINDOW (p
->contents
);
4309 sum
= sum
+ XINT (c
->new_total
);
4310 c
= NILP (c
->next
) ? 0 : XWINDOW (c
->next
);
4312 wset_new_total (n
, make_number ((horflag
4316 wset_new_normal (n
, normal_size
);
4319 window_resize_apply (p
, horflag
);
4320 adjust_frame_glyphs (f
);
4321 /* Set buffer of NEW to buffer of reference window. Don't run
4323 set_window_buffer (new, r
->contents
, false, true);
4326 /* Maybe we should run the scroll functions in Elisp (which already
4327 runs the configuration change hook). */
4328 if (! NILP (Vwindow_scroll_functions
))
4329 run_hook_with_args_2 (Qwindow_scroll_functions
, new,
4330 Fmarker_position (n
->start
));
4336 DEFUN ("delete-window-internal", Fdelete_window_internal
, Sdelete_window_internal
, 1, 1, 0,
4337 doc
: /* Remove WINDOW from its frame.
4338 WINDOW defaults to the selected window. Return nil.
4339 Signal an error when WINDOW is the only window on its frame. */)
4340 (Lisp_Object window
)
4342 Lisp_Object parent
, sibling
, frame
, root
;
4343 struct window
*w
, *p
, *s
, *r
;
4345 bool horflag
, before_sibling
= false;
4347 w
= decode_any_window (window
);
4348 XSETWINDOW (window
, w
);
4349 if (NILP (w
->contents
))
4350 /* It's a no-op to delete an already deleted window. */
4355 /* Never delete a minibuffer or frame root window. */
4356 error ("Attempt to delete minibuffer or sole ordinary window");
4357 else if (NILP (w
->prev
) && NILP (w
->next
))
4358 /* Rather bow out here, this case should be handled on the Elisp
4360 error ("Attempt to delete sole window of parent");
4362 p
= XWINDOW (parent
);
4363 horflag
= WINDOW_HORIZONTAL_COMBINATION_P (p
);
4365 frame
= WINDOW_FRAME (w
);
4368 root
= FRAME_ROOT_WINDOW (f
);
4371 /* Unlink WINDOW from window tree. */
4373 /* Get SIBLING below (on the right of) WINDOW. */
4375 /* before_sibling means WINDOW is the first child of its
4376 parent and thus before the sibling. */
4377 before_sibling
= true;
4379 s
= XWINDOW (sibling
);
4380 wset_prev (s
, Qnil
);
4381 wset_combination (p
, horflag
, sibling
);
4384 /* Get SIBLING above (on the left of) WINDOW. */
4387 s
= XWINDOW (sibling
);
4388 wset_next (s
, w
->next
);
4389 if (!NILP (s
->next
))
4390 wset_prev (XWINDOW (s
->next
), sibling
);
4393 if (window_resize_check (r
, horflag
)
4394 && (XINT (r
->new_pixel
)
4395 == (horflag
? r
->pixel_width
: r
->pixel_height
)))
4396 /* We can delete WINDOW now. */
4401 window_resize_apply (p
, horflag
);
4402 /* If this window is referred to by the dpyinfo's mouse
4403 highlight, invalidate that slot to be safe (Bug#9904). */
4404 if (!FRAME_INITIAL_P (f
))
4406 Mouse_HLInfo
*hlinfo
= MOUSE_HL_INFO (f
);
4408 if (EQ (hlinfo
->mouse_face_window
, window
))
4409 hlinfo
->mouse_face_window
= Qnil
;
4413 Vwindow_list
= Qnil
;
4414 FRAME_WINDOW_SIZES_CHANGED (f
) = true;
4416 wset_next (w
, Qnil
); /* Don't delete w->next too. */
4417 free_window_matrices (w
);
4419 if (WINDOWP (w
->contents
))
4421 delete_all_child_windows (w
->contents
);
4422 wset_combination (w
, false, Qnil
);
4427 unchain_marker (XMARKER (w
->pointm
));
4428 unchain_marker (XMARKER (w
->old_pointm
));
4429 unchain_marker (XMARKER (w
->start
));
4430 wset_buffer (w
, Qnil
);
4433 if (NILP (s
->prev
) && NILP (s
->next
))
4434 /* A matrjoshka where SIBLING has become the only child of
4437 /* Put SIBLING into PARENT's place. */
4438 replace_window (parent
, sibling
, false);
4439 /* Have SIBLING inherit the following three slot values from
4440 PARENT (the combination_limit slot is not inherited). */
4441 wset_normal_cols (s
, p
->normal_cols
);
4442 wset_normal_lines (s
, p
->normal_lines
);
4443 /* Mark PARENT as deleted. */
4444 wset_combination (p
, false, Qnil
);
4445 /* Try to merge SIBLING into its new parent. */
4446 recombine_windows (sibling
);
4449 adjust_frame_glyphs (f
);
4451 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f
)))
4452 /* We deleted the frame's selected window. */
4454 /* Use the frame's first window as fallback ... */
4455 Lisp_Object new_selected_window
= Fframe_first_window (frame
);
4456 /* ... but preferably use its most recently used window. */
4457 Lisp_Object mru_window
;
4459 /* `get-mru-window' might fail for some reason so play it safe
4460 - promote the first window _without recording it_ first. */
4461 if (EQ (FRAME_SELECTED_WINDOW (f
), selected_window
))
4462 Fselect_window (new_selected_window
, Qt
);
4464 fset_selected_window (f
, new_selected_window
);
4468 /* Now look whether `get-mru-window' gets us something. */
4469 mru_window
= call1 (Qget_mru_window
, frame
);
4470 if (WINDOW_LIVE_P (mru_window
)
4471 && EQ (XWINDOW (mru_window
)->frame
, frame
))
4472 new_selected_window
= mru_window
;
4474 /* If all ended up well, we now promote the mru window. */
4475 if (EQ (FRAME_SELECTED_WINDOW (f
), selected_window
))
4476 Fselect_window (new_selected_window
, Qnil
);
4478 fset_selected_window (f
, new_selected_window
);
4483 /* Must be run by the caller:
4484 run_window_configuration_change_hook (f); */
4487 /* We failed: Relink WINDOW into window tree. */
4491 wset_prev (s
, window
);
4492 wset_combination (p
, horflag
, window
);
4496 wset_next (s
, window
);
4497 if (!NILP (w
->next
))
4498 wset_prev (XWINDOW (w
->next
), window
);
4500 error ("Deletion failed");
4506 /***********************************************************************
4507 Resizing Mini-Windows
4508 ***********************************************************************/
4510 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4513 grow_mini_window (struct window
*w
, int delta
, bool pixelwise
)
4515 struct frame
*f
= XFRAME (w
->frame
);
4517 Lisp_Object root
, height
;
4518 int line_height
, pixel_height
;
4520 eassert (MINI_WINDOW_P (w
));
4521 eassert (delta
>= 0);
4525 root
= FRAME_ROOT_WINDOW (f
);
4527 height
= call3 (Qwindow_resize_root_window_vertically
,
4528 root
, make_number (- delta
), pixelwise
? Qt
: Qnil
);
4529 if (INTEGERP (height
) && window_resize_check (r
, false))
4532 window_resize_apply (r
, false);
4536 pixel_height
= min (-XINT (height
), INT_MAX
- w
->pixel_height
);
4537 line_height
= pixel_height
/ FRAME_LINE_HEIGHT (f
);
4541 line_height
= min (-XINT (height
),
4542 ((INT_MAX
- w
->pixel_height
)
4543 / FRAME_LINE_HEIGHT (f
)));
4544 pixel_height
= line_height
* FRAME_LINE_HEIGHT (f
);
4547 /* Grow the mini-window. */
4548 w
->pixel_top
= r
->pixel_top
+ r
->pixel_height
;
4549 w
->top_line
= r
->top_line
+ r
->total_lines
;
4550 /* Make sure the mini-window has always at least one line. */
4551 w
->pixel_height
= max (w
->pixel_height
+ pixel_height
,
4552 FRAME_LINE_HEIGHT (f
));
4553 w
->total_lines
= max (w
->total_lines
+ line_height
, 1);
4555 /* Enforce full redisplay of the frame. */
4556 /* FIXME: Shouldn't window--resize-root-window-vertically do it? */
4558 adjust_frame_glyphs (f
);
4564 /* Shrink mini-window W to one line. */
4566 shrink_mini_window (struct window
*w
, bool pixelwise
)
4568 struct frame
*f
= XFRAME (w
->frame
);
4570 Lisp_Object root
, delta
;
4571 EMACS_INT height
, unit
;
4573 eassert (MINI_WINDOW_P (w
));
4575 height
= pixelwise
? w
->pixel_height
: w
->total_lines
;
4576 unit
= pixelwise
? FRAME_LINE_HEIGHT (f
) : 1;
4579 root
= FRAME_ROOT_WINDOW (f
);
4581 delta
= call3 (Qwindow_resize_root_window_vertically
,
4582 root
, make_number (height
- unit
),
4583 pixelwise
? Qt
: Qnil
);
4584 if (INTEGERP (delta
) && window_resize_check (r
, false))
4587 window_resize_apply (r
, false);
4589 /* Shrink the mini-window. */
4590 w
->top_line
= r
->top_line
+ r
->total_lines
;
4592 w
->pixel_top
= r
->pixel_top
+ r
->pixel_height
;
4593 w
->pixel_height
= FRAME_LINE_HEIGHT (f
);
4594 /* Enforce full redisplay of the frame. */
4595 /* FIXME: Shouldn't window--resize-root-window-vertically do it? */
4597 adjust_frame_glyphs (f
);
4600 /* If the above failed for whatever strange reason we must make a
4601 one window frame here. The same routine will be needed when
4602 shrinking the frame (and probably when making the initial
4603 *scratch* window). For the moment leave things as they are. */
4607 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal
, Sresize_mini_window_internal
, 1, 1, 0,
4608 doc
: /* Resize minibuffer window WINDOW. */)
4609 (Lisp_Object window
)
4611 struct window
*w
= XWINDOW (window
);
4616 CHECK_WINDOW (window
);
4617 f
= XFRAME (w
->frame
);
4619 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w
->frame
)), window
))
4620 error ("Not a valid minibuffer window");
4621 else if (FRAME_MINIBUF_ONLY_P (f
))
4622 error ("Cannot resize a minibuffer-only frame");
4624 r
= XWINDOW (FRAME_ROOT_WINDOW (f
));
4625 height
= r
->pixel_height
+ w
->pixel_height
;
4626 if (window_resize_check (r
, false)
4627 && XINT (w
->new_pixel
) > 0
4628 && height
== XINT (r
->new_pixel
) + XINT (w
->new_pixel
))
4631 window_resize_apply (r
, false);
4633 w
->pixel_height
= XFASTINT (w
->new_pixel
);
4634 w
->total_lines
= w
->pixel_height
/ FRAME_LINE_HEIGHT (f
);
4635 w
->pixel_top
= r
->pixel_top
+ r
->pixel_height
;
4636 w
->top_line
= r
->top_line
+ r
->total_lines
;
4639 FRAME_WINDOW_SIZES_CHANGED (f
) = true;
4640 adjust_frame_glyphs (f
);
4645 error ("Failed to resize minibuffer window");
4648 /* Mark window cursors off for all windows in the window tree rooted
4649 at W by setting their phys_cursor_on_p flag to zero. Called from
4650 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4651 the frame are cleared. */
4654 mark_window_cursors_off (struct window
*w
)
4658 if (WINDOWP (w
->contents
))
4659 mark_window_cursors_off (XWINDOW (w
->contents
));
4661 w
->phys_cursor_on_p
= false;
4663 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
4668 /* Return number of lines of text (not counting mode lines) in W. */
4671 window_internal_height (struct window
*w
)
4673 int ht
= w
->total_lines
;
4675 if (!MINI_WINDOW_P (w
))
4677 if (!NILP (w
->parent
)
4678 || WINDOWP (w
->contents
)
4681 || WINDOW_WANTS_MODELINE_P (w
))
4684 if (WINDOW_WANTS_HEADER_LINE_P (w
))
4692 /************************************************************************
4694 ***********************************************************************/
4696 /* Scroll contents of window WINDOW up. If WHOLE, scroll
4697 N screen-fulls, which is defined as the height of the window minus
4698 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4699 instead. Negative values of N mean scroll down. NOERROR
4700 means don't signal an error if we try to move over BEGV or ZV,
4704 window_scroll (Lisp_Object window
, EMACS_INT n
, bool whole
, bool noerror
)
4706 ptrdiff_t count
= SPECPDL_INDEX ();
4708 immediate_quit
= true;
4709 n
= clip_to_bounds (INT_MIN
, n
, INT_MAX
);
4711 wset_redisplay (XWINDOW (window
));
4713 if (whole
&& Vfast_but_imprecise_scrolling
)
4714 specbind (Qfontification_functions
, Qnil
);
4716 /* If we must, use the pixel-based version which is much slower than
4717 the line-based one but can handle varying line heights. */
4718 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window
)->frame
)))
4719 window_scroll_pixel_based (window
, n
, whole
, noerror
);
4721 window_scroll_line_based (window
, n
, whole
, noerror
);
4723 unbind_to (count
, Qnil
);
4726 XWINDOW (window
)->window_end_valid
= false;
4727 immediate_quit
= false;
4731 /* Implementation of window_scroll that works based on pixel line
4732 heights. See the comment of window_scroll for parameter
4736 window_scroll_pixel_based (Lisp_Object window
, int n
, bool whole
, bool noerror
)
4739 struct window
*w
= XWINDOW (window
);
4740 struct text_pos start
;
4741 int this_scroll_margin
;
4742 /* True if we fiddled the window vscroll field without really scrolling. */
4743 bool vscrolled
= false;
4744 int x
, y
, rtop
, rbot
, rowh
, vpos
;
4745 void *itdata
= NULL
;
4746 int window_total_lines
;
4747 int frame_line_height
= default_line_pixel_height (w
);
4748 bool adjust_old_pointm
= !NILP (Fequal (Fwindow_point (window
),
4749 Fwindow_old_point (window
)));
4751 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
4752 /* Scrolling a minibuffer window via scroll bar when the echo area
4753 shows long text sometimes resets the minibuffer contents behind
4755 if (CHARPOS (start
) > ZV
)
4756 SET_TEXT_POS (start
, BEGV
, BEGV_BYTE
);
4758 /* If PT is not visible in WINDOW, move back one half of
4759 the screen. Allow PT to be partially visible, otherwise
4760 something like (scroll-down 1) with PT in the line before
4761 the partially visible one would recenter. */
4763 if (!pos_visible_p (w
, PT
, &x
, &y
, &rtop
, &rbot
, &rowh
, &vpos
))
4765 itdata
= bidi_shelve_cache ();
4766 /* Move backward half the height of the window. Performance note:
4767 vmotion used here is about 10% faster, but would give wrong
4768 results for variable height lines. */
4769 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
4770 it
.current_y
= it
.last_visible_y
;
4771 move_it_vertically_backward (&it
, window_box_height (w
) / 2);
4773 /* The function move_iterator_vertically may move over more than
4774 the specified y-distance. If it->w is small, e.g. a
4775 mini-buffer window, we may end up in front of the window's
4776 display area. Start displaying at the start of the line
4777 containing PT in this case. */
4778 if (it
.current_y
<= 0)
4780 init_iterator (&it
, w
, PT
, PT_BYTE
, NULL
, DEFAULT_FACE_ID
);
4781 move_it_vertically_backward (&it
, 0);
4785 start
= it
.current
.pos
;
4786 bidi_unshelve_cache (itdata
, false);
4788 else if (auto_window_vscroll_p
)
4790 if (rtop
|| rbot
) /* Partially visible. */
4793 int dy
= frame_line_height
;
4794 /* In the below we divide the window box height by the
4795 frame's line height to make the result predictable when
4796 the window box is not an integral multiple of the line
4797 height. This is important to ensure we get back to the
4798 same position when scrolling up, then down. */
4800 dy
= max ((window_box_height (w
) / dy
4801 - next_screen_context_lines
) * dy
,
4807 /* Only vscroll backwards if already vscrolled forwards. */
4808 if (w
->vscroll
< 0 && rtop
> 0)
4810 px
= max (0, -w
->vscroll
- min (rtop
, -dy
));
4811 Fset_window_vscroll (window
, make_number (px
), Qt
);
4817 /* Do vscroll if already vscrolled or only display line. */
4818 if (rbot
> 0 && (w
->vscroll
< 0 || vpos
== 0))
4820 px
= max (0, -w
->vscroll
+ min (rbot
, dy
));
4821 Fset_window_vscroll (window
, make_number (px
), Qt
);
4825 /* Maybe modify window start instead of scrolling. */
4826 if (rbot
> 0 || w
->vscroll
< 0)
4830 Fset_window_vscroll (window
, make_number (0), Qt
);
4831 /* If there are other text lines above the current row,
4832 move window start to current row. Else to next row. */
4834 spos
= XINT (Fline_beginning_position (Qnil
));
4836 spos
= min (XINT (Fline_end_position (Qnil
)) + 1, ZV
);
4837 set_marker_restricted (w
->start
, make_number (spos
),
4839 w
->start_at_line_beg
= true;
4840 wset_update_mode_line (w
);
4841 /* Set force_start so that redisplay_window will run the
4842 window-scroll-functions. */
4843 w
->force_start
= true;
4848 /* Cancel previous vscroll. */
4849 Fset_window_vscroll (window
, make_number (0), Qt
);
4852 itdata
= bidi_shelve_cache ();
4853 /* If scroll_preserve_screen_position is non-nil, we try to set
4854 point in the same window line as it is now, so get that line. */
4855 if (!NILP (Vscroll_preserve_screen_position
))
4857 /* We preserve the goal pixel coordinate across consecutive
4858 calls to scroll-up, scroll-down and other commands that
4859 have the `scroll-command' property. This avoids the
4860 possibility of point becoming "stuck" on a tall line when
4861 scrolling by one line. */
4862 if (window_scroll_pixel_based_preserve_y
< 0
4863 || !SYMBOLP (KVAR (current_kboard
, Vlast_command
))
4864 || NILP (Fget (KVAR (current_kboard
, Vlast_command
), Qscroll_command
)))
4866 start_display (&it
, w
, start
);
4867 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
4868 window_scroll_pixel_based_preserve_y
= it
.current_y
;
4869 window_scroll_pixel_based_preserve_x
= it
.current_x
;
4873 window_scroll_pixel_based_preserve_y
4874 = window_scroll_pixel_based_preserve_x
= -1;
4876 /* Move iterator it from start the specified distance forward or
4877 backward. The result is the new window start. */
4878 start_display (&it
, w
, start
);
4881 ptrdiff_t start_pos
= IT_CHARPOS (it
);
4882 int dy
= frame_line_height
;
4883 /* In the below we divide the window box height by the frame's
4884 line height to make the result predictable when the window
4885 box is not an integral multiple of the line height. This is
4886 important to ensure we get back to the same position when
4887 scrolling up, then down. */
4888 dy
= max ((window_box_height (w
) / dy
- next_screen_context_lines
) * dy
,
4891 /* Note that move_it_vertically always moves the iterator to the
4892 start of a line. So, if the last line doesn't have a newline,
4893 we would end up at the start of the line ending at ZV. */
4896 move_it_vertically_backward (&it
, -dy
);
4897 /* Ensure we actually do move, e.g. in case we are currently
4898 looking at an image that is taller that the window height. */
4899 while (start_pos
== IT_CHARPOS (it
)
4900 && start_pos
> BEGV
)
4901 move_it_by_lines (&it
, -1);
4905 move_it_to (&it
, ZV
, -1, it
.current_y
+ dy
, -1,
4906 MOVE_TO_POS
| MOVE_TO_Y
);
4907 /* Ensure we actually do move, e.g. in case we are currently
4908 looking at an image that is taller that the window height. */
4909 while (start_pos
== IT_CHARPOS (it
)
4911 move_it_by_lines (&it
, 1);
4915 move_it_by_lines (&it
, n
);
4917 /* We failed if we find ZV is already on the screen (scrolling up,
4918 means there's nothing past the end), or if we can't start any
4919 earlier (scrolling down, means there's nothing past the top). */
4920 if ((n
> 0 && IT_CHARPOS (it
) == ZV
)
4921 || (n
< 0 && IT_CHARPOS (it
) == CHARPOS (start
)))
4923 if (IT_CHARPOS (it
) == ZV
)
4925 if (it
.current_y
< it
.last_visible_y
4926 && (it
.current_y
+ it
.max_ascent
+ it
.max_descent
4927 > it
.last_visible_y
))
4929 /* The last line was only partially visible, make it fully
4931 w
->vscroll
= (it
.last_visible_y
4932 - it
.current_y
+ it
.max_ascent
+ it
.max_descent
);
4933 adjust_frame_glyphs (it
.f
);
4937 bidi_unshelve_cache (itdata
, false);
4940 else if (n
< 0) /* could happen with empty buffers */
4941 xsignal0 (Qbeginning_of_buffer
);
4943 xsignal0 (Qend_of_buffer
);
4948 if (w
->vscroll
!= 0)
4949 /* The first line was only partially visible, make it fully
4954 bidi_unshelve_cache (itdata
, false);
4958 xsignal0 (Qbeginning_of_buffer
);
4962 /* If control gets here, then we vscrolled. */
4964 XBUFFER (w
->contents
)->prevent_redisplay_optimizations_p
= true;
4966 /* Don't try to change the window start below. */
4972 ptrdiff_t pos
= IT_CHARPOS (it
);
4975 /* If in the middle of a multi-glyph character move forward to
4976 the next character. */
4977 if (in_display_vector_p (&it
))
4980 move_it_to (&it
, pos
, -1, -1, -1, MOVE_TO_POS
);
4983 /* Set the window start, and set up the window for redisplay. */
4984 set_marker_restricted_both (w
->start
, w
->contents
, IT_CHARPOS (it
),
4986 bytepos
= marker_byte_position (w
->start
);
4987 w
->start_at_line_beg
= (pos
== BEGV
|| FETCH_BYTE (bytepos
- 1) == '\n');
4988 wset_update_mode_line (w
);
4989 /* Set force_start so that redisplay_window will run the
4990 window-scroll-functions. */
4991 w
->force_start
= true;
4994 /* The rest of this function uses current_y in a nonstandard way,
4995 not including the height of the header line if any. */
4996 it
.current_y
= it
.vpos
= 0;
4998 /* Move PT out of scroll margins.
4999 This code wants current_y to be zero at the window start position
5000 even if there is a header line. */
5002 = w
->total_lines
* WINDOW_FRAME_LINE_HEIGHT (w
) / frame_line_height
;
5003 this_scroll_margin
= max (0, scroll_margin
);
5005 = min (this_scroll_margin
, window_total_lines
/ 4);
5006 this_scroll_margin
*= frame_line_height
;
5010 /* We moved the window start towards ZV, so PT may be now
5011 in the scroll margin at the top. */
5012 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
5013 if (IT_CHARPOS (it
) == PT
&& it
.current_y
>= this_scroll_margin
5014 && (NILP (Vscroll_preserve_screen_position
)
5015 || EQ (Vscroll_preserve_screen_position
, Qt
)))
5016 /* We found PT at a legitimate height. Leave it alone. */
5018 else if (window_scroll_pixel_based_preserve_y
>= 0)
5020 /* If we have a header line, take account of it.
5021 This is necessary because we set it.current_y to 0, above. */
5022 move_it_to (&it
, -1,
5023 window_scroll_pixel_based_preserve_x
,
5024 (window_scroll_pixel_based_preserve_y
5025 - WINDOW_WANTS_HEADER_LINE_P (w
)),
5026 -1, MOVE_TO_Y
| MOVE_TO_X
);
5027 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
5031 while (it
.current_y
< this_scroll_margin
)
5033 int prev
= it
.current_y
;
5034 move_it_by_lines (&it
, 1);
5035 if (prev
== it
.current_y
)
5038 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
5043 ptrdiff_t charpos
, bytepos
;
5046 /* Save our position, for the
5047 window_scroll_pixel_based_preserve_y case. */
5048 charpos
= IT_CHARPOS (it
);
5049 bytepos
= IT_BYTEPOS (it
);
5051 /* We moved the window start towards BEGV, so PT may be now
5052 in the scroll margin at the bottom. */
5053 move_it_to (&it
, PT
, -1,
5054 (it
.last_visible_y
- CURRENT_HEADER_LINE_HEIGHT (w
)
5055 - this_scroll_margin
- 1),
5057 MOVE_TO_POS
| MOVE_TO_Y
);
5059 /* Save our position, in case it's correct. */
5060 charpos
= IT_CHARPOS (it
);
5061 bytepos
= IT_BYTEPOS (it
);
5063 /* If PT is in the screen line at the last fully visible line,
5064 move_it_to will stop at X = 0 in that line, because the
5065 required Y coordinate is reached there. See if we can get to
5066 PT without descending lower in Y, and if we can, it means we
5067 reached PT before the scroll margin. */
5074 it_data
= bidi_shelve_cache ();
5075 move_it_to (&it
, PT
, -1, -1, -1, MOVE_TO_POS
);
5076 if (IT_CHARPOS (it
) == PT
&& it
.current_y
== it2
.current_y
)
5078 charpos
= IT_CHARPOS (it
);
5079 bytepos
= IT_BYTEPOS (it
);
5080 bidi_unshelve_cache (it_data
, true);
5085 bidi_unshelve_cache (it_data
, false);
5089 /* See if point is on a partially visible line at the end. */
5090 if (it
.what
== IT_EOB
)
5091 partial_p
= it
.current_y
+ it
.ascent
+ it
.descent
> it
.last_visible_y
;
5094 move_it_by_lines (&it
, 1);
5095 partial_p
= it
.current_y
> it
.last_visible_y
;
5098 if (charpos
== PT
&& !partial_p
5099 && (NILP (Vscroll_preserve_screen_position
)
5100 || EQ (Vscroll_preserve_screen_position
, Qt
)))
5101 /* We found PT before we found the display margin, so PT is ok. */
5103 else if (window_scroll_pixel_based_preserve_y
>= 0)
5105 SET_TEXT_POS_FROM_MARKER (start
, w
->start
);
5106 start_display (&it
, w
, start
);
5107 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
5108 here because we called start_display again and did not
5109 alter it.current_y this time. */
5110 move_it_to (&it
, -1, window_scroll_pixel_based_preserve_x
,
5111 window_scroll_pixel_based_preserve_y
, -1,
5112 MOVE_TO_Y
| MOVE_TO_X
);
5113 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
5118 /* The last line was only partially visible, so back up two
5119 lines to make sure we're on a fully visible line. */
5121 move_it_by_lines (&it
, -2);
5122 SET_PT_BOTH (IT_CHARPOS (it
), IT_BYTEPOS (it
));
5125 /* No, the position we saved is OK, so use it. */
5126 SET_PT_BOTH (charpos
, bytepos
);
5129 bidi_unshelve_cache (itdata
, false);
5131 if (adjust_old_pointm
)
5132 Fset_marker (w
->old_pointm
,
5133 ((w
== XWINDOW (selected_window
))
5134 ? make_number (BUF_PT (XBUFFER (w
->contents
)))
5135 : Fmarker_position (w
->pointm
)),
5140 /* Implementation of window_scroll that works based on screen lines.
5141 See the comment of window_scroll for parameter descriptions. */
5144 window_scroll_line_based (Lisp_Object window
, int n
, bool whole
, bool noerror
)
5146 struct window
*w
= XWINDOW (window
);
5147 /* Fvertical_motion enters redisplay, which can trigger
5148 fontification, which in turn can modify buffer text (e.g., if the
5149 fontification functions replace escape sequences with faces, as
5150 in `grep-mode-font-lock-keywords'). So we use a marker to record
5151 the old point position, to prevent crashes in SET_PT_BOTH. */
5152 Lisp_Object opoint_marker
= Fpoint_marker ();
5153 register ptrdiff_t pos
, pos_byte
;
5154 register int ht
= window_internal_height (w
);
5155 register Lisp_Object tem
;
5158 ptrdiff_t startpos
= marker_position (w
->start
);
5159 ptrdiff_t startbyte
= marker_byte_position (w
->start
);
5160 Lisp_Object original_pos
= Qnil
;
5161 bool adjust_old_pointm
= !NILP (Fequal (Fwindow_point (window
),
5162 Fwindow_old_point (window
)));
5164 /* If scrolling screen-fulls, compute the number of lines to
5165 scroll from the window's height. */
5167 n
*= max (1, ht
- next_screen_context_lines
);
5169 if (!NILP (Vscroll_preserve_screen_position
))
5171 if (window_scroll_preserve_vpos
<= 0
5172 || !SYMBOLP (KVAR (current_kboard
, Vlast_command
))
5173 || NILP (Fget (KVAR (current_kboard
, Vlast_command
), Qscroll_command
)))
5175 struct position posit
5176 = *compute_motion (startpos
, startbyte
, 0, 0, false,
5177 PT
, ht
, 0, -1, w
->hscroll
, 0, w
);
5179 window_scroll_preserve_vpos
= posit
.vpos
;
5180 window_scroll_preserve_hpos
= posit
.hpos
+ w
->hscroll
;
5183 original_pos
= Fcons (make_number (window_scroll_preserve_hpos
),
5184 make_number (window_scroll_preserve_vpos
));
5187 XSETFASTINT (tem
, PT
);
5188 tem
= Fpos_visible_in_window_p (tem
, window
, Qnil
);
5192 Fvertical_motion (make_number (- (ht
/ 2)), window
, Qnil
);
5194 startbyte
= PT_BYTE
;
5197 SET_PT_BOTH (startpos
, startbyte
);
5198 lose
= n
< 0 && PT
== BEGV
;
5199 Fvertical_motion (make_number (n
), window
, Qnil
);
5203 SET_PT_BOTH (marker_position (opoint_marker
),
5204 marker_byte_position (opoint_marker
));
5211 xsignal0 (Qbeginning_of_buffer
);
5216 /* Don't use a scroll margin that is negative or too large. */
5217 int this_scroll_margin
=
5218 max (0, min (scroll_margin
, w
->total_lines
/ 4));
5220 set_marker_restricted_both (w
->start
, w
->contents
, pos
, pos_byte
);
5221 w
->start_at_line_beg
= !NILP (bolp
);
5222 wset_update_mode_line (w
);
5223 /* Set force_start so that redisplay_window will run
5224 the window-scroll-functions. */
5225 w
->force_start
= true;
5227 if (!NILP (Vscroll_preserve_screen_position
)
5228 && (whole
|| !EQ (Vscroll_preserve_screen_position
, Qt
)))
5230 SET_PT_BOTH (pos
, pos_byte
);
5231 Fvertical_motion (original_pos
, window
, Qnil
);
5233 /* If we scrolled forward, put point enough lines down
5234 that it is outside the scroll margin. */
5239 if (this_scroll_margin
> 0)
5241 SET_PT_BOTH (pos
, pos_byte
);
5242 Fvertical_motion (make_number (this_scroll_margin
), window
, Qnil
);
5248 if (top_margin
<= marker_position (opoint_marker
))
5249 SET_PT_BOTH (marker_position (opoint_marker
),
5250 marker_byte_position (opoint_marker
));
5251 else if (!NILP (Vscroll_preserve_screen_position
))
5253 SET_PT_BOTH (pos
, pos_byte
);
5254 Fvertical_motion (original_pos
, window
, Qnil
);
5257 SET_PT (top_margin
);
5263 /* If we scrolled backward, put point near the end of the window
5264 but not within the scroll margin. */
5265 SET_PT_BOTH (pos
, pos_byte
);
5266 tem
= Fvertical_motion (make_number (ht
- this_scroll_margin
), window
,
5268 if (XFASTINT (tem
) == ht
- this_scroll_margin
)
5271 bottom_margin
= PT
+ 1;
5273 if (bottom_margin
> marker_position (opoint_marker
))
5274 SET_PT_BOTH (marker_position (opoint_marker
),
5275 marker_byte_position (opoint_marker
));
5278 if (!NILP (Vscroll_preserve_screen_position
))
5280 SET_PT_BOTH (pos
, pos_byte
);
5281 Fvertical_motion (original_pos
, window
, Qnil
);
5284 Fvertical_motion (make_number (-1), window
, Qnil
);
5293 xsignal0 (Qend_of_buffer
);
5296 if (adjust_old_pointm
)
5297 Fset_marker (w
->old_pointm
,
5298 ((w
== XWINDOW (selected_window
))
5299 ? make_number (BUF_PT (XBUFFER (w
->contents
)))
5300 : Fmarker_position (w
->pointm
)),
5305 /* Scroll selected_window up or down. If N is nil, scroll a
5306 screen-full which is defined as the height of the window minus
5307 next_screen_context_lines. If N is the symbol `-', scroll.
5308 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
5309 up. This is the guts of Fscroll_up and Fscroll_down. */
5312 scroll_command (Lisp_Object n
, int direction
)
5314 ptrdiff_t count
= SPECPDL_INDEX ();
5316 eassert (eabs (direction
) == 1);
5318 /* If selected window's buffer isn't current, make it current for
5319 the moment. But don't screw up if window_scroll gets an error. */
5320 if (XBUFFER (XWINDOW (selected_window
)->contents
) != current_buffer
)
5322 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
5323 Fset_buffer (XWINDOW (selected_window
)->contents
);
5327 window_scroll (selected_window
, direction
, true, false);
5328 else if (EQ (n
, Qminus
))
5329 window_scroll (selected_window
, -direction
, true, false);
5332 n
= Fprefix_numeric_value (n
);
5333 window_scroll (selected_window
, XINT (n
) * direction
, false, false);
5336 unbind_to (count
, Qnil
);
5339 DEFUN ("scroll-up", Fscroll_up
, Sscroll_up
, 0, 1, "^P",
5340 doc
: /* Scroll text of selected window upward ARG lines.
5341 If ARG is omitted or nil, scroll upward by a near full screen.
5342 A near full screen is `next-screen-context-lines' less than a full screen.
5343 Negative ARG means scroll downward.
5344 If ARG is the atom `-', scroll downward by nearly full screen.
5345 When calling from a program, supply as argument a number, nil, or `-'. */)
5348 scroll_command (arg
, 1);
5352 DEFUN ("scroll-down", Fscroll_down
, Sscroll_down
, 0, 1, "^P",
5353 doc
: /* Scroll text of selected window down ARG lines.
5354 If ARG is omitted or nil, scroll down by a near full screen.
5355 A near full screen is `next-screen-context-lines' less than a full screen.
5356 Negative ARG means scroll upward.
5357 If ARG is the atom `-', scroll upward by nearly full screen.
5358 When calling from a program, supply as argument a number, nil, or `-'. */)
5361 scroll_command (arg
, -1);
5365 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling
, Sother_window_for_scrolling
, 0, 0, 0,
5366 doc
: /* Return the other window for \"other window scroll\" commands.
5367 If `other-window-scroll-buffer' is non-nil, a window
5368 showing that buffer is used.
5369 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5370 specifies the window. This takes precedence over
5371 `other-window-scroll-buffer'. */)
5376 if (MINI_WINDOW_P (XWINDOW (selected_window
))
5377 && !NILP (Vminibuf_scroll_window
))
5378 window
= Vminibuf_scroll_window
;
5379 /* If buffer is specified and live, scroll that buffer. */
5380 else if (!NILP (Vother_window_scroll_buffer
)
5381 && BUFFERP (Vother_window_scroll_buffer
)
5382 && BUFFER_LIVE_P (XBUFFER (Vother_window_scroll_buffer
)))
5384 window
= Fget_buffer_window (Vother_window_scroll_buffer
, Qnil
);
5386 window
= display_buffer (Vother_window_scroll_buffer
, Qt
, Qnil
);
5390 /* Nothing specified; look for a neighboring window on the same
5392 window
= Fnext_window (selected_window
, Qnil
, Qnil
);
5394 if (EQ (window
, selected_window
))
5395 /* That didn't get us anywhere; look for a window on another
5398 window
= Fnext_window (window
, Qnil
, Qt
);
5399 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window
))))
5400 && ! EQ (window
, selected_window
));
5403 CHECK_LIVE_WINDOW (window
);
5405 if (EQ (window
, selected_window
))
5406 error ("There is no other window");
5411 DEFUN ("scroll-other-window", Fscroll_other_window
, Sscroll_other_window
, 0, 1, "P",
5412 doc
: /* Scroll next window upward ARG lines; or near full screen if no ARG.
5413 A near full screen is `next-screen-context-lines' less than a full screen.
5414 The next window is the one below the current one; or the one at the top
5415 if the current one is at the bottom. Negative ARG means scroll downward.
5416 If ARG is the atom `-', scroll downward by nearly full screen.
5417 When calling from a program, supply as argument a number, nil, or `-'.
5419 If `other-window-scroll-buffer' is non-nil, scroll the window
5420 showing that buffer, popping the buffer up if necessary.
5421 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5422 specifies the window to scroll. This takes precedence over
5423 `other-window-scroll-buffer'. */)
5428 ptrdiff_t count
= SPECPDL_INDEX ();
5430 window
= Fother_window_for_scrolling ();
5431 w
= XWINDOW (window
);
5433 /* Don't screw up if window_scroll gets an error. */
5434 record_unwind_protect (save_excursion_restore
, save_excursion_save ());
5436 Fset_buffer (w
->contents
);
5437 SET_PT_BOTH (marker_position (w
->pointm
), marker_byte_position (w
->pointm
));
5438 SET_PT_BOTH (marker_position (w
->old_pointm
), marker_byte_position (w
->old_pointm
));
5441 window_scroll (window
, 1, true, true);
5442 else if (EQ (arg
, Qminus
))
5443 window_scroll (window
, -1, true, true);
5449 window_scroll (window
, XINT (arg
), false, true);
5452 set_marker_both (w
->pointm
, Qnil
, PT
, PT_BYTE
);
5453 set_marker_both (w
->old_pointm
, Qnil
, PT
, PT_BYTE
);
5454 unbind_to (count
, Qnil
);
5459 DEFUN ("scroll-left", Fscroll_left
, Sscroll_left
, 0, 2, "^P\np",
5460 doc
: /* Scroll selected window display ARG columns left.
5461 Default for ARG is window width minus 2.
5462 Value is the total amount of leftward horizontal scrolling in
5463 effect after the change.
5464 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5465 lower bound for automatic scrolling, i.e. automatic scrolling
5466 will not scroll a window to a column less than the value returned
5467 by this function. This happens in an interactive call. */)
5468 (register Lisp_Object arg
, Lisp_Object set_minimum
)
5470 struct window
*w
= XWINDOW (selected_window
);
5471 EMACS_INT requested_arg
= (NILP (arg
)
5472 ? window_body_width (w
, 0) - 2
5473 : XINT (Fprefix_numeric_value (arg
)));
5474 Lisp_Object result
= set_window_hscroll (w
, w
->hscroll
+ requested_arg
);
5476 if (!NILP (set_minimum
))
5477 w
->min_hscroll
= w
->hscroll
;
5479 w
->suspend_auto_hscroll
= true;
5484 DEFUN ("scroll-right", Fscroll_right
, Sscroll_right
, 0, 2, "^P\np",
5485 doc
: /* Scroll selected window display ARG columns right.
5486 Default for ARG is window width minus 2.
5487 Value is the total amount of leftward horizontal scrolling in
5488 effect after the change.
5489 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5490 lower bound for automatic scrolling, i.e. automatic scrolling
5491 will not scroll a window to a column less than the value returned
5492 by this function. This happens in an interactive call. */)
5493 (register Lisp_Object arg
, Lisp_Object set_minimum
)
5495 struct window
*w
= XWINDOW (selected_window
);
5496 EMACS_INT requested_arg
= (NILP (arg
)
5497 ? window_body_width (w
, 0) - 2
5498 : XINT (Fprefix_numeric_value (arg
)));
5499 Lisp_Object result
= set_window_hscroll (w
, w
->hscroll
- requested_arg
);
5501 if (!NILP (set_minimum
))
5502 w
->min_hscroll
= w
->hscroll
;
5504 w
->suspend_auto_hscroll
= true;
5509 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window
, Sminibuffer_selected_window
, 0, 0, 0,
5510 doc
: /* Return the window which was selected when entering the minibuffer.
5511 Returns nil, if selected window is not a minibuffer window. */)
5514 if (minibuf_level
> 0
5515 && MINI_WINDOW_P (XWINDOW (selected_window
))
5516 && WINDOW_LIVE_P (minibuf_selected_window
))
5517 return minibuf_selected_window
;
5522 /* Value is the number of lines actually displayed in window W,
5523 as opposed to its height. */
5526 displayed_window_lines (struct window
*w
)
5529 struct text_pos start
;
5530 int height
= window_box_height (w
);
5531 struct buffer
*old_buffer
;
5533 void *itdata
= NULL
;
5535 if (XBUFFER (w
->contents
) != current_buffer
)
5537 old_buffer
= current_buffer
;
5538 set_buffer_internal (XBUFFER (w
->contents
));
5543 /* In case W->start is out of the accessible range, do something
5544 reasonable. This happens in Info mode when Info-scroll-down
5545 calls (recenter -1) while W->start is 1. */
5546 CLIP_TEXT_POS_FROM_MARKER (start
, w
->start
);
5548 itdata
= bidi_shelve_cache ();
5549 start_display (&it
, w
, start
);
5550 move_it_vertically (&it
, height
);
5551 bottom_y
= line_bottom_y (&it
);
5552 bidi_unshelve_cache (itdata
, false);
5554 /* rms: On a non-window display,
5555 the value of it.vpos at the bottom of the screen
5556 seems to be 1 larger than window_box_height (w).
5557 This kludge fixes a bug whereby (move-to-window-line -1)
5558 when ZV is on the last screen line
5559 moves to the previous screen line instead of the last one. */
5560 if (! FRAME_WINDOW_P (XFRAME (w
->frame
)))
5563 /* Add in empty lines at the bottom of the window. */
5564 if (bottom_y
< height
)
5566 int uy
= FRAME_LINE_HEIGHT (it
.f
);
5567 it
.vpos
+= (height
- bottom_y
+ uy
- 1) / uy
;
5571 set_buffer_internal (old_buffer
);
5577 DEFUN ("recenter", Frecenter
, Srecenter
, 0, 1, "P",
5578 doc
: /* Center point in selected window and maybe redisplay frame.
5579 With a numeric prefix argument ARG, recenter putting point on screen line ARG
5580 relative to the selected window. If ARG is negative, it counts up from the
5581 bottom of the window. (ARG should be less than the height of the window.)
5583 If ARG is omitted or nil, then recenter with point on the middle line of
5584 the selected window; if the variable `recenter-redisplay' is non-nil,
5585 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5586 is set to `grow-only', this resets the tool-bar's height to the minimum
5587 height needed); if `recenter-redisplay' has the special value `tty',
5588 then only tty frames are redrawn.
5590 Just C-u as prefix means put point in the center of the window
5591 and redisplay normally--don't erase and redraw the frame. */)
5592 (register Lisp_Object arg
)
5594 struct window
*w
= XWINDOW (selected_window
);
5595 struct buffer
*buf
= XBUFFER (w
->contents
);
5596 bool center_p
= false;
5597 ptrdiff_t charpos
, bytepos
;
5598 EMACS_INT iarg
IF_LINT (= 0);
5599 int this_scroll_margin
;
5601 if (buf
!= current_buffer
)
5602 error ("`recenter'ing a window that does not display current-buffer.");
5604 /* If redisplay is suppressed due to an error, try again. */
5605 buf
->display_error_modiff
= 0;
5609 if (!NILP (Vrecenter_redisplay
)
5610 && (!EQ (Vrecenter_redisplay
, Qtty
)
5611 || !NILP (Ftty_type (selected_frame
))))
5615 /* Invalidate pixel data calculated for all compositions. */
5616 for (i
= 0; i
< n_compositions
; i
++)
5617 composition_table
[i
]->font
= NULL
;
5618 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5619 WINDOW_XFRAME (w
)->minimize_tool_bar_window_p
= 1;
5621 Fredraw_frame (WINDOW_FRAME (w
));
5622 SET_FRAME_GARBAGED (WINDOW_XFRAME (w
));
5627 else if (CONSP (arg
)) /* Just C-u. */
5631 arg
= Fprefix_numeric_value (arg
);
5636 /* Do this after making BUF current
5637 in case scroll_margin is buffer-local. */
5639 = max (0, min (scroll_margin
, w
->total_lines
/ 4));
5641 /* Don't use redisplay code for initial frames, as the necessary
5642 data structures might not be set up yet then. */
5643 if (!FRAME_INITIAL_P (XFRAME (w
->frame
)))
5649 void *itdata
= bidi_shelve_cache ();
5651 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5652 start_display (&it
, w
, pt
);
5653 move_it_vertically_backward (&it
, window_box_height (w
) / 2);
5654 charpos
= IT_CHARPOS (it
);
5655 bytepos
= IT_BYTEPOS (it
);
5656 bidi_unshelve_cache (itdata
, false);
5662 ptrdiff_t nlines
= min (PTRDIFF_MAX
, -iarg
);
5663 int extra_line_spacing
;
5664 int h
= window_box_height (w
);
5665 int ht
= window_internal_height (w
);
5666 void *itdata
= bidi_shelve_cache ();
5668 nlines
= clip_to_bounds (this_scroll_margin
+ 1, nlines
,
5669 ht
- this_scroll_margin
);
5671 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5672 start_display (&it
, w
, pt
);
5674 /* Be sure we have the exact height of the full line containing PT. */
5675 move_it_by_lines (&it
, 0);
5677 /* The amount of pixels we have to move back is the window
5678 height minus what's displayed in the line containing PT,
5679 and the lines below. */
5682 move_it_by_lines (&it
, nlines
);
5684 if (it
.vpos
== nlines
)
5688 /* Last line has no newline. */
5689 h
-= line_bottom_y (&it
);
5693 /* Don't reserve space for extra line spacing of last line. */
5694 extra_line_spacing
= it
.max_extra_line_spacing
;
5696 /* If we can't move down NLINES lines because we hit
5697 the end of the buffer, count in some empty lines. */
5698 if (it
.vpos
< nlines
)
5701 extra_line_spacing
= it
.extra_line_spacing
;
5702 h
-= nlines
* (FRAME_LINE_HEIGHT (it
.f
) + extra_line_spacing
);
5706 bidi_unshelve_cache (itdata
, false);
5710 /* Now find the new top line (starting position) of the window. */
5711 start_display (&it
, w
, pt
);
5713 move_it_vertically_backward (&it
, h
);
5715 /* If extra line spacing is present, we may move too far
5716 back. This causes the last line to be only partially
5717 visible (which triggers redisplay to recenter that line
5718 in the middle), so move forward.
5719 But ignore extra line spacing on last line, as it is not
5720 considered to be part of the visible height of the line.
5722 h
+= extra_line_spacing
;
5723 while (-it
.current_y
> h
)
5724 move_it_by_lines (&it
, 1);
5726 charpos
= IT_CHARPOS (it
);
5727 bytepos
= IT_BYTEPOS (it
);
5729 bidi_unshelve_cache (itdata
, false);
5735 ptrdiff_t nlines
= min (PTRDIFF_MAX
, iarg
);
5736 int ht
= window_internal_height (w
);
5737 void *itdata
= bidi_shelve_cache ();
5739 nlines
= clip_to_bounds (this_scroll_margin
, nlines
,
5740 ht
- this_scroll_margin
- 1);
5742 SET_TEXT_POS (pt
, PT
, PT_BYTE
);
5743 start_display (&it
, w
, pt
);
5745 /* Move to the beginning of screen line containing PT. */
5746 move_it_by_lines (&it
, 0);
5748 /* Move back to find the point which is ARG screen lines above PT. */
5753 move_it_by_lines (&it
, -nlines
);
5756 charpos
= IT_CHARPOS (it
);
5757 bytepos
= IT_BYTEPOS (it
);
5759 bidi_unshelve_cache (itdata
, false);
5764 struct position pos
;
5765 int ht
= window_internal_height (w
);
5772 /* Don't let it get into the margin at either top or bottom. */
5773 iarg
= clip_to_bounds (this_scroll_margin
, iarg
,
5774 ht
- this_scroll_margin
- 1);
5776 pos
= *vmotion (PT
, PT_BYTE
, - iarg
, w
);
5777 charpos
= pos
.bufpos
;
5778 bytepos
= pos
.bytepos
;
5781 /* Set the new window start. */
5782 set_marker_both (w
->start
, w
->contents
, charpos
, bytepos
);
5783 w
->window_end_valid
= false;
5785 w
->optional_new_start
= true;
5787 w
->start_at_line_beg
= (bytepos
== BEGV_BYTE
5788 || FETCH_BYTE (bytepos
- 1) == '\n');
5795 DEFUN ("window-text-width", Fwindow_text_width
, Swindow_text_width
,
5797 doc
: /* Return the width in columns of the text display area of WINDOW.
5798 WINDOW must be a live window and defaults to the selected one.
5800 The returned width does not include dividers, scrollbars, margins,
5801 fringes, nor any partial-width columns at the right of the text
5804 Optional argument PIXELWISE non-nil, means to return the width in
5806 (Lisp_Object window
, Lisp_Object pixelwise
)
5808 struct window
*w
= decode_live_window (window
);
5810 if (NILP (pixelwise
))
5811 return make_number (window_box_width (w
, TEXT_AREA
)
5812 / FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w
)));
5814 return make_number (window_box_width (w
, TEXT_AREA
));
5817 DEFUN ("window-text-height", Fwindow_text_height
, Swindow_text_height
,
5819 doc
: /* Return the height in lines of the text display area of WINDOW.
5820 WINDOW must be a live window and defaults to the selected one.
5822 The returned height does not include dividers, the mode line, any header
5823 line, nor any partial-height lines at the bottom of the text area.
5825 Optional argument PIXELWISE non-nil, means to return the height in
5827 (Lisp_Object window
, Lisp_Object pixelwise
)
5829 struct window
*w
= decode_live_window (window
);
5831 if (NILP (pixelwise
))
5832 return make_number (window_box_height (w
)
5833 / FRAME_LINE_HEIGHT (WINDOW_XFRAME (w
)));
5835 return make_number (window_box_height (w
));
5838 DEFUN ("move-to-window-line", Fmove_to_window_line
, Smove_to_window_line
,
5840 doc
: /* Position point relative to window.
5841 ARG nil means position point at center of window.
5842 Else, ARG specifies vertical position within the window;
5843 zero means top of window, negative means relative to bottom of window. */)
5846 struct window
*w
= XWINDOW (selected_window
);
5850 int this_scroll_margin
;
5853 if (!(BUFFERP (w
->contents
) && XBUFFER (w
->contents
) == current_buffer
))
5854 /* This test is needed to make sure PT/PT_BYTE make sense in w->contents
5855 when passed below to set_marker_both. */
5856 error ("move-to-window-line called from unrelated buffer");
5858 window
= selected_window
;
5859 start
= marker_position (w
->start
);
5860 if (start
< BEGV
|| start
> ZV
)
5862 int height
= window_internal_height (w
);
5863 Fvertical_motion (make_number (- (height
/ 2)), window
, Qnil
);
5864 set_marker_both (w
->start
, w
->contents
, PT
, PT_BYTE
);
5865 w
->start_at_line_beg
= !NILP (Fbolp ());
5866 w
->force_start
= true;
5869 Fgoto_char (w
->start
);
5871 lines
= displayed_window_lines (w
);
5874 this_scroll_margin
= max (0, min (scroll_margin
, lines
/ 4));
5878 XSETFASTINT (arg
, lines
/ 2);
5881 EMACS_INT iarg
= XINT (Fprefix_numeric_value (arg
));
5884 iarg
= iarg
+ lines
;
5886 #if false /* This code would prevent move-to-window-line from moving point
5887 to a place inside the scroll margins (which would cause the
5888 next redisplay to scroll). I wrote this code, but then concluded
5889 it is probably better not to install it. However, it is here
5890 inside #if false so as not to lose it. -- rms. */
5892 /* Don't let it get into the margin at either top or bottom. */
5893 iarg
= max (iarg
, this_scroll_margin
);
5894 iarg
= min (iarg
, lines
- this_scroll_margin
- 1);
5897 arg
= make_number (iarg
);
5900 /* Skip past a partially visible first line. */
5902 XSETINT (arg
, XINT (arg
) + 1);
5904 return Fvertical_motion (arg
, window
, Qnil
);
5909 /***********************************************************************
5910 Window Configuration
5911 ***********************************************************************/
5913 struct save_window_data
5915 struct vectorlike_header header
;
5916 Lisp_Object selected_frame
;
5917 Lisp_Object current_window
;
5918 Lisp_Object current_buffer
;
5919 Lisp_Object minibuf_scroll_window
;
5920 Lisp_Object minibuf_selected_window
;
5921 Lisp_Object root_window
;
5922 Lisp_Object focus_frame
;
5923 /* A vector, each of whose elements is a struct saved_window
5925 Lisp_Object saved_windows
;
5927 /* All fields above are traced by the GC.
5928 From `frame-cols' down, the fields are ignored by the GC. */
5929 /* We should be able to do without the following two. */
5930 int frame_cols
, frame_lines
;
5931 /* These two should get eventually replaced by their pixel
5933 int frame_menu_bar_lines
, frame_tool_bar_lines
;
5934 int frame_text_width
, frame_text_height
;
5935 /* These are currently unused. We need them as soon as we convert
5937 int frame_menu_bar_height
, frame_tool_bar_height
;
5940 /* This is saved as a Lisp_Vector. */
5943 struct vectorlike_header header
;
5945 Lisp_Object window
, buffer
, start
, pointm
, old_pointm
;
5946 Lisp_Object pixel_left
, pixel_top
, pixel_height
, pixel_width
;
5947 Lisp_Object left_col
, top_line
, total_cols
, total_lines
;
5948 Lisp_Object normal_cols
, normal_lines
;
5949 Lisp_Object hscroll
, min_hscroll
, hscroll_whole
, suspend_auto_hscroll
;
5950 Lisp_Object parent
, prev
;
5951 Lisp_Object start_at_line_beg
;
5952 Lisp_Object display_table
;
5953 Lisp_Object left_margin_cols
, right_margin_cols
;
5954 Lisp_Object left_fringe_width
, right_fringe_width
, fringes_outside_margins
;
5955 Lisp_Object scroll_bar_width
, vertical_scroll_bar_type
, dedicated
;
5956 Lisp_Object scroll_bar_height
, horizontal_scroll_bar_type
;
5957 Lisp_Object combination_limit
, window_parameters
;
5960 #define SAVED_WINDOW_N(swv,n) \
5961 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
5963 DEFUN ("window-configuration-p", Fwindow_configuration_p
, Swindow_configuration_p
, 1, 1, 0,
5964 doc
: /* Return t if OBJECT is a window-configuration object. */)
5965 (Lisp_Object object
)
5967 return WINDOW_CONFIGURATIONP (object
) ? Qt
: Qnil
;
5970 DEFUN ("window-configuration-frame", Fwindow_configuration_frame
, Swindow_configuration_frame
, 1, 1, 0,
5971 doc
: /* Return the frame that CONFIG, a window-configuration object, is about. */)
5972 (Lisp_Object config
)
5974 register struct save_window_data
*data
;
5975 struct Lisp_Vector
*saved_windows
;
5977 CHECK_WINDOW_CONFIGURATION (config
);
5979 data
= (struct save_window_data
*) XVECTOR (config
);
5980 saved_windows
= XVECTOR (data
->saved_windows
);
5981 return XWINDOW (SAVED_WINDOW_N (saved_windows
, 0)->window
)->frame
;
5984 DEFUN ("set-window-configuration", Fset_window_configuration
,
5985 Sset_window_configuration
, 1, 1, 0,
5986 doc
: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
5987 CONFIGURATION must be a value previously returned
5988 by `current-window-configuration' (which see).
5989 If CONFIGURATION was made from a frame that is now deleted,
5990 only frame-independent values can be restored. In this case,
5991 the return value is nil. Otherwise the value is t. */)
5992 (Lisp_Object configuration
)
5994 register struct save_window_data
*data
;
5995 struct Lisp_Vector
*saved_windows
;
5996 Lisp_Object new_current_buffer
;
5999 ptrdiff_t old_point
= -1;
6002 CHECK_WINDOW_CONFIGURATION (configuration
);
6004 data
= (struct save_window_data
*) XVECTOR (configuration
);
6005 saved_windows
= XVECTOR (data
->saved_windows
);
6007 new_current_buffer
= data
->current_buffer
;
6008 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer
)))
6009 new_current_buffer
= Qnil
;
6012 if (XBUFFER (new_current_buffer
) == current_buffer
)
6013 /* The code further down "preserves point" by saving here PT in
6014 old_point and then setting it later back into PT. When the
6015 current-selected-window and the final-selected-window both show
6016 the current buffer, this suffers from the problem that the
6017 current PT is the window-point of the current-selected-window,
6018 while the final PT is the point of the final-selected-window, so
6019 this copy from one PT to the other would end up moving the
6020 window-point of the final-selected-window to the window-point of
6021 the current-selected-window. So we have to be careful which
6022 point of the current-buffer we copy into old_point. */
6023 if (EQ (XWINDOW (data
->current_window
)->contents
, new_current_buffer
)
6024 && WINDOWP (selected_window
)
6025 && EQ (XWINDOW (selected_window
)->contents
, new_current_buffer
)
6026 && !EQ (selected_window
, data
->current_window
))
6027 old_point
= marker_position (XWINDOW (data
->current_window
)->pointm
);
6031 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
6032 point in new_current_buffer as of the last time this buffer was
6033 used. This can be non-deterministic since it can be changed by
6034 things like jit-lock by mere temporary selection of some random
6035 window that happens to show this buffer.
6036 So if possible we want this arbitrary choice of "which point" to
6037 be the one from the to-be-selected-window so as to prevent this
6038 window's cursor from being copied from another window. */
6039 if (EQ (XWINDOW (data
->current_window
)->contents
, new_current_buffer
)
6040 /* If current_window = selected_window, its point is in BUF_PT. */
6041 && !EQ (selected_window
, data
->current_window
))
6042 old_point
= marker_position (XWINDOW (data
->current_window
)->pointm
);
6044 old_point
= BUF_PT (XBUFFER (new_current_buffer
));
6047 frame
= XWINDOW (SAVED_WINDOW_N (saved_windows
, 0)->window
)->frame
;
6050 /* If f is a dead frame, don't bother rebuilding its window tree.
6051 However, there is other stuff we should still try to do below. */
6052 if (FRAME_LIVE_P (f
))
6055 Lisp_Object dead_windows
= Qnil
;
6056 Lisp_Object tem
, par
, pers
;
6058 struct saved_window
*p
;
6059 struct window
*root_window
;
6060 struct window
**leaf_windows
;
6061 ptrdiff_t i
, k
, n_leaf_windows
;
6063 /* Don't do this within the main loop below: This may call Lisp
6064 code and is thus potentially unsafe while input is blocked. */
6065 for (k
= 0; k
< saved_windows
->header
.size
; k
++)
6067 p
= SAVED_WINDOW_N (saved_windows
, k
);
6069 w
= XWINDOW (window
);
6070 if (BUFFERP (w
->contents
)
6071 && !EQ (w
->contents
, p
->buffer
)
6072 && BUFFER_LIVE_P (XBUFFER (p
->buffer
)))
6073 /* If a window we restore gets another buffer, record the
6074 window's old buffer. */
6075 call1 (Qrecord_window_buffer
, window
);
6078 /* Disallow x_set_window_size, temporarily. */
6079 f
->can_x_set_window_size
= false;
6080 /* The mouse highlighting code could get screwed up
6081 if it runs during this. */
6084 /* "Swap out" point from the selected window's buffer
6085 into the window itself. (Normally the pointm of the selected
6086 window holds garbage.) We do this now, before
6087 restoring the window contents, and prevent it from
6088 being done later on when we select a new window. */
6089 if (! NILP (XWINDOW (selected_window
)->contents
))
6091 w
= XWINDOW (selected_window
);
6092 set_marker_both (w
->pointm
,
6094 BUF_PT (XBUFFER (w
->contents
)),
6095 BUF_PT_BYTE (XBUFFER (w
->contents
)));
6099 FRAME_WINDOW_SIZES_CHANGED (f
) = true;
6101 /* Problem: Freeing all matrices and later allocating them again
6102 is a serious redisplay flickering problem. What we would
6103 really like to do is to free only those matrices not reused
6105 root_window
= XWINDOW (FRAME_ROOT_WINDOW (f
));
6106 ptrdiff_t nwindows
= count_windows (root_window
);
6107 SAFE_NALLOCA (leaf_windows
, 1, nwindows
);
6108 n_leaf_windows
= get_leaf_windows (root_window
, leaf_windows
, 0);
6111 Mark all windows now on frame as "deleted".
6112 Restoring the new configuration "undeletes" any that are in it.
6114 Save their current buffers in their height fields, since we may
6115 need it later, if a buffer saved in the configuration is now
6117 delete_all_child_windows (FRAME_ROOT_WINDOW (f
));
6119 for (k
= 0; k
< saved_windows
->header
.size
; k
++)
6121 p
= SAVED_WINDOW_N (saved_windows
, k
);
6123 w
= XWINDOW (window
);
6124 wset_next (w
, Qnil
);
6126 if (!NILP (p
->parent
))
6128 (w
, SAVED_WINDOW_N (saved_windows
, XFASTINT (p
->parent
))->window
);
6130 wset_parent (w
, Qnil
);
6132 if (!NILP (p
->prev
))
6135 (w
, SAVED_WINDOW_N (saved_windows
, XFASTINT (p
->prev
))->window
);
6136 wset_next (XWINDOW (w
->prev
), p
->window
);
6140 wset_prev (w
, Qnil
);
6141 if (!NILP (w
->parent
))
6142 wset_combination (XWINDOW (w
->parent
),
6143 (XINT (p
->total_cols
)
6144 != XWINDOW (w
->parent
)->total_cols
),
6148 /* If we squirreled away the buffer, restore it now. */
6149 if (BUFFERP (w
->combination_limit
))
6150 wset_buffer (w
, w
->combination_limit
);
6151 w
->pixel_left
= XFASTINT (p
->pixel_left
);
6152 w
->pixel_top
= XFASTINT (p
->pixel_top
);
6153 w
->pixel_width
= XFASTINT (p
->pixel_width
);
6154 w
->pixel_height
= XFASTINT (p
->pixel_height
);
6155 w
->left_col
= XFASTINT (p
->left_col
);
6156 w
->top_line
= XFASTINT (p
->top_line
);
6157 w
->total_cols
= XFASTINT (p
->total_cols
);
6158 w
->total_lines
= XFASTINT (p
->total_lines
);
6159 wset_normal_cols (w
, p
->normal_cols
);
6160 wset_normal_lines (w
, p
->normal_lines
);
6161 w
->hscroll
= XFASTINT (p
->hscroll
);
6162 w
->suspend_auto_hscroll
= !NILP (p
->suspend_auto_hscroll
);
6163 w
->min_hscroll
= XFASTINT (p
->min_hscroll
);
6164 w
->hscroll_whole
= XFASTINT (p
->hscroll_whole
);
6165 wset_display_table (w
, p
->display_table
);
6166 w
->left_margin_cols
= XINT (p
->left_margin_cols
);
6167 w
->right_margin_cols
= XINT (p
->right_margin_cols
);
6168 w
->left_fringe_width
= XINT (p
->left_fringe_width
);
6169 w
->right_fringe_width
= XINT (p
->right_fringe_width
);
6170 w
->fringes_outside_margins
= !NILP (p
->fringes_outside_margins
);
6171 w
->scroll_bar_width
= XINT (p
->scroll_bar_width
);
6172 w
->scroll_bar_height
= XINT (p
->scroll_bar_height
);
6173 wset_vertical_scroll_bar_type (w
, p
->vertical_scroll_bar_type
);
6174 wset_horizontal_scroll_bar_type (w
, p
->horizontal_scroll_bar_type
);
6175 wset_dedicated (w
, p
->dedicated
);
6176 wset_combination_limit (w
, p
->combination_limit
);
6177 /* Restore any window parameters that have been saved.
6178 Parameters that have not been saved are left alone. */
6179 for (tem
= p
->window_parameters
; CONSP (tem
); tem
= XCDR (tem
))
6184 if (NILP (XCDR (pers
)))
6186 par
= Fassq (XCAR (pers
), w
->window_parameters
);
6187 if (CONSP (par
) && !NILP (XCDR (par
)))
6188 /* Reset a parameter to nil if and only if it
6189 has a non-nil association. Don't make new
6191 Fsetcdr (par
, Qnil
);
6194 /* Always restore a non-nil value. */
6195 Fset_window_parameter (window
, XCAR (pers
), XCDR (pers
));
6199 if (BUFFERP (p
->buffer
) && BUFFER_LIVE_P (XBUFFER (p
->buffer
)))
6200 /* If saved buffer is alive, install it. */
6202 wset_buffer (w
, p
->buffer
);
6203 w
->start_at_line_beg
= !NILP (p
->start_at_line_beg
);
6204 set_marker_restricted (w
->start
, p
->start
, w
->contents
);
6205 set_marker_restricted (w
->pointm
, p
->pointm
, w
->contents
);
6206 set_marker_restricted (w
->old_pointm
, p
->old_pointm
, w
->contents
);
6207 /* As documented in Fcurrent_window_configuration, don't
6208 restore the location of point in the buffer which was
6209 current when the window configuration was recorded. */
6210 if (!EQ (p
->buffer
, new_current_buffer
)
6211 && XBUFFER (p
->buffer
) == current_buffer
)
6212 Fgoto_char (w
->pointm
);
6214 else if (BUFFERP (w
->contents
) && BUFFER_LIVE_P (XBUFFER (w
->contents
)))
6215 /* Keep window's old buffer; make sure the markers are real. */
6217 /* Set window markers at start of visible range. */
6218 if (XMARKER (w
->start
)->buffer
== 0)
6219 set_marker_restricted_both (w
->start
, w
->contents
, 0, 0);
6220 if (XMARKER (w
->pointm
)->buffer
== 0)
6221 set_marker_restricted_both
6222 (w
->pointm
, w
->contents
,
6223 BUF_PT (XBUFFER (w
->contents
)),
6224 BUF_PT_BYTE (XBUFFER (w
->contents
)));
6225 if (XMARKER (w
->old_pointm
)->buffer
== 0)
6226 set_marker_restricted_both
6227 (w
->old_pointm
, w
->contents
,
6228 BUF_PT (XBUFFER (w
->contents
)),
6229 BUF_PT_BYTE (XBUFFER (w
->contents
)));
6230 w
->start_at_line_beg
= true;
6232 else if (!NILP (w
->start
))
6233 /* Leaf window has no live buffer, get one. */
6235 /* Get the buffer via other_buffer_safely in order to
6236 avoid showing an unimportant buffer and, if necessary, to
6237 recreate *scratch* in the course (part of Juanma's bs-show
6238 scenario from March 2011). */
6239 wset_buffer (w
, other_buffer_safely (Fcurrent_buffer ()));
6240 /* This will set the markers to beginning of visible
6242 set_marker_restricted_both (w
->start
, w
->contents
, 0, 0);
6243 set_marker_restricted_both (w
->pointm
, w
->contents
, 0, 0);
6244 set_marker_restricted_both (w
->old_pointm
, w
->contents
, 0, 0);
6245 w
->start_at_line_beg
= true;
6246 if (!NILP (w
->dedicated
))
6247 /* Record this window as dead. */
6248 dead_windows
= Fcons (window
, dead_windows
);
6249 /* Make sure window is no more dedicated. */
6250 wset_dedicated (w
, Qnil
);
6254 fset_root_window (f
, data
->root_window
);
6255 /* Arrange *not* to restore point in the buffer that was
6256 current when the window configuration was saved. */
6257 if (EQ (XWINDOW (data
->current_window
)->contents
, new_current_buffer
))
6258 set_marker_restricted (XWINDOW (data
->current_window
)->pointm
,
6259 make_number (old_point
),
6260 XWINDOW (data
->current_window
)->contents
);
6262 /* In the following call to `select-window', prevent "swapping out
6263 point" in the old selected window using the buffer that has
6264 been restored into it. We already swapped out that point from
6265 that window's old buffer.
6267 Do not record the buffer here. We do that in a separate call
6268 to select_window below. See also Bug#16207. */
6269 select_window (data
->current_window
, Qt
, true);
6270 BVAR (XBUFFER (XWINDOW (selected_window
)->contents
),
6271 last_selected_window
)
6274 if (NILP (data
->focus_frame
)
6275 || (FRAMEP (data
->focus_frame
)
6276 && FRAME_LIVE_P (XFRAME (data
->focus_frame
))))
6277 Fredirect_frame_focus (frame
, data
->focus_frame
);
6279 /* Now, free glyph matrices in windows that were not reused. */
6280 for (i
= 0; i
< n_leaf_windows
; i
++)
6281 if (NILP (leaf_windows
[i
]->contents
))
6282 free_window_matrices (leaf_windows
[i
]);
6284 /* Allow x_set_window_size again and apply frame size changes if
6286 f
->can_x_set_window_size
= true;
6287 adjust_frame_size (f
, -1, -1, 1, false, Qset_window_configuration
);
6289 adjust_frame_glyphs (f
);
6292 /* Scan dead buffer windows. */
6293 for (; CONSP (dead_windows
); dead_windows
= XCDR (dead_windows
))
6295 window
= XCAR (dead_windows
);
6296 if (WINDOW_LIVE_P (window
) && !EQ (window
, FRAME_ROOT_WINDOW (f
)))
6297 delete_deletable_window (window
);
6300 /* Record the selected window's buffer here. The window should
6301 already be the selected one from the call above. */
6302 select_window (data
->current_window
, Qnil
, false);
6304 /* Fselect_window will have made f the selected frame, so we
6305 reselect the proper frame here. Fhandle_switch_frame will change the
6306 selected window too, but that doesn't make the call to
6307 Fselect_window above totally superfluous; it still sets f's
6309 if (FRAME_LIVE_P (XFRAME (data
->selected_frame
)))
6310 do_switch_frame (data
->selected_frame
, 0, 0, Qnil
);
6312 run_window_configuration_change_hook (f
);
6315 if (!NILP (new_current_buffer
))
6317 Fset_buffer (new_current_buffer
);
6318 /* If the new current buffer doesn't appear in the selected
6319 window, go to its old point (see bug#12208). */
6320 if (!EQ (XWINDOW (data
->current_window
)->contents
, new_current_buffer
))
6321 Fgoto_char (make_number (old_point
));
6324 Vminibuf_scroll_window
= data
->minibuf_scroll_window
;
6325 minibuf_selected_window
= data
->minibuf_selected_window
;
6328 return (FRAME_LIVE_P (f
) ? Qt
: Qnil
);
6333 restore_window_configuration (Lisp_Object configuration
)
6335 Fset_window_configuration (configuration
);
6339 /* If WINDOW is an internal window, recursively delete all child windows
6340 reachable via the next and contents slots of WINDOW. Otherwise setup
6341 WINDOW to not show any buffer. */
6344 delete_all_child_windows (Lisp_Object window
)
6346 register struct window
*w
;
6348 w
= XWINDOW (window
);
6350 if (!NILP (w
->next
))
6351 /* Delete WINDOW's siblings (we traverse postorderly). */
6352 delete_all_child_windows (w
->next
);
6354 if (WINDOWP (w
->contents
))
6356 delete_all_child_windows (w
->contents
);
6357 wset_combination (w
, false, Qnil
);
6359 else if (BUFFERP (w
->contents
))
6362 unchain_marker (XMARKER (w
->pointm
));
6363 unchain_marker (XMARKER (w
->old_pointm
));
6364 unchain_marker (XMARKER (w
->start
));
6365 /* Since combination limit makes sense for an internal windows
6366 only, we use this slot to save the buffer for the sake of
6367 possible resurrection in Fset_window_configuration. */
6368 wset_combination_limit (w
, w
->contents
);
6369 wset_buffer (w
, Qnil
);
6372 Vwindow_list
= Qnil
;
6376 count_windows (struct window
*window
)
6378 ptrdiff_t count
= 1;
6379 if (!NILP (window
->next
))
6380 count
+= count_windows (XWINDOW (window
->next
));
6381 if (WINDOWP (window
->contents
))
6382 count
+= count_windows (XWINDOW (window
->contents
));
6387 /* Fill vector FLAT with leaf windows under W, starting at index I.
6388 Value is last index + 1. */
6390 get_leaf_windows (struct window
*w
, struct window
**flat
, ptrdiff_t i
)
6394 if (WINDOWP (w
->contents
))
6395 i
= get_leaf_windows (XWINDOW (w
->contents
), flat
, i
);
6399 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
6406 /* Return a pointer to the glyph W's physical cursor is on. Value is
6407 null if W's current matrix is invalid, so that no meaningful glyph
6410 get_phys_cursor_glyph (struct window
*w
)
6412 struct glyph_row
*row
;
6413 struct glyph
*glyph
;
6414 int hpos
= w
->phys_cursor
.hpos
;
6416 if (!(w
->phys_cursor
.vpos
>= 0
6417 && w
->phys_cursor
.vpos
< w
->current_matrix
->nrows
))
6420 row
= MATRIX_ROW (w
->current_matrix
, w
->phys_cursor
.vpos
);
6421 if (!row
->enabled_p
)
6426 /* When the window is hscrolled, cursor hpos can legitimately be
6427 out of bounds, but we draw the cursor at the corresponding
6428 window margin in that case. */
6429 if (!row
->reversed_p
&& hpos
< 0)
6431 if (row
->reversed_p
&& hpos
>= row
->used
[TEXT_AREA
])
6432 hpos
= row
->used
[TEXT_AREA
] - 1;
6435 if (0 <= hpos
&& hpos
< row
->used
[TEXT_AREA
])
6436 glyph
= row
->glyphs
[TEXT_AREA
] + hpos
;
6445 save_window_save (Lisp_Object window
, struct Lisp_Vector
*vector
, ptrdiff_t i
)
6447 struct saved_window
*p
;
6449 Lisp_Object tem
, pers
, par
;
6451 for (; !NILP (window
); window
= w
->next
)
6453 p
= SAVED_WINDOW_N (vector
, i
);
6454 w
= XWINDOW (window
);
6456 wset_temslot (w
, make_number (i
)); i
++;
6458 p
->buffer
= (WINDOW_LEAF_P (w
) ? w
->contents
: Qnil
);
6459 p
->pixel_left
= make_number (w
->pixel_left
);
6460 p
->pixel_top
= make_number (w
->pixel_top
);
6461 p
->pixel_width
= make_number (w
->pixel_width
);
6462 p
->pixel_height
= make_number (w
->pixel_height
);
6463 p
->left_col
= make_number (w
->left_col
);
6464 p
->top_line
= make_number (w
->top_line
);
6465 p
->total_cols
= make_number (w
->total_cols
);
6466 p
->total_lines
= make_number (w
->total_lines
);
6467 p
->normal_cols
= w
->normal_cols
;
6468 p
->normal_lines
= w
->normal_lines
;
6469 XSETFASTINT (p
->hscroll
, w
->hscroll
);
6470 p
->suspend_auto_hscroll
= w
->suspend_auto_hscroll
? Qt
: Qnil
;
6471 XSETFASTINT (p
->min_hscroll
, w
->min_hscroll
);
6472 XSETFASTINT (p
->hscroll_whole
, w
->hscroll_whole
);
6473 p
->display_table
= w
->display_table
;
6474 p
->left_margin_cols
= make_number (w
->left_margin_cols
);
6475 p
->right_margin_cols
= make_number (w
->right_margin_cols
);
6476 p
->left_fringe_width
= make_number (w
->left_fringe_width
);
6477 p
->right_fringe_width
= make_number (w
->right_fringe_width
);
6478 p
->fringes_outside_margins
= w
->fringes_outside_margins
? Qt
: Qnil
;
6479 p
->scroll_bar_width
= make_number (w
->scroll_bar_width
);
6480 p
->scroll_bar_height
= make_number (w
->scroll_bar_height
);
6481 p
->vertical_scroll_bar_type
= w
->vertical_scroll_bar_type
;
6482 p
->horizontal_scroll_bar_type
= w
->horizontal_scroll_bar_type
;
6483 p
->dedicated
= w
->dedicated
;
6484 p
->combination_limit
= w
->combination_limit
;
6485 p
->window_parameters
= Qnil
;
6487 if (!NILP (Vwindow_persistent_parameters
))
6489 /* Run cycle detection on Vwindow_persistent_parameters. */
6490 Lisp_Object tortoise
, hare
;
6492 hare
= tortoise
= Vwindow_persistent_parameters
;
6493 while (CONSP (hare
))
6500 tortoise
= XCDR (tortoise
);
6502 if (EQ (hare
, tortoise
))
6503 /* Reset Vwindow_persistent_parameters to Qnil. */
6505 Vwindow_persistent_parameters
= Qnil
;
6510 for (tem
= Vwindow_persistent_parameters
; CONSP (tem
);
6514 /* Save values for persistent window parameters. */
6515 if (CONSP (pers
) && !NILP (XCDR (pers
)))
6517 par
= Fassq (XCAR (pers
), w
->window_parameters
);
6519 /* If the window has no value for the parameter,
6521 p
->window_parameters
= Fcons (Fcons (XCAR (pers
), Qnil
),
6522 p
->window_parameters
);
6524 /* If the window has a value for the parameter,
6526 p
->window_parameters
= Fcons (Fcons (XCAR (par
),
6528 p
->window_parameters
);
6533 if (BUFFERP (w
->contents
))
6535 /* Save w's value of point in the window configuration. If w
6536 is the selected window, then get the value of point from
6537 the buffer; pointm is garbage in the selected window. */
6538 if (EQ (window
, selected_window
))
6539 p
->pointm
= build_marker (XBUFFER (w
->contents
),
6540 BUF_PT (XBUFFER (w
->contents
)),
6541 BUF_PT_BYTE (XBUFFER (w
->contents
)));
6543 p
->pointm
= Fcopy_marker (w
->pointm
, Qnil
);
6544 p
->old_pointm
= Fcopy_marker (w
->old_pointm
, Qnil
);
6545 XMARKER (p
->pointm
)->insertion_type
6546 = !NILP (buffer_local_value
/* Don't signal error if void. */
6547 (Qwindow_point_insertion_type
, w
->contents
));
6548 XMARKER (p
->old_pointm
)->insertion_type
6549 = !NILP (buffer_local_value
/* Don't signal error if void. */
6550 (Qwindow_point_insertion_type
, w
->contents
));
6552 p
->start
= Fcopy_marker (w
->start
, Qnil
);
6553 p
->start_at_line_beg
= w
->start_at_line_beg
? Qt
: Qnil
;
6558 p
->old_pointm
= Qnil
;
6560 p
->start_at_line_beg
= Qnil
;
6563 p
->parent
= NILP (w
->parent
) ? Qnil
: XWINDOW (w
->parent
)->temslot
;
6564 p
->prev
= NILP (w
->prev
) ? Qnil
: XWINDOW (w
->prev
)->temslot
;
6566 if (WINDOWP (w
->contents
))
6567 i
= save_window_save (w
->contents
, vector
, i
);
6573 DEFUN ("current-window-configuration", Fcurrent_window_configuration
,
6574 Scurrent_window_configuration
, 0, 1, 0,
6575 doc
: /* Return an object representing the current window configuration of FRAME.
6576 If FRAME is nil or omitted, use the selected frame.
6577 This describes the number of windows, their sizes and current buffers,
6578 and for each displayed buffer, where display starts, and the position of
6579 point. An exception is made for point in the current buffer:
6580 its value is -not- saved.
6581 This also records the currently selected frame, and FRAME's focus
6582 redirection (see `redirect-frame-focus'). The variable
6583 `window-persistent-parameters' specifies which window parameters are
6584 saved by this function. */)
6588 ptrdiff_t i
, n_windows
;
6589 struct save_window_data
*data
;
6590 struct frame
*f
= decode_live_frame (frame
);
6592 n_windows
= count_windows (XWINDOW (FRAME_ROOT_WINDOW (f
)));
6593 data
= ALLOCATE_PSEUDOVECTOR (struct save_window_data
, frame_cols
,
6594 PVEC_WINDOW_CONFIGURATION
);
6596 data
->frame_cols
= FRAME_COLS (f
);
6597 data
->frame_lines
= FRAME_LINES (f
);
6598 data
->frame_menu_bar_lines
= FRAME_MENU_BAR_LINES (f
);
6599 data
->frame_tool_bar_lines
= FRAME_TOOL_BAR_LINES (f
);
6600 data
->frame_text_width
= FRAME_TEXT_WIDTH (f
);
6601 data
->frame_text_height
= FRAME_TEXT_HEIGHT (f
);
6602 data
->frame_menu_bar_height
= FRAME_MENU_BAR_HEIGHT (f
);
6603 data
->frame_tool_bar_height
= FRAME_TOOL_BAR_HEIGHT (f
);
6604 data
->selected_frame
= selected_frame
;
6605 data
->current_window
= FRAME_SELECTED_WINDOW (f
);
6606 XSETBUFFER (data
->current_buffer
, current_buffer
);
6607 data
->minibuf_scroll_window
= minibuf_level
> 0 ? Vminibuf_scroll_window
: Qnil
;
6608 data
->minibuf_selected_window
= minibuf_level
> 0 ? minibuf_selected_window
: Qnil
;
6609 data
->root_window
= FRAME_ROOT_WINDOW (f
);
6610 data
->focus_frame
= FRAME_FOCUS_FRAME (f
);
6611 tem
= make_uninit_vector (n_windows
);
6612 data
->saved_windows
= tem
;
6613 for (i
= 0; i
< n_windows
; i
++)
6615 Fmake_vector (make_number (VECSIZE (struct saved_window
)), Qnil
));
6616 save_window_save (FRAME_ROOT_WINDOW (f
), XVECTOR (tem
), 0);
6617 XSETWINDOW_CONFIGURATION (tem
, data
);
6621 /* Called after W's margins, fringes or scroll bars was adjusted. */
6624 apply_window_adjustment (struct window
*w
)
6627 clear_glyph_matrix (w
->current_matrix
);
6628 w
->window_end_valid
= false;
6630 adjust_frame_glyphs (XFRAME (WINDOW_FRAME (w
)));
6634 /***********************************************************************
6636 ***********************************************************************/
6639 extract_dimension (Lisp_Object dimension
)
6641 if (NILP (dimension
))
6643 CHECK_RANGED_INTEGER (dimension
, 0, INT_MAX
);
6644 return XINT (dimension
);
6647 static struct window
*
6648 set_window_margins (struct window
*w
, Lisp_Object left_width
,
6649 Lisp_Object right_width
)
6651 int unit
= WINDOW_FRAME_COLUMN_WIDTH (w
);
6652 int left
= NILP (left_width
) ? 0 : extract_dimension (left_width
);
6653 int right
= NILP (right_width
) ? 0 : extract_dimension (right_width
);
6655 if (w
->left_margin_cols
!= left
|| w
->right_margin_cols
!= right
)
6657 /* Don't change anything if new margins won't fit. */
6658 if ((WINDOW_PIXEL_WIDTH (w
)
6659 - WINDOW_FRINGES_WIDTH (w
)
6660 - WINDOW_SCROLL_BAR_AREA_WIDTH (w
)
6661 - (left
+ right
) * unit
)
6662 >= MIN_SAFE_WINDOW_PIXEL_WIDTH (w
))
6664 w
->left_margin_cols
= left
;
6665 w
->right_margin_cols
= right
;
6676 DEFUN ("set-window-margins", Fset_window_margins
, Sset_window_margins
,
6678 doc
: /* Set width of marginal areas of window WINDOW.
6679 WINDOW must be a live window and defaults to the selected one.
6681 Second arg LEFT-WIDTH specifies the number of character cells to
6682 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6683 does the same for the right marginal area. A nil width parameter
6686 Return t if any margin was actually changed and nil otherwise. */)
6687 (Lisp_Object window
, Lisp_Object left_width
, Lisp_Object right_width
)
6689 struct window
*w
= set_window_margins (decode_live_window (window
),
6690 left_width
, right_width
);
6691 return w
? (apply_window_adjustment (w
), Qt
) : Qnil
;
6695 DEFUN ("window-margins", Fwindow_margins
, Swindow_margins
,
6697 doc
: /* Get width of marginal areas of window WINDOW.
6698 WINDOW must be a live window and defaults to the selected one.
6700 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6701 If a marginal area does not exist, its width will be returned
6703 (Lisp_Object window
)
6705 struct window
*w
= decode_live_window (window
);
6706 return Fcons (w
->left_margin_cols
6707 ? make_number (w
->left_margin_cols
) : Qnil
,
6708 w
->right_margin_cols
6709 ? make_number (w
->right_margin_cols
) : Qnil
);
6714 /***********************************************************************
6716 ***********************************************************************/
6718 static struct window
*
6719 set_window_fringes (struct window
*w
, Lisp_Object left_width
,
6720 Lisp_Object right_width
, Lisp_Object outside_margins
)
6722 bool outside
= !NILP (outside_margins
);
6723 int left
= extract_dimension (left_width
);
6724 int right
= extract_dimension (right_width
);
6726 /* Do nothing on a tty or if nothing to actually change. */
6727 if (FRAME_WINDOW_P (WINDOW_XFRAME (w
))
6728 && (w
->left_fringe_width
!= left
6729 || w
->right_fringe_width
!= right
6730 || w
->fringes_outside_margins
!= outside
))
6732 if (left
> 0 || right
> 0)
6734 /* Don't change anything if new fringes don't fit. */
6735 if ((WINDOW_PIXEL_WIDTH (w
)
6736 - WINDOW_MARGINS_WIDTH (w
)
6737 - WINDOW_SCROLL_BAR_AREA_WIDTH (w
)
6738 - max (left
, 0) - max (right
, 0))
6739 < MIN_SAFE_WINDOW_PIXEL_WIDTH (w
))
6743 w
->left_fringe_width
= left
;
6744 w
->right_fringe_width
= right
;
6745 w
->fringes_outside_margins
= outside
;
6753 DEFUN ("set-window-fringes", Fset_window_fringes
, Sset_window_fringes
,
6755 doc
: /* Set the fringe widths of window WINDOW.
6756 WINDOW must be a live window and defaults to the selected one.
6758 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6759 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6760 fringe width. If a fringe width arg is nil, that means to use the
6761 frame's default fringe width. Default fringe widths can be set with
6762 the command `set-fringe-style'.
6763 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6764 outside of the display margins. By default, fringes are drawn between
6765 display marginal areas and the text area.
6767 Return t if any fringe was actually changed and nil otherwise. */)
6768 (Lisp_Object window
, Lisp_Object left_width
,
6769 Lisp_Object right_width
, Lisp_Object outside_margins
)
6772 = set_window_fringes (decode_live_window (window
),
6773 left_width
, right_width
, outside_margins
);
6774 return w
? (apply_window_adjustment (w
), Qt
) : Qnil
;
6778 DEFUN ("window-fringes", Fwindow_fringes
, Swindow_fringes
,
6780 doc
: /* Get width of fringes of window WINDOW.
6781 WINDOW must be a live window and defaults to the selected one.
6783 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6784 (Lisp_Object window
)
6786 struct window
*w
= decode_live_window (window
);
6788 return list3 (make_number (WINDOW_LEFT_FRINGE_WIDTH (w
)),
6789 make_number (WINDOW_RIGHT_FRINGE_WIDTH (w
)),
6790 WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w
) ? Qt
: Qnil
);
6795 /***********************************************************************
6797 ***********************************************************************/
6799 static struct window
*
6800 set_window_scroll_bars (struct window
*w
, Lisp_Object width
,
6801 Lisp_Object vertical_type
, Lisp_Object height
,
6802 Lisp_Object horizontal_type
)
6804 int iwidth
= extract_dimension (width
);
6805 bool changed
= false;
6808 vertical_type
= Qnil
;
6810 if (!(NILP (vertical_type
)
6811 || EQ (vertical_type
, Qleft
)
6812 || EQ (vertical_type
, Qright
)
6813 || EQ (vertical_type
, Qt
)))
6814 error ("Invalid type of vertical scroll bar");
6816 if (w
->scroll_bar_width
!= iwidth
6817 || !EQ (w
->vertical_scroll_bar_type
, vertical_type
))
6819 /* Don't change anything if new scroll bar won't fit. */
6820 if ((WINDOW_PIXEL_WIDTH (w
)
6821 - WINDOW_MARGINS_WIDTH (w
)
6822 - WINDOW_FRINGES_WIDTH (w
)
6824 >= MIN_SAFE_WINDOW_PIXEL_WIDTH (w
))
6826 w
->scroll_bar_width
= iwidth
;
6827 wset_vertical_scroll_bar_type (w
, vertical_type
);
6832 #if USE_HORIZONTAL_SCROLL_BARS
6834 int iheight
= extract_dimension (height
);
6836 if (MINI_WINDOW_P (w
) || iheight
== 0)
6837 horizontal_type
= Qnil
;
6839 if (!(NILP (horizontal_type
)
6840 || EQ (horizontal_type
, Qbottom
)
6841 || EQ (horizontal_type
, Qt
)))
6842 error ("Invalid type of horizontal scroll bar");
6844 if (w
->scroll_bar_height
!= iheight
6845 || !EQ (w
->horizontal_scroll_bar_type
, horizontal_type
))
6847 /* Don't change anything if new scroll bar won't fit. */
6848 if ((WINDOW_PIXEL_HEIGHT (w
)
6849 - WINDOW_HEADER_LINE_HEIGHT (w
)
6850 - WINDOW_MODE_LINE_HEIGHT (w
)
6852 >= MIN_SAFE_WINDOW_PIXEL_HEIGHT (w
))
6854 w
->scroll_bar_height
= iheight
;
6855 wset_horizontal_scroll_bar_type (w
, horizontal_type
);
6861 wset_horizontal_scroll_bar_type (w
, Qnil
);
6864 return changed
? w
: NULL
;
6867 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars
,
6868 Sset_window_scroll_bars
, 1, 5, 0,
6869 doc
: /* Set width and type of scroll bars of window WINDOW.
6870 WINDOW must be a live window and defaults to the selected one.
6872 Second parameter WIDTH specifies the pixel width for the vertical scroll
6873 bar. If WIDTH is nil, use the scroll-bar width of WINDOW's frame.
6874 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6875 bar: left, right, or nil. If VERTICAL-TYPE is t, this means use the
6876 frame's scroll-bar type.
6878 Fourth parameter HEIGHT specifies the pixel height for the horizontal
6879 scroll bar. If HEIGHT is nil, use the scroll-bar height of WINDOW's
6880 frame. Fifth parameter HORIZONTAL-TYPE specifies the type of the
6881 horizontal scroll bar: nil, bottom, or t. If HORIZONTAL-TYPE is t, this
6882 means to use the frame's horizontal scroll-bar type.
6884 Return t if scroll bars were actually changed and nil otherwise. */)
6885 (Lisp_Object window
, Lisp_Object width
, Lisp_Object vertical_type
,
6886 Lisp_Object height
, Lisp_Object horizontal_type
)
6889 = set_window_scroll_bars (decode_live_window (window
),
6890 width
, vertical_type
, height
, horizontal_type
);
6891 return w
? (apply_window_adjustment (w
), Qt
) : Qnil
;
6895 DEFUN ("window-scroll-bars", Fwindow_scroll_bars
, Swindow_scroll_bars
,
6897 doc
: /* Get width and type of scroll bars of window WINDOW.
6898 WINDOW must be a live window and defaults to the selected one.
6900 Value is a list of the form (WIDTH COLUMNS VERTICAL-TYPE HEIGHT LINES
6901 HORIZONTAL-TYPE). If WIDTH or HEIGHT is nil or VERTICAL-TYPE or
6902 HORIZONTAL-TYPE is t, the window is using the frame's corresponding
6904 (Lisp_Object window
)
6906 struct window
*w
= decode_live_window (window
);
6908 return Fcons (((w
->scroll_bar_width
>= 0)
6909 ? make_number (w
->scroll_bar_width
)
6911 list5 (make_number (WINDOW_SCROLL_BAR_COLS (w
)),
6912 w
->vertical_scroll_bar_type
,
6913 ((w
->scroll_bar_height
>= 0)
6914 ? make_number (w
->scroll_bar_height
)
6916 make_number (WINDOW_SCROLL_BAR_LINES (w
)),
6917 w
->horizontal_scroll_bar_type
));
6920 /***********************************************************************
6922 ***********************************************************************/
6924 DEFUN ("window-vscroll", Fwindow_vscroll
, Swindow_vscroll
, 0, 2, 0,
6925 doc
: /* Return the amount by which WINDOW is scrolled vertically.
6926 If WINDOW is omitted or nil, it defaults to the selected window.
6927 Normally, value is a multiple of the canonical character height of WINDOW;
6928 optional second arg PIXELS-P means value is measured in pixels. */)
6929 (Lisp_Object window
, Lisp_Object pixels_p
)
6932 struct window
*w
= decode_live_window (window
);
6933 struct frame
*f
= XFRAME (w
->frame
);
6935 if (FRAME_WINDOW_P (f
))
6936 result
= (NILP (pixels_p
)
6937 ? FRAME_CANON_Y_FROM_PIXEL_Y (f
, -w
->vscroll
)
6938 : make_number (-w
->vscroll
));
6940 result
= make_number (0);
6945 DEFUN ("set-window-vscroll", Fset_window_vscroll
, Sset_window_vscroll
,
6947 doc
: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6948 WINDOW nil means use the selected window. Normally, VSCROLL is a
6949 non-negative multiple of the canonical character height of WINDOW;
6950 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6951 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6952 corresponds to an integral number of pixels. The return value is the
6953 result of this rounding.
6954 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6955 (Lisp_Object window
, Lisp_Object vscroll
, Lisp_Object pixels_p
)
6957 struct window
*w
= decode_live_window (window
);
6958 struct frame
*f
= XFRAME (w
->frame
);
6960 CHECK_NUMBER_OR_FLOAT (vscroll
);
6962 if (FRAME_WINDOW_P (f
))
6964 int old_dy
= w
->vscroll
;
6966 w
->vscroll
= - (NILP (pixels_p
)
6967 ? FRAME_LINE_HEIGHT (f
) * XFLOATINT (vscroll
)
6968 : XFLOATINT (vscroll
));
6969 w
->vscroll
= min (w
->vscroll
, 0);
6971 if (w
->vscroll
!= old_dy
)
6973 /* Adjust glyph matrix of the frame if the virtual display
6974 area becomes larger than before. */
6975 if (w
->vscroll
< 0 && w
->vscroll
< old_dy
)
6976 adjust_frame_glyphs (f
);
6978 /* Prevent redisplay shortcuts. */
6979 XBUFFER (w
->contents
)->prevent_redisplay_optimizations_p
= true;
6983 return Fwindow_vscroll (window
, pixels_p
);
6987 /* Call FN for all leaf windows on frame F. FN is called with the
6988 first argument being a pointer to the leaf window, and with
6989 additional argument USER_DATA. Stops when FN returns 0. */
6992 foreach_window (struct frame
*f
, bool (*fn
) (struct window
*, void *),
6995 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
6996 if (WINDOWP (FRAME_ROOT_WINDOW (f
)))
6997 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f
)), fn
, user_data
);
7001 /* Helper function for foreach_window. Call FN for all leaf windows
7002 reachable from W. FN is called with the first argument being a
7003 pointer to the leaf window, and with additional argument USER_DATA.
7004 Stop when FN returns false. Value is false if stopped by FN. */
7007 foreach_window_1 (struct window
*w
, bool (*fn
) (struct window
*, void *),
7012 for (cont
= true; w
&& cont
;)
7014 if (WINDOWP (w
->contents
))
7015 cont
= foreach_window_1 (XWINDOW (w
->contents
), fn
, user_data
);
7017 cont
= fn (w
, user_data
);
7019 w
= NILP (w
->next
) ? 0 : XWINDOW (w
->next
);
7025 /***********************************************************************
7027 ***********************************************************************/
7029 /* Return true if window configurations CONFIGURATION1 and CONFIGURATION2
7030 describe the same state of affairs. This is used by Fequal.
7032 IGNORE_POSITIONS means ignore non-matching scroll positions
7035 This ignores a couple of things like the dedication status of
7036 window, combination_limit and the like. This might have to be
7040 compare_window_configurations (Lisp_Object configuration1
,
7041 Lisp_Object configuration2
,
7042 bool ignore_positions
)
7044 register struct save_window_data
*d1
, *d2
;
7045 struct Lisp_Vector
*sws1
, *sws2
;
7048 CHECK_WINDOW_CONFIGURATION (configuration1
);
7049 CHECK_WINDOW_CONFIGURATION (configuration2
);
7051 d1
= (struct save_window_data
*) XVECTOR (configuration1
);
7052 d2
= (struct save_window_data
*) XVECTOR (configuration2
);
7053 sws1
= XVECTOR (d1
->saved_windows
);
7054 sws2
= XVECTOR (d2
->saved_windows
);
7056 /* Frame settings must match. */
7057 if (d1
->frame_cols
!= d2
->frame_cols
7058 || d1
->frame_lines
!= d2
->frame_lines
7059 || d1
->frame_menu_bar_lines
!= d2
->frame_menu_bar_lines
7060 || !EQ (d1
->selected_frame
, d2
->selected_frame
)
7061 || !EQ (d1
->current_buffer
, d2
->current_buffer
)
7062 || (!ignore_positions
7063 && (!EQ (d1
->minibuf_scroll_window
, d2
->minibuf_scroll_window
)
7064 || !EQ (d1
->minibuf_selected_window
, d2
->minibuf_selected_window
)))
7065 || !EQ (d1
->focus_frame
, d2
->focus_frame
)
7066 /* Verify that the two configurations have the same number of windows. */
7067 || sws1
->header
.size
!= sws2
->header
.size
)
7070 for (i
= 0; i
< sws1
->header
.size
; i
++)
7072 struct saved_window
*sw1
, *sw2
;
7074 sw1
= SAVED_WINDOW_N (sws1
, i
);
7075 sw2
= SAVED_WINDOW_N (sws2
, i
);
7078 /* The "current" windows in the two configurations must
7079 correspond to each other. */
7080 EQ (d1
->current_window
, sw1
->window
)
7081 != EQ (d2
->current_window
, sw2
->window
)
7082 /* Windows' buffers must match. */
7083 || !EQ (sw1
->buffer
, sw2
->buffer
)
7084 || !EQ (sw1
->pixel_left
, sw2
->pixel_left
)
7085 || !EQ (sw1
->pixel_top
, sw2
->pixel_top
)
7086 || !EQ (sw1
->pixel_height
, sw2
->pixel_height
)
7087 || !EQ (sw1
->pixel_width
, sw2
->pixel_width
)
7088 || !EQ (sw1
->left_col
, sw2
->left_col
)
7089 || !EQ (sw1
->top_line
, sw2
->top_line
)
7090 || !EQ (sw1
->total_cols
, sw2
->total_cols
)
7091 || !EQ (sw1
->total_lines
, sw2
->total_lines
)
7092 || !EQ (sw1
->display_table
, sw2
->display_table
)
7093 /* The next two disjuncts check the window structure for
7095 || !EQ (sw1
->parent
, sw2
->parent
)
7096 || !EQ (sw1
->prev
, sw2
->prev
)
7097 || (!ignore_positions
7098 && (!EQ (sw1
->hscroll
, sw2
->hscroll
)
7099 || !EQ (sw1
->min_hscroll
, sw2
->min_hscroll
)
7100 || !EQ (sw1
->start_at_line_beg
, sw2
->start_at_line_beg
)
7101 || NILP (Fequal (sw1
->start
, sw2
->start
))
7102 || NILP (Fequal (sw1
->pointm
, sw2
->pointm
))))
7103 || !EQ (sw1
->left_margin_cols
, sw2
->left_margin_cols
)
7104 || !EQ (sw1
->right_margin_cols
, sw2
->right_margin_cols
)
7105 || !EQ (sw1
->left_fringe_width
, sw2
->left_fringe_width
)
7106 || !EQ (sw1
->right_fringe_width
, sw2
->right_fringe_width
)
7107 || !EQ (sw1
->fringes_outside_margins
, sw2
->fringes_outside_margins
)
7108 || !EQ (sw1
->scroll_bar_width
, sw2
->scroll_bar_width
)
7109 || !EQ (sw1
->scroll_bar_height
, sw2
->scroll_bar_height
)
7110 || !EQ (sw1
->vertical_scroll_bar_type
, sw2
->vertical_scroll_bar_type
)
7111 || !EQ (sw1
->horizontal_scroll_bar_type
, sw2
->horizontal_scroll_bar_type
))
7118 DEFUN ("compare-window-configurations", Fcompare_window_configurations
,
7119 Scompare_window_configurations
, 2, 2, 0,
7120 doc
: /* Compare two window configurations as regards the structure of windows.
7121 This function ignores details such as the values of point
7122 and scrolling positions. */)
7123 (Lisp_Object x
, Lisp_Object y
)
7125 if (compare_window_configurations (x
, y
, true))
7131 init_window_once (void)
7133 struct frame
*f
= make_initial_frame ();
7134 XSETFRAME (selected_frame
, f
);
7135 Vterminal_frame
= selected_frame
;
7136 minibuf_window
= f
->minibuffer_window
;
7137 selected_window
= f
->selected_window
;
7143 Vwindow_list
= Qnil
;
7147 syms_of_window (void)
7149 DEFSYM (Qscroll_up
, "scroll-up");
7150 DEFSYM (Qscroll_down
, "scroll-down");
7151 DEFSYM (Qscroll_command
, "scroll-command");
7153 Fput (Qscroll_up
, Qscroll_command
, Qt
);
7154 Fput (Qscroll_down
, Qscroll_command
, Qt
);
7156 DEFSYM (Qwindow_configuration_change_hook
, "window-configuration-change-hook");
7157 DEFSYM (Qwindowp
, "windowp");
7158 DEFSYM (Qwindow_configuration_p
, "window-configuration-p");
7159 DEFSYM (Qwindow_live_p
, "window-live-p");
7160 DEFSYM (Qwindow_valid_p
, "window-valid-p");
7161 DEFSYM (Qwindow_deletable_p
, "window-deletable-p");
7162 DEFSYM (Qdelete_window
, "delete-window");
7163 DEFSYM (Qwindow_resize_root_window
, "window--resize-root-window");
7164 DEFSYM (Qwindow_resize_root_window_vertically
, "window--resize-root-window-vertically");
7165 DEFSYM (Qwindow_sanitize_window_sizes
, "window--sanitize-window-sizes");
7166 DEFSYM (Qwindow_pixel_to_total
, "window--pixel-to-total");
7167 DEFSYM (Qsafe
, "safe");
7168 DEFSYM (Qdisplay_buffer
, "display-buffer");
7169 DEFSYM (Qreplace_buffer_in_windows
, "replace-buffer-in-windows");
7170 DEFSYM (Qrecord_window_buffer
, "record-window-buffer");
7171 DEFSYM (Qget_mru_window
, "get-mru-window");
7172 DEFSYM (Qwindow_size
, "window-size");
7173 DEFSYM (Qtemp_buffer_show_hook
, "temp-buffer-show-hook");
7174 DEFSYM (Qabove
, "above");
7175 DEFSYM (Qclone_of
, "clone-of");
7176 DEFSYM (Qfloor
, "floor");
7177 DEFSYM (Qceiling
, "ceiling");
7179 staticpro (&Vwindow_list
);
7181 minibuf_selected_window
= Qnil
;
7182 staticpro (&minibuf_selected_window
);
7184 window_scroll_pixel_based_preserve_x
= -1;
7185 window_scroll_pixel_based_preserve_y
= -1;
7186 window_scroll_preserve_hpos
= -1;
7187 window_scroll_preserve_vpos
= -1;
7189 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function
,
7190 doc
: /* Non-nil means call as function to display a help buffer.
7191 The function is called with one argument, the buffer to be displayed.
7192 Used by `with-output-to-temp-buffer'.
7193 If this function is used, then it must do the entire job of showing
7194 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
7195 Vtemp_buffer_show_function
= Qnil
;
7197 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window
,
7198 doc
: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
7199 Vminibuf_scroll_window
= Qnil
;
7201 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows
,
7202 doc
: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
7203 If the minibuffer is active, the `minibuffer-scroll-window' mode line
7204 is displayed in the `mode-line' face. */);
7205 mode_line_in_non_selected_windows
= true;
7207 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer
,
7208 doc
: /* If this is a live buffer, \\[scroll-other-window] should scroll its window. */);
7209 Vother_window_scroll_buffer
= Qnil
;
7211 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p
,
7212 doc
: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
7213 auto_window_vscroll_p
= true;
7215 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines
,
7216 doc
: /* Number of lines of continuity when scrolling by screenfuls. */);
7217 next_screen_context_lines
= 2;
7219 DEFVAR_LISP ("scroll-preserve-screen-position",
7220 Vscroll_preserve_screen_position
,
7221 doc
: /* Controls if scroll commands move point to keep its screen position unchanged.
7222 A value of nil means point does not keep its screen position except
7223 at the scroll margin or window boundary respectively.
7224 A value of t means point keeps its screen position if the scroll
7225 command moved it vertically out of the window, e.g. when scrolling
7227 Any other value means point always keeps its screen position.
7228 Scroll commands should have the `scroll-command' property
7229 on their symbols to be controlled by this variable. */);
7230 Vscroll_preserve_screen_position
= Qnil
;
7232 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type
,
7233 doc
: /* Type of marker to use for `window-point'. */);
7234 Vwindow_point_insertion_type
= Qnil
;
7235 DEFSYM (Qwindow_point_insertion_type
, "window_point_insertion_type");
7237 DEFVAR_LISP ("window-configuration-change-hook",
7238 Vwindow_configuration_change_hook
,
7239 doc
: /* Functions to call when window configuration changes.
7240 The buffer-local part is run once per window, with the relevant window
7241 selected; while the global part is run only once for the modified frame,
7242 with the relevant frame selected. */);
7243 Vwindow_configuration_change_hook
= Qnil
;
7245 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay
,
7246 doc
: /* Non-nil means `recenter' redraws entire frame.
7247 If this option is non-nil, then the `recenter' command with a nil
7248 argument will redraw the entire frame; the special value `tty' causes
7249 the frame to be redrawn only if it is a tty frame. */);
7250 Vrecenter_redisplay
= Qtty
;
7252 DEFVAR_LISP ("window-combination-resize", Vwindow_combination_resize
,
7253 doc
: /* If t, resize window combinations proportionally.
7254 If this variable is nil, splitting a window gets the entire screen space
7255 for displaying the new window from the window to split. Deleting and
7256 resizing a window preferably resizes one adjacent window only.
7258 If this variable is t, splitting a window tries to get the space
7259 proportionally from all windows in the same combination. This also
7260 allows to split a window that is otherwise too small or of fixed size.
7261 Resizing and deleting a window proportionally resize all windows in the
7264 Other values are reserved for future use.
7266 This variable takes no effect if the variable `window-combination-limit' is
7268 Vwindow_combination_resize
= Qnil
;
7270 DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit
,
7271 doc
: /* If non-nil, splitting a window makes a new parent window.
7272 The following values are recognized:
7274 nil means splitting a window will create a new parent window only if the
7275 window has no parent window or the window shall become part of a
7276 combination orthogonal to the one it is part of.
7278 `window-size' means that splitting a window for displaying a buffer
7279 makes a new parent window provided `display-buffer' is supposed to
7280 explicitly set the window's size due to the presence of a
7281 `window-height' or `window-width' entry in the alist used by
7282 `display-buffer'. Otherwise, this value is handled like nil.
7284 `temp-buffer' means that splitting a window for displaying a temporary
7285 buffer always makes a new parent window. Otherwise, this value is
7288 `display-buffer' means that splitting a window for displaying a buffer
7289 always makes a new parent window. Since temporary buffers are
7290 displayed by the function `display-buffer', this value is stronger
7291 than `temp-buffer'. Splitting a window for other purpose makes a
7292 new parent window only if needed.
7294 t means that splitting a window always creates a new parent window. If
7295 all splits behave this way, each frame's window tree is a binary
7296 tree and every window but the frame's root window has exactly one
7299 Other values are reserved for future use. */);
7300 Vwindow_combination_limit
= Qwindow_size
;
7302 DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters
,
7303 doc
: /* Alist of persistent window parameters.
7304 This alist specifies which window parameters shall get saved by
7305 `current-window-configuration' and `window-state-get' and subsequently
7306 restored to their previous values by `set-window-configuration' and
7309 The car of each entry of this alist is the symbol specifying the
7310 parameter. The cdr is one of the following:
7312 nil means the parameter is neither saved by `window-state-get' nor by
7313 `current-window-configuration'.
7315 t means the parameter is saved by `current-window-configuration' and,
7316 provided its WRITABLE argument is nil, by `window-state-get'.
7318 The symbol `writable' means the parameter is saved unconditionally by
7319 both `current-window-configuration' and `window-state-get'. Do not use
7320 this value for parameters without read syntax (like windows or frames).
7322 Parameters not saved by `current-window-configuration' or
7323 `window-state-get' are left alone by `set-window-configuration'
7324 respectively are not installed by `window-state-put'. */);
7325 Vwindow_persistent_parameters
= list1 (Fcons (Qclone_of
, Qt
));
7327 DEFVAR_BOOL ("window-resize-pixelwise", window_resize_pixelwise
,
7328 doc
: /* Non-nil means resize windows pixelwise.
7329 This currently affects the functions: `split-window', `maximize-window',
7330 `minimize-window', `fit-window-to-buffer' and `fit-frame-to-buffer', and
7331 all functions that symmetrically resize a parent window.
7333 Note that when a frame's pixel size is not a multiple of the
7334 frame's character size, at least one window may get resized
7335 pixelwise even if this option is nil. */);
7336 window_resize_pixelwise
= false;
7338 DEFVAR_BOOL ("fast-but-imprecise-scrolling",
7339 Vfast_but_imprecise_scrolling
,
7340 doc
: /* When non-nil, accelerate scrolling operations.
7341 This comes into play when scrolling rapidly over previously
7342 unfontified buffer regions. Only those portions of the buffer which
7343 are actually going to be displayed get fontified.
7345 Note that this optimization can cause the portion of the buffer
7346 displayed after a scrolling operation to be somewhat inaccurate. */);
7347 Vfast_but_imprecise_scrolling
= false;
7349 defsubr (&Sselected_window
);
7350 defsubr (&Sminibuffer_window
);
7351 defsubr (&Swindow_minibuffer_p
);
7352 defsubr (&Swindowp
);
7353 defsubr (&Swindow_valid_p
);
7354 defsubr (&Swindow_live_p
);
7355 defsubr (&Swindow_frame
);
7356 defsubr (&Sframe_root_window
);
7357 defsubr (&Sframe_first_window
);
7358 defsubr (&Sframe_selected_window
);
7359 defsubr (&Sset_frame_selected_window
);
7360 defsubr (&Spos_visible_in_window_p
);
7361 defsubr (&Swindow_line_height
);
7362 defsubr (&Swindow_buffer
);
7363 defsubr (&Swindow_parent
);
7364 defsubr (&Swindow_top_child
);
7365 defsubr (&Swindow_left_child
);
7366 defsubr (&Swindow_next_sibling
);
7367 defsubr (&Swindow_prev_sibling
);
7368 defsubr (&Swindow_combination_limit
);
7369 defsubr (&Sset_window_combination_limit
);
7370 defsubr (&Swindow_use_time
);
7371 defsubr (&Swindow_pixel_width
);
7372 defsubr (&Swindow_pixel_height
);
7373 defsubr (&Swindow_total_width
);
7374 defsubr (&Swindow_total_height
);
7375 defsubr (&Swindow_normal_size
);
7376 defsubr (&Swindow_new_pixel
);
7377 defsubr (&Swindow_new_total
);
7378 defsubr (&Swindow_new_normal
);
7379 defsubr (&Swindow_pixel_left
);
7380 defsubr (&Swindow_pixel_top
);
7381 defsubr (&Swindow_left_column
);
7382 defsubr (&Swindow_top_line
);
7383 defsubr (&Sset_window_new_pixel
);
7384 defsubr (&Sset_window_new_total
);
7385 defsubr (&Sset_window_new_normal
);
7386 defsubr (&Swindow_resize_apply
);
7387 defsubr (&Swindow_resize_apply_total
);
7388 defsubr (&Swindow_body_height
);
7389 defsubr (&Swindow_body_width
);
7390 defsubr (&Swindow_hscroll
);
7391 defsubr (&Sset_window_hscroll
);
7392 defsubr (&Swindow_redisplay_end_trigger
);
7393 defsubr (&Sset_window_redisplay_end_trigger
);
7394 defsubr (&Swindow_mode_line_height
);
7395 defsubr (&Swindow_header_line_height
);
7396 defsubr (&Swindow_right_divider_width
);
7397 defsubr (&Swindow_bottom_divider_width
);
7398 defsubr (&Swindow_scroll_bar_width
);
7399 defsubr (&Swindow_scroll_bar_height
);
7400 defsubr (&Scoordinates_in_window_p
);
7401 defsubr (&Swindow_at
);
7402 defsubr (&Swindow_point
);
7403 defsubr (&Swindow_old_point
);
7404 defsubr (&Swindow_start
);
7405 defsubr (&Swindow_end
);
7406 defsubr (&Sset_window_point
);
7407 defsubr (&Sset_window_start
);
7408 defsubr (&Swindow_dedicated_p
);
7409 defsubr (&Sset_window_dedicated_p
);
7410 defsubr (&Swindow_display_table
);
7411 defsubr (&Sset_window_display_table
);
7412 defsubr (&Snext_window
);
7413 defsubr (&Sprevious_window
);
7414 defsubr (&Swindow__sanitize_window_sizes
);
7415 defsubr (&Sget_buffer_window
);
7416 defsubr (&Sdelete_other_windows_internal
);
7417 defsubr (&Sdelete_window_internal
);
7418 defsubr (&Sresize_mini_window_internal
);
7419 defsubr (&Sset_window_buffer
);
7420 defsubr (&Srun_window_configuration_change_hook
);
7421 defsubr (&Srun_window_scroll_functions
);
7422 defsubr (&Sselect_window
);
7423 defsubr (&Sforce_window_update
);
7424 defsubr (&Ssplit_window_internal
);
7425 defsubr (&Sscroll_up
);
7426 defsubr (&Sscroll_down
);
7427 defsubr (&Sscroll_left
);
7428 defsubr (&Sscroll_right
);
7429 defsubr (&Sother_window_for_scrolling
);
7430 defsubr (&Sscroll_other_window
);
7431 defsubr (&Sminibuffer_selected_window
);
7432 defsubr (&Srecenter
);
7433 defsubr (&Swindow_text_width
);
7434 defsubr (&Swindow_text_height
);
7435 defsubr (&Smove_to_window_line
);
7436 defsubr (&Swindow_configuration_p
);
7437 defsubr (&Swindow_configuration_frame
);
7438 defsubr (&Sset_window_configuration
);
7439 defsubr (&Scurrent_window_configuration
);
7440 defsubr (&Sset_window_margins
);
7441 defsubr (&Swindow_margins
);
7442 defsubr (&Sset_window_fringes
);
7443 defsubr (&Swindow_fringes
);
7444 defsubr (&Sset_window_scroll_bars
);
7445 defsubr (&Swindow_scroll_bars
);
7446 defsubr (&Swindow_vscroll
);
7447 defsubr (&Sset_window_vscroll
);
7448 defsubr (&Scompare_window_configurations
);
7449 defsubr (&Swindow_list
);
7450 defsubr (&Swindow_list_1
);
7451 defsubr (&Swindow_prev_buffers
);
7452 defsubr (&Sset_window_prev_buffers
);
7453 defsubr (&Swindow_next_buffers
);
7454 defsubr (&Sset_window_next_buffers
);
7455 defsubr (&Swindow_parameters
);
7456 defsubr (&Swindow_parameter
);
7457 defsubr (&Sset_window_parameter
);
7461 keys_of_window (void)
7463 initial_define_key (control_x_map
, '<', "scroll-left");
7464 initial_define_key (control_x_map
, '>', "scroll-right");
7466 initial_define_key (global_map
, Ctl ('V'), "scroll-up-command");
7467 initial_define_key (meta_map
, Ctl ('V'), "scroll-other-window");
7468 initial_define_key (meta_map
, 'v', "scroll-down-command");