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