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