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