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