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