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