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