]> code.delx.au - gnu-emacs/blob - src/window.c
-
[gnu-emacs] / src / window.c
1 /* Window creation, deletion and examination for GNU Emacs.
2 Does not include redisplay.
3 Copyright (C) 1985-1987, 1993-1998, 2000-2016 Free Software
4 Foundation, Inc.
5
6 This file is part of GNU Emacs.
7
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.
12
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.
17
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/>. */
20
21 #include <config.h>
22
23 #include <stdio.h>
24
25 #include "lisp.h"
26 #include "buffer.h"
27 #include "keyboard.h"
28 #include "keymap.h"
29 #include "frame.h"
30 #include "window.h"
31 #include "commands.h"
32 #include "indent.h"
33 #include "termchar.h"
34 #include "disptab.h"
35 #include "dispextern.h"
36 #include "blockinput.h"
37 #include "termhooks.h" /* For FRAME_TERMINAL. */
38 #include "xwidget.h"
39 #ifdef HAVE_WINDOW_SYSTEM
40 #include TERM_HEADER
41 #endif /* HAVE_WINDOW_SYSTEM */
42 #ifdef MSDOS
43 #include "msdos.h"
44 #endif
45
46 static ptrdiff_t count_windows (struct window *);
47 static ptrdiff_t get_leaf_windows (struct window *, struct window **,
48 ptrdiff_t);
49 static void window_scroll_pixel_based (Lisp_Object, int, bool, bool);
50 static void window_scroll_line_based (Lisp_Object, int, bool, bool);
51 static void foreach_window (struct frame *,
52 bool (* fn) (struct window *, void *),
53 void *);
54 static bool foreach_window_1 (struct window *,
55 bool (* fn) (struct window *, void *),
56 void *);
57 static bool window_resize_check (struct window *, bool);
58 static void window_resize_apply (struct window *, bool);
59 static void select_window_1 (Lisp_Object, bool);
60
61 static struct window *set_window_fringes (struct window *, Lisp_Object,
62 Lisp_Object, Lisp_Object);
63 static struct window *set_window_margins (struct window *, Lisp_Object,
64 Lisp_Object);
65 static struct window *set_window_scroll_bars (struct window *, Lisp_Object,
66 Lisp_Object, Lisp_Object,
67 Lisp_Object);
68 static void apply_window_adjustment (struct window *);
69
70 /* This is the window in which the terminal's cursor should
71 be left when nothing is being done with it. This must
72 always be a leaf window, and its buffer is selected by
73 the top level editing loop at the end of each command.
74
75 This value is always the same as
76 FRAME_SELECTED_WINDOW (selected_frame). */
77 Lisp_Object selected_window;
78
79 /* A list of all windows for use by next_window and Fwindow_list.
80 Functions creating or deleting windows should invalidate this cache
81 by setting it to nil. */
82 Lisp_Object Vwindow_list;
83
84 /* The mini-buffer window of the selected frame.
85 Note that you cannot test for mini-bufferness of an arbitrary window
86 by comparing against this; but you can test for mini-bufferness of
87 the selected window. */
88 Lisp_Object minibuf_window;
89
90 /* Non-nil means it is the window whose mode line should be
91 shown as the selected window when the minibuffer is selected. */
92 Lisp_Object minibuf_selected_window;
93
94 /* Incremented for each window created. */
95 static EMACS_INT sequence_number;
96
97 /* Used by the function window_scroll_pixel_based. */
98 static int window_scroll_pixel_based_preserve_x;
99 static int window_scroll_pixel_based_preserve_y;
100
101 /* Same for window_scroll_line_based. */
102 static EMACS_INT window_scroll_preserve_hpos;
103 static EMACS_INT window_scroll_preserve_vpos;
104 \f
105 static void
106 CHECK_WINDOW_CONFIGURATION (Lisp_Object x)
107 {
108 CHECK_TYPE (WINDOW_CONFIGURATIONP (x), Qwindow_configuration_p, x);
109 }
110
111 /* These setters are used only in this file, so they can be private. */
112 static void
113 wset_combination_limit (struct window *w, Lisp_Object val)
114 {
115 w->combination_limit = val;
116 }
117
118 static void
119 wset_dedicated (struct window *w, Lisp_Object val)
120 {
121 w->dedicated = val;
122 }
123
124 static void
125 wset_display_table (struct window *w, Lisp_Object val)
126 {
127 w->display_table = val;
128 }
129
130 static void
131 wset_new_normal (struct window *w, Lisp_Object val)
132 {
133 w->new_normal = val;
134 }
135
136 static void
137 wset_new_total (struct window *w, Lisp_Object val)
138 {
139 w->new_total = val;
140 }
141
142 static void
143 wset_normal_cols (struct window *w, Lisp_Object val)
144 {
145 w->normal_cols = val;
146 }
147
148 static void
149 wset_normal_lines (struct window *w, Lisp_Object val)
150 {
151 w->normal_lines = val;
152 }
153
154 static void
155 wset_parent (struct window *w, Lisp_Object val)
156 {
157 w->parent = val;
158 }
159
160 static void
161 wset_pointm (struct window *w, Lisp_Object val)
162 {
163 w->pointm = val;
164 }
165
166 static void
167 wset_old_pointm (struct window *w, Lisp_Object val)
168 {
169 w->old_pointm = val;
170 }
171
172 static void
173 wset_start (struct window *w, Lisp_Object val)
174 {
175 w->start = val;
176 }
177
178 static void
179 wset_temslot (struct window *w, Lisp_Object val)
180 {
181 w->temslot = val;
182 }
183
184 static void
185 wset_vertical_scroll_bar_type (struct window *w, Lisp_Object val)
186 {
187 w->vertical_scroll_bar_type = val;
188 }
189
190 static void
191 wset_window_parameters (struct window *w, Lisp_Object val)
192 {
193 w->window_parameters = val;
194 }
195
196 static void
197 wset_combination (struct window *w, bool horflag, Lisp_Object val)
198 {
199 /* Since leaf windows never becomes non-leaf, there should
200 be no buffer and markers in start and pointm fields of W. */
201 eassert (!BUFFERP (w->contents) && NILP (w->start) && NILP (w->pointm));
202 w->contents = val;
203 /* When an internal window is deleted and VAL is nil, HORFLAG
204 is meaningless. */
205 if (!NILP (val))
206 w->horizontal = horflag;
207 }
208
209 static void
210 wset_update_mode_line (struct window *w)
211 {
212 /* If this window is the selected window on its frame, set the
213 global variable update_mode_lines, so that x_consider_frame_title
214 will consider this frame's title for redisplay. */
215 Lisp_Object fselected_window = XFRAME (WINDOW_FRAME (w))->selected_window;
216
217 if (WINDOWP (fselected_window) && XWINDOW (fselected_window) == w)
218 update_mode_lines = 42;
219 else
220 w->update_mode_line = true;
221 }
222
223 /* True if leaf window W doesn't reflect the actual state
224 of displayed buffer due to its text or overlays change. */
225
226 bool
227 window_outdated (struct window *w)
228 {
229 struct buffer *b = XBUFFER (w->contents);
230 return (w->last_modified < BUF_MODIFF (b)
231 || w->last_overlay_modified < BUF_OVERLAY_MODIFF (b));
232 }
233
234 struct window *
235 decode_live_window (register Lisp_Object window)
236 {
237 if (NILP (window))
238 return XWINDOW (selected_window);
239
240 CHECK_LIVE_WINDOW (window);
241 return XWINDOW (window);
242 }
243
244 struct window *
245 decode_any_window (register Lisp_Object window)
246 {
247 struct window *w;
248
249 if (NILP (window))
250 return XWINDOW (selected_window);
251
252 CHECK_WINDOW (window);
253 w = XWINDOW (window);
254 return w;
255 }
256
257 static struct window *
258 decode_valid_window (register Lisp_Object window)
259 {
260 struct window *w;
261
262 if (NILP (window))
263 return XWINDOW (selected_window);
264
265 CHECK_VALID_WINDOW (window);
266 w = XWINDOW (window);
267 return w;
268 }
269
270 /* Called when W's buffer slot is changed. ARG -1 means that W is about to
271 cease its buffer, and 1 means that W is about to set up the new one. */
272
273 static void
274 adjust_window_count (struct window *w, int arg)
275 {
276 eassert (eabs (arg) == 1);
277 if (BUFFERP (w->contents))
278 {
279 struct buffer *b = XBUFFER (w->contents);
280
281 if (b->base_buffer)
282 b = b->base_buffer;
283 b->window_count += arg;
284 eassert (b->window_count >= 0);
285 /* These should be recalculated by redisplay code. */
286 w->window_end_valid = false;
287 w->base_line_pos = 0;
288 }
289 }
290
291 /* Set W's buffer slot to VAL and recompute number
292 of windows showing VAL if it is a buffer. */
293
294 void
295 wset_buffer (struct window *w, Lisp_Object val)
296 {
297 adjust_window_count (w, -1);
298 if (BUFFERP (val))
299 /* Make sure that we do not assign the buffer
300 to an internal window. */
301 eassert (MARKERP (w->start) && MARKERP (w->pointm));
302 w->contents = val;
303 adjust_window_count (w, 1);
304 }
305
306 DEFUN ("windowp", Fwindowp, Swindowp, 1, 1, 0,
307 doc: /* Return t if OBJECT is a window and nil otherwise. */)
308 (Lisp_Object object)
309 {
310 return WINDOWP (object) ? Qt : Qnil;
311 }
312
313 DEFUN ("window-valid-p", Fwindow_valid_p, Swindow_valid_p, 1, 1, 0,
314 doc: /* Return t if OBJECT is a valid window and nil otherwise.
315 A valid window is either a window that displays a buffer or an internal
316 window. Windows that have been deleted are not valid. */)
317 (Lisp_Object object)
318 {
319 return WINDOW_VALID_P (object) ? Qt : Qnil;
320 }
321
322 DEFUN ("window-live-p", Fwindow_live_p, Swindow_live_p, 1, 1, 0,
323 doc: /* Return t if OBJECT is a live window and nil otherwise.
324 A live window is a window that displays a buffer.
325 Internal windows and deleted windows are not live. */)
326 (Lisp_Object object)
327 {
328 return WINDOW_LIVE_P (object) ? Qt : Qnil;
329 }
330 \f
331 /* Frames and windows. */
332 DEFUN ("window-frame", Fwindow_frame, Swindow_frame, 0, 1, 0,
333 doc: /* Return the frame that window WINDOW is on.
334 WINDOW must be a valid window and defaults to the selected one. */)
335 (Lisp_Object window)
336 {
337 return decode_valid_window (window)->frame;
338 }
339
340 DEFUN ("frame-root-window", Fframe_root_window, Sframe_root_window, 0, 1, 0,
341 doc: /* Return the root window of FRAME-OR-WINDOW.
342 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
343 With a frame argument, return that frame's root window.
344 With a window argument, return the root window of that window's frame. */)
345 (Lisp_Object frame_or_window)
346 {
347 Lisp_Object window;
348
349 if (NILP (frame_or_window))
350 window = SELECTED_FRAME ()->root_window;
351 else if (WINDOW_VALID_P (frame_or_window))
352 window = XFRAME (XWINDOW (frame_or_window)->frame)->root_window;
353 else
354 {
355 CHECK_LIVE_FRAME (frame_or_window);
356 window = XFRAME (frame_or_window)->root_window;
357 }
358
359 return window;
360 }
361
362 DEFUN ("minibuffer-window", Fminibuffer_window, Sminibuffer_window, 0, 1, 0,
363 doc: /* Return the minibuffer window for frame FRAME.
364 If FRAME is omitted or nil, it defaults to the selected frame. */)
365 (Lisp_Object frame)
366 {
367 return FRAME_MINIBUF_WINDOW (decode_live_frame (frame));
368 }
369
370 DEFUN ("window-minibuffer-p", Fwindow_minibuffer_p,
371 Swindow_minibuffer_p, 0, 1, 0,
372 doc: /* Return non-nil if WINDOW is a minibuffer window.
373 WINDOW must be a valid window and defaults to the selected one. */)
374 (Lisp_Object window)
375 {
376 return MINI_WINDOW_P (decode_valid_window (window)) ? Qt : Qnil;
377 }
378
379 /* Don't move this to window.el - this must be a safe routine. */
380 DEFUN ("frame-first-window", Fframe_first_window, Sframe_first_window, 0, 1, 0,
381 doc: /* Return the topmost, leftmost live window on FRAME-OR-WINDOW.
382 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
383 Else if FRAME-OR-WINDOW denotes a valid window, return the first window
384 of that window's frame. If FRAME-OR-WINDOW denotes a live frame, return
385 the first window of that frame. */)
386 (Lisp_Object frame_or_window)
387 {
388 Lisp_Object window;
389
390 if (NILP (frame_or_window))
391 window = SELECTED_FRAME ()->root_window;
392 else if (WINDOW_VALID_P (frame_or_window))
393 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->root_window;
394 else
395 {
396 CHECK_LIVE_FRAME (frame_or_window);
397 window = XFRAME (frame_or_window)->root_window;
398 }
399
400 while (WINDOWP (XWINDOW (window)->contents))
401 window = XWINDOW (window)->contents;
402
403 return window;
404 }
405
406 DEFUN ("frame-selected-window", Fframe_selected_window,
407 Sframe_selected_window, 0, 1, 0,
408 doc: /* Return the selected window of FRAME-OR-WINDOW.
409 If omitted, FRAME-OR-WINDOW defaults to the currently selected frame.
410 Else if FRAME-OR-WINDOW denotes a valid window, return the selected
411 window of that window's frame. If FRAME-OR-WINDOW denotes a live frame,
412 return the selected window of that frame. */)
413 (Lisp_Object frame_or_window)
414 {
415 Lisp_Object window;
416
417 if (NILP (frame_or_window))
418 window = SELECTED_FRAME ()->selected_window;
419 else if (WINDOW_VALID_P (frame_or_window))
420 window = XFRAME (WINDOW_FRAME (XWINDOW (frame_or_window)))->selected_window;
421 else
422 {
423 CHECK_LIVE_FRAME (frame_or_window);
424 window = XFRAME (frame_or_window)->selected_window;
425 }
426
427 return window;
428 }
429
430 DEFUN ("set-frame-selected-window", Fset_frame_selected_window,
431 Sset_frame_selected_window, 2, 3, 0,
432 doc: /* Set selected window of FRAME to WINDOW.
433 FRAME must be a live frame and defaults to the selected one. If FRAME
434 is the selected frame, this makes WINDOW the selected window. Optional
435 argument NORECORD non-nil means to neither change the order of recently
436 selected windows nor the buffer list. WINDOW must denote a live window.
437 Return WINDOW. */)
438 (Lisp_Object frame, Lisp_Object window, Lisp_Object norecord)
439 {
440 if (NILP (frame))
441 frame = selected_frame;
442
443 CHECK_LIVE_FRAME (frame);
444 CHECK_LIVE_WINDOW (window);
445
446 if (! EQ (frame, WINDOW_FRAME (XWINDOW (window))))
447 error ("In `set-frame-selected-window', WINDOW is not on FRAME");
448
449 if (EQ (frame, selected_frame))
450 return Fselect_window (window, norecord);
451 else
452 {
453 fset_selected_window (XFRAME (frame), window);
454 return window;
455 }
456 }
457
458 DEFUN ("selected-window", Fselected_window, Sselected_window, 0, 0, 0,
459 doc: /* Return the selected window.
460 The selected window is the window in which the standard cursor for
461 selected windows appears and to which many commands apply. */)
462 (void)
463 {
464 return selected_window;
465 }
466
467 EMACS_INT window_select_count;
468
469 /* If select_window is called with inhibit_point_swap true it will
470 not store point of the old selected window's buffer back into that
471 window's pointm slot. This is needed by Fset_window_configuration to
472 avoid that the display routine is called with selected_window set to
473 Qnil causing a subsequent crash. */
474 static Lisp_Object
475 select_window (Lisp_Object window, Lisp_Object norecord,
476 bool inhibit_point_swap)
477 {
478 struct window *w;
479 struct frame *sf;
480
481 CHECK_LIVE_WINDOW (window);
482
483 w = XWINDOW (window);
484
485 /* Make the selected window's buffer current. */
486 Fset_buffer (w->contents);
487
488 if (EQ (window, selected_window) && !inhibit_point_swap)
489 /* `switch-to-buffer' uses (select-window (selected-window)) as a "clever"
490 way to call record_buffer from Elisp, so it's important that we call
491 record_buffer before returning here. */
492 goto record_and_return;
493
494 if (NILP (norecord))
495 { /* Mark the window for redisplay since the selected-window has
496 a different mode-line. */
497 wset_redisplay (XWINDOW (selected_window));
498 wset_redisplay (w);
499 }
500 else
501 redisplay_other_windows ();
502
503 sf = SELECTED_FRAME ();
504 if (XFRAME (WINDOW_FRAME (w)) != sf)
505 {
506 fset_selected_window (XFRAME (WINDOW_FRAME (w)), window);
507 /* Use this rather than Fhandle_switch_frame
508 so that FRAME_FOCUS_FRAME is moved appropriately as we
509 move around in the state where a minibuffer in a separate
510 frame is active. */
511 Fselect_frame (WINDOW_FRAME (w), norecord);
512 /* Fselect_frame called us back so we've done all the work already. */
513 eassert (EQ (window, selected_window));
514 return window;
515 }
516 else
517 fset_selected_window (sf, window);
518
519 select_window_1 (window, inhibit_point_swap);
520 bset_last_selected_window (XBUFFER (w->contents), window);
521
522 record_and_return:
523 /* record_buffer can run QUIT, so make sure it is run only after we have
524 re-established the invariant between selected_window and selected_frame,
525 otherwise the temporary broken invariant might "escape" (bug#14161). */
526 if (NILP (norecord))
527 {
528 w->use_time = ++window_select_count;
529 record_buffer (w->contents);
530 }
531
532 return window;
533 }
534
535 /* Select window with a minimum of fuss, i.e. don't record the change anywhere
536 (not even for redisplay's benefit), and assume that the window's frame is
537 already selected. */
538 static void
539 select_window_1 (Lisp_Object window, bool inhibit_point_swap)
540 {
541 /* Store the old selected window's buffer's point in pointm of the old
542 selected window. It belongs to that window, and when the window is
543 not selected, must be in the window. */
544 if (!inhibit_point_swap)
545 {
546 struct window *ow = XWINDOW (selected_window);
547 if (BUFFERP (ow->contents))
548 set_marker_both (ow->pointm, ow->contents,
549 BUF_PT (XBUFFER (ow->contents)),
550 BUF_PT_BYTE (XBUFFER (ow->contents)));
551 }
552
553 selected_window = window;
554
555 /* Go to the point recorded in the window.
556 This is important when the buffer is in more
557 than one window. It also matters when
558 redisplay_window has altered point after scrolling,
559 because it makes the change only in the window. */
560 set_point_from_marker (XWINDOW (window)->pointm);
561 }
562
563 DEFUN ("select-window", Fselect_window, Sselect_window, 1, 2, 0,
564 doc: /* Select WINDOW which must be a live window.
565 Also make WINDOW's frame the selected frame and WINDOW that frame's
566 selected window. In addition, make WINDOW's buffer current and set its
567 buffer's value of `point' to the value of WINDOW's `window-point'.
568 Return WINDOW.
569
570 Optional second arg NORECORD non-nil means do not put this buffer at the
571 front of the buffer list and do not make this window the most recently
572 selected one.
573
574 Run `buffer-list-update-hook' unless NORECORD is non-nil. Note that
575 applications and internal routines often select a window temporarily for
576 various purposes; mostly, to simplify coding. As a rule, such
577 selections should be not recorded and therefore will not pollute
578 `buffer-list-update-hook'. Selections that "really count" are those
579 causing a visible change in the next redisplay of WINDOW's frame and
580 should be always recorded. So if you think of running a function each
581 time a window gets selected put it on `buffer-list-update-hook'.
582
583 Also note that the main editor command loop sets the current buffer to
584 the buffer of the selected window before each command. */)
585 (Lisp_Object window, Lisp_Object norecord)
586 {
587 return select_window (window, norecord, false);
588 }
589 \f
590 DEFUN ("window-buffer", Fwindow_buffer, Swindow_buffer, 0, 1, 0,
591 doc: /* Return the buffer displayed in window WINDOW.
592 If WINDOW is omitted or nil, it defaults to the selected window.
593 Return nil for an internal window or a deleted window. */)
594 (Lisp_Object window)
595 {
596 struct window *w = decode_any_window (window);
597 return WINDOW_LEAF_P (w) ? w->contents : Qnil;
598 }
599
600 DEFUN ("window-parent", Fwindow_parent, Swindow_parent, 0, 1, 0,
601 doc: /* Return the parent window of window WINDOW.
602 WINDOW must be a valid window and defaults to the selected one.
603 Return nil for a window with no parent (e.g. a root window). */)
604 (Lisp_Object window)
605 {
606 return decode_valid_window (window)->parent;
607 }
608
609 DEFUN ("window-top-child", Fwindow_top_child, Swindow_top_child, 0, 1, 0,
610 doc: /* Return the topmost child window of window WINDOW.
611 WINDOW must be a valid window and defaults to the selected one.
612 Return nil if WINDOW is a live window (live windows have no children).
613 Return nil if WINDOW is an internal window whose children form a
614 horizontal combination. */)
615 (Lisp_Object window)
616 {
617 struct window *w = decode_valid_window (window);
618 return WINDOW_VERTICAL_COMBINATION_P (w) ? w->contents : Qnil;
619 }
620
621 DEFUN ("window-left-child", Fwindow_left_child, Swindow_left_child, 0, 1, 0,
622 doc: /* Return the leftmost child window of window WINDOW.
623 WINDOW must be a valid window and defaults to the selected one.
624 Return nil if WINDOW is a live window (live windows have no children).
625 Return nil if WINDOW is an internal window whose children form a
626 vertical combination. */)
627 (Lisp_Object window)
628 {
629 struct window *w = decode_valid_window (window);
630 return WINDOW_HORIZONTAL_COMBINATION_P (w) ? w->contents : Qnil;
631 }
632
633 DEFUN ("window-next-sibling", Fwindow_next_sibling, Swindow_next_sibling, 0, 1, 0,
634 doc: /* Return the next sibling window of window WINDOW.
635 WINDOW must be a valid window and defaults to the selected one.
636 Return nil if WINDOW has no next sibling. */)
637 (Lisp_Object window)
638 {
639 return decode_valid_window (window)->next;
640 }
641
642 DEFUN ("window-prev-sibling", Fwindow_prev_sibling, Swindow_prev_sibling, 0, 1, 0,
643 doc: /* Return the previous sibling window of window WINDOW.
644 WINDOW must be a valid window and defaults to the selected one.
645 Return nil if WINDOW has no previous sibling. */)
646 (Lisp_Object window)
647 {
648 return decode_valid_window (window)->prev;
649 }
650
651 DEFUN ("window-combination-limit", Fwindow_combination_limit, Swindow_combination_limit, 1, 1, 0,
652 doc: /* Return combination limit of window WINDOW.
653 WINDOW must be a valid window used in horizontal or vertical combination.
654 If the return value is nil, child windows of WINDOW can be recombined with
655 WINDOW's siblings. A return value of t means that child windows of
656 WINDOW are never (re-)combined with WINDOW's siblings. */)
657 (Lisp_Object window)
658 {
659 struct window *w;
660
661 CHECK_VALID_WINDOW (window);
662 w = XWINDOW (window);
663 if (WINDOW_LEAF_P (w))
664 error ("Combination limit is meaningful for internal windows only");
665 return w->combination_limit;
666 }
667
668 DEFUN ("set-window-combination-limit", Fset_window_combination_limit, Sset_window_combination_limit, 2, 2, 0,
669 doc: /* Set combination limit of window WINDOW to LIMIT; return LIMIT.
670 WINDOW must be a valid window used in horizontal or vertical combination.
671 If LIMIT is nil, child windows of WINDOW can be recombined with WINDOW's
672 siblings. LIMIT t means that child windows of WINDOW are never
673 (re-)combined with WINDOW's siblings. Other values are reserved for
674 future use. */)
675 (Lisp_Object window, Lisp_Object limit)
676 {
677 struct window *w;
678
679 CHECK_VALID_WINDOW (window);
680 w = XWINDOW (window);
681 if (WINDOW_LEAF_P (w))
682 error ("Combination limit is meaningful for internal windows only");
683 wset_combination_limit (w, limit);
684 return limit;
685 }
686
687 DEFUN ("window-use-time", Fwindow_use_time, Swindow_use_time, 0, 1, 0,
688 doc: /* Return the use time of window WINDOW.
689 WINDOW must be a live window and defaults to the selected one.
690 The window with the highest use time is the most recently selected
691 one. The window with the lowest use time is the least recently
692 selected one. */)
693 (Lisp_Object window)
694 {
695 return make_number (decode_live_window (window)->use_time);
696 }
697 \f
698 DEFUN ("window-pixel-width", Fwindow_pixel_width, Swindow_pixel_width, 0, 1, 0,
699 doc: /* Return the width of window WINDOW in pixels.
700 WINDOW must be a valid window and defaults to the selected one.
701
702 The return value includes the fringes and margins of WINDOW as well as
703 any vertical dividers or scroll bars belonging to WINDOW. If WINDOW is
704 an internal window, its pixel width is the width of the screen areas
705 spanned by its children. */)
706 (Lisp_Object window)
707 {
708 return make_number (decode_valid_window (window)->pixel_width);
709 }
710
711 DEFUN ("window-pixel-height", Fwindow_pixel_height, Swindow_pixel_height, 0, 1, 0,
712 doc: /* Return the height of window WINDOW in pixels.
713 WINDOW must be a valid window and defaults to the selected one.
714
715 The return value includes the mode line and header line and the bottom
716 divider, if any. If WINDOW is an internal window, its pixel height is
717 the height of the screen areas spanned by its children. */)
718 (Lisp_Object window)
719 {
720 return make_number (decode_valid_window (window)->pixel_height);
721 }
722
723 DEFUN ("window-total-height", Fwindow_total_height, Swindow_total_height, 0, 2, 0,
724 doc: /* Return the height of window WINDOW in lines.
725 WINDOW must be a valid window and defaults to the selected one.
726
727 The return value includes the heights of WINDOW's mode and header line
728 and its bottom divider, if any. If WINDOW is an internal window, the
729 total height is the height of the screen areas spanned by its children.
730
731 If WINDOW's pixel height is not an integral multiple of its frame's
732 character height, the number of lines occupied by WINDOW is rounded
733 internally. This is done in a way such that, if WINDOW is a parent
734 window, the sum of the total heights of all its children internally
735 equals the total height of WINDOW.
736
737 If the optional argument ROUND is `ceiling', return the smallest integer
738 larger than WINDOW's pixel height divided by the character height of
739 WINDOW's frame. ROUND `floor' means to return the largest integer
740 smaller than WINDOW's pixel height divided by the character height of
741 WINDOW's frame. Any other value of ROUND means to return the internal
742 total height of WINDOW. */)
743 (Lisp_Object window, Lisp_Object round)
744 {
745 struct window *w = decode_valid_window (window);
746
747 if (! EQ (round, Qfloor) && ! EQ (round, Qceiling))
748 return make_number (w->total_lines);
749 else
750 {
751 int unit = FRAME_LINE_HEIGHT (WINDOW_XFRAME (w));
752
753 return make_number (EQ (round, Qceiling)
754 ? ((w->pixel_height + unit - 1) /unit)
755 : (w->pixel_height / unit));
756 }
757 }
758
759 DEFUN ("window-total-width", Fwindow_total_width, Swindow_total_width, 0, 2, 0,
760 doc: /* Return the total width of window WINDOW in columns.
761 WINDOW must be a valid window and defaults to the selected one.
762
763 The return value includes the widths of WINDOW's fringes, margins,
764 scroll bars and its right divider, if any. If WINDOW is an internal
765 window, the total width is the width of the screen areas spanned by its
766 children.
767
768 If WINDOW's pixel width is not an integral multiple of its frame's
769 character width, the number of lines occupied by WINDOW is rounded
770 internally. This is done in a way such that, if WINDOW is a parent
771 window, the sum of the total widths of all its children internally
772 equals the total width of WINDOW.
773
774 If the optional argument ROUND is `ceiling', return the smallest integer
775 larger than WINDOW's pixel width divided by the character width of
776 WINDOW's frame. ROUND `floor' means to return the largest integer
777 smaller than WINDOW's pixel width divided by the character width of
778 WINDOW's frame. Any other value of ROUND means to return the internal
779 total width of WINDOW. */)
780 (Lisp_Object window, Lisp_Object round)
781 {
782 struct window *w = decode_valid_window (window);
783
784 if (! EQ (round, Qfloor) && ! EQ (round, Qceiling))
785 return make_number (w->total_cols);
786 else
787 {
788 int unit = FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w));
789
790 return make_number (EQ (round, Qceiling)
791 ? ((w->pixel_width + unit - 1) /unit)
792 : (w->pixel_width / unit));
793 }
794 }
795
796 DEFUN ("window-new-total", Fwindow_new_total, Swindow_new_total, 0, 1, 0,
797 doc: /* Return the new total size of window WINDOW.
798 WINDOW must be a valid window and defaults to the selected one.
799
800 The new total size of WINDOW is the value set by the last call of
801 `set-window-new-total' for WINDOW. If it is valid, it will be shortly
802 installed as WINDOW's total height (see `window-total-height') or total
803 width (see `window-total-width'). */)
804 (Lisp_Object window)
805 {
806 return decode_valid_window (window)->new_total;
807 }
808
809 DEFUN ("window-normal-size", Fwindow_normal_size, Swindow_normal_size, 0, 2, 0,
810 doc: /* Return the normal height of window WINDOW.
811 WINDOW must be a valid window and defaults to the selected one.
812 If HORIZONTAL is non-nil, return the normal width of WINDOW.
813
814 The normal height of a frame's root window or a window that is
815 horizontally combined (a window that has a left or right sibling) is
816 1.0. The normal height of a window that is vertically combined (has a
817 sibling above or below) is the fraction of the window's height with
818 respect to its parent. The sum of the normal heights of all windows in a
819 vertical combination equals 1.0.
820
821 Similarly, the normal width of a frame's root window or a window that is
822 vertically combined equals 1.0. The normal width of a window that is
823 horizontally combined is the fraction of the window's width with respect
824 to its parent. The sum of the normal widths of all windows in a
825 horizontal combination equals 1.0.
826
827 The normal sizes of windows are used to restore the proportional sizes
828 of windows after they have been shrunk to their minimum sizes; for
829 example when a frame is temporarily made very small and afterwards gets
830 re-enlarged to its previous size. */)
831 (Lisp_Object window, Lisp_Object horizontal)
832 {
833 struct window *w = decode_valid_window (window);
834
835 return NILP (horizontal) ? w->normal_lines : w->normal_cols;
836 }
837
838 DEFUN ("window-new-normal", Fwindow_new_normal, Swindow_new_normal, 0, 1, 0,
839 doc: /* Return new normal size of window WINDOW.
840 WINDOW must be a valid window and defaults to the selected one.
841
842 The new normal size of WINDOW is the value set by the last call of
843 `set-window-new-normal' for WINDOW. If valid, it will be shortly
844 installed as WINDOW's normal size (see `window-normal-size'). */)
845 (Lisp_Object window)
846 {
847 return decode_valid_window (window)->new_normal;
848 }
849
850 DEFUN ("window-new-pixel", Fwindow_new_pixel, Swindow_new_pixel, 0, 1, 0,
851 doc: /* Return new pixel size of window WINDOW.
852 WINDOW must be a valid window and defaults to the selected one.
853
854 The new pixel size of WINDOW is the value set by the last call of
855 `set-window-new-pixel' for WINDOW. If it is valid, it will be shortly
856 installed as WINDOW's pixel height (see `window-pixel-height') or pixel
857 width (see `window-pixel-width'). */)
858 (Lisp_Object window)
859 {
860 return decode_valid_window (window)->new_pixel;
861 }
862
863 DEFUN ("window-pixel-left", Fwindow_pixel_left, Swindow_pixel_left, 0, 1, 0,
864 doc: /* Return left pixel edge of window WINDOW.
865 WINDOW must be a valid window and defaults to the selected one. */)
866 (Lisp_Object window)
867 {
868 return make_number (decode_valid_window (window)->pixel_left);
869 }
870
871 DEFUN ("window-pixel-top", Fwindow_pixel_top, Swindow_pixel_top, 0, 1, 0,
872 doc: /* Return top pixel edge of window WINDOW.
873 WINDOW must be a valid window and defaults to the selected one. */)
874 (Lisp_Object window)
875 {
876 return make_number (decode_valid_window (window)->pixel_top);
877 }
878
879 DEFUN ("window-left-column", Fwindow_left_column, Swindow_left_column, 0, 1, 0,
880 doc: /* Return left column of window WINDOW.
881 This is the distance, in columns, between the left edge of WINDOW and
882 the left edge of the frame's window area. For instance, the return
883 value is 0 if there is no window to the left of WINDOW.
884
885 WINDOW must be a valid window and defaults to the selected one. */)
886 (Lisp_Object window)
887 {
888 return make_number (decode_valid_window (window)->left_col);
889 }
890
891 DEFUN ("window-top-line", Fwindow_top_line, Swindow_top_line, 0, 1, 0,
892 doc: /* Return top line of window WINDOW.
893 This is the distance, in lines, between the top of WINDOW and the top
894 of the frame's window area. For instance, the return value is 0 if
895 there is no window above WINDOW.
896
897 WINDOW must be a valid window and defaults to the selected one. */)
898 (Lisp_Object window)
899 {
900 return make_number (decode_valid_window (window)->top_line);
901 }
902
903 /* Return the number of lines/pixels of W's body. Don't count any mode
904 or header line or horizontal divider of W. Rounds down to nearest
905 integer when not working pixelwise. */
906 static int
907 window_body_height (struct window *w, bool pixelwise)
908 {
909 int height = (w->pixel_height
910 - WINDOW_HEADER_LINE_HEIGHT (w)
911 - (WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w)
912 ? WINDOW_SCROLL_BAR_AREA_HEIGHT (w)
913 : 0)
914 - WINDOW_MODE_LINE_HEIGHT (w)
915 - WINDOW_BOTTOM_DIVIDER_WIDTH (w));
916
917 /* Don't return a negative value. */
918 return max (pixelwise
919 ? height
920 : height / FRAME_LINE_HEIGHT (WINDOW_XFRAME (w)),
921 0);
922 }
923
924 /* Return the number of columns/pixels of W's body. Don't count columns
925 occupied by the scroll bar or the divider/vertical bar separating W
926 from its right sibling or margins. On window-systems don't count
927 fringes either. Round down to nearest integer when not working
928 pixelwise. */
929 int
930 window_body_width (struct window *w, bool pixelwise)
931 {
932 struct frame *f = XFRAME (WINDOW_FRAME (w));
933
934 int width = (w->pixel_width
935 - WINDOW_RIGHT_DIVIDER_WIDTH (w)
936 - (WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
937 ? WINDOW_SCROLL_BAR_AREA_WIDTH (w)
938 : (/* A vertical bar is either 1 or 0. */
939 !FRAME_WINDOW_P (f)
940 && !WINDOW_RIGHTMOST_P (w)
941 && !WINDOW_RIGHT_DIVIDER_WIDTH (w)))
942 - WINDOW_MARGINS_WIDTH (w)
943 - (FRAME_WINDOW_P (f)
944 ? WINDOW_FRINGES_WIDTH (w)
945 : 0));
946
947 /* Don't return a negative value. */
948 return max (pixelwise
949 ? width
950 : width / FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w)),
951 0);
952 }
953
954 DEFUN ("window-body-height", Fwindow_body_height, Swindow_body_height, 0, 2, 0,
955 doc: /* Return the height of WINDOW's text area.
956 WINDOW must be a live window and defaults to the selected one. Optional
957 argument PIXELWISE non-nil means return the height of WINDOW's text area
958 in pixels. The return value does not include the mode line or header
959 line or any horizontal divider.
960
961 If PIXELWISE is nil, return the largest integer smaller than WINDOW's
962 pixel height divided by the character height of WINDOW's frame. This
963 means that if a line at the bottom of the text area is only partially
964 visible, that line is not counted. */)
965 (Lisp_Object window, Lisp_Object pixelwise)
966 {
967 return make_number (window_body_height (decode_live_window (window),
968 !NILP (pixelwise)));
969 }
970
971 DEFUN ("window-body-width", Fwindow_body_width, Swindow_body_width, 0, 2, 0,
972 doc: /* Return the width of WINDOW's text area.
973 WINDOW must be a live window and defaults to the selected one. Optional
974 argument PIXELWISE non-nil means return the width in pixels. The return
975 value does not include any vertical dividers, fringes or marginal areas,
976 or scroll bars.
977
978 If PIXELWISE is nil, return the largest integer smaller than WINDOW's
979 pixel width divided by the character width of WINDOW's frame. This
980 means that if a column at the right of the text area is only partially
981 visible, that column is not counted.
982
983 Note that the returned value includes the column reserved for the
984 continuation glyph. */)
985 (Lisp_Object window, Lisp_Object pixelwise)
986 {
987 return make_number (window_body_width (decode_live_window (window),
988 !NILP (pixelwise)));
989 }
990
991 DEFUN ("window-mode-line-height", Fwindow_mode_line_height,
992 Swindow_mode_line_height, 0, 1, 0,
993 doc: /* Return the height in pixels of WINDOW's mode-line.
994 WINDOW must be a live window and defaults to the selected one. */)
995 (Lisp_Object window)
996 {
997 return (make_number (WINDOW_MODE_LINE_HEIGHT (decode_live_window (window))));
998 }
999
1000 DEFUN ("window-header-line-height", Fwindow_header_line_height,
1001 Swindow_header_line_height, 0, 1, 0,
1002 doc: /* Return the height in pixels of WINDOW's header-line.
1003 WINDOW must be a live window and defaults to the selected one. */)
1004 (Lisp_Object window)
1005 {
1006 return (make_number (WINDOW_HEADER_LINE_HEIGHT (decode_live_window (window))));
1007 }
1008
1009 DEFUN ("window-right-divider-width", Fwindow_right_divider_width,
1010 Swindow_right_divider_width, 0, 1, 0,
1011 doc: /* Return the width in pixels of WINDOW's right divider.
1012 WINDOW must be a live window and defaults to the selected one. */)
1013 (Lisp_Object window)
1014 {
1015 return (make_number (WINDOW_RIGHT_DIVIDER_WIDTH (decode_live_window (window))));
1016 }
1017
1018 DEFUN ("window-bottom-divider-width", Fwindow_bottom_divider_width,
1019 Swindow_bottom_divider_width, 0, 1, 0,
1020 doc: /* Return the width in pixels of WINDOW's bottom divider.
1021 WINDOW must be a live window and defaults to the selected one. */)
1022 (Lisp_Object window)
1023 {
1024 return (make_number (WINDOW_BOTTOM_DIVIDER_WIDTH (decode_live_window (window))));
1025 }
1026
1027 DEFUN ("window-scroll-bar-width", Fwindow_scroll_bar_width,
1028 Swindow_scroll_bar_width, 0, 1, 0,
1029 doc: /* Return the width in pixels of WINDOW's vertical scrollbar.
1030 WINDOW must be a live window and defaults to the selected one. */)
1031 (Lisp_Object window)
1032 {
1033 return (make_number (WINDOW_SCROLL_BAR_AREA_WIDTH (decode_live_window (window))));
1034 }
1035
1036 DEFUN ("window-scroll-bar-height", Fwindow_scroll_bar_height,
1037 Swindow_scroll_bar_height, 0, 1, 0,
1038 doc: /* Return the height in pixels of WINDOW's horizontal scrollbar.
1039 WINDOW must be a live window and defaults to the selected one. */)
1040 (Lisp_Object window)
1041 {
1042 return (make_number (WINDOW_SCROLL_BAR_AREA_HEIGHT (decode_live_window (window))));
1043 }
1044
1045 DEFUN ("window-hscroll", Fwindow_hscroll, Swindow_hscroll, 0, 1, 0,
1046 doc: /* Return the number of columns by which WINDOW is scrolled from left margin.
1047 WINDOW must be a live window and defaults to the selected one. */)
1048 (Lisp_Object window)
1049 {
1050 return make_number (decode_live_window (window)->hscroll);
1051 }
1052
1053 /* Set W's horizontal scroll amount to HSCROLL clipped to a reasonable
1054 range, returning the new amount as a fixnum. */
1055 static Lisp_Object
1056 set_window_hscroll (struct window *w, EMACS_INT hscroll)
1057 {
1058 /* Horizontal scrolling has problems with large scroll amounts.
1059 It's too slow with long lines, and even with small lines the
1060 display can be messed up. For now, though, impose only the limits
1061 required by the internal representation: horizontal scrolling must
1062 fit in fixnum (since it's visible to Elisp) and into ptrdiff_t
1063 (since it's stored in a ptrdiff_t). */
1064 ptrdiff_t hscroll_max = min (MOST_POSITIVE_FIXNUM, PTRDIFF_MAX);
1065 ptrdiff_t new_hscroll = clip_to_bounds (0, hscroll, hscroll_max);
1066
1067 /* Prevent redisplay shortcuts when changing the hscroll. */
1068 if (w->hscroll != new_hscroll)
1069 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = true;
1070
1071 w->hscroll = new_hscroll;
1072 w->suspend_auto_hscroll = true;
1073
1074 return make_number (new_hscroll);
1075 }
1076
1077 DEFUN ("set-window-hscroll", Fset_window_hscroll, Sset_window_hscroll, 2, 2, 0,
1078 doc: /* Set number of columns WINDOW is scrolled from left margin to NCOL.
1079 WINDOW must be a live window and defaults to the selected one.
1080 Clip the number to a reasonable value if out of range.
1081 Return the new number. NCOL should be zero or positive.
1082
1083 Note that if `automatic-hscrolling' is non-nil, you cannot scroll the
1084 window so that the location of point moves off-window. */)
1085 (Lisp_Object window, Lisp_Object ncol)
1086 {
1087 CHECK_NUMBER (ncol);
1088 return set_window_hscroll (decode_live_window (window), XINT (ncol));
1089 }
1090
1091 DEFUN ("window-redisplay-end-trigger", Fwindow_redisplay_end_trigger,
1092 Swindow_redisplay_end_trigger, 0, 1, 0,
1093 doc: /* Return WINDOW's redisplay end trigger value.
1094 WINDOW must be a live window and defaults to the selected one.
1095 See `set-window-redisplay-end-trigger' for more information. */)
1096 (Lisp_Object window)
1097 {
1098 return decode_live_window (window)->redisplay_end_trigger;
1099 }
1100
1101 DEFUN ("set-window-redisplay-end-trigger", Fset_window_redisplay_end_trigger,
1102 Sset_window_redisplay_end_trigger, 2, 2, 0,
1103 doc: /* Set WINDOW's redisplay end trigger value to VALUE.
1104 WINDOW must be a live window and defaults to the selected one. VALUE
1105 should be a buffer position (typically a marker) or nil. If it is a
1106 buffer position, then if redisplay in WINDOW reaches a position beyond
1107 VALUE, the functions in `redisplay-end-trigger-functions' are called
1108 with two arguments: WINDOW, and the end trigger value. Afterwards the
1109 end-trigger value is reset to nil. */)
1110 (register Lisp_Object window, Lisp_Object value)
1111 {
1112 wset_redisplay_end_trigger (decode_live_window (window), value);
1113 return value;
1114 }
1115
1116 /* Test if the character at column X, row Y is within window W.
1117 If it is not, return ON_NOTHING;
1118 if it is on the window's vertical divider, return
1119 ON_RIGHT_DIVIDER;
1120 if it is on the window's horizontal divider, return
1121 ON_BOTTOM_DIVIDER;
1122 if it is in the window's text area, return ON_TEXT;
1123 if it is on the window's modeline, return ON_MODE_LINE;
1124 if it is on the border between the window and its right sibling,
1125 return ON_VERTICAL_BORDER;
1126 if it is on a scroll bar, return ON_SCROLL_BAR;
1127 if it is on the window's top line, return ON_HEADER_LINE;
1128 if it is in left or right fringe of the window,
1129 return ON_LEFT_FRINGE or ON_RIGHT_FRINGE;
1130 if it is in the marginal area to the left/right of the window,
1131 return ON_LEFT_MARGIN or ON_RIGHT_MARGIN.
1132
1133 X and Y are frame relative pixel coordinates. */
1134
1135 static enum window_part
1136 coordinates_in_window (register struct window *w, int x, int y)
1137 {
1138 struct frame *f = XFRAME (WINDOW_FRAME (w));
1139 enum window_part part;
1140 int ux = FRAME_COLUMN_WIDTH (f);
1141 int left_x = WINDOW_LEFT_EDGE_X (w);
1142 int right_x = WINDOW_RIGHT_EDGE_X (w);
1143 int top_y = WINDOW_TOP_EDGE_Y (w);
1144 int bottom_y = WINDOW_BOTTOM_EDGE_Y (w);
1145 /* The width of the area where the vertical line can be dragged.
1146 (Between mode lines for instance. */
1147 int grabbable_width = ux;
1148 int lmargin_width, rmargin_width, text_left, text_right;
1149
1150 /* Outside any interesting row or column? */
1151 if (y < top_y || y >= bottom_y || x < left_x || x >= right_x)
1152 return ON_NOTHING;
1153
1154 /* On the horizontal window divider (which prevails the vertical
1155 divider)? */
1156 if (WINDOW_BOTTOM_DIVIDER_WIDTH (w) > 0
1157 && y >= (bottom_y - WINDOW_BOTTOM_DIVIDER_WIDTH (w))
1158 && y <= bottom_y)
1159 return ON_BOTTOM_DIVIDER;
1160 /* On vertical window divider? */
1161 else if (!WINDOW_RIGHTMOST_P (w)
1162 && WINDOW_RIGHT_DIVIDER_WIDTH (w) > 0
1163 && x >= right_x - WINDOW_RIGHT_DIVIDER_WIDTH (w)
1164 && x <= right_x)
1165 return ON_RIGHT_DIVIDER;
1166 /* On the horizontal scroll bar? (Including the empty space at its
1167 right!) */
1168 else if ((WINDOW_HAS_HORIZONTAL_SCROLL_BAR (w)
1169 && y >= (bottom_y
1170 - WINDOW_SCROLL_BAR_AREA_HEIGHT (w)
1171 - CURRENT_MODE_LINE_HEIGHT (w)
1172 - WINDOW_BOTTOM_DIVIDER_WIDTH (w))
1173 && y <= (bottom_y
1174 - CURRENT_MODE_LINE_HEIGHT (w)
1175 - WINDOW_BOTTOM_DIVIDER_WIDTH (w))))
1176 return ON_HORIZONTAL_SCROLL_BAR;
1177 /* On the mode or header line? */
1178 else if ((WINDOW_WANTS_MODELINE_P (w)
1179 && y >= (bottom_y
1180 - CURRENT_MODE_LINE_HEIGHT (w)
1181 - WINDOW_BOTTOM_DIVIDER_WIDTH (w))
1182 && y <= bottom_y - WINDOW_BOTTOM_DIVIDER_WIDTH (w)
1183 && (part = ON_MODE_LINE))
1184 || (WINDOW_WANTS_HEADER_LINE_P (w)
1185 && y < top_y + CURRENT_HEADER_LINE_HEIGHT (w)
1186 && (part = ON_HEADER_LINE)))
1187 {
1188 /* If it's under/over the scroll bar portion of the mode/header
1189 line, say it's on the vertical line. That's to be able to
1190 resize windows horizontally in case we're using toolkit scroll
1191 bars. Note: If scrollbars are on the left, the window that
1192 must be eventually resized is that on the left of WINDOW. */
1193 if ((WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0)
1194 && ((WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1195 && !WINDOW_LEFTMOST_P (w)
1196 && eabs (x - left_x) < grabbable_width)
1197 || (!WINDOW_HAS_VERTICAL_SCROLL_BAR_ON_LEFT (w)
1198 && !WINDOW_RIGHTMOST_P (w)
1199 && eabs (x - right_x) < grabbable_width)))
1200 return ON_VERTICAL_BORDER;
1201 else
1202 return part;
1203 }
1204
1205 /* In what's below, we subtract 1 when computing right_x because we
1206 want the rightmost pixel, which is given by left_pixel+width-1. */
1207 if (w->pseudo_window_p)
1208 {
1209 left_x = 0;
1210 right_x = WINDOW_PIXEL_WIDTH (w) - 1;
1211 }
1212 else
1213 {
1214 left_x = WINDOW_BOX_LEFT_EDGE_X (w);
1215 right_x = WINDOW_BOX_RIGHT_EDGE_X (w) - 1;
1216 }
1217
1218 /* Outside any interesting column? */
1219 if (x < left_x || x > right_x)
1220 return ON_VERTICAL_SCROLL_BAR;
1221
1222 lmargin_width = window_box_width (w, LEFT_MARGIN_AREA);
1223 rmargin_width = window_box_width (w, RIGHT_MARGIN_AREA);
1224
1225 text_left = window_box_left (w, TEXT_AREA);
1226 text_right = text_left + window_box_width (w, TEXT_AREA);
1227
1228 if (FRAME_WINDOW_P (f))
1229 {
1230 if (!w->pseudo_window_p
1231 && WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0
1232 && !WINDOW_HAS_VERTICAL_SCROLL_BAR (w)
1233 && !WINDOW_RIGHTMOST_P (w)
1234 && (eabs (x - right_x) < grabbable_width))
1235 return ON_VERTICAL_BORDER;
1236 }
1237 /* Need to say "x > right_x" rather than >=, since on character
1238 terminals, the vertical line's x coordinate is right_x. */
1239 else if (!w->pseudo_window_p
1240 && WINDOW_RIGHT_DIVIDER_WIDTH (w) == 0
1241 && !WINDOW_RIGHTMOST_P (w)
1242 /* Why check ux if we are not the rightmost window? Also
1243 shouldn't a pseudo window always be rightmost? */
1244 && x > right_x - ux)
1245 return ON_VERTICAL_BORDER;
1246
1247 if (x < text_left)
1248 {
1249 if (lmargin_width > 0
1250 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1251 ? (x >= left_x + WINDOW_LEFT_FRINGE_WIDTH (w))
1252 : (x < left_x + lmargin_width)))
1253 return ON_LEFT_MARGIN;
1254 else
1255 return ON_LEFT_FRINGE;
1256 }
1257
1258 if (x >= text_right)
1259 {
1260 if (rmargin_width > 0
1261 && (WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w)
1262 ? (x < right_x - WINDOW_RIGHT_FRINGE_WIDTH (w))
1263 : (x >= right_x - rmargin_width)))
1264 return ON_RIGHT_MARGIN;
1265 else
1266 return ON_RIGHT_FRINGE;
1267 }
1268
1269 /* Everything special ruled out - must be on text area */
1270 return ON_TEXT;
1271 }
1272
1273 /* Take X is the frame-relative pixel x-coordinate, and return the
1274 x-coordinate relative to part PART of window W. */
1275 int
1276 window_relative_x_coord (struct window *w, enum window_part part, int x)
1277 {
1278 int left_x = (w->pseudo_window_p) ? 0 : WINDOW_BOX_LEFT_EDGE_X (w);
1279
1280 switch (part)
1281 {
1282 case ON_TEXT:
1283 return x - window_box_left (w, TEXT_AREA);
1284
1285 case ON_HEADER_LINE:
1286 case ON_MODE_LINE:
1287 case ON_LEFT_FRINGE:
1288 return x - left_x;
1289
1290 case ON_RIGHT_FRINGE:
1291 return x - left_x - WINDOW_LEFT_FRINGE_WIDTH (w);
1292
1293 case ON_LEFT_MARGIN:
1294 return (x - left_x
1295 - ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1296 ? WINDOW_LEFT_FRINGE_WIDTH (w) : 0));
1297
1298 case ON_RIGHT_MARGIN:
1299 return (x + 1
1300 - ((w->pseudo_window_p)
1301 ? WINDOW_PIXEL_WIDTH (w)
1302 : WINDOW_BOX_RIGHT_EDGE_X (w))
1303 + window_box_width (w, RIGHT_MARGIN_AREA)
1304 + ((WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w))
1305 ? WINDOW_RIGHT_FRINGE_WIDTH (w) : 0));
1306
1307 case ON_NOTHING:
1308 case ON_VERTICAL_BORDER:
1309 case ON_VERTICAL_SCROLL_BAR:
1310 case ON_HORIZONTAL_SCROLL_BAR:
1311 case ON_RIGHT_DIVIDER:
1312 case ON_BOTTOM_DIVIDER:
1313 return 0;
1314
1315 default:
1316 emacs_abort ();
1317 }
1318 }
1319
1320
1321 DEFUN ("coordinates-in-window-p", Fcoordinates_in_window_p,
1322 Scoordinates_in_window_p, 2, 2, 0,
1323 doc: /* Return non-nil if COORDINATES are in WINDOW.
1324 WINDOW must be a live window and defaults to the selected one.
1325 COORDINATES is a cons of the form (X . Y), X and Y being distances
1326 measured in characters from the upper-left corner of the frame.
1327 (0 . 0) denotes the character in the upper left corner of the
1328 frame.
1329 If COORDINATES are in the text portion of WINDOW,
1330 the coordinates relative to the window are returned.
1331 If they are in the bottom divider of WINDOW, `bottom-divider' is returned.
1332 If they are in the right divider of WINDOW, `right-divider' is returned.
1333 If they are in the mode line of WINDOW, `mode-line' is returned.
1334 If they are in the header line of WINDOW, `header-line' is returned.
1335 If they are in the left fringe of WINDOW, `left-fringe' is returned.
1336 If they are in the right fringe of WINDOW, `right-fringe' is returned.
1337 If they are on the border between WINDOW and its right sibling,
1338 `vertical-line' is returned.
1339 If they are in the windows's left or right marginal areas, `left-margin'\n\
1340 or `right-margin' is returned. */)
1341 (register Lisp_Object coordinates, Lisp_Object window)
1342 {
1343 struct window *w;
1344 struct frame *f;
1345 int x, y;
1346 Lisp_Object lx, ly;
1347
1348 w = decode_live_window (window);
1349 f = XFRAME (w->frame);
1350 CHECK_CONS (coordinates);
1351 lx = Fcar (coordinates);
1352 ly = Fcdr (coordinates);
1353 CHECK_NUMBER_OR_FLOAT (lx);
1354 CHECK_NUMBER_OR_FLOAT (ly);
1355 x = FRAME_PIXEL_X_FROM_CANON_X (f, lx) + FRAME_INTERNAL_BORDER_WIDTH (f);
1356 y = FRAME_PIXEL_Y_FROM_CANON_Y (f, ly) + FRAME_INTERNAL_BORDER_WIDTH (f);
1357
1358 switch (coordinates_in_window (w, x, y))
1359 {
1360 case ON_NOTHING:
1361 return Qnil;
1362
1363 case ON_TEXT:
1364 /* Convert X and Y to window relative pixel coordinates, and
1365 return the canonical char units. */
1366 x -= window_box_left (w, TEXT_AREA);
1367 y -= WINDOW_TOP_EDGE_Y (w);
1368 return Fcons (FRAME_CANON_X_FROM_PIXEL_X (f, x),
1369 FRAME_CANON_Y_FROM_PIXEL_Y (f, y));
1370
1371 case ON_MODE_LINE:
1372 return Qmode_line;
1373
1374 case ON_VERTICAL_BORDER:
1375 return Qvertical_line;
1376
1377 case ON_HEADER_LINE:
1378 return Qheader_line;
1379
1380 case ON_LEFT_FRINGE:
1381 return Qleft_fringe;
1382
1383 case ON_RIGHT_FRINGE:
1384 return Qright_fringe;
1385
1386 case ON_LEFT_MARGIN:
1387 return Qleft_margin;
1388
1389 case ON_RIGHT_MARGIN:
1390 return Qright_margin;
1391
1392 case ON_VERTICAL_SCROLL_BAR:
1393 /* Historically we are supposed to return nil in this case. */
1394 return Qnil;
1395
1396 case ON_HORIZONTAL_SCROLL_BAR:
1397 return Qnil;
1398
1399 case ON_RIGHT_DIVIDER:
1400 return Qright_divider;
1401
1402 case ON_BOTTOM_DIVIDER:
1403 return Qbottom_divider;
1404
1405 default:
1406 emacs_abort ();
1407 }
1408 }
1409
1410
1411 /* Callback for foreach_window, used in window_from_coordinates.
1412 Check if window W contains coordinates specified by USER_DATA which
1413 is actually a pointer to a struct check_window_data CW.
1414
1415 Check if window W contains coordinates *CW->x and *CW->y. If it
1416 does, return W in *CW->window, as Lisp_Object, and return in
1417 *CW->part the part of the window under coordinates *X,*Y. Return
1418 false from this function to stop iterating over windows. */
1419
1420 struct check_window_data
1421 {
1422 Lisp_Object *window;
1423 int x, y;
1424 enum window_part *part;
1425 };
1426
1427 static bool
1428 check_window_containing (struct window *w, void *user_data)
1429 {
1430 struct check_window_data *cw = user_data;
1431 enum window_part found = coordinates_in_window (w, cw->x, cw->y);
1432 if (found == ON_NOTHING)
1433 return true;
1434 else
1435 {
1436 *cw->part = found;
1437 XSETWINDOW (*cw->window, w);
1438 return false;
1439 }
1440 }
1441
1442
1443 /* Find the window containing frame-relative pixel position X/Y and
1444 return it as a Lisp_Object.
1445
1446 If X, Y is on one of the window's special `window_part' elements,
1447 set *PART to the id of that element.
1448
1449 If there is no window under X, Y return nil and leave *PART
1450 unmodified. TOOL_BAR_P means detect tool-bar windows.
1451
1452 This function was previously implemented with a loop cycling over
1453 windows with Fnext_window, and starting with the frame's selected
1454 window. It turned out that this doesn't work with an
1455 implementation of next_window using Vwindow_list, because
1456 FRAME_SELECTED_WINDOW (F) is not always contained in the window
1457 tree of F when this function is called asynchronously from
1458 note_mouse_highlight. The original loop didn't terminate in this
1459 case. */
1460
1461 Lisp_Object
1462 window_from_coordinates (struct frame *f, int x, int y,
1463 enum window_part *part, bool tool_bar_p)
1464 {
1465 Lisp_Object window;
1466 struct check_window_data cw;
1467 enum window_part dummy;
1468
1469 if (part == 0)
1470 part = &dummy;
1471
1472 window = Qnil;
1473 cw.window = &window, cw.x = x, cw.y = y; cw.part = part;
1474 foreach_window (f, check_window_containing, &cw);
1475
1476 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
1477 /* If not found above, see if it's in the tool bar window, if a tool
1478 bar exists. */
1479 if (NILP (window)
1480 && tool_bar_p
1481 && WINDOWP (f->tool_bar_window)
1482 && WINDOW_TOTAL_LINES (XWINDOW (f->tool_bar_window)) > 0
1483 && (coordinates_in_window (XWINDOW (f->tool_bar_window), x, y)
1484 != ON_NOTHING))
1485 {
1486 *part = ON_TEXT;
1487 window = f->tool_bar_window;
1488 }
1489 #endif
1490
1491 return window;
1492 }
1493
1494 DEFUN ("window-at", Fwindow_at, Swindow_at, 2, 3, 0,
1495 doc: /* Return window containing coordinates X and Y on FRAME.
1496 FRAME must be a live frame and defaults to the selected one.
1497 The top left corner of the frame is considered to be row 0,
1498 column 0. */)
1499 (Lisp_Object x, Lisp_Object y, Lisp_Object frame)
1500 {
1501 struct frame *f = decode_live_frame (frame);
1502
1503 /* Check that arguments are integers or floats. */
1504 CHECK_NUMBER_OR_FLOAT (x);
1505 CHECK_NUMBER_OR_FLOAT (y);
1506
1507 return window_from_coordinates (f,
1508 (FRAME_PIXEL_X_FROM_CANON_X (f, x)
1509 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1510 (FRAME_PIXEL_Y_FROM_CANON_Y (f, y)
1511 + FRAME_INTERNAL_BORDER_WIDTH (f)),
1512 0, false);
1513 }
1514
1515 DEFUN ("window-point", Fwindow_point, Swindow_point, 0, 1, 0,
1516 doc: /* Return current value of point in WINDOW.
1517 WINDOW must be a live window and defaults to the selected one.
1518
1519 For a nonselected window, this is the value point would have if that
1520 window were selected.
1521
1522 Note that, when WINDOW is selected, the value returned is the same as
1523 that returned by `point' for WINDOW's buffer. It would be more strictly
1524 correct to return the top-level value of `point', outside of any
1525 `save-excursion' forms. But that is hard to define. */)
1526 (Lisp_Object window)
1527 {
1528 register struct window *w = decode_live_window (window);
1529
1530 if (w == XWINDOW (selected_window))
1531 return make_number (BUF_PT (XBUFFER (w->contents)));
1532 else
1533 return Fmarker_position (w->pointm);
1534 }
1535
1536 DEFUN ("window-old-point", Fwindow_old_point, Swindow_old_point, 0, 1, 0,
1537 doc: /* Return old value of point in WINDOW.
1538 WINDOW must be a live window and defaults to the selected one. */)
1539 (Lisp_Object window)
1540 {
1541 return Fmarker_position (decode_live_window (window)->old_pointm);
1542 }
1543
1544 DEFUN ("window-start", Fwindow_start, Swindow_start, 0, 1, 0,
1545 doc: /* Return position at which display currently starts in WINDOW.
1546 WINDOW must be a live window and defaults to the selected one.
1547 This is updated by redisplay or by calling `set-window-start'. */)
1548 (Lisp_Object window)
1549 {
1550 return Fmarker_position (decode_live_window (window)->start);
1551 }
1552
1553 /* This is text temporarily removed from the doc string below.
1554
1555 This function returns nil if the position is not currently known.
1556 That happens when redisplay is preempted and doesn't finish.
1557 If in that case you want to compute where the end of the window would
1558 have been if redisplay had finished, do this:
1559 (save-excursion
1560 (goto-char (window-start window))
1561 (vertical-motion (1- (window-height window)) window)
1562 (point))") */
1563
1564 DEFUN ("window-end", Fwindow_end, Swindow_end, 0, 2, 0,
1565 doc: /* Return position at which display currently ends in WINDOW.
1566 WINDOW must be a live window and defaults to the selected one.
1567 This is updated by redisplay, when it runs to completion.
1568 Simply changing the buffer text or setting `window-start'
1569 does not update this value.
1570 Return nil if there is no recorded value. (This can happen if the
1571 last redisplay of WINDOW was preempted, and did not finish.)
1572 If UPDATE is non-nil, compute the up-to-date position
1573 if it isn't already recorded. */)
1574 (Lisp_Object window, Lisp_Object update)
1575 {
1576 Lisp_Object value;
1577 struct window *w = decode_live_window (window);
1578 Lisp_Object buf;
1579 struct buffer *b;
1580
1581 buf = w->contents;
1582 CHECK_BUFFER (buf);
1583 b = XBUFFER (buf);
1584
1585 if (! NILP (update)
1586 && (windows_or_buffers_changed
1587 || !w->window_end_valid
1588 || b->clip_changed
1589 || b->prevent_redisplay_optimizations_p
1590 || window_outdated (w))
1591 /* Don't call display routines if we didn't yet create any real
1592 frames, because the glyph matrices are not yet allocated in
1593 that case. This could happen in some code that runs in the
1594 daemon during initialization (e.g., see bug#20565). */
1595 && !(noninteractive || FRAME_INITIAL_P (WINDOW_XFRAME (w))))
1596 {
1597 struct text_pos startp;
1598 struct it it;
1599 struct buffer *old_buffer = NULL;
1600 void *itdata = NULL;
1601
1602 /* Cannot use Fvertical_motion because that function doesn't
1603 cope with variable-height lines. */
1604 if (b != current_buffer)
1605 {
1606 old_buffer = current_buffer;
1607 set_buffer_internal (b);
1608 }
1609
1610 /* In case W->start is out of the range, use something
1611 reasonable. This situation occurred when loading a file with
1612 `-l' containing a call to `rmail' with subsequent other
1613 commands. At the end, W->start happened to be BEG, while
1614 rmail had already narrowed the buffer. */
1615 CLIP_TEXT_POS_FROM_MARKER (startp, w->start);
1616
1617 itdata = bidi_shelve_cache ();
1618 start_display (&it, w, startp);
1619 move_it_vertically (&it, window_box_height (w));
1620 if (it.current_y < it.last_visible_y)
1621 move_it_past_eol (&it);
1622 value = make_number (IT_CHARPOS (it));
1623 bidi_unshelve_cache (itdata, false);
1624
1625 if (old_buffer)
1626 set_buffer_internal (old_buffer);
1627 }
1628 else
1629 XSETINT (value, BUF_Z (b) - w->window_end_pos);
1630
1631 return value;
1632 }
1633
1634 DEFUN ("set-window-point", Fset_window_point, Sset_window_point, 2, 2, 0,
1635 doc: /* Make point value in WINDOW be at position POS in WINDOW's buffer.
1636 WINDOW must be a live window and defaults to the selected one.
1637 Return POS. */)
1638 (Lisp_Object window, Lisp_Object pos)
1639 {
1640 register struct window *w = decode_live_window (window);
1641
1642 /* Type of POS is checked by Fgoto_char or set_marker_restricted ... */
1643
1644 if (w == XWINDOW (selected_window))
1645 {
1646 if (XBUFFER (w->contents) == current_buffer)
1647 Fgoto_char (pos);
1648 else
1649 {
1650 struct buffer *old_buffer = current_buffer;
1651
1652 /* ... but here we want to catch type error before buffer change. */
1653 CHECK_NUMBER_COERCE_MARKER (pos);
1654 set_buffer_internal (XBUFFER (w->contents));
1655 Fgoto_char (pos);
1656 set_buffer_internal (old_buffer);
1657 }
1658 }
1659 else
1660 {
1661 set_marker_restricted (w->pointm, pos, w->contents);
1662 /* We have to make sure that redisplay updates the window to show
1663 the new value of point. */
1664 wset_redisplay (w);
1665 }
1666
1667 return pos;
1668 }
1669
1670 DEFUN ("set-window-start", Fset_window_start, Sset_window_start, 2, 3, 0,
1671 doc: /* Make display in WINDOW start at position POS in WINDOW's buffer.
1672 WINDOW must be a live window and defaults to the selected one. Return
1673 POS. Optional third arg NOFORCE non-nil inhibits next redisplay from
1674 overriding motion of point in order to display at this exact start. */)
1675 (Lisp_Object window, Lisp_Object pos, Lisp_Object noforce)
1676 {
1677 register struct window *w = decode_live_window (window);
1678
1679 set_marker_restricted (w->start, pos, w->contents);
1680 /* This is not right, but much easier than doing what is right. */
1681 w->start_at_line_beg = false;
1682 if (NILP (noforce))
1683 w->force_start = true;
1684 wset_update_mode_line (w);
1685 /* Bug#15957. */
1686 w->window_end_valid = false;
1687 wset_redisplay (w);
1688
1689 return pos;
1690 }
1691
1692 DEFUN ("pos-visible-in-window-p", Fpos_visible_in_window_p,
1693 Spos_visible_in_window_p, 0, 3, 0,
1694 doc: /* Return non-nil if position POS is currently on the frame in WINDOW.
1695 WINDOW must be a live window and defaults to the selected one.
1696
1697 Return nil if that position is scrolled vertically out of view. If a
1698 character is only partially visible, nil is returned, unless the
1699 optional argument PARTIALLY is non-nil. If POS is only out of view
1700 because of horizontal scrolling, return non-nil. If POS is t, it
1701 specifies either the first position displayed on the last visible
1702 screen line in WINDOW, or the end-of-buffer position, whichever comes
1703 first. POS defaults to point in WINDOW; WINDOW defaults to the
1704 selected window.
1705
1706 If POS is visible, return t if PARTIALLY is nil; if PARTIALLY is non-nil,
1707 the return value is a list of 2 or 6 elements (X Y [RTOP RBOT ROWH VPOS]),
1708 where X and Y are the pixel coordinates relative to the top left corner
1709 of the window. The remaining elements are omitted if the character after
1710 POS is fully visible; otherwise, RTOP and RBOT are the number of pixels
1711 off-window at the top and bottom of the screen line ("row") containing
1712 POS, ROWH is the visible height of that row, and VPOS is the row number
1713 (zero-based). */)
1714 (Lisp_Object pos, Lisp_Object window, Lisp_Object partially)
1715 {
1716 struct window *w;
1717 EMACS_INT posint;
1718 struct buffer *buf;
1719 struct text_pos top;
1720 Lisp_Object in_window = Qnil;
1721 int rtop, rbot, rowh, vpos;
1722 bool fully_p = true;
1723 int x, y;
1724
1725 w = decode_live_window (window);
1726 buf = XBUFFER (w->contents);
1727 SET_TEXT_POS_FROM_MARKER (top, w->start);
1728
1729 if (EQ (pos, Qt))
1730 posint = -1;
1731 else if (!NILP (pos))
1732 {
1733 CHECK_NUMBER_COERCE_MARKER (pos);
1734 posint = XINT (pos);
1735 }
1736 else if (w == XWINDOW (selected_window))
1737 posint = PT;
1738 else
1739 posint = marker_position (w->pointm);
1740
1741 /* If position is above window start or outside buffer boundaries,
1742 or if window start is out of range, position is not visible. */
1743 if ((EQ (pos, Qt)
1744 || (posint >= CHARPOS (top) && posint <= BUF_ZV (buf)))
1745 && CHARPOS (top) >= BUF_BEGV (buf)
1746 && CHARPOS (top) <= BUF_ZV (buf)
1747 && pos_visible_p (w, posint, &x, &y, &rtop, &rbot, &rowh, &vpos))
1748 {
1749 fully_p = !rtop && !rbot;
1750 if (!NILP (partially) || fully_p)
1751 in_window = Qt;
1752 }
1753
1754 if (!NILP (in_window) && !NILP (partially))
1755 {
1756 Lisp_Object part = Qnil;
1757 if (!fully_p)
1758 part = list4i (rtop, rbot, rowh, vpos);
1759 in_window = Fcons (make_number (x),
1760 Fcons (make_number (y), part));
1761 }
1762
1763 return in_window;
1764 }
1765
1766 DEFUN ("window-line-height", Fwindow_line_height,
1767 Swindow_line_height, 0, 2, 0,
1768 doc: /* Return height in pixels of text line LINE in window WINDOW.
1769 WINDOW must be a live window and defaults to the selected one.
1770
1771 Return height of current line if LINE is omitted or nil. Return height of
1772 header or mode line if LINE is `header-line' or `mode-line'.
1773 Otherwise, LINE is a text line number starting from 0. A negative number
1774 counts from the end of the window.
1775
1776 Value is a list (HEIGHT VPOS YPOS OFFBOT), where HEIGHT is the height
1777 in pixels of the visible part of the line, VPOS and YPOS are the
1778 vertical position in lines and pixels of the line, relative to the top
1779 of the first text line, and OFFBOT is the number of off-window pixels at
1780 the bottom of the text line. If there are off-window pixels at the top
1781 of the (first) text line, YPOS is negative.
1782
1783 Return nil if window display is not up-to-date. In that case, use
1784 `pos-visible-in-window-p' to obtain the information. */)
1785 (Lisp_Object line, Lisp_Object window)
1786 {
1787 register struct window *w;
1788 register struct buffer *b;
1789 struct glyph_row *row, *end_row;
1790 int max_y, crop, i;
1791 EMACS_INT n;
1792
1793 w = decode_live_window (window);
1794
1795 if (noninteractive || w->pseudo_window_p)
1796 return Qnil;
1797
1798 CHECK_BUFFER (w->contents);
1799 b = XBUFFER (w->contents);
1800
1801 /* Fail if current matrix is not up-to-date. */
1802 if (!w->window_end_valid
1803 || windows_or_buffers_changed
1804 || b->clip_changed
1805 || b->prevent_redisplay_optimizations_p
1806 || window_outdated (w))
1807 return Qnil;
1808
1809 if (NILP (line))
1810 {
1811 i = w->cursor.vpos;
1812 if (i < 0 || i >= w->current_matrix->nrows
1813 || (row = MATRIX_ROW (w->current_matrix, i), !row->enabled_p))
1814 return Qnil;
1815 max_y = window_text_bottom_y (w);
1816 goto found_row;
1817 }
1818
1819 if (EQ (line, Qheader_line))
1820 {
1821 if (!WINDOW_WANTS_HEADER_LINE_P (w))
1822 return Qnil;
1823 row = MATRIX_HEADER_LINE_ROW (w->current_matrix);
1824 return row->enabled_p ? list4i (row->height, 0, 0, 0) : Qnil;
1825 }
1826
1827 if (EQ (line, Qmode_line))
1828 {
1829 row = MATRIX_MODE_LINE_ROW (w->current_matrix);
1830 return (row->enabled_p ?
1831 list4i (row->height,
1832 0, /* not accurate */
1833 (WINDOW_HEADER_LINE_HEIGHT (w)
1834 + window_text_bottom_y (w)),
1835 0)
1836 : Qnil);
1837 }
1838
1839 CHECK_NUMBER (line);
1840 n = XINT (line);
1841
1842 row = MATRIX_FIRST_TEXT_ROW (w->current_matrix);
1843 end_row = MATRIX_BOTTOM_TEXT_ROW (w->current_matrix, w);
1844 max_y = window_text_bottom_y (w);
1845 i = 0;
1846
1847 while ((n < 0 || i < n)
1848 && row <= end_row && row->enabled_p
1849 && row->y + row->height < max_y)
1850 row++, i++;
1851
1852 if (row > end_row || !row->enabled_p)
1853 return Qnil;
1854
1855 if (++n < 0)
1856 {
1857 if (-n > i)
1858 return Qnil;
1859 row += n;
1860 i += n;
1861 }
1862
1863 found_row:
1864 crop = max (0, (row->y + row->height) - max_y);
1865 return list4i (row->height + min (0, row->y) - crop, i, row->y, crop);
1866 }
1867
1868 DEFUN ("window-dedicated-p", Fwindow_dedicated_p, Swindow_dedicated_p,
1869 0, 1, 0,
1870 doc: /* Return non-nil when WINDOW is dedicated to its buffer.
1871 More precisely, return the value assigned by the last call of
1872 `set-window-dedicated-p' for WINDOW. Return nil if that function was
1873 never called with WINDOW as its argument, or the value set by that
1874 function was internally reset since its last call. WINDOW must be a
1875 live window and defaults to the selected one.
1876
1877 When a window is dedicated to its buffer, `display-buffer' will refrain
1878 from displaying another buffer in it. `get-lru-window' and
1879 `get-largest-window' treat dedicated windows specially.
1880 `delete-windows-on', `replace-buffer-in-windows', `quit-window' and
1881 `kill-buffer' can delete a dedicated window and the containing frame.
1882
1883 Functions like `set-window-buffer' may change the buffer displayed by a
1884 window, unless that window is "strongly" dedicated to its buffer, that
1885 is the value returned by `window-dedicated-p' is t. */)
1886 (Lisp_Object window)
1887 {
1888 return decode_live_window (window)->dedicated;
1889 }
1890
1891 DEFUN ("set-window-dedicated-p", Fset_window_dedicated_p,
1892 Sset_window_dedicated_p, 2, 2, 0,
1893 doc: /* Mark WINDOW as dedicated according to FLAG.
1894 WINDOW must be a live window and defaults to the selected one. FLAG
1895 non-nil means mark WINDOW as dedicated to its buffer. FLAG nil means
1896 mark WINDOW as non-dedicated. Return FLAG.
1897
1898 When a window is dedicated to its buffer, `display-buffer' will refrain
1899 from displaying another buffer in it. `get-lru-window' and
1900 `get-largest-window' treat dedicated windows specially.
1901 `delete-windows-on', `replace-buffer-in-windows', `quit-window',
1902 `quit-restore-window' and `kill-buffer' can delete a dedicated window
1903 and the containing frame.
1904
1905 As a special case, if FLAG is t, mark WINDOW as "strongly" dedicated to
1906 its buffer. Functions like `set-window-buffer' may change the buffer
1907 displayed by a window, unless that window is strongly dedicated to its
1908 buffer. If and when `set-window-buffer' displays another buffer in a
1909 window, it also makes sure that the window is no more dedicated. */)
1910 (Lisp_Object window, Lisp_Object flag)
1911 {
1912 wset_dedicated (decode_live_window (window), flag);
1913 return flag;
1914 }
1915
1916 DEFUN ("window-prev-buffers", Fwindow_prev_buffers, Swindow_prev_buffers,
1917 0, 1, 0,
1918 doc: /* Return buffers previously shown in WINDOW.
1919 WINDOW must be a live window and defaults to the selected one.
1920
1921 The return value is a list of elements (BUFFER WINDOW-START POS),
1922 where BUFFER is a buffer, WINDOW-START is the start position of the
1923 window for that buffer, and POS is a window-specific point value. */)
1924 (Lisp_Object window)
1925 {
1926 return decode_live_window (window)->prev_buffers;
1927 }
1928
1929 DEFUN ("set-window-prev-buffers", Fset_window_prev_buffers,
1930 Sset_window_prev_buffers, 2, 2, 0,
1931 doc: /* Set WINDOW's previous buffers to PREV-BUFFERS.
1932 WINDOW must be a live window and defaults to the selected one.
1933
1934 PREV-BUFFERS should be a list of elements (BUFFER WINDOW-START POS),
1935 where BUFFER is a buffer, WINDOW-START is the start position of the
1936 window for that buffer, and POS is a window-specific point value. */)
1937 (Lisp_Object window, Lisp_Object prev_buffers)
1938 {
1939 wset_prev_buffers (decode_live_window (window), prev_buffers);
1940 return prev_buffers;
1941 }
1942
1943 DEFUN ("window-next-buffers", Fwindow_next_buffers, Swindow_next_buffers,
1944 0, 1, 0,
1945 doc: /* Return list of buffers recently re-shown in WINDOW.
1946 WINDOW must be a live window and defaults to the selected one. */)
1947 (Lisp_Object window)
1948 {
1949 return decode_live_window (window)->next_buffers;
1950 }
1951
1952 DEFUN ("set-window-next-buffers", Fset_window_next_buffers,
1953 Sset_window_next_buffers, 2, 2, 0,
1954 doc: /* Set WINDOW's next buffers to NEXT-BUFFERS.
1955 WINDOW must be a live window and defaults to the selected one.
1956 NEXT-BUFFERS should be a list of buffers. */)
1957 (Lisp_Object window, Lisp_Object next_buffers)
1958 {
1959 wset_next_buffers (decode_live_window (window), next_buffers);
1960 return next_buffers;
1961 }
1962
1963 DEFUN ("window-parameters", Fwindow_parameters, Swindow_parameters,
1964 0, 1, 0,
1965 doc: /* Return the parameters of WINDOW and their values.
1966 WINDOW must be a valid window and defaults to the selected one. The
1967 return value is a list of elements of the form (PARAMETER . VALUE). */)
1968 (Lisp_Object window)
1969 {
1970 return Fcopy_alist (decode_valid_window (window)->window_parameters);
1971 }
1972
1973 DEFUN ("window-parameter", Fwindow_parameter, Swindow_parameter,
1974 2, 2, 0,
1975 doc: /* Return WINDOW's value for PARAMETER.
1976 WINDOW can be any window and defaults to the selected one. */)
1977 (Lisp_Object window, Lisp_Object parameter)
1978 {
1979 Lisp_Object result;
1980
1981 result = Fassq (parameter, decode_any_window (window)->window_parameters);
1982 return CDR_SAFE (result);
1983 }
1984
1985 DEFUN ("set-window-parameter", Fset_window_parameter,
1986 Sset_window_parameter, 3, 3, 0,
1987 doc: /* Set WINDOW's value of PARAMETER to VALUE.
1988 WINDOW can be any window and defaults to the selected one.
1989 Return VALUE. */)
1990 (Lisp_Object window, Lisp_Object parameter, Lisp_Object value)
1991 {
1992 register struct window *w = decode_any_window (window);
1993 Lisp_Object old_alist_elt;
1994
1995 old_alist_elt = Fassq (parameter, w->window_parameters);
1996 if (NILP (old_alist_elt))
1997 wset_window_parameters
1998 (w, Fcons (Fcons (parameter, value), w->window_parameters));
1999 else
2000 Fsetcdr (old_alist_elt, value);
2001 return value;
2002 }
2003
2004 DEFUN ("window-display-table", Fwindow_display_table, Swindow_display_table,
2005 0, 1, 0,
2006 doc: /* Return the display-table that WINDOW is using.
2007 WINDOW must be a live window and defaults to the selected one. */)
2008 (Lisp_Object window)
2009 {
2010 return decode_live_window (window)->display_table;
2011 }
2012
2013 /* Get the display table for use on window W. This is either W's
2014 display table or W's buffer's display table. Ignore the specified
2015 tables if they are not valid; if no valid table is specified,
2016 return 0. */
2017
2018 struct Lisp_Char_Table *
2019 window_display_table (struct window *w)
2020 {
2021 struct Lisp_Char_Table *dp = NULL;
2022
2023 if (DISP_TABLE_P (w->display_table))
2024 dp = XCHAR_TABLE (w->display_table);
2025 else if (BUFFERP (w->contents))
2026 {
2027 struct buffer *b = XBUFFER (w->contents);
2028
2029 if (DISP_TABLE_P (BVAR (b, display_table)))
2030 dp = XCHAR_TABLE (BVAR (b, display_table));
2031 else if (DISP_TABLE_P (Vstandard_display_table))
2032 dp = XCHAR_TABLE (Vstandard_display_table);
2033 }
2034
2035 return dp;
2036 }
2037
2038 DEFUN ("set-window-display-table", Fset_window_display_table, Sset_window_display_table, 2, 2, 0,
2039 doc: /* Set WINDOW's display-table to TABLE.
2040 WINDOW must be a live window and defaults to the selected one. */)
2041 (register Lisp_Object window, Lisp_Object table)
2042 {
2043 wset_display_table (decode_live_window (window), table);
2044 return table;
2045 }
2046 \f
2047 /* Record info on buffer window W is displaying
2048 when it is about to cease to display that buffer. */
2049 static void
2050 unshow_buffer (register struct window *w)
2051 {
2052 Lisp_Object buf = w->contents;
2053 struct buffer *b = XBUFFER (buf);
2054
2055 eassert (b == XMARKER (w->pointm)->buffer);
2056
2057 #if false
2058 if (w == XWINDOW (selected_window)
2059 || ! EQ (buf, XWINDOW (selected_window)->contents))
2060 /* Do this except when the selected window's buffer
2061 is being removed from some other window. */
2062 #endif
2063 /* last_window_start records the start position that this buffer
2064 had in the last window to be disconnected from it.
2065 Now that this statement is unconditional,
2066 it is possible for the buffer to be displayed in the
2067 selected window, while last_window_start reflects another
2068 window which was recently showing the same buffer.
2069 Some people might say that might be a good thing. Let's see. */
2070 b->last_window_start = marker_position (w->start);
2071
2072 /* Point in the selected window's buffer
2073 is actually stored in that buffer, and the window's pointm isn't used.
2074 So don't clobber point in that buffer. */
2075 if (! EQ (buf, XWINDOW (selected_window)->contents)
2076 /* Don't clobber point in current buffer either (this could be
2077 useful in connection with bug#12208).
2078 && XBUFFER (buf) != current_buffer */
2079 /* This line helps to fix Horsley's testbug.el bug. */
2080 && !(WINDOWP (BVAR (b, last_selected_window))
2081 && w != XWINDOW (BVAR (b, last_selected_window))
2082 && EQ (buf, XWINDOW (BVAR (b, last_selected_window))->contents)))
2083 temp_set_point_both (b,
2084 clip_to_bounds (BUF_BEGV (b),
2085 marker_position (w->pointm),
2086 BUF_ZV (b)),
2087 clip_to_bounds (BUF_BEGV_BYTE (b),
2088 marker_byte_position (w->pointm),
2089 BUF_ZV_BYTE (b)));
2090
2091 if (WINDOWP (BVAR (b, last_selected_window))
2092 && w == XWINDOW (BVAR (b, last_selected_window)))
2093 bset_last_selected_window (b, Qnil);
2094 }
2095
2096 /* Put NEW into the window structure in place of OLD. SETFLAG false
2097 means change window structure only. Otherwise store geometry and
2098 other settings as well. */
2099 static void
2100 replace_window (Lisp_Object old, Lisp_Object new, bool setflag)
2101 {
2102 Lisp_Object tem;
2103 struct window *o = XWINDOW (old), *n = XWINDOW (new);
2104
2105 /* If OLD is its frame's root window, then NEW is the new
2106 root window for that frame. */
2107 if (EQ (old, FRAME_ROOT_WINDOW (XFRAME (o->frame))))
2108 fset_root_window (XFRAME (o->frame), new);
2109
2110 if (setflag)
2111 {
2112 n->pixel_left = o->pixel_left;
2113 n->pixel_top = o->pixel_top;
2114 n->pixel_width = o->pixel_width;
2115 n->pixel_height = o->pixel_height;
2116 n->left_col = o->left_col;
2117 n->top_line = o->top_line;
2118 n->total_cols = o->total_cols;
2119 n->total_lines = o->total_lines;
2120 wset_normal_cols (n, o->normal_cols);
2121 wset_normal_cols (o, make_float (1.0));
2122 wset_normal_lines (n, o->normal_lines);
2123 wset_normal_lines (o, make_float (1.0));
2124 n->desired_matrix = n->current_matrix = 0;
2125 n->vscroll = 0;
2126 memset (&n->cursor, 0, sizeof (n->cursor));
2127 memset (&n->phys_cursor, 0, sizeof (n->phys_cursor));
2128 n->last_cursor_vpos = 0;
2129 #ifdef HAVE_WINDOW_SYSTEM
2130 n->phys_cursor_type = NO_CURSOR;
2131 n->phys_cursor_width = -1;
2132 #endif
2133 n->must_be_updated_p = false;
2134 n->pseudo_window_p = false;
2135 n->window_end_vpos = 0;
2136 n->window_end_pos = 0;
2137 n->window_end_valid = false;
2138 }
2139
2140 tem = o->next;
2141 wset_next (n, tem);
2142 if (!NILP (tem))
2143 wset_prev (XWINDOW (tem), new);
2144
2145 tem = o->prev;
2146 wset_prev (n, tem);
2147 if (!NILP (tem))
2148 wset_next (XWINDOW (tem), new);
2149
2150 tem = o->parent;
2151 wset_parent (n, tem);
2152 if (!NILP (tem) && EQ (XWINDOW (tem)->contents, old))
2153 wset_combination (XWINDOW (tem), XWINDOW (tem)->horizontal, new);
2154 }
2155
2156 /* If window WINDOW and its parent window are iso-combined, merge
2157 WINDOW's children into those of its parent window and mark WINDOW as
2158 deleted. */
2159
2160 static void
2161 recombine_windows (Lisp_Object window)
2162 {
2163 struct window *w, *p, *c;
2164 Lisp_Object parent, child;
2165 bool horflag;
2166
2167 w = XWINDOW (window);
2168 parent = w->parent;
2169 if (!NILP (parent) && NILP (w->combination_limit))
2170 {
2171 p = XWINDOW (parent);
2172 if (WINDOWP (p->contents) && WINDOWP (w->contents)
2173 && p->horizontal == w->horizontal)
2174 /* WINDOW and PARENT are both either a vertical or a horizontal
2175 combination. */
2176 {
2177 horflag = WINDOW_HORIZONTAL_COMBINATION_P (w);
2178 child = w->contents;
2179 c = XWINDOW (child);
2180
2181 /* Splice WINDOW's children into its parent's children and
2182 assign new normal sizes. */
2183 if (NILP (w->prev))
2184 wset_combination (p, horflag, child);
2185 else
2186 {
2187 wset_prev (c, w->prev);
2188 wset_next (XWINDOW (w->prev), child);
2189 }
2190
2191 while (c)
2192 {
2193 wset_parent (c, parent);
2194
2195 if (horflag)
2196 wset_normal_cols
2197 (c, make_float ((double) c->pixel_width
2198 / (double) p->pixel_width));
2199 else
2200 wset_normal_lines
2201 (c, make_float ((double) c->pixel_height
2202 / (double) p->pixel_height));
2203
2204 if (NILP (c->next))
2205 {
2206 if (!NILP (w->next))
2207 {
2208 wset_next (c, w->next);
2209 wset_prev (XWINDOW (c->next), child);
2210 }
2211
2212 c = 0;
2213 }
2214 else
2215 {
2216 child = c->next;
2217 c = XWINDOW (child);
2218 }
2219 }
2220
2221 /* WINDOW can be deleted now. */
2222 wset_combination (w, false, Qnil);
2223 }
2224 }
2225 }
2226
2227 /* If WINDOW can be deleted, delete it. */
2228 static void
2229 delete_deletable_window (Lisp_Object window)
2230 {
2231 if (!NILP (call1 (Qwindow_deletable_p, window)))
2232 call1 (Qdelete_window, window);
2233 }
2234 \f
2235 /***********************************************************************
2236 Window List
2237 ***********************************************************************/
2238
2239 /* Add window W to *USER_DATA. USER_DATA is actually a Lisp_Object
2240 pointer. This is a callback function for foreach_window, used in
2241 the window_list function. */
2242
2243 static bool
2244 add_window_to_list (struct window *w, void *user_data)
2245 {
2246 Lisp_Object *list = user_data;
2247 Lisp_Object window;
2248 XSETWINDOW (window, w);
2249 *list = Fcons (window, *list);
2250 return true;
2251 }
2252
2253
2254 /* Return a list of all windows, for use by next_window. If
2255 Vwindow_list is a list, return that list. Otherwise, build a new
2256 list, cache it in Vwindow_list, and return that. */
2257
2258 Lisp_Object
2259 window_list (void)
2260 {
2261 if (!CONSP (Vwindow_list))
2262 {
2263 Lisp_Object tail, frame;
2264
2265 Vwindow_list = Qnil;
2266 FOR_EACH_FRAME (tail, frame)
2267 {
2268 Lisp_Object arglist = Qnil;
2269
2270 /* We are visiting windows in canonical order, and add
2271 new windows at the front of args[1], which means we
2272 have to reverse this list at the end. */
2273 foreach_window (XFRAME (frame), add_window_to_list, &arglist);
2274 arglist = Fnreverse (arglist);
2275 Vwindow_list = CALLN (Fnconc, Vwindow_list, arglist);
2276 }
2277 }
2278
2279 return Vwindow_list;
2280 }
2281
2282
2283 /* Value is true if WINDOW satisfies the constraints given by
2284 OWINDOW, MINIBUF and ALL_FRAMES.
2285
2286 MINIBUF t means WINDOW may be minibuffer windows.
2287 `lambda' means WINDOW may not be a minibuffer window.
2288 a window means a specific minibuffer window
2289
2290 ALL_FRAMES t means search all frames,
2291 nil means search just current frame,
2292 `visible' means search just visible frames on the
2293 current terminal,
2294 0 means search visible and iconified frames on the
2295 current terminal,
2296 a window means search the frame that window belongs to,
2297 a frame means consider windows on that frame, only. */
2298
2299 static bool
2300 candidate_window_p (Lisp_Object window, Lisp_Object owindow,
2301 Lisp_Object minibuf, Lisp_Object all_frames)
2302 {
2303 struct window *w = XWINDOW (window);
2304 struct frame *f = XFRAME (w->frame);
2305 bool candidate_p = true;
2306
2307 if (!BUFFERP (w->contents))
2308 candidate_p = false;
2309 else if (MINI_WINDOW_P (w)
2310 && (EQ (minibuf, Qlambda)
2311 || (WINDOWP (minibuf) && !EQ (minibuf, window))))
2312 {
2313 /* If MINIBUF is `lambda' don't consider any mini-windows.
2314 If it is a window, consider only that one. */
2315 candidate_p = false;
2316 }
2317 else if (EQ (all_frames, Qt))
2318 candidate_p = true;
2319 else if (NILP (all_frames))
2320 {
2321 eassert (WINDOWP (owindow));
2322 candidate_p = EQ (w->frame, XWINDOW (owindow)->frame);
2323 }
2324 else if (EQ (all_frames, Qvisible))
2325 {
2326 candidate_p = FRAME_VISIBLE_P (f)
2327 && (FRAME_TERMINAL (XFRAME (w->frame))
2328 == FRAME_TERMINAL (XFRAME (selected_frame)));
2329
2330 }
2331 else if (INTEGERP (all_frames) && XINT (all_frames) == 0)
2332 {
2333 candidate_p = (FRAME_VISIBLE_P (f) || FRAME_ICONIFIED_P (f)
2334 #ifdef HAVE_X_WINDOWS
2335 /* Yuck!! If we've just created the frame and the
2336 window-manager requested the user to place it
2337 manually, the window may still not be considered
2338 `visible'. I'd argue it should be at least
2339 something like `iconified', but don't know how to do
2340 that yet. --Stef */
2341 || (FRAME_X_P (f) && f->output_data.x->asked_for_visible
2342 && !f->output_data.x->has_been_visible)
2343 #endif
2344 )
2345 && (FRAME_TERMINAL (XFRAME (w->frame))
2346 == FRAME_TERMINAL (XFRAME (selected_frame)));
2347 }
2348 else if (WINDOWP (all_frames))
2349 candidate_p = (EQ (FRAME_MINIBUF_WINDOW (f), all_frames)
2350 || EQ (XWINDOW (all_frames)->frame, w->frame)
2351 || EQ (XWINDOW (all_frames)->frame, FRAME_FOCUS_FRAME (f)));
2352 else if (FRAMEP (all_frames))
2353 candidate_p = EQ (all_frames, w->frame);
2354
2355 return candidate_p;
2356 }
2357
2358
2359 /* Decode arguments as allowed by Fnext_window, Fprevious_window, and
2360 Fwindow_list. See candidate_window_p for the meaning of WINDOW,
2361 MINIBUF, and ALL_FRAMES. */
2362
2363 static void
2364 decode_next_window_args (Lisp_Object *window, Lisp_Object *minibuf, Lisp_Object *all_frames)
2365 {
2366 struct window *w = decode_live_window (*window);
2367
2368 XSETWINDOW (*window, w);
2369 /* MINIBUF nil may or may not include minibuffers. Decide if it
2370 does. */
2371 if (NILP (*minibuf))
2372 *minibuf = minibuf_level ? minibuf_window : Qlambda;
2373 else if (!EQ (*minibuf, Qt))
2374 *minibuf = Qlambda;
2375
2376 /* Now *MINIBUF can be t => count all minibuffer windows, `lambda'
2377 => count none of them, or a specific minibuffer window (the
2378 active one) to count. */
2379
2380 /* ALL_FRAMES nil doesn't specify which frames to include. */
2381 if (NILP (*all_frames))
2382 *all_frames
2383 = (!EQ (*minibuf, Qlambda)
2384 ? FRAME_MINIBUF_WINDOW (XFRAME (w->frame))
2385 : Qnil);
2386 else if (EQ (*all_frames, Qvisible))
2387 ;
2388 else if (EQ (*all_frames, make_number (0)))
2389 ;
2390 else if (FRAMEP (*all_frames))
2391 ;
2392 else if (!EQ (*all_frames, Qt))
2393 *all_frames = Qnil;
2394 }
2395
2396
2397 /* Return the next or previous window of WINDOW in cyclic ordering
2398 of windows. NEXT_P means return the next window. See the
2399 documentation string of next-window for the meaning of MINIBUF and
2400 ALL_FRAMES. */
2401
2402 static Lisp_Object
2403 next_window (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames,
2404 bool next_p)
2405 {
2406 decode_next_window_args (&window, &minibuf, &all_frames);
2407
2408 /* If ALL_FRAMES is a frame, and WINDOW isn't on that frame, just
2409 return the first window on the frame. */
2410 if (FRAMEP (all_frames)
2411 && !EQ (all_frames, XWINDOW (window)->frame))
2412 return Fframe_first_window (all_frames);
2413
2414 if (next_p)
2415 {
2416 Lisp_Object list;
2417
2418 /* Find WINDOW in the list of all windows. */
2419 list = Fmemq (window, window_list ());
2420
2421 /* Scan forward from WINDOW to the end of the window list. */
2422 if (CONSP (list))
2423 for (list = XCDR (list); CONSP (list); list = XCDR (list))
2424 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2425 break;
2426
2427 /* Scan from the start of the window list up to WINDOW. */
2428 if (!CONSP (list))
2429 for (list = Vwindow_list;
2430 CONSP (list) && !EQ (XCAR (list), window);
2431 list = XCDR (list))
2432 if (candidate_window_p (XCAR (list), window, minibuf, all_frames))
2433 break;
2434
2435 if (CONSP (list))
2436 window = XCAR (list);
2437 }
2438 else
2439 {
2440 Lisp_Object candidate, list;
2441
2442 /* Scan through the list of windows for candidates. If there are
2443 candidate windows in front of WINDOW, the last one of these
2444 is the one we want. If there are candidates following WINDOW
2445 in the list, again the last one of these is the one we want. */
2446 candidate = Qnil;
2447 for (list = window_list (); CONSP (list); list = XCDR (list))
2448 {
2449 if (EQ (XCAR (list), window))
2450 {
2451 if (WINDOWP (candidate))
2452 break;
2453 }
2454 else if (candidate_window_p (XCAR (list), window, minibuf,
2455 all_frames))
2456 candidate = XCAR (list);
2457 }
2458
2459 if (WINDOWP (candidate))
2460 window = candidate;
2461 }
2462
2463 return window;
2464 }
2465
2466
2467 DEFUN ("next-window", Fnext_window, Snext_window, 0, 3, 0,
2468 doc: /* Return live window after WINDOW in the cyclic ordering of windows.
2469 WINDOW must be a live window and defaults to the selected one. The
2470 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2471 consider.
2472
2473 MINIBUF nil or omitted means consider the minibuffer window only if the
2474 minibuffer is active. MINIBUF t means consider the minibuffer window
2475 even if the minibuffer is not active. Any other value means do not
2476 consider the minibuffer window even if the minibuffer is active.
2477
2478 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2479 plus the minibuffer window if specified by the MINIBUF argument. If the
2480 minibuffer counts, consider all windows on all frames that share that
2481 minibuffer too. The following non-nil values of ALL-FRAMES have special
2482 meanings:
2483
2484 - t means consider all windows on all existing frames.
2485
2486 - `visible' means consider all windows on all visible frames.
2487
2488 - 0 (the number zero) means consider all windows on all visible and
2489 iconified frames.
2490
2491 - A frame means consider all windows on that frame only.
2492
2493 Anything else means consider all windows on WINDOW's frame and no
2494 others.
2495
2496 If you use consistent values for MINIBUF and ALL-FRAMES, you can use
2497 `next-window' to iterate through the entire cycle of acceptable
2498 windows, eventually ending up back at the window you started with.
2499 `previous-window' traverses the same cycle, in the reverse order. */)
2500 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2501 {
2502 return next_window (window, minibuf, all_frames, true);
2503 }
2504
2505
2506 DEFUN ("previous-window", Fprevious_window, Sprevious_window, 0, 3, 0,
2507 doc: /* Return live window before WINDOW in the cyclic ordering of windows.
2508 WINDOW must be a live window and defaults to the selected one. The
2509 optional arguments MINIBUF and ALL-FRAMES specify the set of windows to
2510 consider.
2511
2512 MINIBUF nil or omitted means consider the minibuffer window only if the
2513 minibuffer is active. MINIBUF t means consider the minibuffer window
2514 even if the minibuffer is not active. Any other value means do not
2515 consider the minibuffer window even if the minibuffer is active.
2516
2517 ALL-FRAMES nil or omitted means consider all windows on WINDOW's frame,
2518 plus the minibuffer window if specified by the MINIBUF argument. If the
2519 minibuffer counts, consider all windows on all frames that share that
2520 minibuffer too. The following non-nil values of ALL-FRAMES have special
2521 meanings:
2522
2523 - t means consider all windows on all existing frames.
2524
2525 - `visible' means consider all windows on all visible frames.
2526
2527 - 0 (the number zero) means consider all windows on all visible and
2528 iconified frames.
2529
2530 - A frame means consider all windows on that frame only.
2531
2532 Anything else means consider all windows on WINDOW's frame and no
2533 others.
2534
2535 If you use consistent values for MINIBUF and ALL-FRAMES, you can
2536 use `previous-window' to iterate through the entire cycle of
2537 acceptable windows, eventually ending up back at the window you
2538 started with. `next-window' traverses the same cycle, in the
2539 reverse order. */)
2540 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2541 {
2542 return next_window (window, minibuf, all_frames, false);
2543 }
2544
2545
2546 /* Return a list of windows in cyclic ordering. Arguments are like
2547 for `next-window'. */
2548
2549 static Lisp_Object
2550 window_list_1 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2551 {
2552 Lisp_Object tail, list, rest;
2553
2554 decode_next_window_args (&window, &minibuf, &all_frames);
2555 list = Qnil;
2556
2557 for (tail = window_list (); CONSP (tail); tail = XCDR (tail))
2558 if (candidate_window_p (XCAR (tail), window, minibuf, all_frames))
2559 list = Fcons (XCAR (tail), list);
2560
2561 /* Rotate the list to start with WINDOW. */
2562 list = Fnreverse (list);
2563 rest = Fmemq (window, list);
2564 if (!NILP (rest) && !EQ (rest, list))
2565 {
2566 for (tail = list; !EQ (XCDR (tail), rest); tail = XCDR (tail))
2567 ;
2568 XSETCDR (tail, Qnil);
2569 list = nconc2 (rest, list);
2570 }
2571 return list;
2572 }
2573
2574
2575 DEFUN ("window-list", Fwindow_list, Swindow_list, 0, 3, 0,
2576 doc: /* Return a list of windows on FRAME, starting with WINDOW.
2577 FRAME nil or omitted means use the selected frame.
2578 WINDOW nil or omitted means use the window selected within FRAME.
2579 MINIBUF t means include the minibuffer window, even if it isn't active.
2580 MINIBUF nil or omitted means include the minibuffer window only
2581 if it's active.
2582 MINIBUF neither nil nor t means never include the minibuffer window. */)
2583 (Lisp_Object frame, Lisp_Object minibuf, Lisp_Object window)
2584 {
2585 if (NILP (window))
2586 window = FRAMEP (frame) ? XFRAME (frame)->selected_window : selected_window;
2587 CHECK_WINDOW (window);
2588 if (NILP (frame))
2589 frame = selected_frame;
2590
2591 if (!EQ (frame, XWINDOW (window)->frame))
2592 error ("Window is on a different frame");
2593
2594 return window_list_1 (window, minibuf, frame);
2595 }
2596
2597
2598 DEFUN ("window-list-1", Fwindow_list_1, Swindow_list_1, 0, 3, 0,
2599 doc: /* Return a list of all live windows.
2600 WINDOW specifies the first window to list and defaults to the selected
2601 window.
2602
2603 Optional argument MINIBUF nil or omitted means consider the minibuffer
2604 window only if the minibuffer is active. MINIBUF t means consider the
2605 minibuffer window even if the minibuffer is not active. Any other value
2606 means do not consider the minibuffer window even if the minibuffer is
2607 active.
2608
2609 Optional argument ALL-FRAMES nil or omitted means consider all windows
2610 on WINDOW's frame, plus the minibuffer window if specified by the
2611 MINIBUF argument. If the minibuffer counts, consider all windows on all
2612 frames that share that minibuffer too. The following non-nil values of
2613 ALL-FRAMES have special meanings:
2614
2615 - t means consider all windows on all existing frames.
2616
2617 - `visible' means consider all windows on all visible frames.
2618
2619 - 0 (the number zero) means consider all windows on all visible and
2620 iconified frames.
2621
2622 - A frame means consider all windows on that frame only.
2623
2624 Anything else means consider all windows on WINDOW's frame and no
2625 others.
2626
2627 If WINDOW is not on the list of windows returned, some other window will
2628 be listed first but no error is signaled. */)
2629 (Lisp_Object window, Lisp_Object minibuf, Lisp_Object all_frames)
2630 {
2631 return window_list_1 (window, minibuf, all_frames);
2632 }
2633 \f
2634 /* Look at all windows, performing an operation specified by TYPE
2635 with argument OBJ.
2636 If FRAMES is Qt, look at all frames;
2637 Qnil, look at just the selected frame;
2638 Qvisible, look at visible frames;
2639 a frame, just look at windows on that frame.
2640 If MINI, perform the operation on minibuffer windows too. */
2641
2642 enum window_loop
2643 {
2644 WINDOW_LOOP_UNUSED,
2645 GET_BUFFER_WINDOW, /* Arg is buffer */
2646 REPLACE_BUFFER_IN_WINDOWS_SAFELY, /* Arg is buffer */
2647 REDISPLAY_BUFFER_WINDOWS, /* Arg is buffer */
2648 CHECK_ALL_WINDOWS /* Arg is ignored */
2649 };
2650
2651 static Lisp_Object
2652 window_loop (enum window_loop type, Lisp_Object obj, bool mini,
2653 Lisp_Object frames)
2654 {
2655 Lisp_Object window, windows, best_window, frame_arg;
2656 bool frame_best_window_flag = false;
2657 struct frame *f;
2658
2659 /* If we're only looping through windows on a particular frame,
2660 frame points to that frame. If we're looping through windows
2661 on all frames, frame is 0. */
2662 if (FRAMEP (frames))
2663 f = XFRAME (frames);
2664 else if (NILP (frames))
2665 f = SELECTED_FRAME ();
2666 else
2667 f = NULL;
2668
2669 if (f)
2670 frame_arg = Qlambda;
2671 else if (EQ (frames, make_number (0)))
2672 frame_arg = frames;
2673 else if (EQ (frames, Qvisible))
2674 frame_arg = frames;
2675 else
2676 frame_arg = Qt;
2677
2678 /* frame_arg is Qlambda to stick to one frame,
2679 Qvisible to consider all visible frames,
2680 or Qt otherwise. */
2681
2682 /* Pick a window to start with. */
2683 if (WINDOWP (obj))
2684 window = obj;
2685 else if (f)
2686 window = FRAME_SELECTED_WINDOW (f);
2687 else
2688 window = FRAME_SELECTED_WINDOW (SELECTED_FRAME ());
2689
2690 windows = window_list_1 (window, mini ? Qt : Qnil, frame_arg);
2691 best_window = Qnil;
2692
2693 for (; CONSP (windows); windows = XCDR (windows))
2694 {
2695 struct window *w;
2696
2697 window = XCAR (windows);
2698 w = XWINDOW (window);
2699
2700 /* Note that we do not pay attention here to whether the frame
2701 is visible, since Fwindow_list skips non-visible frames if
2702 that is desired, under the control of frame_arg. */
2703 if (!MINI_WINDOW_P (w)
2704 /* For REPLACE_BUFFER_IN_WINDOWS_SAFELY, we must always
2705 consider all windows. */
2706 || type == REPLACE_BUFFER_IN_WINDOWS_SAFELY
2707 || (mini && minibuf_level > 0))
2708 switch (type)
2709 {
2710 case GET_BUFFER_WINDOW:
2711 if (EQ (w->contents, obj)
2712 /* Don't find any minibuffer window except the one that
2713 is currently in use. */
2714 && (!MINI_WINDOW_P (w) || EQ (window, minibuf_window)))
2715 {
2716 if (EQ (window, selected_window))
2717 /* Preferably return the selected window. */
2718 return window;
2719 else if (EQ (XWINDOW (window)->frame, selected_frame)
2720 && !frame_best_window_flag)
2721 /* Prefer windows on the current frame (but don't
2722 choose another one if we have one already). */
2723 {
2724 best_window = window;
2725 frame_best_window_flag = true;
2726 }
2727 else if (NILP (best_window))
2728 best_window = window;
2729 }
2730 break;
2731
2732 case REPLACE_BUFFER_IN_WINDOWS_SAFELY:
2733 /* We could simply check whether the buffer shown by window
2734 is live, and show another buffer in case it isn't. */
2735 if (EQ (w->contents, obj))
2736 {
2737 /* Undedicate WINDOW. */
2738 wset_dedicated (w, Qnil);
2739 /* Make WINDOW show the buffer returned by
2740 other_buffer_safely, don't run any hooks. */
2741 set_window_buffer
2742 (window, other_buffer_safely (w->contents), false, false);
2743 /* If WINDOW is the selected window, make its buffer
2744 current. But do so only if the window shows the
2745 current buffer (Bug#6454). */
2746 if (EQ (window, selected_window)
2747 && XBUFFER (w->contents) == current_buffer)
2748 Fset_buffer (w->contents);
2749 }
2750 break;
2751
2752 case REDISPLAY_BUFFER_WINDOWS:
2753 if (EQ (w->contents, obj))
2754 {
2755 mark_window_display_accurate (window, false);
2756 w->update_mode_line = true;
2757 XBUFFER (obj)->prevent_redisplay_optimizations_p = true;
2758 update_mode_lines = 27;
2759 best_window = window;
2760 }
2761 break;
2762
2763 /* Check for a leaf window that has a killed buffer
2764 or broken markers. */
2765 case CHECK_ALL_WINDOWS:
2766 if (BUFFERP (w->contents))
2767 {
2768 struct buffer *b = XBUFFER (w->contents);
2769
2770 if (!BUFFER_LIVE_P (b))
2771 emacs_abort ();
2772 if (!MARKERP (w->start) || XMARKER (w->start)->buffer != b)
2773 emacs_abort ();
2774 if (!MARKERP (w->pointm) || XMARKER (w->pointm)->buffer != b)
2775 emacs_abort ();
2776 }
2777 break;
2778
2779 case WINDOW_LOOP_UNUSED:
2780 break;
2781 }
2782 }
2783
2784 return best_window;
2785 }
2786
2787 /* Used for debugging. Abort if any window has a dead buffer. */
2788
2789 extern void check_all_windows (void) EXTERNALLY_VISIBLE;
2790 void
2791 check_all_windows (void)
2792 {
2793 window_loop (CHECK_ALL_WINDOWS, Qnil, true, Qt);
2794 }
2795
2796 DEFUN ("get-buffer-window", Fget_buffer_window, Sget_buffer_window, 0, 2, 0,
2797 doc: /* Return a window currently displaying BUFFER-OR-NAME, or nil if none.
2798 BUFFER-OR-NAME may be a buffer or a buffer name and defaults to
2799 the current buffer.
2800
2801 The optional argument ALL-FRAMES specifies the frames to consider:
2802
2803 - t means consider all windows on all existing frames.
2804
2805 - `visible' means consider all windows on all visible frames.
2806
2807 - 0 (the number zero) means consider all windows on all visible
2808 and iconified frames.
2809
2810 - A frame means consider all windows on that frame only.
2811
2812 Any other value of ALL-FRAMES means consider all windows on the
2813 selected frame and no others. */)
2814 (Lisp_Object buffer_or_name, Lisp_Object all_frames)
2815 {
2816 Lisp_Object buffer;
2817
2818 if (NILP (buffer_or_name))
2819 buffer = Fcurrent_buffer ();
2820 else
2821 buffer = Fget_buffer (buffer_or_name);
2822
2823 if (BUFFERP (buffer))
2824 return window_loop (GET_BUFFER_WINDOW, buffer, true, all_frames);
2825 else
2826 return Qnil;
2827 }
2828
2829
2830 static Lisp_Object
2831 resize_root_window (Lisp_Object window, Lisp_Object delta, Lisp_Object horizontal, Lisp_Object ignore, Lisp_Object pixelwise)
2832 {
2833 return call5 (Qwindow_resize_root_window, window, delta, horizontal, ignore, pixelwise);
2834 }
2835
2836 /* Placeholder used by temacs -nw before window.el is loaded. */
2837 DEFUN ("window--sanitize-window-sizes", Fwindow__sanitize_window_sizes,
2838 Swindow__sanitize_window_sizes, 2, 2, 0,
2839 doc: /* */
2840 attributes: const)
2841 (Lisp_Object frame, Lisp_Object horizontal)
2842 {
2843 return Qnil;
2844 }
2845
2846 Lisp_Object
2847 sanitize_window_sizes (Lisp_Object frame, Lisp_Object horizontal)
2848 {
2849 return call2 (Qwindow_sanitize_window_sizes, frame, horizontal);
2850 }
2851
2852
2853 static Lisp_Object
2854 window_pixel_to_total (Lisp_Object frame, Lisp_Object horizontal)
2855 {
2856 return call2 (Qwindow_pixel_to_total, frame, horizontal);
2857 }
2858
2859
2860 DEFUN ("delete-other-windows-internal", Fdelete_other_windows_internal,
2861 Sdelete_other_windows_internal, 0, 2, "",
2862 doc: /* Make WINDOW fill its frame.
2863 Only the frame WINDOW is on is affected. WINDOW must be a valid window
2864 and defaults to the selected one.
2865
2866 Optional argument ROOT, if non-nil, must specify an internal window such
2867 that WINDOW is in its window subtree. If this is the case, replace ROOT
2868 by WINDOW and leave alone any windows not part of ROOT's subtree.
2869
2870 When WINDOW is live try to reduce display jumps by keeping the text
2871 previously visible in WINDOW in the same place on the frame. Doing this
2872 depends on the value of (window-start WINDOW), so if calling this
2873 function in a program gives strange scrolling, make sure the
2874 window-start value is reasonable when this function is called. */)
2875 (Lisp_Object window, Lisp_Object root)
2876 {
2877 struct window *w, *r, *s;
2878 struct frame *f;
2879 Lisp_Object sibling, pwindow, swindow IF_LINT (= Qnil), delta;
2880 ptrdiff_t startpos IF_LINT (= 0), startbyte IF_LINT (= 0);
2881 int top IF_LINT (= 0), new_top;
2882
2883 w = decode_valid_window (window);
2884 XSETWINDOW (window, w);
2885 f = XFRAME (w->frame);
2886
2887 if (NILP (root))
2888 /* ROOT is the frame's root window. */
2889 {
2890 root = FRAME_ROOT_WINDOW (f);
2891 r = XWINDOW (root);
2892 }
2893 else
2894 /* ROOT must be an ancestor of WINDOW. */
2895 {
2896 r = decode_valid_window (root);
2897 pwindow = XWINDOW (window)->parent;
2898 while (!NILP (pwindow))
2899 if (EQ (pwindow, root))
2900 break;
2901 else
2902 pwindow = XWINDOW (pwindow)->parent;
2903 if (!EQ (pwindow, root))
2904 error ("Specified root is not an ancestor of specified window");
2905 }
2906
2907 if (EQ (window, root))
2908 /* A noop. */
2909 return Qnil;
2910 /* I don't understand the "top > 0" part below. If we deal with a
2911 standalone minibuffer it would have been caught by the preceding
2912 test. */
2913 else if (MINI_WINDOW_P (w)) /* && top > 0) */
2914 error ("Can't expand minibuffer to full frame");
2915
2916 if (BUFFERP (w->contents))
2917 {
2918 startpos = marker_position (w->start);
2919 startbyte = marker_byte_position (w->start);
2920 top = (WINDOW_TOP_EDGE_LINE (w)
2921 - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w))));
2922 /* Make sure WINDOW is the frame's selected window. */
2923 if (!EQ (window, FRAME_SELECTED_WINDOW (f)))
2924 {
2925 if (EQ (selected_frame, w->frame))
2926 Fselect_window (window, Qnil);
2927 else
2928 fset_selected_window (f, window);
2929 }
2930 }
2931 else
2932 {
2933 /* See if the frame's selected window is a part of the window
2934 subtree rooted at WINDOW, by finding all the selected window's
2935 parents and comparing each one with WINDOW. If it isn't we
2936 need a new selected window for this frame. */
2937 swindow = FRAME_SELECTED_WINDOW (f);
2938 while (true)
2939 {
2940 pwindow = swindow;
2941 while (!NILP (pwindow) && !EQ (window, pwindow))
2942 pwindow = XWINDOW (pwindow)->parent;
2943
2944 if (EQ (window, pwindow))
2945 /* If WINDOW is an ancestor of SWINDOW, then SWINDOW is ok
2946 as the new selected window. */
2947 break;
2948 else
2949 /* Else try the previous window of SWINDOW. */
2950 swindow = Fprevious_window (swindow, Qlambda, Qnil);
2951 }
2952
2953 if (!EQ (swindow, FRAME_SELECTED_WINDOW (f)))
2954 {
2955 if (EQ (selected_frame, w->frame))
2956 Fselect_window (swindow, Qnil);
2957 else
2958 fset_selected_window (f, swindow);
2959 }
2960 }
2961
2962 block_input ();
2963 if (!FRAME_INITIAL_P (f))
2964 {
2965 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
2966
2967 /* We are going to free the glyph matrices of WINDOW, and with
2968 that we might lose any information about glyph rows that have
2969 some of their glyphs highlighted in mouse face. (These rows
2970 are marked with a mouse_face_p flag.) If WINDOW
2971 indeed has some glyphs highlighted in mouse face, signal to
2972 frame's up-to-date hook that mouse highlight was overwritten,
2973 so that it will arrange for redisplaying the highlight. */
2974 if (EQ (hlinfo->mouse_face_window, window))
2975 reset_mouse_highlight (hlinfo);
2976 }
2977 free_window_matrices (r);
2978
2979 fset_redisplay (f);
2980 Vwindow_list = Qnil;
2981 FRAME_WINDOW_SIZES_CHANGED (f) = true;
2982 bool resize_failed = false;
2983
2984 if (!WINDOW_LEAF_P (w))
2985 {
2986 /* Resize child windows vertically. */
2987 XSETINT (delta, r->pixel_height - w->pixel_height);
2988 w->pixel_top = r->pixel_top;
2989 w->top_line = r->top_line;
2990 resize_root_window (window, delta, Qnil, Qnil, Qt);
2991 if (window_resize_check (w, false))
2992 {
2993 window_resize_apply (w, false);
2994 window_pixel_to_total (w->frame, Qnil);
2995 }
2996 else
2997 {
2998 resize_root_window (window, delta, Qnil, Qt, Qt);
2999 if (window_resize_check (w, false))
3000 {
3001 window_resize_apply (w, false);
3002 window_pixel_to_total (w->frame, Qnil);
3003 }
3004 else
3005 resize_failed = true;
3006 }
3007
3008 /* Resize child windows horizontally. */
3009 if (!resize_failed)
3010 {
3011 w->left_col = r->left_col;
3012 w->pixel_left = r->pixel_left;
3013 XSETINT (delta, r->pixel_width - w->pixel_width);
3014 resize_root_window (window, delta, Qt, Qnil, Qt);
3015 if (window_resize_check (w, true))
3016 {
3017 window_resize_apply (w, true);
3018 window_pixel_to_total (w->frame, Qt);
3019 }
3020 else
3021 {
3022 resize_root_window (window, delta, Qt, Qt, Qt);
3023 if (window_resize_check (w, true))
3024 {
3025 window_resize_apply (w, true);
3026 window_pixel_to_total (w->frame, Qt);
3027 }
3028 else
3029 resize_failed = true;
3030 }
3031 }
3032
3033 if (resize_failed)
3034 /* Play safe, if we still can ... */
3035 {
3036 window = swindow;
3037 w = XWINDOW (window);
3038 }
3039 }
3040
3041 /* Cleanly unlink WINDOW from window-tree. */
3042 if (!NILP (w->prev))
3043 /* Get SIBLING above (on the left of) WINDOW. */
3044 {
3045 sibling = w->prev;
3046 s = XWINDOW (sibling);
3047 wset_next (s, w->next);
3048 if (!NILP (s->next))
3049 wset_prev (XWINDOW (s->next), sibling);
3050 }
3051 else
3052 /* Get SIBLING below (on the right of) WINDOW. */
3053 {
3054 sibling = w->next;
3055 s = XWINDOW (sibling);
3056 wset_prev (s, Qnil);
3057 wset_combination (XWINDOW (w->parent),
3058 XWINDOW (w->parent)->horizontal, sibling);
3059 }
3060
3061 /* Delete ROOT and all child windows of ROOT. */
3062 if (WINDOWP (r->contents))
3063 {
3064 delete_all_child_windows (r->contents);
3065 wset_combination (r, false, Qnil);
3066 }
3067
3068 replace_window (root, window, true);
3069
3070 /* This must become SWINDOW anyway ....... */
3071 if (BUFFERP (w->contents) && !resize_failed)
3072 {
3073 /* Try to minimize scrolling, by setting the window start to the
3074 point will cause the text at the old window start to be at the
3075 same place on the frame. But don't try to do this if the
3076 window start is outside the visible portion (as might happen
3077 when the display is not current, due to typeahead). */
3078 new_top = WINDOW_TOP_EDGE_LINE (w) - FRAME_TOP_MARGIN (XFRAME (WINDOW_FRAME (w)));
3079 if (new_top != top
3080 && startpos >= BUF_BEGV (XBUFFER (w->contents))
3081 && startpos <= BUF_ZV (XBUFFER (w->contents)))
3082 {
3083 struct position pos;
3084 struct buffer *obuf = current_buffer;
3085
3086 Fset_buffer (w->contents);
3087 /* This computation used to temporarily move point, but that
3088 can have unwanted side effects due to text properties. */
3089 pos = *vmotion (startpos, startbyte, -top, w);
3090
3091 set_marker_both (w->start, w->contents, pos.bufpos, pos.bytepos);
3092 w->window_end_valid = false;
3093 w->start_at_line_beg = (pos.bytepos == BEGV_BYTE
3094 || FETCH_BYTE (pos.bytepos - 1) == '\n');
3095 /* We need to do this, so that the window-scroll-functions
3096 get called. */
3097 w->optional_new_start = true;
3098
3099 set_buffer_internal (obuf);
3100 }
3101 }
3102
3103 adjust_frame_glyphs (f);
3104 unblock_input ();
3105
3106 run_window_configuration_change_hook (f);
3107
3108 return Qnil;
3109 }
3110
3111
3112 void
3113 replace_buffer_in_windows (Lisp_Object buffer)
3114 {
3115 call1 (Qreplace_buffer_in_windows, buffer);
3116 }
3117
3118 /* If BUFFER is shown in a window, safely replace it with some other
3119 buffer in all windows of all frames, even those on other keyboards. */
3120
3121 void
3122 replace_buffer_in_windows_safely (Lisp_Object buffer)
3123 {
3124 if (buffer_window_count (XBUFFER (buffer)))
3125 {
3126 Lisp_Object tail, frame;
3127
3128 /* A single call to window_loop won't do the job because it only
3129 considers frames on the current keyboard. So loop manually over
3130 frames, and handle each one. */
3131 FOR_EACH_FRAME (tail, frame)
3132 window_loop (REPLACE_BUFFER_IN_WINDOWS_SAFELY, buffer, true, frame);
3133 }
3134 }
3135 \f
3136 /* The following three routines are needed for running a window's
3137 configuration change hook. */
3138 static void
3139 run_funs (Lisp_Object funs)
3140 {
3141 for (; CONSP (funs); funs = XCDR (funs))
3142 if (!EQ (XCAR (funs), Qt))
3143 call0 (XCAR (funs));
3144 }
3145
3146 static void
3147 select_window_norecord (Lisp_Object window)
3148 {
3149 if (WINDOW_LIVE_P (window))
3150 Fselect_window (window, Qt);
3151 }
3152
3153 static void
3154 select_frame_norecord (Lisp_Object frame)
3155 {
3156 if (FRAME_LIVE_P (XFRAME (frame)))
3157 Fselect_frame (frame, Qt);
3158 }
3159
3160 void
3161 run_window_configuration_change_hook (struct frame *f)
3162 {
3163 ptrdiff_t count = SPECPDL_INDEX ();
3164 Lisp_Object frame, global_wcch
3165 = Fdefault_value (Qwindow_configuration_change_hook);
3166 XSETFRAME (frame, f);
3167
3168 if (NILP (Vrun_hooks)
3169 || !(f->can_x_set_window_size)
3170 || !(f->after_make_frame))
3171 return;
3172
3173 /* Use the right buffer. Matters when running the local hooks. */
3174 if (current_buffer != XBUFFER (Fwindow_buffer (Qnil)))
3175 {
3176 record_unwind_current_buffer ();
3177 Fset_buffer (Fwindow_buffer (Qnil));
3178 }
3179
3180 if (SELECTED_FRAME () != f)
3181 {
3182 record_unwind_protect (select_frame_norecord, selected_frame);
3183 select_frame_norecord (frame);
3184 }
3185
3186 /* Look for buffer-local values. */
3187 {
3188 Lisp_Object windows = Fwindow_list (frame, Qlambda, Qnil);
3189 for (; CONSP (windows); windows = XCDR (windows))
3190 {
3191 Lisp_Object window = XCAR (windows);
3192 Lisp_Object buffer = Fwindow_buffer (window);
3193 if (!NILP (Flocal_variable_p (Qwindow_configuration_change_hook,
3194 buffer)))
3195 {
3196 ptrdiff_t inner_count = SPECPDL_INDEX ();
3197 record_unwind_protect (select_window_norecord, selected_window);
3198 select_window_norecord (window);
3199 run_funs (Fbuffer_local_value (Qwindow_configuration_change_hook,
3200 buffer));
3201 unbind_to (inner_count, Qnil);
3202 }
3203 }
3204 }
3205
3206 run_funs (global_wcch);
3207 unbind_to (count, Qnil);
3208 }
3209
3210 DEFUN ("run-window-configuration-change-hook", Frun_window_configuration_change_hook,
3211 Srun_window_configuration_change_hook, 0, 1, 0,
3212 doc: /* Run `window-configuration-change-hook' for FRAME.
3213 If FRAME is omitted or nil, it defaults to the selected frame. */)
3214 (Lisp_Object frame)
3215 {
3216 run_window_configuration_change_hook (decode_live_frame (frame));
3217 return Qnil;
3218 }
3219
3220 DEFUN ("run-window-scroll-functions", Frun_window_scroll_functions,
3221 Srun_window_scroll_functions, 0, 1, 0,
3222 doc: /* Run `window-scroll-functions' for WINDOW.
3223 If WINDOW is omitted or nil, it defaults to the selected window. */)
3224 (Lisp_Object window)
3225 {
3226 if (! NILP (Vwindow_scroll_functions))
3227 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3228 Fmarker_position (decode_live_window (window)->start));
3229 return Qnil;
3230 }
3231
3232 /* Make WINDOW display BUFFER. RUN_HOOKS_P means it's allowed
3233 to run hooks. See make_frame for a case where it's not allowed.
3234 KEEP_MARGINS_P means that the current margins, fringes, and
3235 scroll-bar settings of the window are not reset from the buffer's
3236 local settings. */
3237
3238 void
3239 set_window_buffer (Lisp_Object window, Lisp_Object buffer,
3240 bool run_hooks_p, bool keep_margins_p)
3241 {
3242 struct window *w = XWINDOW (window);
3243 struct buffer *b = XBUFFER (buffer);
3244 ptrdiff_t count = SPECPDL_INDEX ();
3245 bool samebuf = EQ (buffer, w->contents);
3246
3247 wset_buffer (w, buffer);
3248
3249 if (EQ (window, selected_window))
3250 bset_last_selected_window (b, window);
3251
3252 /* Let redisplay errors through. */
3253 b->display_error_modiff = 0;
3254
3255 /* Update time stamps of buffer display. */
3256 if (INTEGERP (BVAR (b, display_count)))
3257 bset_display_count (b, make_number (XINT (BVAR (b, display_count)) + 1));
3258 bset_display_time (b, Fcurrent_time ());
3259
3260 w->window_end_pos = 0;
3261 w->window_end_vpos = 0;
3262 w->last_cursor_vpos = 0;
3263
3264 if (!(keep_margins_p && samebuf))
3265 { /* If we're not actually changing the buffer, don't reset hscroll
3266 and vscroll. This case happens for example when called from
3267 change_frame_size_1, where we use a dummy call to
3268 Fset_window_buffer on the frame's selected window (and no
3269 other) just in order to run window-configuration-change-hook
3270 (no longer true since change_frame_size_1 directly calls
3271 run_window_configuration_change_hook). Resetting hscroll and
3272 vscroll here is problematic for things like image-mode and
3273 doc-view-mode since it resets the image's position whenever we
3274 resize the frame. */
3275 w->hscroll = w->min_hscroll = w->hscroll_whole = 0;
3276 w->suspend_auto_hscroll = false;
3277 w->vscroll = 0;
3278 set_marker_both (w->pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3279 set_marker_both (w->old_pointm, buffer, BUF_PT (b), BUF_PT_BYTE (b));
3280 set_marker_restricted (w->start,
3281 make_number (b->last_window_start),
3282 buffer);
3283 w->start_at_line_beg = false;
3284 w->force_start = false;
3285 }
3286 /* Maybe we could move this into the `if' but it's not obviously safe and
3287 I doubt it's worth the trouble. */
3288 wset_redisplay (w);
3289
3290 wset_update_mode_line (w);
3291
3292 /* We must select BUFFER to run the window-scroll-functions and to look up
3293 the buffer-local value of Vwindow_point_insertion_type. */
3294 record_unwind_current_buffer ();
3295 Fset_buffer (buffer);
3296
3297 XMARKER (w->pointm)->insertion_type = !NILP (Vwindow_point_insertion_type);
3298 XMARKER (w->old_pointm)->insertion_type = !NILP (Vwindow_point_insertion_type);
3299
3300 if (!keep_margins_p)
3301 {
3302 /* Set left and right marginal area width etc. from buffer. */
3303 set_window_fringes (w, BVAR (b, left_fringe_width),
3304 BVAR (b, right_fringe_width),
3305 BVAR (b, fringes_outside_margins));
3306 set_window_scroll_bars (w, BVAR (b, scroll_bar_width),
3307 BVAR (b, vertical_scroll_bar_type),
3308 BVAR (b, scroll_bar_height),
3309 BVAR (b, horizontal_scroll_bar_type));
3310 set_window_margins (w, BVAR (b, left_margin_cols),
3311 BVAR (b, right_margin_cols));
3312 apply_window_adjustment (w);
3313 }
3314
3315 if (run_hooks_p)
3316 {
3317 if (! NILP (Vwindow_scroll_functions))
3318 run_hook_with_args_2 (Qwindow_scroll_functions, window,
3319 Fmarker_position (w->start));
3320 if (!samebuf)
3321 run_window_configuration_change_hook (XFRAME (WINDOW_FRAME (w)));
3322 }
3323
3324 unbind_to (count, Qnil);
3325 }
3326
3327 DEFUN ("set-window-buffer", Fset_window_buffer, Sset_window_buffer, 2, 3, 0,
3328 doc: /* Make WINDOW display BUFFER-OR-NAME.
3329 WINDOW must be a live window and defaults to the selected one.
3330 BUFFER-OR-NAME must be a buffer or the name of an existing buffer.
3331
3332 Optional third argument KEEP-MARGINS non-nil means that WINDOW's current
3333 display margins, fringe widths, and scroll bar settings are preserved;
3334 the default is to reset these from the local settings for BUFFER-OR-NAME
3335 or the frame defaults. Return nil.
3336
3337 This function throws an error when WINDOW is strongly dedicated to its
3338 buffer (that is `window-dedicated-p' returns t for WINDOW) and does not
3339 already display BUFFER-OR-NAME.
3340
3341 This function runs `window-scroll-functions' before running
3342 `window-configuration-change-hook'. */)
3343 (register Lisp_Object window, Lisp_Object buffer_or_name, Lisp_Object keep_margins)
3344 {
3345 register Lisp_Object tem, buffer;
3346 register struct window *w = decode_live_window (window);
3347
3348 XSETWINDOW (window, w);
3349 buffer = Fget_buffer (buffer_or_name);
3350 CHECK_BUFFER (buffer);
3351 if (!BUFFER_LIVE_P (XBUFFER (buffer)))
3352 error ("Attempt to display deleted buffer");
3353
3354 tem = w->contents;
3355 if (NILP (tem))
3356 error ("Window is deleted");
3357 else
3358 {
3359 if (!EQ (tem, buffer))
3360 {
3361 if (EQ (w->dedicated, Qt))
3362 /* WINDOW is strongly dedicated to its buffer, signal an
3363 error. */
3364 error ("Window is dedicated to `%s'", SDATA (BVAR (XBUFFER (tem), name)));
3365 else
3366 /* WINDOW is weakly dedicated to its buffer, reset
3367 dedication. */
3368 wset_dedicated (w, Qnil);
3369
3370 call1 (Qrecord_window_buffer, window);
3371 }
3372
3373 unshow_buffer (w);
3374 }
3375
3376 set_window_buffer (window, buffer, true, !NILP (keep_margins));
3377
3378 return Qnil;
3379 }
3380 \f
3381 static Lisp_Object
3382 display_buffer (Lisp_Object buffer, Lisp_Object not_this_window_p, Lisp_Object override_frame)
3383 {
3384 return call3 (Qdisplay_buffer, buffer, not_this_window_p, override_frame);
3385 }
3386
3387 DEFUN ("force-window-update", Fforce_window_update, Sforce_window_update,
3388 0, 1, 0,
3389 doc: /* Force all windows to be updated on next redisplay.
3390 If optional arg OBJECT is a window, force redisplay of that window only.
3391 If OBJECT is a buffer or buffer name, force redisplay of all windows
3392 displaying that buffer. */)
3393 (Lisp_Object object)
3394 {
3395 if (NILP (object))
3396 {
3397 windows_or_buffers_changed = 29;
3398 update_mode_lines = 28;
3399 return Qt;
3400 }
3401
3402 if (WINDOWP (object))
3403 {
3404 struct window *w = XWINDOW (object);
3405 mark_window_display_accurate (object, false);
3406 w->update_mode_line = true;
3407 if (BUFFERP (w->contents))
3408 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = true;
3409 update_mode_lines = 29;
3410 return Qt;
3411 }
3412
3413 if (STRINGP (object))
3414 object = Fget_buffer (object);
3415 if (BUFFERP (object) && BUFFER_LIVE_P (XBUFFER (object))
3416 && buffer_window_count (XBUFFER (object)))
3417 {
3418 /* If buffer is live and shown in at least one window, find
3419 all windows showing this buffer and force update of them. */
3420 object = window_loop (REDISPLAY_BUFFER_WINDOWS, object, false, Qvisible);
3421 return NILP (object) ? Qnil : Qt;
3422 }
3423
3424 /* If nothing suitable was found, just return.
3425 We could signal an error, but this feature will typically be used
3426 asynchronously in timers or process sentinels, so we don't. */
3427 return Qnil;
3428 }
3429
3430 /* Obsolete since 24.3. */
3431 void
3432 temp_output_buffer_show (register Lisp_Object buf)
3433 {
3434 register struct buffer *old = current_buffer;
3435 register Lisp_Object window;
3436 register struct window *w;
3437
3438 bset_directory (XBUFFER (buf), BVAR (current_buffer, directory));
3439
3440 Fset_buffer (buf);
3441 BUF_SAVE_MODIFF (XBUFFER (buf)) = MODIFF;
3442 BEGV = BEG;
3443 ZV = Z;
3444 SET_PT (BEG);
3445 set_buffer_internal (old);
3446
3447 if (!NILP (Vtemp_buffer_show_function))
3448 call1 (Vtemp_buffer_show_function, buf);
3449 else if (WINDOW_LIVE_P (window = display_buffer (buf, Qnil, Qnil)))
3450 {
3451 if (!EQ (XWINDOW (window)->frame, selected_frame))
3452 Fmake_frame_visible (WINDOW_FRAME (XWINDOW (window)));
3453 Vminibuf_scroll_window = window;
3454 w = XWINDOW (window);
3455 w->hscroll = w->min_hscroll = w->hscroll_whole = 0;
3456 w->suspend_auto_hscroll = false;
3457 set_marker_restricted_both (w->start, buf, BEG, BEG);
3458 set_marker_restricted_both (w->pointm, buf, BEG, BEG);
3459 set_marker_restricted_both (w->old_pointm, buf, BEG, BEG);
3460
3461 /* Run temp-buffer-show-hook, with the chosen window selected
3462 and its buffer current. */
3463 {
3464 ptrdiff_t count = SPECPDL_INDEX ();
3465 Lisp_Object prev_window, prev_buffer;
3466 prev_window = selected_window;
3467 XSETBUFFER (prev_buffer, old);
3468
3469 /* Select the window that was chosen, for running the hook.
3470 Note: Both Fselect_window and select_window_norecord may
3471 set-buffer to the buffer displayed in the window,
3472 so we need to save the current buffer. --stef */
3473 record_unwind_protect (restore_buffer, prev_buffer);
3474 record_unwind_protect (select_window_norecord, prev_window);
3475 Fselect_window (window, Qt);
3476 Fset_buffer (w->contents);
3477 run_hook (Qtemp_buffer_show_hook);
3478 unbind_to (count, Qnil);
3479 }
3480 }
3481 }
3482
3483 /* Allocate basically initialized window. */
3484
3485 static struct window *
3486 allocate_window (void)
3487 {
3488 return ALLOCATE_ZEROED_PSEUDOVECTOR
3489 (struct window, current_matrix, PVEC_WINDOW);
3490 }
3491
3492 /* Make new window, have it replace WINDOW in window-tree, and make
3493 WINDOW its only vertical child (HORFLAG means make WINDOW its only
3494 horizontal child). */
3495 static void
3496 make_parent_window (Lisp_Object window, bool horflag)
3497 {
3498 Lisp_Object parent;
3499 register struct window *o, *p;
3500
3501 o = XWINDOW (window);
3502 p = allocate_window ();
3503 memcpy ((char *) p + sizeof (struct vectorlike_header),
3504 (char *) o + sizeof (struct vectorlike_header),
3505 word_size * VECSIZE (struct window));
3506 /* P's buffer slot may change from nil to a buffer... */
3507 adjust_window_count (p, 1);
3508 XSETWINDOW (parent, p);
3509
3510 p->sequence_number = ++sequence_number;
3511
3512 replace_window (window, parent, true);
3513
3514 wset_next (o, Qnil);
3515 wset_prev (o, Qnil);
3516 wset_parent (o, parent);
3517 /* ...but now P becomes an internal window. */
3518 wset_start (p, Qnil);
3519 wset_pointm (p, Qnil);
3520 wset_old_pointm (p, Qnil);
3521 wset_buffer (p, Qnil);
3522 wset_combination (p, horflag, window);
3523 wset_combination_limit (p, Qnil);
3524 wset_window_parameters (p, Qnil);
3525 }
3526
3527 /* Make new window from scratch. */
3528 Lisp_Object
3529 make_window (void)
3530 {
3531 Lisp_Object window;
3532 register struct window *w;
3533
3534 w = allocate_window ();
3535 /* Initialize Lisp data. Note that allocate_window initializes all
3536 Lisp data to nil, so do it only for slots which should not be nil. */
3537 wset_normal_lines (w, make_float (1.0));
3538 wset_normal_cols (w, make_float (1.0));
3539 wset_new_total (w, make_number (0));
3540 wset_new_normal (w, make_number (0));
3541 wset_new_pixel (w, make_number (0));
3542 wset_start (w, Fmake_marker ());
3543 wset_pointm (w, Fmake_marker ());
3544 wset_old_pointm (w, Fmake_marker ());
3545 wset_vertical_scroll_bar_type (w, Qt);
3546 wset_horizontal_scroll_bar_type (w, Qt);
3547 /* These Lisp fields are marked specially so they're not set to nil by
3548 allocate_window. */
3549 wset_prev_buffers (w, Qnil);
3550 wset_next_buffers (w, Qnil);
3551
3552 /* Initialize non-Lisp data. Note that allocate_window zeroes out all
3553 non-Lisp data, so do it only for slots which should not be zero. */
3554 w->nrows_scale_factor = w->ncols_scale_factor = 1;
3555 w->left_fringe_width = w->right_fringe_width = -1;
3556 w->mode_line_height = w->header_line_height = -1;
3557 #ifdef HAVE_WINDOW_SYSTEM
3558 w->phys_cursor_type = NO_CURSOR;
3559 w->phys_cursor_width = -1;
3560 #endif
3561 w->sequence_number = ++sequence_number;
3562 w->scroll_bar_width = -1;
3563 w->scroll_bar_height = -1;
3564 w->column_number_displayed = -1;
3565 /* Reset window_list. */
3566 Vwindow_list = Qnil;
3567 /* Return window. */
3568 XSETWINDOW (window, w);
3569 return window;
3570 }
3571 \f
3572 DEFUN ("set-window-new-pixel", Fset_window_new_pixel, Sset_window_new_pixel, 2, 3, 0,
3573 doc: /* Set new pixel size of WINDOW to SIZE.
3574 WINDOW must be a valid window and defaults to the selected one.
3575 Return SIZE.
3576
3577 Optional argument ADD non-nil means add SIZE to the new pixel size of
3578 WINDOW and return the sum.
3579
3580 The new pixel size of WINDOW, if valid, will be shortly installed as
3581 WINDOW's pixel height (see `window-pixel-height') or pixel width (see
3582 `window-pixel-width').
3583
3584 Note: This function does not operate on any child windows of WINDOW. */)
3585 (Lisp_Object window, Lisp_Object size, Lisp_Object add)
3586 {
3587 struct window *w = decode_valid_window (window);
3588 EMACS_INT size_min = NILP (add) ? 0 : - XINT (w->new_pixel);
3589 EMACS_INT size_max = size_min + min (INT_MAX, MOST_POSITIVE_FIXNUM);
3590
3591 CHECK_RANGED_INTEGER (size, size_min, size_max);
3592 if (NILP (add))
3593 wset_new_pixel (w, size);
3594 else
3595 wset_new_pixel (w, make_number (XINT (w->new_pixel) + XINT (size)));
3596
3597 return w->new_pixel;
3598 }
3599
3600 DEFUN ("set-window-new-total", Fset_window_new_total, Sset_window_new_total, 2, 3, 0,
3601 doc: /* Set new total size of WINDOW to SIZE.
3602 WINDOW must be a valid window and defaults to the selected one.
3603 Return SIZE.
3604
3605 Optional argument ADD non-nil means add SIZE to the new total size of
3606 WINDOW and return the sum.
3607
3608 The new total size of WINDOW, if valid, will be shortly installed as
3609 WINDOW's total height (see `window-total-height') or total width (see
3610 `window-total-width').
3611
3612 Note: This function does not operate on any child windows of WINDOW. */)
3613 (Lisp_Object window, Lisp_Object size, Lisp_Object add)
3614 {
3615 struct window *w = decode_valid_window (window);
3616
3617 CHECK_NUMBER (size);
3618 if (NILP (add))
3619 wset_new_total (w, size);
3620 else
3621 wset_new_total (w, make_number (XINT (w->new_total) + XINT (size)));
3622
3623 return w->new_total;
3624 }
3625
3626 DEFUN ("set-window-new-normal", Fset_window_new_normal, Sset_window_new_normal, 1, 2, 0,
3627 doc: /* Set new normal size of WINDOW to SIZE.
3628 WINDOW must be a valid window and defaults to the selected one.
3629 Return SIZE.
3630
3631 The new normal size of WINDOW, if valid, will be shortly installed as
3632 WINDOW's normal size (see `window-normal-size').
3633
3634 Note: This function does not operate on any child windows of WINDOW. */)
3635 (Lisp_Object window, Lisp_Object size)
3636 {
3637 wset_new_normal (decode_valid_window (window), size);
3638 return size;
3639 }
3640
3641 /* Return true if setting w->pixel_height (w->pixel_width if HORFLAG)
3642 to w->new_pixel would result in correct heights (widths)
3643 for window W and recursively all child windows of W.
3644
3645 Note: This function does not check any of `window-fixed-size-p',
3646 `window-min-height' or `window-min-width'. It does check that window
3647 sizes do not drop below one line (two columns). */
3648 static bool
3649 window_resize_check (struct window *w, bool horflag)
3650 {
3651 struct frame *f = XFRAME (w->frame);
3652 struct window *c;
3653
3654 if (WINDOW_VERTICAL_COMBINATION_P (w))
3655 /* W is a vertical combination. */
3656 {
3657 c = XWINDOW (w->contents);
3658 if (horflag)
3659 /* All child windows of W must have the same width as W. */
3660 {
3661 while (c)
3662 {
3663 if (XINT (c->new_pixel) != XINT (w->new_pixel)
3664 || !window_resize_check (c, horflag))
3665 return false;
3666
3667 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3668 }
3669
3670 return true;
3671 }
3672 else
3673 /* The sum of the heights of the child windows of W must equal
3674 W's height. */
3675 {
3676 int remaining_pixels = XINT (w->new_pixel);
3677
3678 while (c)
3679 {
3680 if (!window_resize_check (c, horflag))
3681 return false;
3682
3683 remaining_pixels -= XINT (c->new_pixel);
3684 if (remaining_pixels < 0)
3685 return false;
3686 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3687 }
3688
3689 return remaining_pixels == 0;
3690 }
3691 }
3692 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3693 /* W is a horizontal combination. */
3694 {
3695 c = XWINDOW (w->contents);
3696 if (horflag)
3697 /* The sum of the widths of the child windows of W must equal W's
3698 width. */
3699 {
3700 int remaining_pixels = XINT (w->new_pixel);
3701
3702 while (c)
3703 {
3704 if (!window_resize_check (c, horflag))
3705 return false;
3706
3707 remaining_pixels -= XINT (c->new_pixel);
3708 if (remaining_pixels < 0)
3709 return false;
3710 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3711 }
3712
3713 return remaining_pixels == 0;
3714 }
3715 else
3716 /* All child windows of W must have the same height as W. */
3717 {
3718 while (c)
3719 {
3720 if (XINT (c->new_pixel) != XINT (w->new_pixel)
3721 || !window_resize_check (c, horflag))
3722 return false;
3723
3724 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3725 }
3726
3727 return true;
3728 }
3729 }
3730 else
3731 /* A leaf window. Make sure it's not too small. The following
3732 hardcodes the values of `window-safe-min-width' (2) and
3733 `window-safe-min-height' (1) which are defined in window.el. */
3734 return (XINT (w->new_pixel) >= (horflag
3735 ? (2 * FRAME_COLUMN_WIDTH (f))
3736 : FRAME_LINE_HEIGHT (f)));
3737 }
3738
3739
3740 /* Set w->pixel_height (w->pixel_width if HORFLAG) to
3741 w->new_pixel for window W and recursively all child windows of W.
3742 Also calculate and assign the new vertical (horizontal) pixel start
3743 positions of each of these windows.
3744
3745 This function does not perform any error checks. Make sure you have
3746 run window_resize_check on W before applying this function. */
3747 static void
3748 window_resize_apply (struct window *w, bool horflag)
3749 {
3750 struct window *c;
3751 int edge;
3752 int unit = (horflag
3753 ? FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w))
3754 : FRAME_LINE_HEIGHT (WINDOW_XFRAME (w)));
3755
3756 /* Note: Assigning new_normal requires that the new total size of the
3757 parent window has been set *before*. */
3758 if (horflag)
3759 {
3760 w->pixel_width = XFASTINT (w->new_pixel);
3761 w->total_cols = w->pixel_width / unit;
3762 if (NUMBERP (w->new_normal))
3763 wset_normal_cols (w, w->new_normal);
3764
3765 edge = w->pixel_left;
3766 }
3767 else
3768 {
3769 w->pixel_height = XFASTINT (w->new_pixel);
3770 w->total_lines = w->pixel_height / unit;
3771 if (NUMBERP (w->new_normal))
3772 wset_normal_lines (w, w->new_normal);
3773
3774 edge = w->pixel_top;
3775 }
3776
3777 if (WINDOW_VERTICAL_COMBINATION_P (w))
3778 /* W is a vertical combination. */
3779 {
3780 c = XWINDOW (w->contents);
3781 while (c)
3782 {
3783 if (horflag)
3784 {
3785 c->pixel_left = edge;
3786 c->left_col = edge / unit;
3787 }
3788 else
3789 {
3790 c->pixel_top = edge;
3791 c->top_line = edge / unit;
3792 }
3793 window_resize_apply (c, horflag);
3794 if (!horflag)
3795 edge = edge + c->pixel_height;
3796
3797 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3798 }
3799 }
3800 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3801 /* W is a horizontal combination. */
3802 {
3803 c = XWINDOW (w->contents);
3804 while (c)
3805 {
3806 if (horflag)
3807 {
3808 c->pixel_left = edge;
3809 c->left_col = edge / unit;
3810 }
3811 else
3812 {
3813 c->pixel_top = edge;
3814 c->top_line = edge / unit;
3815 }
3816
3817 window_resize_apply (c, horflag);
3818 if (horflag)
3819 edge = edge + c->pixel_width;
3820
3821 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3822 }
3823 }
3824 else
3825 /* Bug#15957. */
3826 w->window_end_valid = false;
3827 }
3828
3829
3830 /* Set w->total_lines (w->total_cols if HORFLAG) to
3831 w->new_total for window W and recursively all child windows of W.
3832 Also calculate and assign the new vertical (horizontal) start
3833 positions of each of these windows. */
3834 static void
3835 window_resize_apply_total (struct window *w, bool horflag)
3836 {
3837 struct window *c;
3838 int edge;
3839
3840 /* Note: Assigning new_normal requires that the new total size of the
3841 parent window has been set *before*. */
3842 if (horflag)
3843 {
3844 w->total_cols = XFASTINT (w->new_total);
3845 edge = w->left_col;
3846 }
3847 else
3848 {
3849 w->total_lines = XFASTINT (w->new_total);
3850 edge = w->top_line;
3851 }
3852
3853 if (WINDOW_VERTICAL_COMBINATION_P (w))
3854 /* W is a vertical combination. */
3855 {
3856 c = XWINDOW (w->contents);
3857 while (c)
3858 {
3859 if (horflag)
3860 c->left_col = edge;
3861 else
3862 c->top_line = edge;
3863
3864 window_resize_apply_total (c, horflag);
3865 if (!horflag)
3866 edge = edge + c->total_lines;
3867
3868 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3869 }
3870 }
3871 else if (WINDOW_HORIZONTAL_COMBINATION_P (w))
3872 /* W is a horizontal combination. */
3873 {
3874 c = XWINDOW (w->contents);
3875 while (c)
3876 {
3877 if (horflag)
3878 c->left_col = edge;
3879 else
3880 c->top_line = edge;
3881
3882 window_resize_apply_total (c, horflag);
3883 if (horflag)
3884 edge = edge + c->total_cols;
3885
3886 c = NILP (c->next) ? 0 : XWINDOW (c->next);
3887 }
3888 }
3889 }
3890
3891 DEFUN ("window-resize-apply", Fwindow_resize_apply, Swindow_resize_apply, 0, 2, 0,
3892 doc: /* Apply requested size values for window-tree of FRAME.
3893 If FRAME is omitted or nil, it defaults to the selected frame.
3894
3895 Optional argument HORIZONTAL omitted or nil means apply requested
3896 height values. HORIZONTAL non-nil means apply requested width values.
3897
3898 The requested size values are those set by `set-window-new-pixel' and
3899 `set-window-new-normal'. This function checks whether the requested
3900 values sum up to a valid window layout, recursively assigns the new
3901 sizes of all child windows and calculates and assigns the new start
3902 positions of these windows.
3903
3904 Return t if the requested values have been applied correctly, nil
3905 otherwise.
3906
3907 Note: This function does not check any of `window-fixed-size-p',
3908 `window-min-height' or `window-min-width'. All these checks have to
3909 be applied on the Elisp level. */)
3910 (Lisp_Object frame, Lisp_Object horizontal)
3911 {
3912 struct frame *f = decode_live_frame (frame);
3913 struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
3914 bool horflag = !NILP (horizontal);
3915
3916 if (!window_resize_check (r, horflag)
3917 || (XINT (r->new_pixel)
3918 != (horflag ? r->pixel_width : r->pixel_height)))
3919 return Qnil;
3920
3921 block_input ();
3922 window_resize_apply (r, horflag);
3923
3924 fset_redisplay (f);
3925 FRAME_WINDOW_SIZES_CHANGED (f) = true;
3926
3927 adjust_frame_glyphs (f);
3928 unblock_input ();
3929
3930 return Qt;
3931 }
3932
3933
3934 DEFUN ("window-resize-apply-total", Fwindow_resize_apply_total, Swindow_resize_apply_total, 0, 2, 0,
3935 doc: /* Apply requested total size values for window-tree of FRAME.
3936 If FRAME is omitted or nil, it defaults to the selected frame.
3937
3938 This function does not assign pixel or normal size values. You should
3939 have run `window-resize-apply' before running this.
3940
3941 Optional argument HORIZONTAL omitted or nil means apply requested
3942 height values. HORIZONTAL non-nil means apply requested width
3943 values. */)
3944 (Lisp_Object frame, Lisp_Object horizontal)
3945 {
3946 struct frame *f = decode_live_frame (frame);
3947 struct window *r = XWINDOW (FRAME_ROOT_WINDOW (f));
3948
3949 block_input ();
3950 /* Necessary when deleting the top-/or leftmost window. */
3951 r->left_col = 0;
3952 r->top_line = FRAME_TOP_MARGIN (f);
3953 window_resize_apply_total (r, !NILP (horizontal));
3954 /* Handle the mini window. */
3955 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
3956 {
3957 struct window *m = XWINDOW (f->minibuffer_window);
3958
3959 if (NILP (horizontal))
3960 {
3961 m->top_line = r->top_line + r->total_lines;
3962 m->total_lines = XFASTINT (m->new_total);
3963 }
3964 else
3965 m->total_cols = XFASTINT (m->new_total);
3966 }
3967
3968 unblock_input ();
3969
3970 return Qt;
3971 }
3972
3973
3974 /* Resize frame F's windows when number of lines of F is set to SIZE.
3975 HORFLAG means resize windows when number of columns of F is set to
3976 SIZE. PIXELWISE means to interpret SIZE as pixels. */
3977 void
3978 resize_frame_windows (struct frame *f, int size, bool horflag, bool pixelwise)
3979 {
3980 Lisp_Object root = f->root_window;
3981 struct window *r = XWINDOW (root);
3982 Lisp_Object mini = f->minibuffer_window;
3983 struct window *m;
3984 /* old_size is the old size of the frame's root window. */
3985 int old_size = horflag ? r->total_cols : r->total_lines;
3986 int old_pixel_size = horflag ? r->pixel_width : r->pixel_height;
3987 /* new_size is the new size of the frame's root window. */
3988 int new_size, new_pixel_size;
3989 int unit = horflag ? FRAME_COLUMN_WIDTH (f) : FRAME_LINE_HEIGHT (f);
3990
3991 /* Don't let the size drop below one unit. This is more comforting
3992 when we are called from x_set_tool_bar_lines since the latter may
3993 have implicitly given us a zero or negative height. */
3994 if (pixelwise)
3995 {
3996 /* Note: This does not include the size for internal borders
3997 since these are not part of the frame's text area. */
3998 new_pixel_size = max (horflag
3999 ? size
4000 : (size
4001 - ((FRAME_HAS_MINIBUF_P (f)
4002 && !FRAME_MINIBUF_ONLY_P (f))
4003 ? FRAME_LINE_HEIGHT (f) : 0)),
4004 unit);
4005 new_size = new_pixel_size / unit;
4006 }
4007 else
4008 {
4009 new_size = max (size - (!horflag
4010 && FRAME_HAS_MINIBUF_P (f)
4011 && !FRAME_MINIBUF_ONLY_P (f)),
4012 1);
4013 new_pixel_size = new_size * unit;
4014 }
4015
4016 if (new_pixel_size == old_pixel_size
4017 && (horflag || r->pixel_top == FRAME_TOP_MARGIN_HEIGHT (f)))
4018 ;
4019 else if (WINDOW_LEAF_P (r))
4020 /* For a leaf root window just set the size. */
4021 if (horflag)
4022 {
4023 r->total_cols = new_size;
4024 r->pixel_width = new_pixel_size;
4025 }
4026 else
4027 {
4028 r->top_line = FRAME_TOP_MARGIN (f);
4029 r->pixel_top = FRAME_TOP_MARGIN_HEIGHT (f);
4030
4031 r->total_lines = new_size;
4032 r->pixel_height = new_pixel_size;
4033 }
4034 else
4035 {
4036 Lisp_Object delta;
4037
4038 if (!horflag)
4039 {
4040 r->top_line = FRAME_TOP_MARGIN (f);
4041 r->pixel_top = FRAME_TOP_MARGIN_HEIGHT (f);
4042 }
4043
4044 if (pixelwise)
4045 XSETINT (delta, new_pixel_size - old_pixel_size);
4046 else
4047 XSETINT (delta, new_size - old_size);
4048
4049 /* Try a "normal" resize first. */
4050 resize_root_window (root, delta, horflag ? Qt : Qnil, Qnil,
4051 pixelwise ? Qt : Qnil);
4052 if (window_resize_check (r, horflag)
4053 && new_pixel_size == XINT (r->new_pixel))
4054 {
4055 window_resize_apply (r, horflag);
4056 window_pixel_to_total (r->frame, horflag ? Qt : Qnil);
4057 }
4058 else
4059 {
4060 /* Try with "reasonable" minimum sizes next. */
4061 resize_root_window (root, delta, horflag ? Qt : Qnil, Qt,
4062 pixelwise ? Qt : Qnil);
4063 if (window_resize_check (r, horflag)
4064 && new_pixel_size == XINT (r->new_pixel))
4065 {
4066 window_resize_apply (r, horflag);
4067 window_pixel_to_total (r->frame, horflag ? Qt : Qnil);
4068 }
4069 }
4070 }
4071
4072 if (FRAME_HAS_MINIBUF_P (f) && !FRAME_MINIBUF_ONLY_P (f))
4073 {
4074 m = XWINDOW (mini);
4075 if (horflag)
4076 {
4077 m->total_cols = size;
4078 m->pixel_width = new_pixel_size;
4079 }
4080 else
4081 {
4082 /* Are we sure we always want 1 line here? */
4083 m->total_lines = 1;
4084 m->pixel_height = FRAME_LINE_HEIGHT (f);
4085 m->top_line = r->top_line + r->total_lines;
4086 m->pixel_top = r->pixel_top + r->pixel_height;
4087 }
4088 }
4089
4090 FRAME_WINDOW_SIZES_CHANGED (f) = true;
4091 fset_redisplay (f);
4092 }
4093
4094
4095 DEFUN ("split-window-internal", Fsplit_window_internal, Ssplit_window_internal, 4, 4, 0,
4096 doc: /* Split window OLD.
4097 Second argument PIXEL-SIZE specifies the number of pixels of the
4098 new window. It must be a positive integer.
4099
4100 Third argument SIDE nil (or `below') specifies that the new window shall
4101 be located below WINDOW. SIDE `above' means the new window shall be
4102 located above WINDOW. In both cases PIXEL-SIZE specifies the pixel
4103 height of the new window including space reserved for the mode and/or
4104 header line.
4105
4106 SIDE t (or `right') specifies that the new window shall be located on
4107 the right side of WINDOW. SIDE `left' means the new window shall be
4108 located on the left of WINDOW. In both cases PIXEL-SIZE specifies the
4109 width of the new window including space reserved for fringes and the
4110 scrollbar or a divider column.
4111
4112 Fourth argument NORMAL-SIZE specifies the normal size of the new window
4113 according to the SIDE argument.
4114
4115 The new pixel and normal sizes of all involved windows must have been
4116 set correctly. See the code of `split-window' for how this is done. */)
4117 (Lisp_Object old, Lisp_Object pixel_size, Lisp_Object side, Lisp_Object normal_size)
4118 {
4119 /* OLD (*o) is the window we have to split. (*p) is either OLD's
4120 parent window or an internal window we have to install as OLD's new
4121 parent. REFERENCE (*r) must denote a live window, or is set to OLD
4122 provided OLD is a leaf window, or to the frame's selected window.
4123 NEW (*n) is the new window created with some parameters taken from
4124 REFERENCE (*r). */
4125 Lisp_Object new, frame, reference;
4126 struct window *o, *p, *n, *r, *c;
4127 struct frame *f;
4128 bool horflag
4129 /* HORFLAG is true when we split side-by-side, false otherwise. */
4130 = EQ (side, Qt) || EQ (side, Qleft) || EQ (side, Qright);
4131
4132 CHECK_WINDOW (old);
4133 o = XWINDOW (old);
4134 frame = WINDOW_FRAME (o);
4135 f = XFRAME (frame);
4136
4137 CHECK_NUMBER (pixel_size);
4138 EMACS_INT total_size
4139 = XINT (pixel_size) / (horflag
4140 ? FRAME_COLUMN_WIDTH (f)
4141 : FRAME_LINE_HEIGHT (f));
4142
4143 /* Set combination_limit if we have to make a new parent window.
4144 We do that if either `window-combination-limit' is t, or OLD has no
4145 parent, or OLD is ortho-combined. */
4146 bool combination_limit
4147 = (EQ (Vwindow_combination_limit, Qt)
4148 || NILP (o->parent)
4149 || (horflag
4150 ? WINDOW_VERTICAL_COMBINATION_P (XWINDOW (o->parent))
4151 : WINDOW_HORIZONTAL_COMBINATION_P (XWINDOW (o->parent))));
4152
4153 /* We need a live reference window to initialize some parameters. */
4154 if (WINDOW_LIVE_P (old))
4155 /* OLD is live, use it as reference window. */
4156 reference = old;
4157 else
4158 /* Use the frame's selected window as reference window. */
4159 reference = FRAME_SELECTED_WINDOW (f);
4160 r = XWINDOW (reference);
4161
4162 /* The following bugs are caught by `split-window'. */
4163 if (MINI_WINDOW_P (o))
4164 error ("Attempt to split minibuffer window");
4165 else if (total_size < (horflag ? 2 : 1))
4166 error ("Size of new window too small (after split)");
4167 else if (!combination_limit && !NILP (Vwindow_combination_resize))
4168 /* `window-combination-resize' non-nil means try to resize OLD's siblings
4169 proportionally. */
4170 {
4171 p = XWINDOW (o->parent);
4172 /* Temporarily pretend we split the parent window. */
4173 wset_new_pixel
4174 (p, make_number ((horflag ? p->pixel_width : p->pixel_height)
4175 - XINT (pixel_size)));
4176 if (!window_resize_check (p, horflag))
4177 error ("Window sizes don't fit");
4178 else
4179 /* Undo the temporary pretension. */
4180 wset_new_pixel (p, make_number (horflag ? p->pixel_width : p->pixel_height));
4181 }
4182 else
4183 {
4184 if (!window_resize_check (o, horflag))
4185 error ("Resizing old window failed");
4186 else if (XINT (pixel_size) + XINT (o->new_pixel)
4187 != (horflag ? o->pixel_width : o->pixel_height))
4188 error ("Sum of sizes of old and new window don't fit");
4189 }
4190
4191 /* This is our point of no return. */
4192 if (combination_limit)
4193 {
4194 /* Save the old value of o->normal_cols/lines. It gets corrupted
4195 by make_parent_window and we need it below for assigning it to
4196 p->new_normal. */
4197 Lisp_Object new_normal
4198 = horflag ? o->normal_cols : o->normal_lines;
4199
4200 make_parent_window (old, horflag);
4201 p = XWINDOW (o->parent);
4202 if (EQ (Vwindow_combination_limit, Qt))
4203 /* Store t in the new parent's combination_limit slot to avoid
4204 that its children get merged into another window. */
4205 wset_combination_limit (p, Qt);
4206 /* These get applied below. */
4207 wset_new_pixel
4208 (p, make_number (horflag ? o->pixel_width : o->pixel_height));
4209 wset_new_total
4210 (p, make_number (horflag ? o->total_cols : o->total_lines));
4211 wset_new_normal (p, new_normal);
4212 }
4213 else
4214 p = XWINDOW (o->parent);
4215
4216 fset_redisplay (f);
4217 FRAME_WINDOW_SIZES_CHANGED (f) = true;
4218 new = make_window ();
4219 n = XWINDOW (new);
4220 wset_frame (n, frame);
4221 wset_parent (n, o->parent);
4222
4223 if (EQ (side, Qabove) || EQ (side, Qleft))
4224 {
4225 wset_prev (n, o->prev);
4226 if (NILP (n->prev))
4227 wset_combination (p, horflag, new);
4228 else
4229 wset_next (XWINDOW (n->prev), new);
4230 wset_next (n, old);
4231 wset_prev (o, new);
4232 }
4233 else
4234 {
4235 wset_next (n, o->next);
4236 if (!NILP (n->next))
4237 wset_prev (XWINDOW (n->next), new);
4238 wset_prev (n, old);
4239 wset_next (o, new);
4240 }
4241
4242 n->window_end_valid = false;
4243 n->last_cursor_vpos = 0;
4244
4245 /* Get special geometry settings from reference window. */
4246 n->left_margin_cols = r->left_margin_cols;
4247 n->right_margin_cols = r->right_margin_cols;
4248 n->left_fringe_width = r->left_fringe_width;
4249 n->right_fringe_width = r->right_fringe_width;
4250 n->fringes_outside_margins = r->fringes_outside_margins;
4251 n->scroll_bar_width = r->scroll_bar_width;
4252 n->scroll_bar_height = r->scroll_bar_height;
4253 wset_vertical_scroll_bar_type (n, r->vertical_scroll_bar_type);
4254 wset_horizontal_scroll_bar_type (n, r->horizontal_scroll_bar_type);
4255
4256 /* Directly assign orthogonal coordinates and sizes. */
4257 if (horflag)
4258 {
4259 n->pixel_top = o->pixel_top;
4260 n->top_line = o->top_line;
4261 n->pixel_height = o->pixel_height;
4262 n->total_lines = o->total_lines;
4263 }
4264 else
4265 {
4266 n->pixel_left = o->pixel_left;
4267 n->left_col = o->left_col;
4268 n->pixel_width = o->pixel_width;
4269 n->total_cols = o->total_cols;
4270 }
4271
4272 /* Iso-coordinates and sizes are assigned by window_resize_apply,
4273 get them ready here. */
4274 wset_new_pixel (n, pixel_size);
4275 EMACS_INT sum = 0;
4276 c = XWINDOW (p->contents);
4277 while (c)
4278 {
4279 if (c != n)
4280 sum = sum + XINT (c->new_total);
4281 c = NILP (c->next) ? 0 : XWINDOW (c->next);
4282 }
4283 wset_new_total (n, make_number ((horflag
4284 ? p->total_cols
4285 : p->total_lines)
4286 - sum));
4287 wset_new_normal (n, normal_size);
4288
4289 block_input ();
4290 window_resize_apply (p, horflag);
4291 adjust_frame_glyphs (f);
4292 /* Set buffer of NEW to buffer of reference window. Don't run
4293 any hooks. */
4294 set_window_buffer (new, r->contents, false, true);
4295 unblock_input ();
4296
4297 /* Maybe we should run the scroll functions in Elisp (which already
4298 runs the configuration change hook). */
4299 if (! NILP (Vwindow_scroll_functions))
4300 run_hook_with_args_2 (Qwindow_scroll_functions, new,
4301 Fmarker_position (n->start));
4302 /* Return NEW. */
4303 return new;
4304 }
4305
4306
4307 DEFUN ("delete-window-internal", Fdelete_window_internal, Sdelete_window_internal, 1, 1, 0,
4308 doc: /* Remove WINDOW from its frame.
4309 WINDOW defaults to the selected window. Return nil.
4310 Signal an error when WINDOW is the only window on its frame. */)
4311 (Lisp_Object window)
4312 {
4313 Lisp_Object parent, sibling, frame, root;
4314 struct window *w, *p, *s, *r;
4315 struct frame *f;
4316 bool horflag, before_sibling = false;
4317
4318 w = decode_any_window (window);
4319 XSETWINDOW (window, w);
4320 if (NILP (w->contents))
4321 /* It's a no-op to delete an already deleted window. */
4322 return Qnil;
4323
4324 parent = w->parent;
4325 if (NILP (parent))
4326 /* Never delete a minibuffer or frame root window. */
4327 error ("Attempt to delete minibuffer or sole ordinary window");
4328 else if (NILP (w->prev) && NILP (w->next))
4329 /* Rather bow out here, this case should be handled on the Elisp
4330 level. */
4331 error ("Attempt to delete sole window of parent");
4332
4333 p = XWINDOW (parent);
4334 horflag = WINDOW_HORIZONTAL_COMBINATION_P (p);
4335
4336 frame = WINDOW_FRAME (w);
4337 f = XFRAME (frame);
4338
4339 root = FRAME_ROOT_WINDOW (f);
4340 r = XWINDOW (root);
4341
4342 /* Unlink WINDOW from window tree. */
4343 if (NILP (w->prev))
4344 /* Get SIBLING below (on the right of) WINDOW. */
4345 {
4346 /* before_sibling means WINDOW is the first child of its
4347 parent and thus before the sibling. */
4348 before_sibling = true;
4349 sibling = w->next;
4350 s = XWINDOW (sibling);
4351 wset_prev (s, Qnil);
4352 wset_combination (p, horflag, sibling);
4353 }
4354 else
4355 /* Get SIBLING above (on the left of) WINDOW. */
4356 {
4357 sibling = w->prev;
4358 s = XWINDOW (sibling);
4359 wset_next (s, w->next);
4360 if (!NILP (s->next))
4361 wset_prev (XWINDOW (s->next), sibling);
4362 }
4363
4364 if (window_resize_check (r, horflag)
4365 && (XINT (r->new_pixel)
4366 == (horflag ? r->pixel_width : r->pixel_height)))
4367 /* We can delete WINDOW now. */
4368 {
4369
4370 /* Block input. */
4371 block_input ();
4372 xwidget_view_delete_all_in_window (w);
4373 window_resize_apply (p, horflag);
4374 /* If this window is referred to by the dpyinfo's mouse
4375 highlight, invalidate that slot to be safe (Bug#9904). */
4376 if (!FRAME_INITIAL_P (f))
4377 {
4378 Mouse_HLInfo *hlinfo = MOUSE_HL_INFO (f);
4379
4380 if (EQ (hlinfo->mouse_face_window, window))
4381 hlinfo->mouse_face_window = Qnil;
4382 }
4383
4384 fset_redisplay (f);
4385 Vwindow_list = Qnil;
4386 FRAME_WINDOW_SIZES_CHANGED (f) = true;
4387
4388 wset_next (w, Qnil); /* Don't delete w->next too. */
4389 free_window_matrices (w);
4390
4391 if (WINDOWP (w->contents))
4392 {
4393 delete_all_child_windows (w->contents);
4394 wset_combination (w, false, Qnil);
4395 }
4396 else
4397 {
4398 unshow_buffer (w);
4399 unchain_marker (XMARKER (w->pointm));
4400 unchain_marker (XMARKER (w->old_pointm));
4401 unchain_marker (XMARKER (w->start));
4402 wset_buffer (w, Qnil);
4403 }
4404
4405 if (NILP (s->prev) && NILP (s->next))
4406 /* A matrjoshka where SIBLING has become the only child of
4407 PARENT. */
4408 {
4409 /* Put SIBLING into PARENT's place. */
4410 replace_window (parent, sibling, false);
4411 /* Have SIBLING inherit the following three slot values from
4412 PARENT (the combination_limit slot is not inherited). */
4413 wset_normal_cols (s, p->normal_cols);
4414 wset_normal_lines (s, p->normal_lines);
4415 /* Mark PARENT as deleted. */
4416 wset_combination (p, false, Qnil);
4417 /* Try to merge SIBLING into its new parent. */
4418 recombine_windows (sibling);
4419 }
4420
4421 adjust_frame_glyphs (f);
4422
4423 if (!WINDOW_LIVE_P (FRAME_SELECTED_WINDOW (f)))
4424 /* We deleted the frame's selected window. */
4425 {
4426 /* Use the frame's first window as fallback ... */
4427 Lisp_Object new_selected_window = Fframe_first_window (frame);
4428 /* ... but preferably use its most recently used window. */
4429 Lisp_Object mru_window;
4430
4431 /* `get-mru-window' might fail for some reason so play it safe
4432 - promote the first window _without recording it_ first. */
4433 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4434 Fselect_window (new_selected_window, Qt);
4435 else
4436 fset_selected_window (f, new_selected_window);
4437
4438 unblock_input ();
4439
4440 /* Now look whether `get-mru-window' gets us something. */
4441 mru_window = call1 (Qget_mru_window, frame);
4442 if (WINDOW_LIVE_P (mru_window)
4443 && EQ (XWINDOW (mru_window)->frame, frame))
4444 new_selected_window = mru_window;
4445
4446 /* If all ended up well, we now promote the mru window. */
4447 if (EQ (FRAME_SELECTED_WINDOW (f), selected_window))
4448 Fselect_window (new_selected_window, Qnil);
4449 else
4450 fset_selected_window (f, new_selected_window);
4451 }
4452 else
4453 unblock_input ();
4454
4455 /* Must be run by the caller:
4456 run_window_configuration_change_hook (f); */
4457 }
4458 else
4459 /* We failed: Relink WINDOW into window tree. */
4460 {
4461 if (before_sibling)
4462 {
4463 wset_prev (s, window);
4464 wset_combination (p, horflag, window);
4465 }
4466 else
4467 {
4468 wset_next (s, window);
4469 if (!NILP (w->next))
4470 wset_prev (XWINDOW (w->next), window);
4471 }
4472 error ("Deletion failed");
4473 }
4474
4475 return Qnil;
4476 }
4477 \f
4478 /***********************************************************************
4479 Resizing Mini-Windows
4480 ***********************************************************************/
4481
4482 /* Grow mini-window W by DELTA lines, DELTA >= 0, or as much as we
4483 can. */
4484 void
4485 grow_mini_window (struct window *w, int delta, bool pixelwise)
4486 {
4487 struct frame *f = XFRAME (w->frame);
4488 struct window *r;
4489 Lisp_Object root, height;
4490 int line_height, pixel_height;
4491
4492 eassert (MINI_WINDOW_P (w));
4493 eassert (delta >= 0);
4494
4495 if (delta > 0)
4496 {
4497 root = FRAME_ROOT_WINDOW (f);
4498 r = XWINDOW (root);
4499 height = call3 (Qwindow_resize_root_window_vertically,
4500 root, make_number (- delta), pixelwise ? Qt : Qnil);
4501 if (INTEGERP (height) && window_resize_check (r, false))
4502 {
4503 block_input ();
4504 window_resize_apply (r, false);
4505
4506 if (pixelwise)
4507 {
4508 pixel_height = min (-XINT (height), INT_MAX - w->pixel_height);
4509 line_height = pixel_height / FRAME_LINE_HEIGHT (f);
4510 }
4511 else
4512 {
4513 line_height = min (-XINT (height),
4514 ((INT_MAX - w->pixel_height)
4515 / FRAME_LINE_HEIGHT (f)));
4516 pixel_height = line_height * FRAME_LINE_HEIGHT (f);
4517 }
4518
4519 /* Grow the mini-window. */
4520 w->pixel_top = r->pixel_top + r->pixel_height;
4521 w->top_line = r->top_line + r->total_lines;
4522 /* Make sure the mini-window has always at least one line. */
4523 w->pixel_height = max (w->pixel_height + pixel_height,
4524 FRAME_LINE_HEIGHT (f));
4525 w->total_lines = max (w->total_lines + line_height, 1);
4526
4527 /* Enforce full redisplay of the frame. */
4528 /* FIXME: Shouldn't window--resize-root-window-vertically do it? */
4529 fset_redisplay (f);
4530 FRAME_WINDOW_SIZES_CHANGED (f) = true;
4531 adjust_frame_glyphs (f);
4532 unblock_input ();
4533 }
4534 }
4535 }
4536
4537 /* Shrink mini-window W to one line. */
4538 void
4539 shrink_mini_window (struct window *w, bool pixelwise)
4540 {
4541 struct frame *f = XFRAME (w->frame);
4542 struct window *r;
4543 Lisp_Object root, delta;
4544 EMACS_INT height, unit;
4545
4546 eassert (MINI_WINDOW_P (w));
4547
4548 height = pixelwise ? w->pixel_height : w->total_lines;
4549 unit = pixelwise ? FRAME_LINE_HEIGHT (f) : 1;
4550 if (height > unit)
4551 {
4552 root = FRAME_ROOT_WINDOW (f);
4553 r = XWINDOW (root);
4554 delta = call3 (Qwindow_resize_root_window_vertically,
4555 root, make_number (height - unit),
4556 pixelwise ? Qt : Qnil);
4557 if (INTEGERP (delta) && window_resize_check (r, false))
4558 {
4559 block_input ();
4560 window_resize_apply (r, false);
4561
4562 /* Shrink the mini-window. */
4563 w->top_line = r->top_line + r->total_lines;
4564 w->total_lines = 1;
4565 w->pixel_top = r->pixel_top + r->pixel_height;
4566 w->pixel_height = FRAME_LINE_HEIGHT (f);
4567 /* Enforce full redisplay of the frame. */
4568 /* FIXME: Shouldn't window--resize-root-window-vertically do it? */
4569 fset_redisplay (f);
4570 FRAME_WINDOW_SIZES_CHANGED (f) = true;
4571 adjust_frame_glyphs (f);
4572 unblock_input ();
4573 }
4574 /* If the above failed for whatever strange reason we must make a
4575 one window frame here. The same routine will be needed when
4576 shrinking the frame (and probably when making the initial
4577 *scratch* window). For the moment leave things as they are. */
4578 }
4579 }
4580
4581 DEFUN ("resize-mini-window-internal", Fresize_mini_window_internal, Sresize_mini_window_internal, 1, 1, 0,
4582 doc: /* Resize minibuffer window WINDOW. */)
4583 (Lisp_Object window)
4584 {
4585 struct window *w = XWINDOW (window);
4586 struct window *r;
4587 struct frame *f;
4588 int height;
4589
4590 CHECK_WINDOW (window);
4591 f = XFRAME (w->frame);
4592
4593 if (!EQ (FRAME_MINIBUF_WINDOW (XFRAME (w->frame)), window))
4594 error ("Not a valid minibuffer window");
4595 else if (FRAME_MINIBUF_ONLY_P (f))
4596 error ("Cannot resize a minibuffer-only frame");
4597
4598 r = XWINDOW (FRAME_ROOT_WINDOW (f));
4599 height = r->pixel_height + w->pixel_height;
4600 if (window_resize_check (r, false)
4601 && XINT (w->new_pixel) > 0
4602 && height == XINT (r->new_pixel) + XINT (w->new_pixel))
4603 {
4604 block_input ();
4605 window_resize_apply (r, false);
4606
4607 w->pixel_height = XFASTINT (w->new_pixel);
4608 w->total_lines = w->pixel_height / FRAME_LINE_HEIGHT (f);
4609 w->pixel_top = r->pixel_top + r->pixel_height;
4610 w->top_line = r->top_line + r->total_lines;
4611
4612 fset_redisplay (f);
4613 FRAME_WINDOW_SIZES_CHANGED (f) = true;
4614 adjust_frame_glyphs (f);
4615 unblock_input ();
4616 return Qt;
4617 }
4618 else
4619 error ("Failed to resize minibuffer window");
4620 }
4621 \f
4622 /* Mark window cursors off for all windows in the window tree rooted
4623 at W by setting their phys_cursor_on_p flag to zero. Called from
4624 xterm.c, e.g. when a frame is cleared and thereby all cursors on
4625 the frame are cleared. */
4626
4627 void
4628 mark_window_cursors_off (struct window *w)
4629 {
4630 while (w)
4631 {
4632 if (WINDOWP (w->contents))
4633 mark_window_cursors_off (XWINDOW (w->contents));
4634 else
4635 w->phys_cursor_on_p = false;
4636
4637 w = NILP (w->next) ? 0 : XWINDOW (w->next);
4638 }
4639 }
4640
4641
4642 /* Return number of lines of text (not counting mode lines) in W. */
4643
4644 int
4645 window_internal_height (struct window *w)
4646 {
4647 int ht = w->total_lines;
4648
4649 if (!MINI_WINDOW_P (w))
4650 {
4651 if (!NILP (w->parent)
4652 || WINDOWP (w->contents)
4653 || !NILP (w->next)
4654 || !NILP (w->prev)
4655 || WINDOW_WANTS_MODELINE_P (w))
4656 --ht;
4657
4658 if (WINDOW_WANTS_HEADER_LINE_P (w))
4659 --ht;
4660 }
4661
4662 return ht;
4663 }
4664
4665 \f
4666 /************************************************************************
4667 Window Scrolling
4668 ***********************************************************************/
4669
4670 /* Scroll contents of window WINDOW up. If WHOLE, scroll
4671 N screen-fulls, which is defined as the height of the window minus
4672 next_screen_context_lines. If WHOLE is zero, scroll up N lines
4673 instead. Negative values of N mean scroll down. NOERROR
4674 means don't signal an error if we try to move over BEGV or ZV,
4675 respectively. */
4676
4677 static void
4678 window_scroll (Lisp_Object window, EMACS_INT n, bool whole, bool noerror)
4679 {
4680 ptrdiff_t count = SPECPDL_INDEX ();
4681
4682 immediate_quit = true;
4683 n = clip_to_bounds (INT_MIN, n, INT_MAX);
4684
4685 wset_redisplay (XWINDOW (window));
4686
4687 if (whole && Vfast_but_imprecise_scrolling)
4688 specbind (Qfontification_functions, Qnil);
4689
4690 /* If we must, use the pixel-based version which is much slower than
4691 the line-based one but can handle varying line heights. */
4692 if (FRAME_WINDOW_P (XFRAME (XWINDOW (window)->frame)))
4693 window_scroll_pixel_based (window, n, whole, noerror);
4694 else
4695 window_scroll_line_based (window, n, whole, noerror);
4696
4697 unbind_to (count, Qnil);
4698
4699 /* Bug#15957. */
4700 XWINDOW (window)->window_end_valid = false;
4701 immediate_quit = false;
4702 }
4703
4704
4705 /* Implementation of window_scroll that works based on pixel line
4706 heights. See the comment of window_scroll for parameter
4707 descriptions. */
4708
4709 static void
4710 window_scroll_pixel_based (Lisp_Object window, int n, bool whole, bool noerror)
4711 {
4712 struct it it;
4713 struct window *w = XWINDOW (window);
4714 struct text_pos start;
4715 int this_scroll_margin;
4716 /* True if we fiddled the window vscroll field without really scrolling. */
4717 bool vscrolled = false;
4718 int x, y, rtop, rbot, rowh, vpos;
4719 void *itdata = NULL;
4720 int window_total_lines;
4721 int frame_line_height = default_line_pixel_height (w);
4722 bool adjust_old_pointm = !NILP (Fequal (Fwindow_point (window),
4723 Fwindow_old_point (window)));
4724
4725 SET_TEXT_POS_FROM_MARKER (start, w->start);
4726 /* Scrolling a minibuffer window via scroll bar when the echo area
4727 shows long text sometimes resets the minibuffer contents behind
4728 our backs. */
4729 if (CHARPOS (start) > ZV)
4730 SET_TEXT_POS (start, BEGV, BEGV_BYTE);
4731
4732 /* If PT is not visible in WINDOW, move back one half of
4733 the screen. Allow PT to be partially visible, otherwise
4734 something like (scroll-down 1) with PT in the line before
4735 the partially visible one would recenter. */
4736
4737 if (!pos_visible_p (w, PT, &x, &y, &rtop, &rbot, &rowh, &vpos))
4738 {
4739 itdata = bidi_shelve_cache ();
4740 /* Move backward half the height of the window. Performance note:
4741 vmotion used here is about 10% faster, but would give wrong
4742 results for variable height lines. */
4743 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4744 it.current_y = it.last_visible_y;
4745 move_it_vertically_backward (&it, window_box_height (w) / 2);
4746
4747 /* The function move_iterator_vertically may move over more than
4748 the specified y-distance. If it->w is small, e.g. a
4749 mini-buffer window, we may end up in front of the window's
4750 display area. Start displaying at the start of the line
4751 containing PT in this case. */
4752 if (it.current_y <= 0)
4753 {
4754 init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID);
4755 move_it_vertically_backward (&it, 0);
4756 it.current_y = 0;
4757 }
4758
4759 start = it.current.pos;
4760 bidi_unshelve_cache (itdata, false);
4761 }
4762 else if (auto_window_vscroll_p)
4763 {
4764 if (rtop || rbot) /* Partially visible. */
4765 {
4766 int px;
4767 int dy = frame_line_height;
4768 /* In the below we divide the window box height by the
4769 frame's line height to make the result predictable when
4770 the window box is not an integral multiple of the line
4771 height. This is important to ensure we get back to the
4772 same position when scrolling up, then down. */
4773 if (whole)
4774 dy = max ((window_box_height (w) / dy
4775 - next_screen_context_lines) * dy,
4776 dy);
4777 dy *= n;
4778
4779 if (n < 0)
4780 {
4781 /* Only vscroll backwards if already vscrolled forwards. */
4782 if (w->vscroll < 0 && rtop > 0)
4783 {
4784 px = max (0, -w->vscroll - min (rtop, -dy));
4785 Fset_window_vscroll (window, make_number (px), Qt);
4786 return;
4787 }
4788 }
4789 if (n > 0)
4790 {
4791 /* Do vscroll if already vscrolled or only display line. */
4792 if (rbot > 0 && (w->vscroll < 0 || vpos == 0))
4793 {
4794 px = max (0, -w->vscroll + min (rbot, dy));
4795 Fset_window_vscroll (window, make_number (px), Qt);
4796 return;
4797 }
4798
4799 /* Maybe modify window start instead of scrolling. */
4800 if (rbot > 0 || w->vscroll < 0)
4801 {
4802 ptrdiff_t spos;
4803
4804 Fset_window_vscroll (window, make_number (0), Qt);
4805 /* If there are other text lines above the current row,
4806 move window start to current row. Else to next row. */
4807 if (rbot > 0)
4808 spos = XINT (Fline_beginning_position (Qnil));
4809 else
4810 spos = min (XINT (Fline_end_position (Qnil)) + 1, ZV);
4811 set_marker_restricted (w->start, make_number (spos),
4812 w->contents);
4813 w->start_at_line_beg = true;
4814 wset_update_mode_line (w);
4815 /* Set force_start so that redisplay_window will run the
4816 window-scroll-functions. */
4817 w->force_start = true;
4818 return;
4819 }
4820 }
4821 }
4822 /* Cancel previous vscroll. */
4823 Fset_window_vscroll (window, make_number (0), Qt);
4824 }
4825
4826 itdata = bidi_shelve_cache ();
4827 /* If scroll_preserve_screen_position is non-nil, we try to set
4828 point in the same window line as it is now, so get that line. */
4829 if (!NILP (Vscroll_preserve_screen_position))
4830 {
4831 /* We preserve the goal pixel coordinate across consecutive
4832 calls to scroll-up, scroll-down and other commands that
4833 have the `scroll-command' property. This avoids the
4834 possibility of point becoming "stuck" on a tall line when
4835 scrolling by one line. */
4836 if (window_scroll_pixel_based_preserve_y < 0
4837 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
4838 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
4839 {
4840 start_display (&it, w, start);
4841 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4842 window_scroll_pixel_based_preserve_y = it.current_y;
4843 window_scroll_pixel_based_preserve_x = it.current_x;
4844 }
4845 }
4846 else
4847 window_scroll_pixel_based_preserve_y
4848 = window_scroll_pixel_based_preserve_x = -1;
4849
4850 /* Move iterator it from start the specified distance forward or
4851 backward. The result is the new window start. */
4852 start_display (&it, w, start);
4853 if (whole)
4854 {
4855 ptrdiff_t start_pos = IT_CHARPOS (it);
4856 int dy = frame_line_height;
4857 /* In the below we divide the window box height by the frame's
4858 line height to make the result predictable when the window
4859 box is not an integral multiple of the line height. This is
4860 important to ensure we get back to the same position when
4861 scrolling up, then down. */
4862 dy = max ((window_box_height (w) / dy - next_screen_context_lines) * dy,
4863 dy) * n;
4864
4865 /* Note that move_it_vertically always moves the iterator to the
4866 start of a line. So, if the last line doesn't have a newline,
4867 we would end up at the start of the line ending at ZV. */
4868 if (dy <= 0)
4869 {
4870 move_it_vertically_backward (&it, -dy);
4871 /* Ensure we actually do move, e.g. in case we are currently
4872 looking at an image that is taller that the window height. */
4873 while (start_pos == IT_CHARPOS (it)
4874 && start_pos > BEGV)
4875 move_it_by_lines (&it, -1);
4876 }
4877 else if (dy > 0)
4878 {
4879 move_it_to (&it, ZV, -1, it.current_y + dy, -1,
4880 MOVE_TO_POS | MOVE_TO_Y);
4881 /* Ensure we actually do move, e.g. in case we are currently
4882 looking at an image that is taller that the window height. */
4883 while (start_pos == IT_CHARPOS (it)
4884 && start_pos < ZV)
4885 move_it_by_lines (&it, 1);
4886 }
4887 }
4888 else
4889 move_it_by_lines (&it, n);
4890
4891 /* We failed if we find ZV is already on the screen (scrolling up,
4892 means there's nothing past the end), or if we can't start any
4893 earlier (scrolling down, means there's nothing past the top). */
4894 if ((n > 0 && IT_CHARPOS (it) == ZV)
4895 || (n < 0 && IT_CHARPOS (it) == CHARPOS (start)))
4896 {
4897 if (IT_CHARPOS (it) == ZV)
4898 {
4899 if (it.current_y < it.last_visible_y
4900 && (it.current_y + it.max_ascent + it.max_descent
4901 > it.last_visible_y))
4902 {
4903 /* The last line was only partially visible, make it fully
4904 visible. */
4905 w->vscroll = (it.last_visible_y
4906 - it.current_y + it.max_ascent + it.max_descent);
4907 adjust_frame_glyphs (it.f);
4908 }
4909 else
4910 {
4911 bidi_unshelve_cache (itdata, false);
4912 if (noerror)
4913 return;
4914 else if (n < 0) /* could happen with empty buffers */
4915 xsignal0 (Qbeginning_of_buffer);
4916 else
4917 xsignal0 (Qend_of_buffer);
4918 }
4919 }
4920 else
4921 {
4922 if (w->vscroll != 0)
4923 /* The first line was only partially visible, make it fully
4924 visible. */
4925 w->vscroll = 0;
4926 else
4927 {
4928 bidi_unshelve_cache (itdata, false);
4929 if (noerror)
4930 return;
4931 else
4932 xsignal0 (Qbeginning_of_buffer);
4933 }
4934 }
4935
4936 /* If control gets here, then we vscrolled. */
4937
4938 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = true;
4939
4940 /* Don't try to change the window start below. */
4941 vscrolled = true;
4942 }
4943
4944 if (! vscrolled)
4945 {
4946 ptrdiff_t pos = IT_CHARPOS (it);
4947 ptrdiff_t bytepos;
4948
4949 /* If in the middle of a multi-glyph character move forward to
4950 the next character. */
4951 if (in_display_vector_p (&it))
4952 {
4953 ++pos;
4954 move_it_to (&it, pos, -1, -1, -1, MOVE_TO_POS);
4955 }
4956
4957 /* Set the window start, and set up the window for redisplay. */
4958 set_marker_restricted_both (w->start, w->contents, IT_CHARPOS (it),
4959 IT_BYTEPOS (it));
4960 bytepos = marker_byte_position (w->start);
4961 w->start_at_line_beg = (pos == BEGV || FETCH_BYTE (bytepos - 1) == '\n');
4962 wset_update_mode_line (w);
4963 /* Set force_start so that redisplay_window will run the
4964 window-scroll-functions. */
4965 w->force_start = true;
4966 }
4967
4968 /* The rest of this function uses current_y in a nonstandard way,
4969 not including the height of the header line if any. */
4970 it.current_y = it.vpos = 0;
4971
4972 /* Move PT out of scroll margins.
4973 This code wants current_y to be zero at the window start position
4974 even if there is a header line. */
4975 window_total_lines
4976 = w->total_lines * WINDOW_FRAME_LINE_HEIGHT (w) / frame_line_height;
4977 this_scroll_margin = max (0, scroll_margin);
4978 this_scroll_margin
4979 = min (this_scroll_margin, window_total_lines / 4);
4980 this_scroll_margin *= frame_line_height;
4981
4982 if (n > 0)
4983 {
4984 int last_y = it.last_visible_y - this_scroll_margin - 1;
4985
4986 /* We moved the window start towards ZV, so PT may be now
4987 in the scroll margin at the top. */
4988 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
4989 if (IT_CHARPOS (it) == PT
4990 && it.current_y >= this_scroll_margin
4991 && it.current_y <= last_y - WINDOW_HEADER_LINE_HEIGHT (w)
4992 && (NILP (Vscroll_preserve_screen_position)
4993 || EQ (Vscroll_preserve_screen_position, Qt)))
4994 /* We found PT at a legitimate height. Leave it alone. */
4995 ;
4996 else
4997 {
4998 if (window_scroll_pixel_based_preserve_y >= 0)
4999 {
5000 /* Don't enter the scroll margin at the end of the window. */
5001 int goal_y = min (last_y, window_scroll_pixel_based_preserve_y);
5002
5003 /* If we have a header line, take account of it. This
5004 is necessary because we set it.current_y to 0, above. */
5005 move_it_to (&it, -1,
5006 window_scroll_pixel_based_preserve_x,
5007 goal_y - WINDOW_HEADER_LINE_HEIGHT (w),
5008 -1, MOVE_TO_Y | MOVE_TO_X);
5009 }
5010
5011 /* Get out of the scroll margin at the top of the window. */
5012 while (it.current_y < this_scroll_margin)
5013 {
5014 int prev = it.current_y;
5015 move_it_by_lines (&it, 1);
5016 if (prev == it.current_y)
5017 break;
5018 }
5019 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5020 }
5021 }
5022 else if (n < 0)
5023 {
5024 ptrdiff_t charpos, bytepos;
5025 bool partial_p;
5026
5027 /* Save our position, for the
5028 window_scroll_pixel_based_preserve_y case. */
5029 charpos = IT_CHARPOS (it);
5030 bytepos = IT_BYTEPOS (it);
5031
5032 /* We moved the window start towards BEGV, so PT may be now
5033 in the scroll margin at the bottom. */
5034 move_it_to (&it, PT, -1,
5035 (it.last_visible_y - WINDOW_HEADER_LINE_HEIGHT (w)
5036 - this_scroll_margin - 1),
5037 -1,
5038 MOVE_TO_POS | MOVE_TO_Y);
5039
5040 /* Save our position, in case it's correct. */
5041 charpos = IT_CHARPOS (it);
5042 bytepos = IT_BYTEPOS (it);
5043
5044 /* If PT is in the screen line at the last fully visible line,
5045 move_it_to will stop at X = 0 in that line, because the
5046 required Y coordinate is reached there. See if we can get to
5047 PT without descending lower in Y, and if we can, it means we
5048 reached PT before the scroll margin. */
5049 if (charpos != PT)
5050 {
5051 struct it it2;
5052 void *it_data;
5053
5054 it2 = it;
5055 it_data = bidi_shelve_cache ();
5056 move_it_to (&it, PT, -1, -1, -1, MOVE_TO_POS);
5057 if (IT_CHARPOS (it) == PT && it.current_y == it2.current_y)
5058 {
5059 charpos = IT_CHARPOS (it);
5060 bytepos = IT_BYTEPOS (it);
5061 bidi_unshelve_cache (it_data, true);
5062 }
5063 else
5064 {
5065 it = it2;
5066 bidi_unshelve_cache (it_data, false);
5067 }
5068 }
5069
5070 /* See if point is on a partially visible line at the end. */
5071 if (it.what == IT_EOB)
5072 partial_p = it.current_y + it.ascent + it.descent > it.last_visible_y;
5073 else
5074 {
5075 move_it_by_lines (&it, 1);
5076 partial_p = it.current_y > it.last_visible_y;
5077 }
5078
5079 if (charpos == PT && !partial_p
5080 && (NILP (Vscroll_preserve_screen_position)
5081 || EQ (Vscroll_preserve_screen_position, Qt)))
5082 /* We found PT before we found the display margin, so PT is ok. */
5083 ;
5084 else if (window_scroll_pixel_based_preserve_y >= 0)
5085 {
5086 int goal_y = min (it.last_visible_y - this_scroll_margin - 1,
5087 window_scroll_pixel_based_preserve_y);
5088
5089 /* Don't let the preserved screen Y coordinate put us inside
5090 any of the two margins. */
5091 if (goal_y < this_scroll_margin)
5092 goal_y = this_scroll_margin;
5093 SET_TEXT_POS_FROM_MARKER (start, w->start);
5094 start_display (&it, w, start);
5095 /* It would be wrong to subtract CURRENT_HEADER_LINE_HEIGHT
5096 here because we called start_display again and did not
5097 alter it.current_y this time. */
5098 move_it_to (&it, -1, window_scroll_pixel_based_preserve_x,
5099 goal_y, -1, MOVE_TO_Y | MOVE_TO_X);
5100 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5101 }
5102 else
5103 {
5104 if (partial_p)
5105 /* The last line was only partially visible, so back up two
5106 lines to make sure we're on a fully visible line. */
5107 {
5108 move_it_by_lines (&it, -2);
5109 SET_PT_BOTH (IT_CHARPOS (it), IT_BYTEPOS (it));
5110 }
5111 else
5112 /* No, the position we saved is OK, so use it. */
5113 SET_PT_BOTH (charpos, bytepos);
5114 }
5115 }
5116 bidi_unshelve_cache (itdata, false);
5117
5118 if (adjust_old_pointm)
5119 Fset_marker (w->old_pointm,
5120 ((w == XWINDOW (selected_window))
5121 ? make_number (BUF_PT (XBUFFER (w->contents)))
5122 : Fmarker_position (w->pointm)),
5123 w->contents);
5124 }
5125
5126
5127 /* Implementation of window_scroll that works based on screen lines.
5128 See the comment of window_scroll for parameter descriptions. */
5129
5130 static void
5131 window_scroll_line_based (Lisp_Object window, int n, bool whole, bool noerror)
5132 {
5133 struct window *w = XWINDOW (window);
5134 /* Fvertical_motion enters redisplay, which can trigger
5135 fontification, which in turn can modify buffer text (e.g., if the
5136 fontification functions replace escape sequences with faces, as
5137 in `grep-mode-font-lock-keywords'). So we use a marker to record
5138 the old point position, to prevent crashes in SET_PT_BOTH. */
5139 Lisp_Object opoint_marker = Fpoint_marker ();
5140 register ptrdiff_t pos, pos_byte;
5141 register int ht = window_internal_height (w);
5142 register Lisp_Object tem;
5143 bool lose;
5144 Lisp_Object bolp;
5145 ptrdiff_t startpos = marker_position (w->start);
5146 ptrdiff_t startbyte = marker_byte_position (w->start);
5147 Lisp_Object original_pos = Qnil;
5148 bool adjust_old_pointm = !NILP (Fequal (Fwindow_point (window),
5149 Fwindow_old_point (window)));
5150
5151 /* If scrolling screen-fulls, compute the number of lines to
5152 scroll from the window's height. */
5153 if (whole)
5154 n *= max (1, ht - next_screen_context_lines);
5155
5156 if (!NILP (Vscroll_preserve_screen_position))
5157 {
5158 if (window_scroll_preserve_vpos <= 0
5159 || !SYMBOLP (KVAR (current_kboard, Vlast_command))
5160 || NILP (Fget (KVAR (current_kboard, Vlast_command), Qscroll_command)))
5161 {
5162 struct position posit
5163 = *compute_motion (startpos, startbyte, 0, 0, false,
5164 PT, ht, 0, -1, w->hscroll, 0, w);
5165
5166 window_scroll_preserve_vpos = posit.vpos;
5167 window_scroll_preserve_hpos = posit.hpos + w->hscroll;
5168 }
5169
5170 original_pos = Fcons (make_number (window_scroll_preserve_hpos),
5171 make_number (window_scroll_preserve_vpos));
5172 }
5173
5174 XSETFASTINT (tem, PT);
5175 tem = Fpos_visible_in_window_p (tem, window, Qnil);
5176
5177 if (NILP (tem))
5178 {
5179 Fvertical_motion (make_number (- (ht / 2)), window, Qnil);
5180 startpos = PT;
5181 startbyte = PT_BYTE;
5182 }
5183
5184 SET_PT_BOTH (startpos, startbyte);
5185 lose = n < 0 && PT == BEGV;
5186 Fvertical_motion (make_number (n), window, Qnil);
5187 pos = PT;
5188 pos_byte = PT_BYTE;
5189 bolp = Fbolp ();
5190 SET_PT_BOTH (marker_position (opoint_marker),
5191 marker_byte_position (opoint_marker));
5192
5193 if (lose)
5194 {
5195 if (noerror)
5196 return;
5197 else
5198 xsignal0 (Qbeginning_of_buffer);
5199 }
5200
5201 if (pos < ZV)
5202 {
5203 /* Don't use a scroll margin that is negative or too large. */
5204 int this_scroll_margin =
5205 max (0, min (scroll_margin, w->total_lines / 4));
5206
5207 set_marker_restricted_both (w->start, w->contents, pos, pos_byte);
5208 w->start_at_line_beg = !NILP (bolp);
5209 wset_update_mode_line (w);
5210 /* Set force_start so that redisplay_window will run
5211 the window-scroll-functions. */
5212 w->force_start = true;
5213
5214 if (!NILP (Vscroll_preserve_screen_position)
5215 && this_scroll_margin == 0
5216 && (whole || !EQ (Vscroll_preserve_screen_position, Qt)))
5217 {
5218 SET_PT_BOTH (pos, pos_byte);
5219 Fvertical_motion (original_pos, window, Qnil);
5220 }
5221 /* If we scrolled forward, put point enough lines down
5222 that it is outside the scroll margin. */
5223 else if (n > 0)
5224 {
5225 int top_margin;
5226
5227 if (this_scroll_margin > 0)
5228 {
5229 SET_PT_BOTH (pos, pos_byte);
5230 Fvertical_motion (make_number (this_scroll_margin), window, Qnil);
5231 top_margin = PT;
5232 }
5233 else
5234 top_margin = pos;
5235
5236 if (top_margin <= marker_position (opoint_marker))
5237 SET_PT_BOTH (marker_position (opoint_marker),
5238 marker_byte_position (opoint_marker));
5239 else if (!NILP (Vscroll_preserve_screen_position))
5240 {
5241 int nlines = window_scroll_preserve_vpos;
5242
5243 SET_PT_BOTH (pos, pos_byte);
5244 if (window_scroll_preserve_vpos < this_scroll_margin)
5245 nlines = this_scroll_margin;
5246 else if (window_scroll_preserve_vpos
5247 >= w->total_lines - this_scroll_margin)
5248 nlines = w->total_lines - this_scroll_margin - 1;
5249 Fvertical_motion (Fcons (make_number (window_scroll_preserve_hpos),
5250 make_number (nlines)), window, Qnil);
5251 }
5252 else
5253 SET_PT (top_margin);
5254 }
5255 else if (n < 0)
5256 {
5257 int bottom_margin;
5258
5259 /* If we scrolled backward, put point near the end of the window
5260 but not within the scroll margin. */
5261 SET_PT_BOTH (pos, pos_byte);
5262 tem = Fvertical_motion (make_number (ht - this_scroll_margin), window,
5263 Qnil);
5264 if (XFASTINT (tem) == ht - this_scroll_margin)
5265 bottom_margin = PT;
5266 else
5267 bottom_margin = PT + 1;
5268
5269 if (bottom_margin > marker_position (opoint_marker))
5270 SET_PT_BOTH (marker_position (opoint_marker),
5271 marker_byte_position (opoint_marker));
5272 else
5273 {
5274 if (!NILP (Vscroll_preserve_screen_position))
5275 {
5276 int nlines = window_scroll_preserve_vpos;
5277
5278 SET_PT_BOTH (pos, pos_byte);
5279 if (window_scroll_preserve_vpos < this_scroll_margin)
5280 nlines = this_scroll_margin;
5281 else if (window_scroll_preserve_vpos
5282 >= ht - this_scroll_margin)
5283 nlines = ht - this_scroll_margin - 1;
5284 Fvertical_motion (Fcons (make_number (window_scroll_preserve_hpos),
5285 make_number (nlines)), window, Qnil);
5286 }
5287 else
5288 Fvertical_motion (make_number (-1), window, Qnil);
5289 }
5290 }
5291 }
5292 else
5293 {
5294 if (noerror)
5295 return;
5296 else
5297 xsignal0 (Qend_of_buffer);
5298 }
5299
5300 if (adjust_old_pointm)
5301 Fset_marker (w->old_pointm,
5302 ((w == XWINDOW (selected_window))
5303 ? make_number (BUF_PT (XBUFFER (w->contents)))
5304 : Fmarker_position (w->pointm)),
5305 w->contents);
5306 }
5307
5308
5309 /* Scroll selected_window up or down. If N is nil, scroll a
5310 screen-full which is defined as the height of the window minus
5311 next_screen_context_lines. If N is the symbol `-', scroll.
5312 DIRECTION may be 1 meaning to scroll down, or -1 meaning to scroll
5313 up. This is the guts of Fscroll_up and Fscroll_down. */
5314
5315 static void
5316 scroll_command (Lisp_Object n, int direction)
5317 {
5318 ptrdiff_t count = SPECPDL_INDEX ();
5319
5320 eassert (eabs (direction) == 1);
5321
5322 /* If selected window's buffer isn't current, make it current for
5323 the moment. But don't screw up if window_scroll gets an error. */
5324 if (XBUFFER (XWINDOW (selected_window)->contents) != current_buffer)
5325 {
5326 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5327 Fset_buffer (XWINDOW (selected_window)->contents);
5328 }
5329
5330 if (NILP (n))
5331 window_scroll (selected_window, direction, true, false);
5332 else if (EQ (n, Qminus))
5333 window_scroll (selected_window, -direction, true, false);
5334 else
5335 {
5336 n = Fprefix_numeric_value (n);
5337 window_scroll (selected_window, XINT (n) * direction, false, false);
5338 }
5339
5340 unbind_to (count, Qnil);
5341 }
5342
5343 DEFUN ("scroll-up", Fscroll_up, Sscroll_up, 0, 1, "^P",
5344 doc: /* Scroll text of selected window upward ARG lines.
5345 If ARG is omitted or nil, scroll upward by a near full screen.
5346 A near full screen is `next-screen-context-lines' less than a full screen.
5347 Negative ARG means scroll downward.
5348 If ARG is the atom `-', scroll downward by nearly full screen.
5349 When calling from a program, supply as argument a number, nil, or `-'. */)
5350 (Lisp_Object arg)
5351 {
5352 scroll_command (arg, 1);
5353 return Qnil;
5354 }
5355
5356 DEFUN ("scroll-down", Fscroll_down, Sscroll_down, 0, 1, "^P",
5357 doc: /* Scroll text of selected window down ARG lines.
5358 If ARG is omitted or nil, scroll down by a near full screen.
5359 A near full screen is `next-screen-context-lines' less than a full screen.
5360 Negative ARG means scroll upward.
5361 If ARG is the atom `-', scroll upward by nearly full screen.
5362 When calling from a program, supply as argument a number, nil, or `-'. */)
5363 (Lisp_Object arg)
5364 {
5365 scroll_command (arg, -1);
5366 return Qnil;
5367 }
5368 \f
5369 DEFUN ("other-window-for-scrolling", Fother_window_for_scrolling, Sother_window_for_scrolling, 0, 0, 0,
5370 doc: /* Return the other window for \"other window scroll\" commands.
5371 If `other-window-scroll-buffer' is non-nil, a window
5372 showing that buffer is used.
5373 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5374 specifies the window. This takes precedence over
5375 `other-window-scroll-buffer'. */)
5376 (void)
5377 {
5378 Lisp_Object window;
5379
5380 if (MINI_WINDOW_P (XWINDOW (selected_window))
5381 && !NILP (Vminibuf_scroll_window))
5382 window = Vminibuf_scroll_window;
5383 /* If buffer is specified and live, scroll that buffer. */
5384 else if (!NILP (Vother_window_scroll_buffer)
5385 && BUFFERP (Vother_window_scroll_buffer)
5386 && BUFFER_LIVE_P (XBUFFER (Vother_window_scroll_buffer)))
5387 {
5388 window = Fget_buffer_window (Vother_window_scroll_buffer, Qnil);
5389 if (NILP (window))
5390 window = display_buffer (Vother_window_scroll_buffer, Qt, Qnil);
5391 }
5392 else
5393 {
5394 /* Nothing specified; look for a neighboring window on the same
5395 frame. */
5396 window = Fnext_window (selected_window, Qnil, Qnil);
5397
5398 if (EQ (window, selected_window))
5399 /* That didn't get us anywhere; look for a window on another
5400 visible frame. */
5401 do
5402 window = Fnext_window (window, Qnil, Qt);
5403 while (! FRAME_VISIBLE_P (XFRAME (WINDOW_FRAME (XWINDOW (window))))
5404 && ! EQ (window, selected_window));
5405 }
5406
5407 CHECK_LIVE_WINDOW (window);
5408
5409 if (EQ (window, selected_window))
5410 error ("There is no other window");
5411
5412 return window;
5413 }
5414
5415 DEFUN ("scroll-other-window", Fscroll_other_window, Sscroll_other_window, 0, 1, "P",
5416 doc: /* Scroll next window upward ARG lines; or near full screen if no ARG.
5417 A near full screen is `next-screen-context-lines' less than a full screen.
5418 The next window is the one below the current one; or the one at the top
5419 if the current one is at the bottom. Negative ARG means scroll downward.
5420 If ARG is the atom `-', scroll downward by nearly full screen.
5421 When calling from a program, supply as argument a number, nil, or `-'.
5422
5423 If `other-window-scroll-buffer' is non-nil, scroll the window
5424 showing that buffer, popping the buffer up if necessary.
5425 If in the minibuffer, `minibuffer-scroll-window' if non-nil
5426 specifies the window to scroll. This takes precedence over
5427 `other-window-scroll-buffer'. */)
5428 (Lisp_Object arg)
5429 {
5430 Lisp_Object window;
5431 struct window *w;
5432 ptrdiff_t count = SPECPDL_INDEX ();
5433
5434 window = Fother_window_for_scrolling ();
5435 w = XWINDOW (window);
5436
5437 /* Don't screw up if window_scroll gets an error. */
5438 record_unwind_protect (save_excursion_restore, save_excursion_save ());
5439
5440 Fset_buffer (w->contents);
5441 SET_PT_BOTH (marker_position (w->pointm), marker_byte_position (w->pointm));
5442 SET_PT_BOTH (marker_position (w->old_pointm), marker_byte_position (w->old_pointm));
5443
5444 if (NILP (arg))
5445 window_scroll (window, 1, true, true);
5446 else if (EQ (arg, Qminus))
5447 window_scroll (window, -1, true, true);
5448 else
5449 {
5450 if (CONSP (arg))
5451 arg = XCAR (arg);
5452 CHECK_NUMBER (arg);
5453 window_scroll (window, XINT (arg), false, true);
5454 }
5455
5456 set_marker_both (w->pointm, Qnil, PT, PT_BYTE);
5457 set_marker_both (w->old_pointm, Qnil, PT, PT_BYTE);
5458 unbind_to (count, Qnil);
5459
5460 return Qnil;
5461 }
5462 \f
5463 DEFUN ("scroll-left", Fscroll_left, Sscroll_left, 0, 2, "^P\np",
5464 doc: /* Scroll selected window display ARG columns left.
5465 Default for ARG is window width minus 2.
5466 Value is the total amount of leftward horizontal scrolling in
5467 effect after the change.
5468 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5469 lower bound for automatic scrolling, i.e. automatic scrolling
5470 will not scroll a window to a column less than the value returned
5471 by this function. This happens in an interactive call. */)
5472 (register Lisp_Object arg, Lisp_Object set_minimum)
5473 {
5474 struct window *w = XWINDOW (selected_window);
5475 EMACS_INT requested_arg = (NILP (arg)
5476 ? window_body_width (w, 0) - 2
5477 : XINT (Fprefix_numeric_value (arg)));
5478 Lisp_Object result = set_window_hscroll (w, w->hscroll + requested_arg);
5479
5480 if (!NILP (set_minimum))
5481 w->min_hscroll = w->hscroll;
5482
5483 w->suspend_auto_hscroll = true;
5484
5485 return result;
5486 }
5487
5488 DEFUN ("scroll-right", Fscroll_right, Sscroll_right, 0, 2, "^P\np",
5489 doc: /* Scroll selected window display ARG columns right.
5490 Default for ARG is window width minus 2.
5491 Value is the total amount of leftward horizontal scrolling in
5492 effect after the change.
5493 If SET-MINIMUM is non-nil, the new scroll amount becomes the
5494 lower bound for automatic scrolling, i.e. automatic scrolling
5495 will not scroll a window to a column less than the value returned
5496 by this function. This happens in an interactive call. */)
5497 (register Lisp_Object arg, Lisp_Object set_minimum)
5498 {
5499 struct window *w = XWINDOW (selected_window);
5500 EMACS_INT requested_arg = (NILP (arg)
5501 ? window_body_width (w, 0) - 2
5502 : XINT (Fprefix_numeric_value (arg)));
5503 Lisp_Object result = set_window_hscroll (w, w->hscroll - requested_arg);
5504
5505 if (!NILP (set_minimum))
5506 w->min_hscroll = w->hscroll;
5507
5508 w->suspend_auto_hscroll = true;
5509
5510 return result;
5511 }
5512
5513 DEFUN ("minibuffer-selected-window", Fminibuffer_selected_window, Sminibuffer_selected_window, 0, 0, 0,
5514 doc: /* Return the window which was selected when entering the minibuffer.
5515 Returns nil, if selected window is not a minibuffer window. */)
5516 (void)
5517 {
5518 if (minibuf_level > 0
5519 && MINI_WINDOW_P (XWINDOW (selected_window))
5520 && WINDOW_LIVE_P (minibuf_selected_window))
5521 return minibuf_selected_window;
5522
5523 return Qnil;
5524 }
5525
5526 /* Value is the number of lines actually displayed in window W,
5527 as opposed to its height. */
5528
5529 static int
5530 displayed_window_lines (struct window *w)
5531 {
5532 struct it it;
5533 struct text_pos start;
5534 int height = window_box_height (w);
5535 struct buffer *old_buffer;
5536 int bottom_y;
5537 void *itdata = NULL;
5538
5539 if (XBUFFER (w->contents) != current_buffer)
5540 {
5541 old_buffer = current_buffer;
5542 set_buffer_internal (XBUFFER (w->contents));
5543 }
5544 else
5545 old_buffer = NULL;
5546
5547 /* In case W->start is out of the accessible range, do something
5548 reasonable. This happens in Info mode when Info-scroll-down
5549 calls (recenter -1) while W->start is 1. */
5550 CLIP_TEXT_POS_FROM_MARKER (start, w->start);
5551
5552 itdata = bidi_shelve_cache ();
5553 start_display (&it, w, start);
5554 move_it_vertically (&it, height);
5555 bottom_y = line_bottom_y (&it);
5556 bidi_unshelve_cache (itdata, false);
5557
5558 /* rms: On a non-window display,
5559 the value of it.vpos at the bottom of the screen
5560 seems to be 1 larger than window_box_height (w).
5561 This kludge fixes a bug whereby (move-to-window-line -1)
5562 when ZV is on the last screen line
5563 moves to the previous screen line instead of the last one. */
5564 if (! FRAME_WINDOW_P (XFRAME (w->frame)))
5565 height++;
5566
5567 /* Add in empty lines at the bottom of the window. */
5568 if (bottom_y < height)
5569 {
5570 int uy = FRAME_LINE_HEIGHT (it.f);
5571 it.vpos += (height - bottom_y + uy - 1) / uy;
5572 }
5573
5574 if (old_buffer)
5575 set_buffer_internal (old_buffer);
5576
5577 return it.vpos;
5578 }
5579
5580
5581 DEFUN ("recenter", Frecenter, Srecenter, 0, 1, "P",
5582 doc: /* Center point in selected window and maybe redisplay frame.
5583 With a numeric prefix argument ARG, recenter putting point on screen line ARG
5584 relative to the selected window. If ARG is negative, it counts up from the
5585 bottom of the window. (ARG should be less than the height of the window.)
5586
5587 If ARG is omitted or nil, then recenter with point on the middle line of
5588 the selected window; if the variable `recenter-redisplay' is non-nil,
5589 also erase the entire frame and redraw it (when `auto-resize-tool-bars'
5590 is set to `grow-only', this resets the tool-bar's height to the minimum
5591 height needed); if `recenter-redisplay' has the special value `tty',
5592 then only tty frames are redrawn.
5593
5594 Just C-u as prefix means put point in the center of the window
5595 and redisplay normally--don't erase and redraw the frame. */)
5596 (register Lisp_Object arg)
5597 {
5598 struct window *w = XWINDOW (selected_window);
5599 struct buffer *buf = XBUFFER (w->contents);
5600 bool center_p = false;
5601 ptrdiff_t charpos, bytepos;
5602 EMACS_INT iarg IF_LINT (= 0);
5603 int this_scroll_margin;
5604
5605 if (buf != current_buffer)
5606 error ("`recenter'ing a window that does not display current-buffer.");
5607
5608 /* If redisplay is suppressed due to an error, try again. */
5609 buf->display_error_modiff = 0;
5610
5611 if (NILP (arg))
5612 {
5613 if (!NILP (Vrecenter_redisplay)
5614 && (!EQ (Vrecenter_redisplay, Qtty)
5615 || !NILP (Ftty_type (selected_frame))))
5616 {
5617 ptrdiff_t i;
5618
5619 /* Invalidate pixel data calculated for all compositions. */
5620 for (i = 0; i < n_compositions; i++)
5621 composition_table[i]->font = NULL;
5622 #if defined (HAVE_WINDOW_SYSTEM) && ! defined (USE_GTK) && ! defined (HAVE_NS)
5623 WINDOW_XFRAME (w)->minimize_tool_bar_window_p = 1;
5624 #endif
5625 Fredraw_frame (WINDOW_FRAME (w));
5626 SET_FRAME_GARBAGED (WINDOW_XFRAME (w));
5627 }
5628
5629 center_p = true;
5630 }
5631 else if (CONSP (arg)) /* Just C-u. */
5632 center_p = true;
5633 else
5634 {
5635 arg = Fprefix_numeric_value (arg);
5636 CHECK_NUMBER (arg);
5637 iarg = XINT (arg);
5638 }
5639
5640 /* Do this after making BUF current
5641 in case scroll_margin is buffer-local. */
5642 this_scroll_margin
5643 = max (0, min (scroll_margin, w->total_lines / 4));
5644
5645 /* Don't use redisplay code for initial frames, as the necessary
5646 data structures might not be set up yet then. */
5647 if (!FRAME_INITIAL_P (XFRAME (w->frame)))
5648 {
5649 if (center_p)
5650 {
5651 struct it it;
5652 struct text_pos pt;
5653 void *itdata = bidi_shelve_cache ();
5654
5655 SET_TEXT_POS (pt, PT, PT_BYTE);
5656 start_display (&it, w, pt);
5657 move_it_vertically_backward (&it, window_box_height (w) / 2);
5658 charpos = IT_CHARPOS (it);
5659 bytepos = IT_BYTEPOS (it);
5660 bidi_unshelve_cache (itdata, false);
5661 }
5662 else if (iarg < 0)
5663 {
5664 struct it it;
5665 struct text_pos pt;
5666 ptrdiff_t nlines = min (PTRDIFF_MAX, -iarg);
5667 int extra_line_spacing;
5668 int h = window_box_height (w);
5669 int ht = window_internal_height (w);
5670 void *itdata = bidi_shelve_cache ();
5671
5672 nlines = clip_to_bounds (this_scroll_margin + 1, nlines,
5673 ht - this_scroll_margin);
5674
5675 SET_TEXT_POS (pt, PT, PT_BYTE);
5676 start_display (&it, w, pt);
5677
5678 /* Be sure we have the exact height of the full line containing PT. */
5679 move_it_by_lines (&it, 0);
5680
5681 /* The amount of pixels we have to move back is the window
5682 height minus what's displayed in the line containing PT,
5683 and the lines below. */
5684 it.current_y = 0;
5685 it.vpos = 0;
5686 move_it_by_lines (&it, nlines);
5687
5688 if (it.vpos == nlines)
5689 h -= it.current_y;
5690 else
5691 {
5692 /* Last line has no newline. */
5693 h -= line_bottom_y (&it);
5694 it.vpos++;
5695 }
5696
5697 /* Don't reserve space for extra line spacing of last line. */
5698 extra_line_spacing = it.max_extra_line_spacing;
5699
5700 /* If we can't move down NLINES lines because we hit
5701 the end of the buffer, count in some empty lines. */
5702 if (it.vpos < nlines)
5703 {
5704 nlines -= it.vpos;
5705 extra_line_spacing = it.extra_line_spacing;
5706 h -= nlines * (FRAME_LINE_HEIGHT (it.f) + extra_line_spacing);
5707 }
5708 if (h <= 0)
5709 {
5710 bidi_unshelve_cache (itdata, false);
5711 return Qnil;
5712 }
5713
5714 /* Now find the new top line (starting position) of the window. */
5715 start_display (&it, w, pt);
5716 it.current_y = 0;
5717 move_it_vertically_backward (&it, h);
5718
5719 /* If extra line spacing is present, we may move too far
5720 back. This causes the last line to be only partially
5721 visible (which triggers redisplay to recenter that line
5722 in the middle), so move forward.
5723 But ignore extra line spacing on last line, as it is not
5724 considered to be part of the visible height of the line.
5725 */
5726 h += extra_line_spacing;
5727 while (-it.current_y > h)
5728 move_it_by_lines (&it, 1);
5729
5730 charpos = IT_CHARPOS (it);
5731 bytepos = IT_BYTEPOS (it);
5732
5733 bidi_unshelve_cache (itdata, false);
5734 }
5735 else
5736 {
5737 struct it it;
5738 struct text_pos pt;
5739 ptrdiff_t nlines = min (PTRDIFF_MAX, iarg);
5740 int ht = window_internal_height (w);
5741 void *itdata = bidi_shelve_cache ();
5742
5743 nlines = clip_to_bounds (this_scroll_margin, nlines,
5744 ht - this_scroll_margin - 1);
5745
5746 SET_TEXT_POS (pt, PT, PT_BYTE);
5747 start_display (&it, w, pt);
5748
5749 /* Move to the beginning of screen line containing PT. */
5750 move_it_by_lines (&it, 0);
5751
5752 /* Move back to find the point which is ARG screen lines above PT. */
5753 if (nlines > 0)
5754 {
5755 it.current_y = 0;
5756 it.vpos = 0;
5757 move_it_by_lines (&it, -nlines);
5758 }
5759
5760 charpos = IT_CHARPOS (it);
5761 bytepos = IT_BYTEPOS (it);
5762
5763 bidi_unshelve_cache (itdata, false);
5764 }
5765 }
5766 else
5767 {
5768 struct position pos;
5769 int ht = window_internal_height (w);
5770
5771 if (center_p)
5772 iarg = ht / 2;
5773 else if (iarg < 0)
5774 iarg += ht;
5775
5776 /* Don't let it get into the margin at either top or bottom. */
5777 iarg = clip_to_bounds (this_scroll_margin, iarg,
5778 ht - this_scroll_margin - 1);
5779
5780 pos = *vmotion (PT, PT_BYTE, - iarg, w);
5781 charpos = pos.bufpos;
5782 bytepos = pos.bytepos;
5783 }
5784
5785 /* Set the new window start. */
5786 set_marker_both (w->start, w->contents, charpos, bytepos);
5787 w->window_end_valid = false;
5788
5789 w->optional_new_start = true;
5790
5791 w->start_at_line_beg = (bytepos == BEGV_BYTE
5792 || FETCH_BYTE (bytepos - 1) == '\n');
5793
5794 wset_redisplay (w);
5795
5796 return Qnil;
5797 }
5798
5799 DEFUN ("window-text-width", Fwindow_text_width, Swindow_text_width,
5800 0, 2, 0,
5801 doc: /* Return the width in columns of the text display area of WINDOW.
5802 WINDOW must be a live window and defaults to the selected one.
5803
5804 The returned width does not include dividers, scrollbars, margins,
5805 fringes, nor any partial-width columns at the right of the text
5806 area.
5807
5808 Optional argument PIXELWISE non-nil, means to return the width in
5809 pixels. */)
5810 (Lisp_Object window, Lisp_Object pixelwise)
5811 {
5812 struct window *w = decode_live_window (window);
5813
5814 if (NILP (pixelwise))
5815 return make_number (window_box_width (w, TEXT_AREA)
5816 / FRAME_COLUMN_WIDTH (WINDOW_XFRAME (w)));
5817 else
5818 return make_number (window_box_width (w, TEXT_AREA));
5819 }
5820
5821 DEFUN ("window-text-height", Fwindow_text_height, Swindow_text_height,
5822 0, 2, 0,
5823 doc: /* Return the height in lines of the text display area of WINDOW.
5824 WINDOW must be a live window and defaults to the selected one.
5825
5826 The returned height does not include dividers, the mode line, any header
5827 line, nor any partial-height lines at the bottom of the text area.
5828
5829 Optional argument PIXELWISE non-nil, means to return the height in
5830 pixels. */)
5831 (Lisp_Object window, Lisp_Object pixelwise)
5832 {
5833 struct window *w = decode_live_window (window);
5834
5835 if (NILP (pixelwise))
5836 return make_number (window_box_height (w)
5837 / FRAME_LINE_HEIGHT (WINDOW_XFRAME (w)));
5838 else
5839 return make_number (window_box_height (w));
5840 }
5841 \f
5842 DEFUN ("move-to-window-line", Fmove_to_window_line, Smove_to_window_line,
5843 1, 1, "P",
5844 doc: /* Position point relative to window.
5845 ARG nil means position point at center of window.
5846 Else, ARG specifies vertical position within the window;
5847 zero means top of window, negative means relative to bottom of window. */)
5848 (Lisp_Object arg)
5849 {
5850 struct window *w = XWINDOW (selected_window);
5851 int lines, start;
5852 Lisp_Object window;
5853 #if false
5854 int this_scroll_margin;
5855 #endif
5856
5857 if (!(BUFFERP (w->contents) && XBUFFER (w->contents) == current_buffer))
5858 /* This test is needed to make sure PT/PT_BYTE make sense in w->contents
5859 when passed below to set_marker_both. */
5860 error ("move-to-window-line called from unrelated buffer");
5861
5862 window = selected_window;
5863 start = marker_position (w->start);
5864 if (start < BEGV || start > ZV)
5865 {
5866 int height = window_internal_height (w);
5867 Fvertical_motion (make_number (- (height / 2)), window, Qnil);
5868 set_marker_both (w->start, w->contents, PT, PT_BYTE);
5869 w->start_at_line_beg = !NILP (Fbolp ());
5870 w->force_start = true;
5871 }
5872 else
5873 Fgoto_char (w->start);
5874
5875 lines = displayed_window_lines (w);
5876
5877 #if false
5878 this_scroll_margin = max (0, min (scroll_margin, lines / 4));
5879 #endif
5880
5881 if (NILP (arg))
5882 XSETFASTINT (arg, lines / 2);
5883 else
5884 {
5885 EMACS_INT iarg = XINT (Fprefix_numeric_value (arg));
5886
5887 if (iarg < 0)
5888 iarg = iarg + lines;
5889
5890 #if false /* This code would prevent move-to-window-line from moving point
5891 to a place inside the scroll margins (which would cause the
5892 next redisplay to scroll). I wrote this code, but then concluded
5893 it is probably better not to install it. However, it is here
5894 inside #if false so as not to lose it. -- rms. */
5895
5896 /* Don't let it get into the margin at either top or bottom. */
5897 iarg = max (iarg, this_scroll_margin);
5898 iarg = min (iarg, lines - this_scroll_margin - 1);
5899 #endif
5900
5901 arg = make_number (iarg);
5902 }
5903
5904 /* Skip past a partially visible first line. */
5905 if (w->vscroll)
5906 XSETINT (arg, XINT (arg) + 1);
5907
5908 return Fvertical_motion (arg, window, Qnil);
5909 }
5910
5911
5912 \f
5913 /***********************************************************************
5914 Window Configuration
5915 ***********************************************************************/
5916
5917 struct save_window_data
5918 {
5919 struct vectorlike_header header;
5920 Lisp_Object selected_frame;
5921 Lisp_Object current_window;
5922 Lisp_Object current_buffer;
5923 Lisp_Object minibuf_scroll_window;
5924 Lisp_Object minibuf_selected_window;
5925 Lisp_Object root_window;
5926 Lisp_Object focus_frame;
5927 /* A vector, each of whose elements is a struct saved_window
5928 for one window. */
5929 Lisp_Object saved_windows;
5930
5931 /* All fields above are traced by the GC.
5932 From `frame-cols' down, the fields are ignored by the GC. */
5933 /* We should be able to do without the following two. */
5934 int frame_cols, frame_lines;
5935 /* These two should get eventually replaced by their pixel
5936 counterparts. */
5937 int frame_menu_bar_lines, frame_tool_bar_lines;
5938 int frame_text_width, frame_text_height;
5939 /* These are currently unused. We need them as soon as we convert
5940 to pixels. */
5941 int frame_menu_bar_height, frame_tool_bar_height;
5942 };
5943
5944 /* This is saved as a Lisp_Vector. */
5945 struct saved_window
5946 {
5947 struct vectorlike_header header;
5948
5949 Lisp_Object window, buffer, start, pointm, old_pointm;
5950 Lisp_Object pixel_left, pixel_top, pixel_height, pixel_width;
5951 Lisp_Object left_col, top_line, total_cols, total_lines;
5952 Lisp_Object normal_cols, normal_lines;
5953 Lisp_Object hscroll, min_hscroll, hscroll_whole, suspend_auto_hscroll;
5954 Lisp_Object parent, prev;
5955 Lisp_Object start_at_line_beg;
5956 Lisp_Object display_table;
5957 Lisp_Object left_margin_cols, right_margin_cols;
5958 Lisp_Object left_fringe_width, right_fringe_width, fringes_outside_margins;
5959 Lisp_Object scroll_bar_width, vertical_scroll_bar_type, dedicated;
5960 Lisp_Object scroll_bar_height, horizontal_scroll_bar_type;
5961 Lisp_Object combination_limit, window_parameters;
5962 };
5963
5964 #define SAVED_WINDOW_N(swv,n) \
5965 ((struct saved_window *) (XVECTOR ((swv)->contents[(n)])))
5966
5967 DEFUN ("window-configuration-p", Fwindow_configuration_p, Swindow_configuration_p, 1, 1, 0,
5968 doc: /* Return t if OBJECT is a window-configuration object. */)
5969 (Lisp_Object object)
5970 {
5971 return WINDOW_CONFIGURATIONP (object) ? Qt : Qnil;
5972 }
5973
5974 DEFUN ("window-configuration-frame", Fwindow_configuration_frame, Swindow_configuration_frame, 1, 1, 0,
5975 doc: /* Return the frame that CONFIG, a window-configuration object, is about. */)
5976 (Lisp_Object config)
5977 {
5978 register struct save_window_data *data;
5979 struct Lisp_Vector *saved_windows;
5980
5981 CHECK_WINDOW_CONFIGURATION (config);
5982
5983 data = (struct save_window_data *) XVECTOR (config);
5984 saved_windows = XVECTOR (data->saved_windows);
5985 return XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
5986 }
5987
5988 DEFUN ("set-window-configuration", Fset_window_configuration,
5989 Sset_window_configuration, 1, 1, 0,
5990 doc: /* Set the configuration of windows and buffers as specified by CONFIGURATION.
5991 CONFIGURATION must be a value previously returned
5992 by `current-window-configuration' (which see).
5993 If CONFIGURATION was made from a frame that is now deleted,
5994 only frame-independent values can be restored. In this case,
5995 the return value is nil. Otherwise the value is t. */)
5996 (Lisp_Object configuration)
5997 {
5998 register struct save_window_data *data;
5999 struct Lisp_Vector *saved_windows;
6000 Lisp_Object new_current_buffer;
6001 Lisp_Object frame;
6002 struct frame *f;
6003 ptrdiff_t old_point = -1;
6004 USE_SAFE_ALLOCA;
6005
6006 CHECK_WINDOW_CONFIGURATION (configuration);
6007
6008 data = (struct save_window_data *) XVECTOR (configuration);
6009 saved_windows = XVECTOR (data->saved_windows);
6010
6011 new_current_buffer = data->current_buffer;
6012 if (!BUFFER_LIVE_P (XBUFFER (new_current_buffer)))
6013 new_current_buffer = Qnil;
6014 else
6015 {
6016 if (XBUFFER (new_current_buffer) == current_buffer)
6017 /* The code further down "preserves point" by saving here PT in
6018 old_point and then setting it later back into PT. When the
6019 current-selected-window and the final-selected-window both show
6020 the current buffer, this suffers from the problem that the
6021 current PT is the window-point of the current-selected-window,
6022 while the final PT is the point of the final-selected-window, so
6023 this copy from one PT to the other would end up moving the
6024 window-point of the final-selected-window to the window-point of
6025 the current-selected-window. So we have to be careful which
6026 point of the current-buffer we copy into old_point. */
6027 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer)
6028 && WINDOWP (selected_window)
6029 && EQ (XWINDOW (selected_window)->contents, new_current_buffer)
6030 && !EQ (selected_window, data->current_window))
6031 old_point = marker_position (XWINDOW (data->current_window)->pointm);
6032 else
6033 old_point = PT;
6034 else
6035 /* BUF_PT (XBUFFER (new_current_buffer)) gives us the position of
6036 point in new_current_buffer as of the last time this buffer was
6037 used. This can be non-deterministic since it can be changed by
6038 things like jit-lock by mere temporary selection of some random
6039 window that happens to show this buffer.
6040 So if possible we want this arbitrary choice of "which point" to
6041 be the one from the to-be-selected-window so as to prevent this
6042 window's cursor from being copied from another window. */
6043 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer)
6044 /* If current_window = selected_window, its point is in BUF_PT. */
6045 && !EQ (selected_window, data->current_window))
6046 old_point = marker_position (XWINDOW (data->current_window)->pointm);
6047 else
6048 old_point = BUF_PT (XBUFFER (new_current_buffer));
6049 }
6050
6051 frame = XWINDOW (SAVED_WINDOW_N (saved_windows, 0)->window)->frame;
6052 f = XFRAME (frame);
6053
6054 /* If f is a dead frame, don't bother rebuilding its window tree.
6055 However, there is other stuff we should still try to do below. */
6056 if (FRAME_LIVE_P (f))
6057 {
6058 Lisp_Object window;
6059 Lisp_Object dead_windows = Qnil;
6060 Lisp_Object tem, par, pers;
6061 struct window *w;
6062 struct saved_window *p;
6063 struct window *root_window;
6064 struct window **leaf_windows;
6065 ptrdiff_t i, k, n_leaf_windows;
6066
6067 /* Don't do this within the main loop below: This may call Lisp
6068 code and is thus potentially unsafe while input is blocked. */
6069 for (k = 0; k < saved_windows->header.size; k++)
6070 {
6071 p = SAVED_WINDOW_N (saved_windows, k);
6072 window = p->window;
6073 w = XWINDOW (window);
6074 if (BUFFERP (w->contents)
6075 && !EQ (w->contents, p->buffer)
6076 && BUFFER_LIVE_P (XBUFFER (p->buffer)))
6077 /* If a window we restore gets another buffer, record the
6078 window's old buffer. */
6079 call1 (Qrecord_window_buffer, window);
6080 }
6081
6082 /* Disallow x_set_window_size, temporarily. */
6083 f->can_x_set_window_size = false;
6084 /* The mouse highlighting code could get screwed up
6085 if it runs during this. */
6086 block_input ();
6087
6088 /* "Swap out" point from the selected window's buffer
6089 into the window itself. (Normally the pointm of the selected
6090 window holds garbage.) We do this now, before
6091 restoring the window contents, and prevent it from
6092 being done later on when we select a new window. */
6093 if (! NILP (XWINDOW (selected_window)->contents))
6094 {
6095 w = XWINDOW (selected_window);
6096 set_marker_both (w->pointm,
6097 w->contents,
6098 BUF_PT (XBUFFER (w->contents)),
6099 BUF_PT_BYTE (XBUFFER (w->contents)));
6100 }
6101
6102 fset_redisplay (f);
6103 FRAME_WINDOW_SIZES_CHANGED (f) = true;
6104
6105 /* Problem: Freeing all matrices and later allocating them again
6106 is a serious redisplay flickering problem. What we would
6107 really like to do is to free only those matrices not reused
6108 below. */
6109 root_window = XWINDOW (FRAME_ROOT_WINDOW (f));
6110 ptrdiff_t nwindows = count_windows (root_window);
6111 SAFE_NALLOCA (leaf_windows, 1, nwindows);
6112 n_leaf_windows = get_leaf_windows (root_window, leaf_windows, 0);
6113
6114 /* Kludge Alert!
6115 Mark all windows now on frame as "deleted".
6116 Restoring the new configuration "undeletes" any that are in it.
6117
6118 Save their current buffers in their height fields, since we may
6119 need it later, if a buffer saved in the configuration is now
6120 dead. */
6121 delete_all_child_windows (FRAME_ROOT_WINDOW (f));
6122
6123 for (k = 0; k < saved_windows->header.size; k++)
6124 {
6125 p = SAVED_WINDOW_N (saved_windows, k);
6126 window = p->window;
6127 w = XWINDOW (window);
6128 wset_next (w, Qnil);
6129
6130 if (!NILP (p->parent))
6131 wset_parent
6132 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->parent))->window);
6133 else
6134 wset_parent (w, Qnil);
6135
6136 if (!NILP (p->prev))
6137 {
6138 wset_prev
6139 (w, SAVED_WINDOW_N (saved_windows, XFASTINT (p->prev))->window);
6140 wset_next (XWINDOW (w->prev), p->window);
6141 }
6142 else
6143 {
6144 wset_prev (w, Qnil);
6145 if (!NILP (w->parent))
6146 wset_combination (XWINDOW (w->parent),
6147 (XINT (p->total_cols)
6148 != XWINDOW (w->parent)->total_cols),
6149 p->window);
6150 }
6151
6152 /* If we squirreled away the buffer, restore it now. */
6153 if (BUFFERP (w->combination_limit))
6154 wset_buffer (w, w->combination_limit);
6155 w->pixel_left = XFASTINT (p->pixel_left);
6156 w->pixel_top = XFASTINT (p->pixel_top);
6157 w->pixel_width = XFASTINT (p->pixel_width);
6158 w->pixel_height = XFASTINT (p->pixel_height);
6159 w->left_col = XFASTINT (p->left_col);
6160 w->top_line = XFASTINT (p->top_line);
6161 w->total_cols = XFASTINT (p->total_cols);
6162 w->total_lines = XFASTINT (p->total_lines);
6163 wset_normal_cols (w, p->normal_cols);
6164 wset_normal_lines (w, p->normal_lines);
6165 w->hscroll = XFASTINT (p->hscroll);
6166 w->suspend_auto_hscroll = !NILP (p->suspend_auto_hscroll);
6167 w->min_hscroll = XFASTINT (p->min_hscroll);
6168 w->hscroll_whole = XFASTINT (p->hscroll_whole);
6169 wset_display_table (w, p->display_table);
6170 w->left_margin_cols = XINT (p->left_margin_cols);
6171 w->right_margin_cols = XINT (p->right_margin_cols);
6172 w->left_fringe_width = XINT (p->left_fringe_width);
6173 w->right_fringe_width = XINT (p->right_fringe_width);
6174 w->fringes_outside_margins = !NILP (p->fringes_outside_margins);
6175 w->scroll_bar_width = XINT (p->scroll_bar_width);
6176 w->scroll_bar_height = XINT (p->scroll_bar_height);
6177 wset_vertical_scroll_bar_type (w, p->vertical_scroll_bar_type);
6178 wset_horizontal_scroll_bar_type (w, p->horizontal_scroll_bar_type);
6179 wset_dedicated (w, p->dedicated);
6180 wset_combination_limit (w, p->combination_limit);
6181 /* Restore any window parameters that have been saved.
6182 Parameters that have not been saved are left alone. */
6183 for (tem = p->window_parameters; CONSP (tem); tem = XCDR (tem))
6184 {
6185 pers = XCAR (tem);
6186 if (CONSP (pers))
6187 {
6188 if (NILP (XCDR (pers)))
6189 {
6190 par = Fassq (XCAR (pers), w->window_parameters);
6191 if (CONSP (par) && !NILP (XCDR (par)))
6192 /* Reset a parameter to nil if and only if it
6193 has a non-nil association. Don't make new
6194 associations. */
6195 Fsetcdr (par, Qnil);
6196 }
6197 else
6198 /* Always restore a non-nil value. */
6199 Fset_window_parameter (window, XCAR (pers), XCDR (pers));
6200 }
6201 }
6202
6203 if (BUFFERP (p->buffer) && BUFFER_LIVE_P (XBUFFER (p->buffer)))
6204 /* If saved buffer is alive, install it. */
6205 {
6206 wset_buffer (w, p->buffer);
6207 w->start_at_line_beg = !NILP (p->start_at_line_beg);
6208 set_marker_restricted (w->start, p->start, w->contents);
6209 set_marker_restricted (w->pointm, p->pointm, w->contents);
6210 set_marker_restricted (w->old_pointm, p->old_pointm, w->contents);
6211 /* As documented in Fcurrent_window_configuration, don't
6212 restore the location of point in the buffer which was
6213 current when the window configuration was recorded. */
6214 if (!EQ (p->buffer, new_current_buffer)
6215 && XBUFFER (p->buffer) == current_buffer)
6216 Fgoto_char (w->pointm);
6217 }
6218 else if (BUFFERP (w->contents) && BUFFER_LIVE_P (XBUFFER (w->contents)))
6219 /* Keep window's old buffer; make sure the markers are real. */
6220 {
6221 /* Set window markers at start of visible range. */
6222 if (XMARKER (w->start)->buffer == 0)
6223 set_marker_restricted_both (w->start, w->contents, 0, 0);
6224 if (XMARKER (w->pointm)->buffer == 0)
6225 set_marker_restricted_both
6226 (w->pointm, w->contents,
6227 BUF_PT (XBUFFER (w->contents)),
6228 BUF_PT_BYTE (XBUFFER (w->contents)));
6229 if (XMARKER (w->old_pointm)->buffer == 0)
6230 set_marker_restricted_both
6231 (w->old_pointm, w->contents,
6232 BUF_PT (XBUFFER (w->contents)),
6233 BUF_PT_BYTE (XBUFFER (w->contents)));
6234 w->start_at_line_beg = true;
6235 }
6236 else if (!NILP (w->start))
6237 /* Leaf window has no live buffer, get one. */
6238 {
6239 /* Get the buffer via other_buffer_safely in order to
6240 avoid showing an unimportant buffer and, if necessary, to
6241 recreate *scratch* in the course (part of Juanma's bs-show
6242 scenario from March 2011). */
6243 wset_buffer (w, other_buffer_safely (Fcurrent_buffer ()));
6244 /* This will set the markers to beginning of visible
6245 range. */
6246 set_marker_restricted_both (w->start, w->contents, 0, 0);
6247 set_marker_restricted_both (w->pointm, w->contents, 0, 0);
6248 set_marker_restricted_both (w->old_pointm, w->contents, 0, 0);
6249 w->start_at_line_beg = true;
6250 if (!NILP (w->dedicated))
6251 /* Record this window as dead. */
6252 dead_windows = Fcons (window, dead_windows);
6253 /* Make sure window is no more dedicated. */
6254 wset_dedicated (w, Qnil);
6255 }
6256 }
6257
6258 fset_root_window (f, data->root_window);
6259 /* Arrange *not* to restore point in the buffer that was
6260 current when the window configuration was saved. */
6261 if (EQ (XWINDOW (data->current_window)->contents, new_current_buffer))
6262 set_marker_restricted (XWINDOW (data->current_window)->pointm,
6263 make_number (old_point),
6264 XWINDOW (data->current_window)->contents);
6265
6266 /* In the following call to `select-window', prevent "swapping out
6267 point" in the old selected window using the buffer that has
6268 been restored into it. We already swapped out that point from
6269 that window's old buffer.
6270
6271 Do not record the buffer here. We do that in a separate call
6272 to select_window below. See also Bug#16207. */
6273 select_window (data->current_window, Qt, true);
6274 BVAR (XBUFFER (XWINDOW (selected_window)->contents),
6275 last_selected_window)
6276 = selected_window;
6277
6278 if (NILP (data->focus_frame)
6279 || (FRAMEP (data->focus_frame)
6280 && FRAME_LIVE_P (XFRAME (data->focus_frame))))
6281 Fredirect_frame_focus (frame, data->focus_frame);
6282
6283 /* Now, free glyph matrices in windows that were not reused. */
6284 for (i = 0; i < n_leaf_windows; i++)
6285 if (NILP (leaf_windows[i]->contents))
6286 free_window_matrices (leaf_windows[i]);
6287
6288 /* Allow x_set_window_size again and apply frame size changes if
6289 needed. */
6290 f->can_x_set_window_size = true;
6291 adjust_frame_size (f, -1, -1, 1, false, Qset_window_configuration);
6292
6293 adjust_frame_glyphs (f);
6294 unblock_input ();
6295
6296 /* Scan dead buffer windows. */
6297 for (; CONSP (dead_windows); dead_windows = XCDR (dead_windows))
6298 {
6299 window = XCAR (dead_windows);
6300 if (WINDOW_LIVE_P (window) && !EQ (window, FRAME_ROOT_WINDOW (f)))
6301 delete_deletable_window (window);
6302 }
6303
6304 /* Record the selected window's buffer here. The window should
6305 already be the selected one from the call above. */
6306 select_window (data->current_window, Qnil, false);
6307
6308 /* Fselect_window will have made f the selected frame, so we
6309 reselect the proper frame here. Fhandle_switch_frame will change the
6310 selected window too, but that doesn't make the call to
6311 Fselect_window above totally superfluous; it still sets f's
6312 selected window. */
6313 if (FRAME_LIVE_P (XFRAME (data->selected_frame)))
6314 do_switch_frame (data->selected_frame, 0, 0, Qnil);
6315
6316 run_window_configuration_change_hook (f);
6317 }
6318
6319 if (!NILP (new_current_buffer))
6320 {
6321 Fset_buffer (new_current_buffer);
6322 /* If the new current buffer doesn't appear in the selected
6323 window, go to its old point (see bug#12208). */
6324 if (!EQ (XWINDOW (data->current_window)->contents, new_current_buffer))
6325 Fgoto_char (make_number (old_point));
6326 }
6327
6328 Vminibuf_scroll_window = data->minibuf_scroll_window;
6329 minibuf_selected_window = data->minibuf_selected_window;
6330
6331 SAFE_FREE ();
6332 return (FRAME_LIVE_P (f) ? Qt : Qnil);
6333 }
6334
6335
6336 void
6337 restore_window_configuration (Lisp_Object configuration)
6338 {
6339 Fset_window_configuration (configuration);
6340 }
6341
6342
6343 /* If WINDOW is an internal window, recursively delete all child windows
6344 reachable via the next and contents slots of WINDOW. Otherwise setup
6345 WINDOW to not show any buffer. */
6346
6347 void
6348 delete_all_child_windows (Lisp_Object window)
6349 {
6350 register struct window *w;
6351
6352 w = XWINDOW (window);
6353
6354 if (!NILP (w->next))
6355 /* Delete WINDOW's siblings (we traverse postorderly). */
6356 delete_all_child_windows (w->next);
6357
6358 if (WINDOWP (w->contents))
6359 {
6360 delete_all_child_windows (w->contents);
6361 wset_combination (w, false, Qnil);
6362 }
6363 else if (BUFFERP (w->contents))
6364 {
6365 unshow_buffer (w);
6366 unchain_marker (XMARKER (w->pointm));
6367 unchain_marker (XMARKER (w->old_pointm));
6368 unchain_marker (XMARKER (w->start));
6369 /* Since combination limit makes sense for an internal windows
6370 only, we use this slot to save the buffer for the sake of
6371 possible resurrection in Fset_window_configuration. */
6372 wset_combination_limit (w, w->contents);
6373 wset_buffer (w, Qnil);
6374 }
6375
6376 Vwindow_list = Qnil;
6377 }
6378 \f
6379 static ptrdiff_t
6380 count_windows (struct window *window)
6381 {
6382 ptrdiff_t count = 1;
6383 if (!NILP (window->next))
6384 count += count_windows (XWINDOW (window->next));
6385 if (WINDOWP (window->contents))
6386 count += count_windows (XWINDOW (window->contents));
6387 return count;
6388 }
6389
6390
6391 /* Fill vector FLAT with leaf windows under W, starting at index I.
6392 Value is last index + 1. */
6393 static ptrdiff_t
6394 get_leaf_windows (struct window *w, struct window **flat, ptrdiff_t i)
6395 {
6396 while (w)
6397 {
6398 if (WINDOWP (w->contents))
6399 i = get_leaf_windows (XWINDOW (w->contents), flat, i);
6400 else
6401 flat[i++] = w;
6402
6403 w = NILP (w->next) ? 0 : XWINDOW (w->next);
6404 }
6405
6406 return i;
6407 }
6408
6409
6410 /* Return a pointer to the glyph W's physical cursor is on. Value is
6411 null if W's current matrix is invalid, so that no meaningful glyph
6412 can be returned. */
6413 struct glyph *
6414 get_phys_cursor_glyph (struct window *w)
6415 {
6416 struct glyph_row *row;
6417 struct glyph *glyph;
6418 int hpos = w->phys_cursor.hpos;
6419
6420 if (!(w->phys_cursor.vpos >= 0
6421 && w->phys_cursor.vpos < w->current_matrix->nrows))
6422 return NULL;
6423
6424 row = MATRIX_ROW (w->current_matrix, w->phys_cursor.vpos);
6425 if (!row->enabled_p)
6426 return NULL;
6427
6428 if (w->hscroll)
6429 {
6430 /* When the window is hscrolled, cursor hpos can legitimately be
6431 out of bounds, but we draw the cursor at the corresponding
6432 window margin in that case. */
6433 if (!row->reversed_p && hpos < 0)
6434 hpos = 0;
6435 if (row->reversed_p && hpos >= row->used[TEXT_AREA])
6436 hpos = row->used[TEXT_AREA] - 1;
6437 }
6438
6439 if (0 <= hpos && hpos < row->used[TEXT_AREA])
6440 glyph = row->glyphs[TEXT_AREA] + hpos;
6441 else
6442 glyph = NULL;
6443
6444 return glyph;
6445 }
6446
6447
6448 static ptrdiff_t
6449 save_window_save (Lisp_Object window, struct Lisp_Vector *vector, ptrdiff_t i)
6450 {
6451 struct saved_window *p;
6452 struct window *w;
6453 Lisp_Object tem, pers, par;
6454
6455 for (; !NILP (window); window = w->next)
6456 {
6457 p = SAVED_WINDOW_N (vector, i);
6458 w = XWINDOW (window);
6459
6460 wset_temslot (w, make_number (i)); i++;
6461 p->window = window;
6462 p->buffer = (WINDOW_LEAF_P (w) ? w->contents : Qnil);
6463 p->pixel_left = make_number (w->pixel_left);
6464 p->pixel_top = make_number (w->pixel_top);
6465 p->pixel_width = make_number (w->pixel_width);
6466 p->pixel_height = make_number (w->pixel_height);
6467 p->left_col = make_number (w->left_col);
6468 p->top_line = make_number (w->top_line);
6469 p->total_cols = make_number (w->total_cols);
6470 p->total_lines = make_number (w->total_lines);
6471 p->normal_cols = w->normal_cols;
6472 p->normal_lines = w->normal_lines;
6473 XSETFASTINT (p->hscroll, w->hscroll);
6474 p->suspend_auto_hscroll = w->suspend_auto_hscroll ? Qt : Qnil;
6475 XSETFASTINT (p->min_hscroll, w->min_hscroll);
6476 XSETFASTINT (p->hscroll_whole, w->hscroll_whole);
6477 p->display_table = w->display_table;
6478 p->left_margin_cols = make_number (w->left_margin_cols);
6479 p->right_margin_cols = make_number (w->right_margin_cols);
6480 p->left_fringe_width = make_number (w->left_fringe_width);
6481 p->right_fringe_width = make_number (w->right_fringe_width);
6482 p->fringes_outside_margins = w->fringes_outside_margins ? Qt : Qnil;
6483 p->scroll_bar_width = make_number (w->scroll_bar_width);
6484 p->scroll_bar_height = make_number (w->scroll_bar_height);
6485 p->vertical_scroll_bar_type = w->vertical_scroll_bar_type;
6486 p->horizontal_scroll_bar_type = w->horizontal_scroll_bar_type;
6487 p->dedicated = w->dedicated;
6488 p->combination_limit = w->combination_limit;
6489 p->window_parameters = Qnil;
6490
6491 if (!NILP (Vwindow_persistent_parameters))
6492 {
6493 /* Run cycle detection on Vwindow_persistent_parameters. */
6494 Lisp_Object tortoise, hare;
6495
6496 hare = tortoise = Vwindow_persistent_parameters;
6497 while (CONSP (hare))
6498 {
6499 hare = XCDR (hare);
6500 if (!CONSP (hare))
6501 break;
6502
6503 hare = XCDR (hare);
6504 tortoise = XCDR (tortoise);
6505
6506 if (EQ (hare, tortoise))
6507 /* Reset Vwindow_persistent_parameters to Qnil. */
6508 {
6509 Vwindow_persistent_parameters = Qnil;
6510 break;
6511 }
6512 }
6513
6514 for (tem = Vwindow_persistent_parameters; CONSP (tem);
6515 tem = XCDR (tem))
6516 {
6517 pers = XCAR (tem);
6518 /* Save values for persistent window parameters. */
6519 if (CONSP (pers) && !NILP (XCDR (pers)))
6520 {
6521 par = Fassq (XCAR (pers), w->window_parameters);
6522 if (NILP (par))
6523 /* If the window has no value for the parameter,
6524 make one. */
6525 p->window_parameters = Fcons (Fcons (XCAR (pers), Qnil),
6526 p->window_parameters);
6527 else
6528 /* If the window has a value for the parameter,
6529 save it. */
6530 p->window_parameters = Fcons (Fcons (XCAR (par),
6531 XCDR (par)),
6532 p->window_parameters);
6533 }
6534 }
6535 }
6536
6537 if (BUFFERP (w->contents))
6538 {
6539 /* Save w's value of point in the window configuration. If w
6540 is the selected window, then get the value of point from
6541 the buffer; pointm is garbage in the selected window. */
6542 if (EQ (window, selected_window))
6543 p->pointm = build_marker (XBUFFER (w->contents),
6544 BUF_PT (XBUFFER (w->contents)),
6545 BUF_PT_BYTE (XBUFFER (w->contents)));
6546 else
6547 p->pointm = Fcopy_marker (w->pointm, Qnil);
6548 p->old_pointm = Fcopy_marker (w->old_pointm, Qnil);
6549 XMARKER (p->pointm)->insertion_type
6550 = !NILP (buffer_local_value /* Don't signal error if void. */
6551 (Qwindow_point_insertion_type, w->contents));
6552 XMARKER (p->old_pointm)->insertion_type
6553 = !NILP (buffer_local_value /* Don't signal error if void. */
6554 (Qwindow_point_insertion_type, w->contents));
6555
6556 p->start = Fcopy_marker (w->start, Qnil);
6557 p->start_at_line_beg = w->start_at_line_beg ? Qt : Qnil;
6558 }
6559 else
6560 {
6561 p->pointm = Qnil;
6562 p->old_pointm = Qnil;
6563 p->start = Qnil;
6564 p->start_at_line_beg = Qnil;
6565 }
6566
6567 p->parent = NILP (w->parent) ? Qnil : XWINDOW (w->parent)->temslot;
6568 p->prev = NILP (w->prev) ? Qnil : XWINDOW (w->prev)->temslot;
6569
6570 if (WINDOWP (w->contents))
6571 i = save_window_save (w->contents, vector, i);
6572 }
6573
6574 return i;
6575 }
6576
6577 DEFUN ("current-window-configuration", Fcurrent_window_configuration,
6578 Scurrent_window_configuration, 0, 1, 0,
6579 doc: /* Return an object representing the current window configuration of FRAME.
6580 If FRAME is nil or omitted, use the selected frame.
6581 This describes the number of windows, their sizes and current buffers,
6582 and for each displayed buffer, where display starts, and the position of
6583 point. An exception is made for point in the current buffer:
6584 its value is -not- saved.
6585 This also records the currently selected frame, and FRAME's focus
6586 redirection (see `redirect-frame-focus'). The variable
6587 `window-persistent-parameters' specifies which window parameters are
6588 saved by this function. */)
6589 (Lisp_Object frame)
6590 {
6591 Lisp_Object tem;
6592 ptrdiff_t i, n_windows;
6593 struct save_window_data *data;
6594 struct frame *f = decode_live_frame (frame);
6595
6596 n_windows = count_windows (XWINDOW (FRAME_ROOT_WINDOW (f)));
6597 data = ALLOCATE_PSEUDOVECTOR (struct save_window_data, frame_cols,
6598 PVEC_WINDOW_CONFIGURATION);
6599
6600 data->frame_cols = FRAME_COLS (f);
6601 data->frame_lines = FRAME_LINES (f);
6602 data->frame_menu_bar_lines = FRAME_MENU_BAR_LINES (f);
6603 data->frame_tool_bar_lines = FRAME_TOOL_BAR_LINES (f);
6604 data->frame_text_width = FRAME_TEXT_WIDTH (f);
6605 data->frame_text_height = FRAME_TEXT_HEIGHT (f);
6606 data->frame_menu_bar_height = FRAME_MENU_BAR_HEIGHT (f);
6607 data->frame_tool_bar_height = FRAME_TOOL_BAR_HEIGHT (f);
6608 data->selected_frame = selected_frame;
6609 data->current_window = FRAME_SELECTED_WINDOW (f);
6610 XSETBUFFER (data->current_buffer, current_buffer);
6611 data->minibuf_scroll_window = minibuf_level > 0 ? Vminibuf_scroll_window : Qnil;
6612 data->minibuf_selected_window = minibuf_level > 0 ? minibuf_selected_window : Qnil;
6613 data->root_window = FRAME_ROOT_WINDOW (f);
6614 data->focus_frame = FRAME_FOCUS_FRAME (f);
6615 tem = make_uninit_vector (n_windows);
6616 data->saved_windows = tem;
6617 for (i = 0; i < n_windows; i++)
6618 ASET (tem, i,
6619 Fmake_vector (make_number (VECSIZE (struct saved_window)), Qnil));
6620 save_window_save (FRAME_ROOT_WINDOW (f), XVECTOR (tem), 0);
6621 XSETWINDOW_CONFIGURATION (tem, data);
6622 return (tem);
6623 }
6624
6625 /* Called after W's margins, fringes or scroll bars was adjusted. */
6626
6627 static void
6628 apply_window_adjustment (struct window *w)
6629 {
6630 eassert (w);
6631 clear_glyph_matrix (w->current_matrix);
6632 w->window_end_valid = false;
6633 wset_redisplay (w);
6634 adjust_frame_glyphs (XFRAME (WINDOW_FRAME (w)));
6635 }
6636
6637 \f
6638 /***********************************************************************
6639 Marginal Areas
6640 ***********************************************************************/
6641
6642 static int
6643 extract_dimension (Lisp_Object dimension)
6644 {
6645 if (NILP (dimension))
6646 return -1;
6647 CHECK_RANGED_INTEGER (dimension, 0, INT_MAX);
6648 return XINT (dimension);
6649 }
6650
6651 static struct window *
6652 set_window_margins (struct window *w, Lisp_Object left_width,
6653 Lisp_Object right_width)
6654 {
6655 int unit = WINDOW_FRAME_COLUMN_WIDTH (w);
6656 int left = NILP (left_width) ? 0 : extract_dimension (left_width);
6657 int right = NILP (right_width) ? 0 : extract_dimension (right_width);
6658
6659 if (w->left_margin_cols != left || w->right_margin_cols != right)
6660 {
6661 /* Don't change anything if new margins won't fit. */
6662 if ((WINDOW_PIXEL_WIDTH (w)
6663 - WINDOW_FRINGES_WIDTH (w)
6664 - WINDOW_SCROLL_BAR_AREA_WIDTH (w)
6665 - (left + right) * unit)
6666 >= MIN_SAFE_WINDOW_PIXEL_WIDTH (w))
6667 {
6668 w->left_margin_cols = left;
6669 w->right_margin_cols = right;
6670
6671 return w;
6672 }
6673 else
6674 return NULL;
6675 }
6676 else
6677 return NULL;
6678 }
6679
6680 DEFUN ("set-window-margins", Fset_window_margins, Sset_window_margins,
6681 2, 3, 0,
6682 doc: /* Set width of marginal areas of window WINDOW.
6683 WINDOW must be a live window and defaults to the selected one.
6684
6685 Second arg LEFT-WIDTH specifies the number of character cells to
6686 reserve for the left marginal area. Optional third arg RIGHT-WIDTH
6687 does the same for the right marginal area. A nil width parameter
6688 means no margin.
6689
6690 Return t if any margin was actually changed and nil otherwise. */)
6691 (Lisp_Object window, Lisp_Object left_width, Lisp_Object right_width)
6692 {
6693 struct window *w = set_window_margins (decode_live_window (window),
6694 left_width, right_width);
6695 return w ? (apply_window_adjustment (w), Qt) : Qnil;
6696 }
6697
6698
6699 DEFUN ("window-margins", Fwindow_margins, Swindow_margins,
6700 0, 1, 0,
6701 doc: /* Get width of marginal areas of window WINDOW.
6702 WINDOW must be a live window and defaults to the selected one.
6703
6704 Value is a cons of the form (LEFT-WIDTH . RIGHT-WIDTH).
6705 If a marginal area does not exist, its width will be returned
6706 as nil. */)
6707 (Lisp_Object window)
6708 {
6709 struct window *w = decode_live_window (window);
6710 return Fcons (w->left_margin_cols
6711 ? make_number (w->left_margin_cols) : Qnil,
6712 w->right_margin_cols
6713 ? make_number (w->right_margin_cols) : Qnil);
6714 }
6715
6716
6717 \f
6718 /***********************************************************************
6719 Fringes
6720 ***********************************************************************/
6721
6722 static struct window *
6723 set_window_fringes (struct window *w, Lisp_Object left_width,
6724 Lisp_Object right_width, Lisp_Object outside_margins)
6725 {
6726 bool outside = !NILP (outside_margins);
6727 int left = extract_dimension (left_width);
6728 int right = extract_dimension (right_width);
6729
6730 /* Do nothing on a tty or if nothing to actually change. */
6731 if (FRAME_WINDOW_P (WINDOW_XFRAME (w))
6732 && (w->left_fringe_width != left
6733 || w->right_fringe_width != right
6734 || w->fringes_outside_margins != outside))
6735 {
6736 if (left > 0 || right > 0)
6737 {
6738 /* Don't change anything if new fringes don't fit. */
6739 if ((WINDOW_PIXEL_WIDTH (w)
6740 - WINDOW_MARGINS_WIDTH (w)
6741 - WINDOW_SCROLL_BAR_AREA_WIDTH (w)
6742 - max (left, 0) - max (right, 0))
6743 < MIN_SAFE_WINDOW_PIXEL_WIDTH (w))
6744 return NULL;
6745 }
6746
6747 w->left_fringe_width = left;
6748 w->right_fringe_width = right;
6749 w->fringes_outside_margins = outside;
6750
6751 return w;
6752 }
6753 else
6754 return NULL;
6755 }
6756
6757 DEFUN ("set-window-fringes", Fset_window_fringes, Sset_window_fringes,
6758 2, 4, 0,
6759 doc: /* Set the fringe widths of window WINDOW.
6760 WINDOW must be a live window and defaults to the selected one.
6761
6762 Second arg LEFT-WIDTH specifies the number of pixels to reserve for
6763 the left fringe. Optional third arg RIGHT-WIDTH specifies the right
6764 fringe width. If a fringe width arg is nil, that means to use the
6765 frame's default fringe width. Default fringe widths can be set with
6766 the command `set-fringe-style'.
6767 If optional fourth arg OUTSIDE-MARGINS is non-nil, draw the fringes
6768 outside of the display margins. By default, fringes are drawn between
6769 display marginal areas and the text area.
6770
6771 Return t if any fringe was actually changed and nil otherwise. */)
6772 (Lisp_Object window, Lisp_Object left_width,
6773 Lisp_Object right_width, Lisp_Object outside_margins)
6774 {
6775 struct window *w
6776 = set_window_fringes (decode_live_window (window),
6777 left_width, right_width, outside_margins);
6778 return w ? (apply_window_adjustment (w), Qt) : Qnil;
6779 }
6780
6781
6782 DEFUN ("window-fringes", Fwindow_fringes, Swindow_fringes,
6783 0, 1, 0,
6784 doc: /* Get width of fringes of window WINDOW.
6785 WINDOW must be a live window and defaults to the selected one.
6786
6787 Value is a list of the form (LEFT-WIDTH RIGHT-WIDTH OUTSIDE-MARGINS). */)
6788 (Lisp_Object window)
6789 {
6790 struct window *w = decode_live_window (window);
6791
6792 return list3 (make_number (WINDOW_LEFT_FRINGE_WIDTH (w)),
6793 make_number (WINDOW_RIGHT_FRINGE_WIDTH (w)),
6794 WINDOW_HAS_FRINGES_OUTSIDE_MARGINS (w) ? Qt : Qnil);
6795 }
6796
6797
6798 \f
6799 /***********************************************************************
6800 Scroll bars
6801 ***********************************************************************/
6802
6803 static struct window *
6804 set_window_scroll_bars (struct window *w, Lisp_Object width,
6805 Lisp_Object vertical_type, Lisp_Object height,
6806 Lisp_Object horizontal_type)
6807 {
6808 int iwidth = extract_dimension (width);
6809 bool changed = false;
6810
6811 if (iwidth == 0)
6812 vertical_type = Qnil;
6813
6814 if (!(NILP (vertical_type)
6815 || EQ (vertical_type, Qleft)
6816 || EQ (vertical_type, Qright)
6817 || EQ (vertical_type, Qt)))
6818 error ("Invalid type of vertical scroll bar");
6819
6820 if (w->scroll_bar_width != iwidth
6821 || !EQ (w->vertical_scroll_bar_type, vertical_type))
6822 {
6823 /* Don't change anything if new scroll bar won't fit. */
6824 if ((WINDOW_PIXEL_WIDTH (w)
6825 - WINDOW_MARGINS_WIDTH (w)
6826 - WINDOW_FRINGES_WIDTH (w)
6827 - max (iwidth, 0))
6828 >= MIN_SAFE_WINDOW_PIXEL_WIDTH (w))
6829 {
6830 w->scroll_bar_width = iwidth;
6831 wset_vertical_scroll_bar_type (w, vertical_type);
6832 changed = true;
6833 }
6834 }
6835
6836 #if USE_HORIZONTAL_SCROLL_BARS
6837 {
6838 int iheight = extract_dimension (height);
6839
6840 if (MINI_WINDOW_P (w) || iheight == 0)
6841 horizontal_type = Qnil;
6842
6843 if (!(NILP (horizontal_type)
6844 || EQ (horizontal_type, Qbottom)
6845 || EQ (horizontal_type, Qt)))
6846 error ("Invalid type of horizontal scroll bar");
6847
6848 if (w->scroll_bar_height != iheight
6849 || !EQ (w->horizontal_scroll_bar_type, horizontal_type))
6850 {
6851 /* Don't change anything if new scroll bar won't fit. */
6852 if ((WINDOW_PIXEL_HEIGHT (w)
6853 - WINDOW_HEADER_LINE_HEIGHT (w)
6854 - WINDOW_MODE_LINE_HEIGHT (w)
6855 - max (iheight, 0))
6856 >= MIN_SAFE_WINDOW_PIXEL_HEIGHT (w))
6857 {
6858 w->scroll_bar_height = iheight;
6859 wset_horizontal_scroll_bar_type (w, horizontal_type);
6860 changed = true;
6861 }
6862 }
6863 }
6864 #else
6865 wset_horizontal_scroll_bar_type (w, Qnil);
6866 #endif
6867
6868 return changed ? w : NULL;
6869 }
6870
6871 DEFUN ("set-window-scroll-bars", Fset_window_scroll_bars,
6872 Sset_window_scroll_bars, 1, 5, 0,
6873 doc: /* Set width and type of scroll bars of window WINDOW.
6874 WINDOW must be a live window and defaults to the selected one.
6875
6876 Second parameter WIDTH specifies the pixel width for the vertical scroll
6877 bar. If WIDTH is nil, use the scroll-bar width of WINDOW's frame.
6878 Third parameter VERTICAL-TYPE specifies the type of the vertical scroll
6879 bar: left, right, or nil. If VERTICAL-TYPE is t, this means use the
6880 frame's scroll-bar type.
6881
6882 Fourth parameter HEIGHT specifies the pixel height for the horizontal
6883 scroll bar. If HEIGHT is nil, use the scroll-bar height of WINDOW's
6884 frame. Fifth parameter HORIZONTAL-TYPE specifies the type of the
6885 horizontal scroll bar: nil, bottom, or t. If HORIZONTAL-TYPE is t, this
6886 means to use the frame's horizontal scroll-bar type.
6887
6888 Return t if scroll bars were actually changed and nil otherwise. */)
6889 (Lisp_Object window, Lisp_Object width, Lisp_Object vertical_type,
6890 Lisp_Object height, Lisp_Object horizontal_type)
6891 {
6892 struct window *w
6893 = set_window_scroll_bars (decode_live_window (window),
6894 width, vertical_type, height, horizontal_type);
6895 return w ? (apply_window_adjustment (w), Qt) : Qnil;
6896 }
6897
6898
6899 DEFUN ("window-scroll-bars", Fwindow_scroll_bars, Swindow_scroll_bars,
6900 0, 1, 0,
6901 doc: /* Get width and type of scroll bars of window WINDOW.
6902 WINDOW must be a live window and defaults to the selected one.
6903
6904 Value is a list of the form (WIDTH COLUMNS VERTICAL-TYPE HEIGHT LINES
6905 HORIZONTAL-TYPE). If WIDTH or HEIGHT is nil or VERTICAL-TYPE or
6906 HORIZONTAL-TYPE is t, the window is using the frame's corresponding
6907 value. */)
6908 (Lisp_Object window)
6909 {
6910 struct window *w = decode_live_window (window);
6911
6912 return Fcons (((w->scroll_bar_width >= 0)
6913 ? make_number (w->scroll_bar_width)
6914 : Qnil),
6915 list5 (make_number (WINDOW_SCROLL_BAR_COLS (w)),
6916 w->vertical_scroll_bar_type,
6917 ((w->scroll_bar_height >= 0)
6918 ? make_number (w->scroll_bar_height)
6919 : Qnil),
6920 make_number (WINDOW_SCROLL_BAR_LINES (w)),
6921 w->horizontal_scroll_bar_type));
6922 }
6923 \f
6924 /***********************************************************************
6925 Smooth scrolling
6926 ***********************************************************************/
6927
6928 DEFUN ("window-vscroll", Fwindow_vscroll, Swindow_vscroll, 0, 2, 0,
6929 doc: /* Return the amount by which WINDOW is scrolled vertically.
6930 If WINDOW is omitted or nil, it defaults to the selected window.
6931 Normally, value is a multiple of the canonical character height of WINDOW;
6932 optional second arg PIXELS-P means value is measured in pixels. */)
6933 (Lisp_Object window, Lisp_Object pixels_p)
6934 {
6935 Lisp_Object result;
6936 struct window *w = decode_live_window (window);
6937 struct frame *f = XFRAME (w->frame);
6938
6939 if (FRAME_WINDOW_P (f))
6940 result = (NILP (pixels_p)
6941 ? FRAME_CANON_Y_FROM_PIXEL_Y (f, -w->vscroll)
6942 : make_number (-w->vscroll));
6943 else
6944 result = make_number (0);
6945 return result;
6946 }
6947
6948
6949 DEFUN ("set-window-vscroll", Fset_window_vscroll, Sset_window_vscroll,
6950 2, 3, 0,
6951 doc: /* Set amount by which WINDOW should be scrolled vertically to VSCROLL.
6952 WINDOW nil means use the selected window. Normally, VSCROLL is a
6953 non-negative multiple of the canonical character height of WINDOW;
6954 optional third arg PIXELS-P non-nil means that VSCROLL is in pixels.
6955 If PIXELS-P is nil, VSCROLL may have to be rounded so that it
6956 corresponds to an integral number of pixels. The return value is the
6957 result of this rounding.
6958 If PIXELS-P is non-nil, the return value is VSCROLL. */)
6959 (Lisp_Object window, Lisp_Object vscroll, Lisp_Object pixels_p)
6960 {
6961 struct window *w = decode_live_window (window);
6962 struct frame *f = XFRAME (w->frame);
6963
6964 CHECK_NUMBER_OR_FLOAT (vscroll);
6965
6966 if (FRAME_WINDOW_P (f))
6967 {
6968 int old_dy = w->vscroll;
6969
6970 w->vscroll = - (NILP (pixels_p)
6971 ? FRAME_LINE_HEIGHT (f) * XFLOATINT (vscroll)
6972 : XFLOATINT (vscroll));
6973 w->vscroll = min (w->vscroll, 0);
6974
6975 if (w->vscroll != old_dy)
6976 {
6977 /* Adjust glyph matrix of the frame if the virtual display
6978 area becomes larger than before. */
6979 if (w->vscroll < 0 && w->vscroll < old_dy)
6980 adjust_frame_glyphs (f);
6981
6982 /* Prevent redisplay shortcuts. */
6983 XBUFFER (w->contents)->prevent_redisplay_optimizations_p = true;
6984 }
6985 }
6986
6987 return Fwindow_vscroll (window, pixels_p);
6988 }
6989
6990 \f
6991 /* Call FN for all leaf windows on frame F. FN is called with the
6992 first argument being a pointer to the leaf window, and with
6993 additional argument USER_DATA. Stops when FN returns 0. */
6994
6995 static void
6996 foreach_window (struct frame *f, bool (*fn) (struct window *, void *),
6997 void *user_data)
6998 {
6999 /* delete_frame may set FRAME_ROOT_WINDOW (f) to Qnil. */
7000 if (WINDOWP (FRAME_ROOT_WINDOW (f)))
7001 foreach_window_1 (XWINDOW (FRAME_ROOT_WINDOW (f)), fn, user_data);
7002 }
7003
7004
7005 /* Helper function for foreach_window. Call FN for all leaf windows
7006 reachable from W. FN is called with the first argument being a
7007 pointer to the leaf window, and with additional argument USER_DATA.
7008 Stop when FN returns false. Value is false if stopped by FN. */
7009
7010 static bool
7011 foreach_window_1 (struct window *w, bool (*fn) (struct window *, void *),
7012 void *user_data)
7013 {
7014 bool cont;
7015
7016 for (cont = true; w && cont;)
7017 {
7018 if (WINDOWP (w->contents))
7019 cont = foreach_window_1 (XWINDOW (w->contents), fn, user_data);
7020 else
7021 cont = fn (w, user_data);
7022
7023 w = NILP (w->next) ? 0 : XWINDOW (w->next);
7024 }
7025
7026 return cont;
7027 }
7028
7029 /***********************************************************************
7030 Initialization
7031 ***********************************************************************/
7032
7033 /* Return true if window configurations CONFIGURATION1 and CONFIGURATION2
7034 describe the same state of affairs. This is used by Fequal.
7035
7036 IGNORE_POSITIONS means ignore non-matching scroll positions
7037 and the like.
7038
7039 This ignores a couple of things like the dedication status of
7040 window, combination_limit and the like. This might have to be
7041 fixed. */
7042
7043 bool
7044 compare_window_configurations (Lisp_Object configuration1,
7045 Lisp_Object configuration2,
7046 bool ignore_positions)
7047 {
7048 register struct save_window_data *d1, *d2;
7049 struct Lisp_Vector *sws1, *sws2;
7050 ptrdiff_t i;
7051
7052 CHECK_WINDOW_CONFIGURATION (configuration1);
7053 CHECK_WINDOW_CONFIGURATION (configuration2);
7054
7055 d1 = (struct save_window_data *) XVECTOR (configuration1);
7056 d2 = (struct save_window_data *) XVECTOR (configuration2);
7057 sws1 = XVECTOR (d1->saved_windows);
7058 sws2 = XVECTOR (d2->saved_windows);
7059
7060 /* Frame settings must match. */
7061 if (d1->frame_cols != d2->frame_cols
7062 || d1->frame_lines != d2->frame_lines
7063 || d1->frame_menu_bar_lines != d2->frame_menu_bar_lines
7064 || !EQ (d1->selected_frame, d2->selected_frame)
7065 || !EQ (d1->current_buffer, d2->current_buffer)
7066 || (!ignore_positions
7067 && (!EQ (d1->minibuf_scroll_window, d2->minibuf_scroll_window)
7068 || !EQ (d1->minibuf_selected_window, d2->minibuf_selected_window)))
7069 || !EQ (d1->focus_frame, d2->focus_frame)
7070 /* Verify that the two configurations have the same number of windows. */
7071 || sws1->header.size != sws2->header.size)
7072 return false;
7073
7074 for (i = 0; i < sws1->header.size; i++)
7075 {
7076 struct saved_window *sw1, *sw2;
7077
7078 sw1 = SAVED_WINDOW_N (sws1, i);
7079 sw2 = SAVED_WINDOW_N (sws2, i);
7080
7081 if (
7082 /* The "current" windows in the two configurations must
7083 correspond to each other. */
7084 EQ (d1->current_window, sw1->window)
7085 != EQ (d2->current_window, sw2->window)
7086 /* Windows' buffers must match. */
7087 || !EQ (sw1->buffer, sw2->buffer)
7088 || !EQ (sw1->pixel_left, sw2->pixel_left)
7089 || !EQ (sw1->pixel_top, sw2->pixel_top)
7090 || !EQ (sw1->pixel_height, sw2->pixel_height)
7091 || !EQ (sw1->pixel_width, sw2->pixel_width)
7092 || !EQ (sw1->left_col, sw2->left_col)
7093 || !EQ (sw1->top_line, sw2->top_line)
7094 || !EQ (sw1->total_cols, sw2->total_cols)
7095 || !EQ (sw1->total_lines, sw2->total_lines)
7096 || !EQ (sw1->display_table, sw2->display_table)
7097 /* The next two disjuncts check the window structure for
7098 equality. */
7099 || !EQ (sw1->parent, sw2->parent)
7100 || !EQ (sw1->prev, sw2->prev)
7101 || (!ignore_positions
7102 && (!EQ (sw1->hscroll, sw2->hscroll)
7103 || !EQ (sw1->min_hscroll, sw2->min_hscroll)
7104 || !EQ (sw1->start_at_line_beg, sw2->start_at_line_beg)
7105 || NILP (Fequal (sw1->start, sw2->start))
7106 || NILP (Fequal (sw1->pointm, sw2->pointm))))
7107 || !EQ (sw1->left_margin_cols, sw2->left_margin_cols)
7108 || !EQ (sw1->right_margin_cols, sw2->right_margin_cols)
7109 || !EQ (sw1->left_fringe_width, sw2->left_fringe_width)
7110 || !EQ (sw1->right_fringe_width, sw2->right_fringe_width)
7111 || !EQ (sw1->fringes_outside_margins, sw2->fringes_outside_margins)
7112 || !EQ (sw1->scroll_bar_width, sw2->scroll_bar_width)
7113 || !EQ (sw1->scroll_bar_height, sw2->scroll_bar_height)
7114 || !EQ (sw1->vertical_scroll_bar_type, sw2->vertical_scroll_bar_type)
7115 || !EQ (sw1->horizontal_scroll_bar_type, sw2->horizontal_scroll_bar_type))
7116 return false;
7117 }
7118
7119 return true;
7120 }
7121
7122 DEFUN ("compare-window-configurations", Fcompare_window_configurations,
7123 Scompare_window_configurations, 2, 2, 0,
7124 doc: /* Compare two window configurations as regards the structure of windows.
7125 This function ignores details such as the values of point
7126 and scrolling positions. */)
7127 (Lisp_Object x, Lisp_Object y)
7128 {
7129 if (compare_window_configurations (x, y, true))
7130 return Qt;
7131 return Qnil;
7132 }
7133 \f
7134 void
7135 init_window_once (void)
7136 {
7137 struct frame *f = make_initial_frame ();
7138 XSETFRAME (selected_frame, f);
7139 Vterminal_frame = selected_frame;
7140 minibuf_window = f->minibuffer_window;
7141 selected_window = f->selected_window;
7142 }
7143
7144 void
7145 init_window (void)
7146 {
7147 Vwindow_list = Qnil;
7148 }
7149
7150 void
7151 syms_of_window (void)
7152 {
7153 DEFSYM (Qscroll_up, "scroll-up");
7154 DEFSYM (Qscroll_down, "scroll-down");
7155 DEFSYM (Qscroll_command, "scroll-command");
7156
7157 Fput (Qscroll_up, Qscroll_command, Qt);
7158 Fput (Qscroll_down, Qscroll_command, Qt);
7159
7160 DEFSYM (Qwindow_configuration_change_hook, "window-configuration-change-hook");
7161 DEFSYM (Qwindowp, "windowp");
7162 DEFSYM (Qwindow_configuration_p, "window-configuration-p");
7163 DEFSYM (Qwindow_live_p, "window-live-p");
7164 DEFSYM (Qwindow_valid_p, "window-valid-p");
7165 DEFSYM (Qwindow_deletable_p, "window-deletable-p");
7166 DEFSYM (Qdelete_window, "delete-window");
7167 DEFSYM (Qwindow_resize_root_window, "window--resize-root-window");
7168 DEFSYM (Qwindow_resize_root_window_vertically, "window--resize-root-window-vertically");
7169 DEFSYM (Qwindow_sanitize_window_sizes, "window--sanitize-window-sizes");
7170 DEFSYM (Qwindow_pixel_to_total, "window--pixel-to-total");
7171 DEFSYM (Qsafe, "safe");
7172 DEFSYM (Qdisplay_buffer, "display-buffer");
7173 DEFSYM (Qreplace_buffer_in_windows, "replace-buffer-in-windows");
7174 DEFSYM (Qrecord_window_buffer, "record-window-buffer");
7175 DEFSYM (Qget_mru_window, "get-mru-window");
7176 DEFSYM (Qwindow_size, "window-size");
7177 DEFSYM (Qtemp_buffer_show_hook, "temp-buffer-show-hook");
7178 DEFSYM (Qabove, "above");
7179 DEFSYM (Qclone_of, "clone-of");
7180 DEFSYM (Qfloor, "floor");
7181 DEFSYM (Qceiling, "ceiling");
7182
7183 staticpro (&Vwindow_list);
7184
7185 minibuf_selected_window = Qnil;
7186 staticpro (&minibuf_selected_window);
7187
7188 window_scroll_pixel_based_preserve_x = -1;
7189 window_scroll_pixel_based_preserve_y = -1;
7190 window_scroll_preserve_hpos = -1;
7191 window_scroll_preserve_vpos = -1;
7192
7193 DEFVAR_LISP ("temp-buffer-show-function", Vtemp_buffer_show_function,
7194 doc: /* Non-nil means call as function to display a help buffer.
7195 The function is called with one argument, the buffer to be displayed.
7196 Used by `with-output-to-temp-buffer'.
7197 If this function is used, then it must do the entire job of showing
7198 the buffer; `temp-buffer-show-hook' is not run unless this function runs it. */);
7199 Vtemp_buffer_show_function = Qnil;
7200
7201 DEFVAR_LISP ("minibuffer-scroll-window", Vminibuf_scroll_window,
7202 doc: /* Non-nil means it is the window that C-M-v in minibuffer should scroll. */);
7203 Vminibuf_scroll_window = Qnil;
7204
7205 DEFVAR_BOOL ("mode-line-in-non-selected-windows", mode_line_in_non_selected_windows,
7206 doc: /* Non-nil means to use `mode-line-inactive' face in non-selected windows.
7207 If the minibuffer is active, the `minibuffer-scroll-window' mode line
7208 is displayed in the `mode-line' face. */);
7209 mode_line_in_non_selected_windows = true;
7210
7211 DEFVAR_LISP ("other-window-scroll-buffer", Vother_window_scroll_buffer,
7212 doc: /* If this is a live buffer, \\[scroll-other-window] should scroll its window. */);
7213 Vother_window_scroll_buffer = Qnil;
7214
7215 DEFVAR_BOOL ("auto-window-vscroll", auto_window_vscroll_p,
7216 doc: /* Non-nil means to automatically adjust `window-vscroll' to view tall lines. */);
7217 auto_window_vscroll_p = true;
7218
7219 DEFVAR_INT ("next-screen-context-lines", next_screen_context_lines,
7220 doc: /* Number of lines of continuity when scrolling by screenfuls. */);
7221 next_screen_context_lines = 2;
7222
7223 DEFVAR_LISP ("scroll-preserve-screen-position",
7224 Vscroll_preserve_screen_position,
7225 doc: /* Controls if scroll commands move point to keep its screen position unchanged.
7226 A value of nil means point does not keep its screen position except
7227 at the scroll margin or window boundary respectively.
7228 A value of t means point keeps its screen position if the scroll
7229 command moved it vertically out of the window, e.g. when scrolling
7230 by full screens.
7231 Any other value means point always keeps its screen position.
7232 Scroll commands should have the `scroll-command' property
7233 on their symbols to be controlled by this variable. */);
7234 Vscroll_preserve_screen_position = Qnil;
7235
7236 DEFVAR_LISP ("window-point-insertion-type", Vwindow_point_insertion_type,
7237 doc: /* Type of marker to use for `window-point'. */);
7238 Vwindow_point_insertion_type = Qnil;
7239 DEFSYM (Qwindow_point_insertion_type, "window_point_insertion_type");
7240
7241 DEFVAR_LISP ("window-configuration-change-hook",
7242 Vwindow_configuration_change_hook,
7243 doc: /* Functions to call when window configuration changes.
7244 The buffer-local part is run once per window, with the relevant window
7245 selected; while the global part is run only once for the modified frame,
7246 with the relevant frame selected. */);
7247 Vwindow_configuration_change_hook = Qnil;
7248
7249 DEFVAR_LISP ("recenter-redisplay", Vrecenter_redisplay,
7250 doc: /* Non-nil means `recenter' redraws entire frame.
7251 If this option is non-nil, then the `recenter' command with a nil
7252 argument will redraw the entire frame; the special value `tty' causes
7253 the frame to be redrawn only if it is a tty frame. */);
7254 Vrecenter_redisplay = Qtty;
7255
7256 DEFVAR_LISP ("window-combination-resize", Vwindow_combination_resize,
7257 doc: /* If t, resize window combinations proportionally.
7258 If this variable is nil, splitting a window gets the entire screen space
7259 for displaying the new window from the window to split. Deleting and
7260 resizing a window preferably resizes one adjacent window only.
7261
7262 If this variable is t, splitting a window tries to get the space
7263 proportionally from all windows in the same combination. This also
7264 allows splitting a window that is otherwise too small or of fixed size.
7265 Resizing and deleting a window proportionally resize all windows in the
7266 same combination.
7267
7268 Other values are reserved for future use.
7269
7270 This variable takes no effect if the variable `window-combination-limit' is
7271 non-nil. */);
7272 Vwindow_combination_resize = Qnil;
7273
7274 DEFVAR_LISP ("window-combination-limit", Vwindow_combination_limit,
7275 doc: /* If non-nil, splitting a window makes a new parent window.
7276 The following values are recognized:
7277
7278 nil means splitting a window will create a new parent window only if the
7279 window has no parent window or the window shall become part of a
7280 combination orthogonal to the one it is part of.
7281
7282 `window-size' means that splitting a window for displaying a buffer
7283 makes a new parent window provided `display-buffer' is supposed to
7284 explicitly set the window's size due to the presence of a
7285 `window-height' or `window-width' entry in the alist used by
7286 `display-buffer'. Otherwise, this value is handled like nil.
7287
7288 `temp-buffer' means that splitting a window for displaying a temporary
7289 buffer always makes a new parent window. Otherwise, this value is
7290 handled like nil.
7291
7292 `display-buffer' means that splitting a window for displaying a buffer
7293 always makes a new parent window. Since temporary buffers are
7294 displayed by the function `display-buffer', this value is stronger
7295 than `temp-buffer'. Splitting a window for other purpose makes a
7296 new parent window only if needed.
7297
7298 t means that splitting a window always creates a new parent window. If
7299 all splits behave this way, each frame's window tree is a binary
7300 tree and every window but the frame's root window has exactly one
7301 sibling.
7302
7303 Other values are reserved for future use. */);
7304 Vwindow_combination_limit = Qwindow_size;
7305
7306 DEFVAR_LISP ("window-persistent-parameters", Vwindow_persistent_parameters,
7307 doc: /* Alist of persistent window parameters.
7308 This alist specifies which window parameters shall get saved by
7309 `current-window-configuration' and `window-state-get' and subsequently
7310 restored to their previous values by `set-window-configuration' and
7311 `window-state-put'.
7312
7313 The car of each entry of this alist is the symbol specifying the
7314 parameter. The cdr is one of the following:
7315
7316 nil means the parameter is neither saved by `window-state-get' nor by
7317 `current-window-configuration'.
7318
7319 t means the parameter is saved by `current-window-configuration' and,
7320 provided its WRITABLE argument is nil, by `window-state-get'.
7321
7322 The symbol `writable' means the parameter is saved unconditionally by
7323 both `current-window-configuration' and `window-state-get'. Do not use
7324 this value for parameters without read syntax (like windows or frames).
7325
7326 Parameters not saved by `current-window-configuration' or
7327 `window-state-get' are left alone by `set-window-configuration'
7328 respectively are not installed by `window-state-put'. */);
7329 Vwindow_persistent_parameters = list1 (Fcons (Qclone_of, Qt));
7330
7331 DEFVAR_BOOL ("window-resize-pixelwise", window_resize_pixelwise,
7332 doc: /* Non-nil means resize windows pixelwise.
7333 This currently affects the functions: `split-window', `maximize-window',
7334 `minimize-window', `fit-window-to-buffer' and `fit-frame-to-buffer', and
7335 all functions that symmetrically resize a parent window.
7336
7337 Note that when a frame's pixel size is not a multiple of the
7338 frame's character size, at least one window may get resized
7339 pixelwise even if this option is nil. */);
7340 window_resize_pixelwise = false;
7341
7342 DEFVAR_BOOL ("fast-but-imprecise-scrolling",
7343 Vfast_but_imprecise_scrolling,
7344 doc: /* When non-nil, accelerate scrolling operations.
7345 This comes into play when scrolling rapidly over previously
7346 unfontified buffer regions. Only those portions of the buffer which
7347 are actually going to be displayed get fontified.
7348
7349 Note that this optimization can cause the portion of the buffer
7350 displayed after a scrolling operation to be somewhat inaccurate. */);
7351 Vfast_but_imprecise_scrolling = false;
7352
7353 defsubr (&Sselected_window);
7354 defsubr (&Sminibuffer_window);
7355 defsubr (&Swindow_minibuffer_p);
7356 defsubr (&Swindowp);
7357 defsubr (&Swindow_valid_p);
7358 defsubr (&Swindow_live_p);
7359 defsubr (&Swindow_frame);
7360 defsubr (&Sframe_root_window);
7361 defsubr (&Sframe_first_window);
7362 defsubr (&Sframe_selected_window);
7363 defsubr (&Sset_frame_selected_window);
7364 defsubr (&Spos_visible_in_window_p);
7365 defsubr (&Swindow_line_height);
7366 defsubr (&Swindow_buffer);
7367 defsubr (&Swindow_parent);
7368 defsubr (&Swindow_top_child);
7369 defsubr (&Swindow_left_child);
7370 defsubr (&Swindow_next_sibling);
7371 defsubr (&Swindow_prev_sibling);
7372 defsubr (&Swindow_combination_limit);
7373 defsubr (&Sset_window_combination_limit);
7374 defsubr (&Swindow_use_time);
7375 defsubr (&Swindow_pixel_width);
7376 defsubr (&Swindow_pixel_height);
7377 defsubr (&Swindow_total_width);
7378 defsubr (&Swindow_total_height);
7379 defsubr (&Swindow_normal_size);
7380 defsubr (&Swindow_new_pixel);
7381 defsubr (&Swindow_new_total);
7382 defsubr (&Swindow_new_normal);
7383 defsubr (&Swindow_pixel_left);
7384 defsubr (&Swindow_pixel_top);
7385 defsubr (&Swindow_left_column);
7386 defsubr (&Swindow_top_line);
7387 defsubr (&Sset_window_new_pixel);
7388 defsubr (&Sset_window_new_total);
7389 defsubr (&Sset_window_new_normal);
7390 defsubr (&Swindow_resize_apply);
7391 defsubr (&Swindow_resize_apply_total);
7392 defsubr (&Swindow_body_height);
7393 defsubr (&Swindow_body_width);
7394 defsubr (&Swindow_hscroll);
7395 defsubr (&Sset_window_hscroll);
7396 defsubr (&Swindow_redisplay_end_trigger);
7397 defsubr (&Sset_window_redisplay_end_trigger);
7398 defsubr (&Swindow_mode_line_height);
7399 defsubr (&Swindow_header_line_height);
7400 defsubr (&Swindow_right_divider_width);
7401 defsubr (&Swindow_bottom_divider_width);
7402 defsubr (&Swindow_scroll_bar_width);
7403 defsubr (&Swindow_scroll_bar_height);
7404 defsubr (&Scoordinates_in_window_p);
7405 defsubr (&Swindow_at);
7406 defsubr (&Swindow_point);
7407 defsubr (&Swindow_old_point);
7408 defsubr (&Swindow_start);
7409 defsubr (&Swindow_end);
7410 defsubr (&Sset_window_point);
7411 defsubr (&Sset_window_start);
7412 defsubr (&Swindow_dedicated_p);
7413 defsubr (&Sset_window_dedicated_p);
7414 defsubr (&Swindow_display_table);
7415 defsubr (&Sset_window_display_table);
7416 defsubr (&Snext_window);
7417 defsubr (&Sprevious_window);
7418 defsubr (&Swindow__sanitize_window_sizes);
7419 defsubr (&Sget_buffer_window);
7420 defsubr (&Sdelete_other_windows_internal);
7421 defsubr (&Sdelete_window_internal);
7422 defsubr (&Sresize_mini_window_internal);
7423 defsubr (&Sset_window_buffer);
7424 defsubr (&Srun_window_configuration_change_hook);
7425 defsubr (&Srun_window_scroll_functions);
7426 defsubr (&Sselect_window);
7427 defsubr (&Sforce_window_update);
7428 defsubr (&Ssplit_window_internal);
7429 defsubr (&Sscroll_up);
7430 defsubr (&Sscroll_down);
7431 defsubr (&Sscroll_left);
7432 defsubr (&Sscroll_right);
7433 defsubr (&Sother_window_for_scrolling);
7434 defsubr (&Sscroll_other_window);
7435 defsubr (&Sminibuffer_selected_window);
7436 defsubr (&Srecenter);
7437 defsubr (&Swindow_text_width);
7438 defsubr (&Swindow_text_height);
7439 defsubr (&Smove_to_window_line);
7440 defsubr (&Swindow_configuration_p);
7441 defsubr (&Swindow_configuration_frame);
7442 defsubr (&Sset_window_configuration);
7443 defsubr (&Scurrent_window_configuration);
7444 defsubr (&Sset_window_margins);
7445 defsubr (&Swindow_margins);
7446 defsubr (&Sset_window_fringes);
7447 defsubr (&Swindow_fringes);
7448 defsubr (&Sset_window_scroll_bars);
7449 defsubr (&Swindow_scroll_bars);
7450 defsubr (&Swindow_vscroll);
7451 defsubr (&Sset_window_vscroll);
7452 defsubr (&Scompare_window_configurations);
7453 defsubr (&Swindow_list);
7454 defsubr (&Swindow_list_1);
7455 defsubr (&Swindow_prev_buffers);
7456 defsubr (&Sset_window_prev_buffers);
7457 defsubr (&Swindow_next_buffers);
7458 defsubr (&Sset_window_next_buffers);
7459 defsubr (&Swindow_parameters);
7460 defsubr (&Swindow_parameter);
7461 defsubr (&Sset_window_parameter);
7462 }
7463
7464 void
7465 keys_of_window (void)
7466 {
7467 initial_define_key (control_x_map, '<', "scroll-left");
7468 initial_define_key (control_x_map, '>', "scroll-right");
7469
7470 initial_define_key (global_map, Ctl ('V'), "scroll-up-command");
7471 initial_define_key (meta_map, Ctl ('V'), "scroll-other-window");
7472 initial_define_key (meta_map, 'v', "scroll-down-command");
7473 }