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