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