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