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