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