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