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