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