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