Merge from emacs-24 branch
[bpt/emacs.git] / lisp / window.el
1 ;;; window.el --- GNU Emacs window commands aside from those written in C
2
3 ;; Copyright (C) 1985, 1989, 1992-1994, 2000-2012
4 ;; Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: internal
8 ;; Package: emacs
9
10 ;; This file is part of GNU Emacs.
11
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
16
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
21
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24
25 ;;; Commentary:
26
27 ;; Window tree functions.
28
29 ;;; Code:
30
31 (eval-when-compile (require 'cl))
32
33 (defmacro save-selected-window (&rest body)
34 "Execute BODY, then select the previously selected window.
35 The value returned is the value of the last form in BODY.
36
37 This macro saves and restores the selected window, as well as the
38 selected window in each frame. If the previously selected window
39 is no longer live, then whatever window is selected at the end of
40 BODY remains selected. If the previously selected window of some
41 frame is no longer live at the end of BODY, that frame's selected
42 window is left alone.
43
44 This macro saves and restores the current buffer, since otherwise
45 its normal operation could make a different buffer current. The
46 order of recently selected windows and the buffer list ordering
47 are not altered by this macro (unless they are altered in BODY)."
48 (declare (indent 0) (debug t))
49 `(let ((save-selected-window-window (selected-window))
50 ;; It is necessary to save all of these, because calling
51 ;; select-window changes frame-selected-window for whatever
52 ;; frame that window is in.
53 (save-selected-window-alist
54 (mapcar (lambda (frame) (cons frame (frame-selected-window frame)))
55 (frame-list))))
56 (save-current-buffer
57 (unwind-protect
58 (progn ,@body)
59 (dolist (elt save-selected-window-alist)
60 (and (frame-live-p (car elt))
61 (window-live-p (cdr elt))
62 (set-frame-selected-window (car elt) (cdr elt) 'norecord)))
63 (when (window-live-p save-selected-window-window)
64 (select-window save-selected-window-window 'norecord))))))
65
66 ;; The following two functions are like `window-next-sibling' and
67 ;; `window-prev-sibling' but the WINDOW argument is _not_ optional (so
68 ;; they don't substitute the selected window for nil), and they return
69 ;; nil when WINDOW doesn't have a parent (like a frame's root window or
70 ;; a minibuffer window).
71 (defun window-right (window)
72 "Return WINDOW's right sibling.
73 Return nil if WINDOW is the root window of its frame. WINDOW can
74 be any window."
75 (and window (window-parent window) (window-next-sibling window)))
76
77 (defun window-left (window)
78 "Return WINDOW's left sibling.
79 Return nil if WINDOW is the root window of its frame. WINDOW can
80 be any window."
81 (and window (window-parent window) (window-prev-sibling window)))
82
83 (defun window-child (window)
84 "Return WINDOW's first child window."
85 (or (window-top-child window) (window-left-child window)))
86
87 (defun window-child-count (window)
88 "Return number of WINDOW's child windows."
89 (let ((count 0))
90 (when (and (windowp window) (setq window (window-child window)))
91 (while window
92 (setq count (1+ count))
93 (setq window (window-next-sibling window))))
94 count))
95
96 (defun window-last-child (window)
97 "Return last child window of WINDOW."
98 (when (and (windowp window) (setq window (window-child window)))
99 (while (window-next-sibling window)
100 (setq window (window-next-sibling window))))
101 window)
102
103 (defun window-valid-p (object)
104 "Return t if OBJECT denotes a live window or internal window.
105 Otherwise, return nil; this includes the case where OBJECT is a
106 deleted window."
107 (and (windowp object)
108 (or (window-buffer object) (window-child object))
109 t))
110
111 (defun window-normalize-buffer (buffer-or-name)
112 "Return buffer specified by BUFFER-OR-NAME.
113 BUFFER-OR-NAME must be either a buffer or a string naming a live
114 buffer and defaults to the current buffer."
115 (cond
116 ((not buffer-or-name)
117 (current-buffer))
118 ((bufferp buffer-or-name)
119 (if (buffer-live-p buffer-or-name)
120 buffer-or-name
121 (error "Buffer %s is not a live buffer" buffer-or-name)))
122 ((get-buffer buffer-or-name))
123 (t
124 (error "No such buffer %s" buffer-or-name))))
125
126 (defun window-normalize-frame (frame)
127 "Return frame specified by FRAME.
128 FRAME must be a live frame and defaults to the selected frame."
129 (if frame
130 (if (frame-live-p frame)
131 frame
132 (error "%s is not a live frame" frame))
133 (selected-frame)))
134
135 (defun window-normalize-window (window &optional live-only)
136 "Return window specified by WINDOW.
137 If WINDOW is nil, return `selected-window'.
138 If WINDOW is a live window or internal window, return WINDOW;
139 if LIVE-ONLY is non-nil, return WINDOW for a live window only.
140 Otherwise, signal an error."
141 (cond ((null window)
142 (selected-window))
143 (live-only
144 (if (window-live-p window)
145 window
146 (error "%s is not a live window" window)))
147 ((if (window-valid-p window)
148 window
149 (error "%s is not a window" window)))))
150
151 (defvar ignore-window-parameters nil
152 "If non-nil, standard functions ignore window parameters.
153 The functions currently affected by this are `split-window',
154 `delete-window', `delete-other-windows' and `other-window'.
155
156 An application may bind this to a non-nil value around calls to
157 these functions to inhibit processing of window parameters.")
158
159 (defconst window-safe-min-height 1
160 "The absolute minimum number of lines of a window.
161 Anything less might crash Emacs.")
162
163 (defcustom window-min-height 4
164 "The minimum number of lines of any window.
165 The value has to accommodate a mode- or header-line if present.
166 A value less than `window-safe-min-height' is ignored. The value
167 of this variable is honored when windows are resized or split.
168
169 Applications should never rebind this variable. To resize a
170 window to a height less than the one specified here, an
171 application should instead call `window-resize' with a non-nil
172 IGNORE argument. In order to have `split-window' make a window
173 shorter, explicitly specify the SIZE argument of that function."
174 :type 'integer
175 :version "24.1"
176 :group 'windows)
177
178 (defconst window-safe-min-width 2
179 "The absolute minimum number of columns of a window.
180 Anything less might crash Emacs.")
181
182 (defcustom window-min-width 10
183 "The minimum number of columns of any window.
184 The value has to accommodate margins, fringes, or scrollbars if
185 present. A value less than `window-safe-min-width' is ignored.
186 The value of this variable is honored when windows are resized or
187 split.
188
189 Applications should never rebind this variable. To resize a
190 window to a width less than the one specified here, an
191 application should instead call `window-resize' with a non-nil
192 IGNORE argument. In order to have `split-window' make a window
193 narrower, explicitly specify the SIZE argument of that function."
194 :type 'integer
195 :version "24.1"
196 :group 'windows)
197
198 (defun window-combined-p (&optional window horizontal)
199 "Return non-nil if WINDOW has siblings in a given direction.
200 If WINDOW is omitted or nil, it defaults to the selected window.
201
202 HORIZONTAL determines a direction for the window combination.
203 If HORIZONTAL is omitted or nil, return non-nil if WINDOW is part
204 of a vertical window combination.
205 If HORIZONTAL is non-nil, return non-nil if WINDOW is part of a
206 horizontal window combination."
207 (setq window (window-normalize-window window))
208 (let ((parent (window-parent window)))
209 (and parent
210 (if horizontal
211 (window-left-child parent)
212 (window-top-child parent)))))
213
214 (defun window-combinations (window &optional horizontal)
215 "Return largest number of windows vertically arranged within WINDOW.
216 If WINDOW is omitted or nil, it defaults to the selected window.
217 If HORIZONTAL is non-nil, return the largest number of
218 windows horizontally arranged within WINDOW."
219 (setq window (window-normalize-window window))
220 (cond
221 ((window-live-p window)
222 ;; If WINDOW is live, return 1.
223 1)
224 ((if horizontal
225 (window-left-child window)
226 (window-top-child window))
227 ;; If WINDOW is iso-combined, return the sum of the values for all
228 ;; child windows of WINDOW.
229 (let ((child (window-child window))
230 (count 0))
231 (while child
232 (setq count
233 (+ (window-combinations child horizontal)
234 count))
235 (setq child (window-right child)))
236 count))
237 (t
238 ;; If WINDOW is not iso-combined, return the maximum value of any
239 ;; child window of WINDOW.
240 (let ((child (window-child window))
241 (count 1))
242 (while child
243 (setq count
244 (max (window-combinations child horizontal)
245 count))
246 (setq child (window-right child)))
247 count))))
248
249 (defun walk-window-tree-1 (fun walk-window-tree-window any &optional sub-only)
250 "Helper function for `walk-window-tree' and `walk-window-subtree'."
251 (let (walk-window-tree-buffer)
252 (while walk-window-tree-window
253 (setq walk-window-tree-buffer
254 (window-buffer walk-window-tree-window))
255 (when (or walk-window-tree-buffer any)
256 (funcall fun walk-window-tree-window))
257 (unless walk-window-tree-buffer
258 (walk-window-tree-1
259 fun (window-left-child walk-window-tree-window) any)
260 (walk-window-tree-1
261 fun (window-top-child walk-window-tree-window) any))
262 (if sub-only
263 (setq walk-window-tree-window nil)
264 (setq walk-window-tree-window
265 (window-right walk-window-tree-window))))))
266
267 (defun walk-window-tree (fun &optional frame any)
268 "Run function FUN on each live window of FRAME.
269 FUN must be a function with one argument - a window. FRAME must
270 be a live frame and defaults to the selected one. ANY, if
271 non-nil means to run FUN on all live and internal windows of
272 FRAME.
273
274 This function performs a pre-order, depth-first traversal of the
275 window tree. If FUN changes the window tree, the result is
276 unpredictable."
277 (let ((walk-window-tree-frame (window-normalize-frame frame)))
278 (walk-window-tree-1
279 fun (frame-root-window walk-window-tree-frame) any)))
280
281 (defun walk-window-subtree (fun &optional window any)
282 "Run function FUN on the subtree of windows rooted at WINDOW.
283 WINDOW defaults to the selected window. FUN must be a function
284 with one argument - a window. By default, run FUN only on live
285 windows of the subtree. If the optional argument ANY is non-nil,
286 run FUN on all live and internal windows of the subtree. If
287 WINDOW is live, run FUN on WINDOW only.
288
289 This function performs a pre-order, depth-first traversal of the
290 subtree rooted at WINDOW. If FUN changes that tree, the result
291 is unpredictable."
292 (setq window (window-normalize-window window))
293 (walk-window-tree-1 fun window any t))
294
295 (defun window-with-parameter (parameter &optional value frame any)
296 "Return first window on FRAME with PARAMETER non-nil.
297 FRAME defaults to the selected frame. Optional argument VALUE
298 non-nil means only return a window whose window-parameter value
299 for PARAMETER equals VALUE (comparison is done with `equal').
300 Optional argument ANY non-nil means consider internal windows
301 too."
302 (let (this-value)
303 (catch 'found
304 (walk-window-tree
305 (lambda (window)
306 (when (and (setq this-value (window-parameter window parameter))
307 (or (not value) (equal value this-value)))
308 (throw 'found window)))
309 frame any))))
310
311 ;;; Atomic windows.
312 (defun window-atom-root (&optional window)
313 "Return root of atomic window WINDOW is a part of.
314 WINDOW can be any window and defaults to the selected one.
315 Return nil if WINDOW is not part of an atomic window."
316 (setq window (window-normalize-window window))
317 (let (root)
318 (while (and window (window-parameter window 'window-atom))
319 (setq root window)
320 (setq window (window-parent window)))
321 root))
322
323 (defun window-make-atom (window)
324 "Make WINDOW an atomic window.
325 WINDOW must be an internal window. Return WINDOW."
326 (if (not (window-child window))
327 (error "Window %s is not an internal window" window)
328 (walk-window-subtree
329 (lambda (window)
330 (set-window-parameter window 'window-atom t))
331 window t)
332 window))
333
334 (defun window--atom-check-1 (window)
335 "Subroutine of `window--atom-check'."
336 (when window
337 (if (window-parameter window 'window-atom)
338 (let ((count 0))
339 (when (or (catch 'reset
340 (walk-window-subtree
341 (lambda (window)
342 (if (window-parameter window 'window-atom)
343 (setq count (1+ count))
344 (throw 'reset t)))
345 window t))
346 ;; count >= 1 must hold here. If there's no other
347 ;; window around dissolve this atomic window.
348 (= count 1))
349 ;; Dissolve atomic window.
350 (walk-window-subtree
351 (lambda (window)
352 (set-window-parameter window 'window-atom nil))
353 window t)))
354 ;; Check children.
355 (unless (window-buffer window)
356 (window--atom-check-1 (window-left-child window))
357 (window--atom-check-1 (window-top-child window))))
358 ;; Check right sibling
359 (window--atom-check-1 (window-right window))))
360
361 (defun window--atom-check (&optional frame)
362 "Check atomicity of all windows on FRAME.
363 FRAME defaults to the selected frame. If an atomic window is
364 wrongly configured, reset the atomicity of all its windows on
365 FRAME to nil. An atomic window is wrongly configured if it has
366 no child windows or one of its child windows is not atomic."
367 (window--atom-check-1 (frame-root-window frame)))
368
369 ;; Side windows.
370 (defvar window-sides '(left top right bottom)
371 "Window sides.")
372
373 (defcustom window-sides-vertical nil
374 "If non-nil, left and right side windows are full height.
375 Otherwise, top and bottom side windows are full width."
376 :type 'boolean
377 :group 'windows
378 :version "24.1")
379
380 (defcustom window-sides-slots '(nil nil nil nil)
381 "Maximum number of side window slots.
382 The value is a list of four elements specifying the number of
383 side window slots on (in this order) the left, top, right and
384 bottom side of each frame. If an element is a number, this means
385 to display at most that many side windows on the corresponding
386 side. If an element is nil, this means there's no bound on the
387 number of slots on that side."
388 :version "24.1"
389 :risky t
390 :type
391 '(list
392 :value (nil nil nil nil)
393 (choice
394 :tag "Left"
395 :help-echo "Maximum slots of left side window."
396 :value nil
397 :format "%[Left%] %v\n"
398 (const :tag "Unlimited" :format "%t" nil)
399 (integer :tag "Number" :value 2 :size 5))
400 (choice
401 :tag "Top"
402 :help-echo "Maximum slots of top side window."
403 :value nil
404 :format "%[Top%] %v\n"
405 (const :tag "Unlimited" :format "%t" nil)
406 (integer :tag "Number" :value 3 :size 5))
407 (choice
408 :tag "Right"
409 :help-echo "Maximum slots of right side window."
410 :value nil
411 :format "%[Right%] %v\n"
412 (const :tag "Unlimited" :format "%t" nil)
413 (integer :tag "Number" :value 2 :size 5))
414 (choice
415 :tag "Bottom"
416 :help-echo "Maximum slots of bottom side window."
417 :value nil
418 :format "%[Bottom%] %v\n"
419 (const :tag "Unlimited" :format "%t" nil)
420 (integer :tag "Number" :value 3 :size 5)))
421 :group 'windows)
422
423 (defun window--side-check (&optional frame)
424 "Check the window-side parameter of all windows on FRAME.
425 FRAME defaults to the selected frame. If the configuration is
426 invalid, reset all window-side parameters to nil.
427
428 A valid configuration has to preserve the following invariant:
429
430 - If a window has a non-nil window-side parameter, it must have a
431 parent window and the parent window's window-side parameter
432 must be either nil or the same as for window.
433
434 - If windows with non-nil window-side parameters exist, there
435 must be at most one window of each side and non-side with a
436 parent whose window-side parameter is nil and there must be no
437 leaf window whose window-side parameter is nil."
438 (let (normal none left top right bottom
439 side parent parent-side)
440 (when (or (catch 'reset
441 (walk-window-tree
442 (lambda (window)
443 (setq side (window-parameter window 'window-side))
444 (setq parent (window-parent window))
445 (setq parent-side
446 (and parent (window-parameter parent 'window-side)))
447 ;; The following `cond' seems a bit tedious, but I'd
448 ;; rather stick to using just the stack.
449 (cond
450 (parent-side
451 (when (not (eq parent-side side))
452 ;; A parent whose window-side is non-nil must
453 ;; have a child with the same window-side.
454 (throw 'reset t)))
455 ;; Now check that there's more than one main window
456 ;; for any of none, left, top, right and bottom.
457 ((eq side 'none)
458 (if none
459 (throw 'reset t)
460 (setq none t)))
461 ((eq side 'left)
462 (if left
463 (throw 'reset t)
464 (setq left t)))
465 ((eq side 'top)
466 (if top
467 (throw 'reset t)
468 (setq top t)))
469 ((eq side 'right)
470 (if right
471 (throw 'reset t)
472 (setq right t)))
473 ((eq side 'bottom)
474 (if bottom
475 (throw 'reset t)
476 (setq bottom t)))
477 ((window-buffer window)
478 ;; A leaf window without window-side parameter,
479 ;; record its existence.
480 (setq normal t))))
481 frame t))
482 (if none
483 ;; At least one non-side window exists, so there must
484 ;; be at least one side-window and no normal window.
485 (or (not (or left top right bottom)) normal)
486 ;; No non-side window exists, so there must be no side
487 ;; window either.
488 (or left top right bottom)))
489 (walk-window-tree
490 (lambda (window)
491 (set-window-parameter window 'window-side nil))
492 frame t))))
493
494 (defun window--check (&optional frame)
495 "Check atomic and side windows on FRAME.
496 FRAME defaults to the selected frame."
497 (window--side-check frame)
498 (window--atom-check frame))
499
500 ;;; Window sizes.
501 (defvar window-size-fixed nil
502 "Non-nil in a buffer means windows displaying the buffer are fixed-size.
503 If the value is `height', then only the window's height is fixed.
504 If the value is `width', then only the window's width is fixed.
505 Any other non-nil value fixes both the width and the height.
506
507 Emacs won't change the size of any window displaying that buffer,
508 unless it has no other choice (like when deleting a neighboring
509 window).")
510 (make-variable-buffer-local 'window-size-fixed)
511
512 (defun window--size-ignore (window ignore)
513 "Return non-nil if IGNORE says to ignore size restrictions for WINDOW."
514 (if (window-valid-p ignore) (eq window ignore) ignore))
515
516 (defun window-min-size (&optional window horizontal ignore)
517 "Return the minimum number of lines of WINDOW.
518 WINDOW can be an arbitrary window and defaults to the selected
519 one. Optional argument HORIZONTAL non-nil means return the
520 minimum number of columns of WINDOW.
521
522 Optional argument IGNORE non-nil means ignore any restrictions
523 imposed by fixed size windows, `window-min-height' or
524 `window-min-width' settings. IGNORE equal `safe' means live
525 windows may get as small as `window-safe-min-height' lines and
526 `window-safe-min-width' columns. IGNORE a window means ignore
527 restrictions for that window only."
528 (window--min-size-1
529 (window-normalize-window window) horizontal ignore))
530
531 (defun window--min-size-1 (window horizontal ignore)
532 "Internal function of `window-min-size'."
533 (let ((sub (window-child window)))
534 (if sub
535 (let ((value 0))
536 ;; WINDOW is an internal window.
537 (if (window-combined-p sub horizontal)
538 ;; The minimum size of an iso-combination is the sum of
539 ;; the minimum sizes of its child windows.
540 (while sub
541 (setq value (+ value
542 (window--min-size-1 sub horizontal ignore)))
543 (setq sub (window-right sub)))
544 ;; The minimum size of an ortho-combination is the maximum of
545 ;; the minimum sizes of its child windows.
546 (while sub
547 (setq value (max value
548 (window--min-size-1 sub horizontal ignore)))
549 (setq sub (window-right sub))))
550 value)
551 (with-current-buffer (window-buffer window)
552 (cond
553 ((and (not (window--size-ignore window ignore))
554 (window-size-fixed-p window horizontal))
555 ;; The minimum size of a fixed size window is its size.
556 (window-total-size window horizontal))
557 ((or (eq ignore 'safe) (eq ignore window))
558 ;; If IGNORE equals `safe' or WINDOW return the safe values.
559 (if horizontal window-safe-min-width window-safe-min-height))
560 (horizontal
561 ;; For the minimum width of a window take fringes and
562 ;; scroll-bars into account. This is questionable and should
563 ;; be removed as soon as we are able to split (and resize)
564 ;; windows such that the new (or resized) windows can get a
565 ;; size less than the user-specified `window-min-height' and
566 ;; `window-min-width'.
567 (let ((frame (window-frame window))
568 (fringes (window-fringes window))
569 (scroll-bars (window-scroll-bars window)))
570 (max
571 (+ window-safe-min-width
572 (ceiling (car fringes) (frame-char-width frame))
573 (ceiling (cadr fringes) (frame-char-width frame))
574 (cond
575 ((memq (nth 2 scroll-bars) '(left right))
576 (nth 1 scroll-bars))
577 ((memq (frame-parameter frame 'vertical-scroll-bars)
578 '(left right))
579 (ceiling (or (frame-parameter frame 'scroll-bar-width) 14)
580 (frame-char-width)))
581 (t 0)))
582 (if (and (not (window--size-ignore window ignore))
583 (numberp window-min-width))
584 window-min-width
585 0))))
586 (t
587 ;; For the minimum height of a window take any mode- or
588 ;; header-line into account.
589 (max (+ window-safe-min-height
590 (if header-line-format 1 0)
591 (if mode-line-format 1 0))
592 (if (and (not (window--size-ignore window ignore))
593 (numberp window-min-height))
594 window-min-height
595 0))))))))
596
597 (defun window-sizable (window delta &optional horizontal ignore)
598 "Return DELTA if DELTA lines can be added to WINDOW.
599 Optional argument HORIZONTAL non-nil means return DELTA if DELTA
600 columns can be added to WINDOW. A return value of zero means
601 that no lines (or columns) can be added to WINDOW.
602
603 This function looks only at WINDOW and, recursively, its child
604 windows. The function `window-resizable' looks at other windows
605 as well.
606
607 DELTA positive means WINDOW shall be enlarged by DELTA lines or
608 columns. If WINDOW cannot be enlarged by DELTA lines or columns
609 return the maximum value in the range 0..DELTA by which WINDOW
610 can be enlarged.
611
612 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
613 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
614 return the minimum value in the range DELTA..0 by which WINDOW
615 can be shrunk.
616
617 Optional argument IGNORE non-nil means ignore any restrictions
618 imposed by fixed size windows, `window-min-height' or
619 `window-min-width' settings. IGNORE equal `safe' means live
620 windows may get as small as `window-safe-min-height' lines and
621 `window-safe-min-width' columns. IGNORE any window means ignore
622 restrictions for that window only."
623 (setq window (window-normalize-window window))
624 (cond
625 ((< delta 0)
626 (max (- (window-min-size window horizontal ignore)
627 (window-total-size window horizontal))
628 delta))
629 ((window--size-ignore window ignore)
630 delta)
631 ((> delta 0)
632 (if (window-size-fixed-p window horizontal)
633 0
634 delta))
635 (t 0)))
636
637 (defun window-sizable-p (window delta &optional horizontal ignore)
638 "Return t if WINDOW can be resized by DELTA lines.
639 For the meaning of the arguments of this function see the
640 doc-string of `window-sizable'."
641 (setq window (window-normalize-window window))
642 (if (> delta 0)
643 (>= (window-sizable window delta horizontal ignore) delta)
644 (<= (window-sizable window delta horizontal ignore) delta)))
645
646 (defun window--size-fixed-1 (window horizontal)
647 "Internal function for `window-size-fixed-p'."
648 (let ((sub (window-child window)))
649 (catch 'fixed
650 (if sub
651 ;; WINDOW is an internal window.
652 (if (window-combined-p sub horizontal)
653 ;; An iso-combination is fixed size if all its child
654 ;; windows are fixed-size.
655 (progn
656 (while sub
657 (unless (window--size-fixed-1 sub horizontal)
658 ;; We found a non-fixed-size child window, so
659 ;; WINDOW's size is not fixed.
660 (throw 'fixed nil))
661 (setq sub (window-right sub)))
662 ;; All child windows are fixed-size, so WINDOW's size is
663 ;; fixed.
664 (throw 'fixed t))
665 ;; An ortho-combination is fixed-size if at least one of its
666 ;; child windows is fixed-size.
667 (while sub
668 (when (window--size-fixed-1 sub horizontal)
669 ;; We found a fixed-size child window, so WINDOW's size
670 ;; is fixed.
671 (throw 'fixed t))
672 (setq sub (window-right sub))))
673 ;; WINDOW is a live window.
674 (with-current-buffer (window-buffer window)
675 (if horizontal
676 (memq window-size-fixed '(width t))
677 (memq window-size-fixed '(height t))))))))
678
679 (defun window-size-fixed-p (&optional window horizontal)
680 "Return non-nil if WINDOW's height is fixed.
681 WINDOW can be an arbitrary window and defaults to the selected
682 window. Optional argument HORIZONTAL non-nil means return
683 non-nil if WINDOW's width is fixed.
684
685 If this function returns nil, this does not necessarily mean that
686 WINDOW can be resized in the desired direction. The function
687 `window-resizable' can tell that."
688 (window--size-fixed-1
689 (window-normalize-window window) horizontal))
690
691 (defun window--min-delta-1 (window delta &optional horizontal ignore trail noup)
692 "Internal function for `window-min-delta'."
693 (if (not (window-parent window))
694 ;; If we can't go up, return zero.
695 0
696 ;; Else try to find a non-fixed-size sibling of WINDOW.
697 (let* ((parent (window-parent window))
698 (sub (window-child parent)))
699 (catch 'done
700 (if (window-combined-p sub horizontal)
701 ;; In an iso-combination throw DELTA if we find at least one
702 ;; child window and that window is either not fixed-size or
703 ;; we can ignore fixed-sizeness.
704 (let ((skip (eq trail 'after)))
705 (while sub
706 (cond
707 ((eq sub window)
708 (setq skip (eq trail 'before)))
709 (skip)
710 ((and (not (window--size-ignore window ignore))
711 (window-size-fixed-p sub horizontal)))
712 (t
713 ;; We found a non-fixed-size child window.
714 (throw 'done delta)))
715 (setq sub (window-right sub))))
716 ;; In an ortho-combination set DELTA to the minimum value by
717 ;; which other child windows can shrink.
718 (while sub
719 (unless (eq sub window)
720 (setq delta
721 (min delta
722 (- (window-total-size sub horizontal)
723 (window-min-size sub horizontal ignore)))))
724 (setq sub (window-right sub))))
725 (if noup
726 delta
727 (window--min-delta-1 parent delta horizontal ignore trail))))))
728
729 (defun window-min-delta (&optional window horizontal ignore trail noup nodown)
730 "Return number of lines by which WINDOW can be shrunk.
731 WINDOW can be an arbitrary window and defaults to the selected
732 window. Return zero if WINDOW cannot be shrunk.
733
734 Optional argument HORIZONTAL non-nil means return number of
735 columns by which WINDOW can be shrunk.
736
737 Optional argument IGNORE non-nil means ignore any restrictions
738 imposed by fixed size windows, `window-min-height' or
739 `window-min-width' settings. IGNORE a window means ignore
740 restrictions for that window only. IGNORE equal `safe' means
741 live windows may get as small as `window-safe-min-height' lines
742 and `window-safe-min-width' columns.
743
744 Optional argument TRAIL `before' means only windows to the left
745 of or above WINDOW can be enlarged. Optional argument TRAIL
746 `after' means only windows to the right of or below WINDOW can be
747 enlarged.
748
749 Optional argument NOUP non-nil means don't go up in the window
750 tree but try to enlarge windows within WINDOW's combination only.
751
752 Optional argument NODOWN non-nil means don't check whether WINDOW
753 itself (and its child windows) can be shrunk; check only whether
754 at least one other window can be enlarged appropriately."
755 (setq window (window-normalize-window window))
756 (let ((size (window-total-size window horizontal))
757 (minimum (window-min-size window horizontal ignore)))
758 (cond
759 (nodown
760 ;; If NODOWN is t, try to recover the entire size of WINDOW.
761 (window--min-delta-1 window size horizontal ignore trail noup))
762 ((= size minimum)
763 ;; If NODOWN is nil and WINDOW's size is already at its minimum,
764 ;; there's nothing to recover.
765 0)
766 (t
767 ;; Otherwise, try to recover whatever WINDOW is larger than its
768 ;; minimum size.
769 (window--min-delta-1
770 window (- size minimum) horizontal ignore trail noup)))))
771
772 (defun window--max-delta-1 (window delta &optional horizontal ignore trail noup)
773 "Internal function of `window-max-delta'."
774 (if (not (window-parent window))
775 ;; Can't go up. Return DELTA.
776 delta
777 (let* ((parent (window-parent window))
778 (sub (window-child parent)))
779 (catch 'fixed
780 (if (window-combined-p sub horizontal)
781 ;; For an iso-combination calculate how much we can get from
782 ;; other child windows.
783 (let ((skip (eq trail 'after)))
784 (while sub
785 (cond
786 ((eq sub window)
787 (setq skip (eq trail 'before)))
788 (skip)
789 (t
790 (setq delta
791 (+ delta
792 (- (window-total-size sub horizontal)
793 (window-min-size sub horizontal ignore))))))
794 (setq sub (window-right sub))))
795 ;; For an ortho-combination throw DELTA when at least one
796 ;; child window is fixed-size.
797 (while sub
798 (when (and (not (eq sub window))
799 (not (window--size-ignore sub ignore))
800 (window-size-fixed-p sub horizontal))
801 (throw 'fixed delta))
802 (setq sub (window-right sub))))
803 (if noup
804 ;; When NOUP is nil, DELTA is all we can get.
805 delta
806 ;; Else try with parent of WINDOW, passing the DELTA we
807 ;; recovered so far.
808 (window--max-delta-1 parent delta horizontal ignore trail))))))
809
810 (defun window-max-delta (&optional window horizontal ignore trail noup nodown)
811 "Return maximum number of lines WINDOW by which WINDOW can be enlarged.
812 WINDOW can be an arbitrary window and defaults to the selected
813 window. The return value is zero if WINDOW cannot be enlarged.
814
815 Optional argument HORIZONTAL non-nil means return maximum number
816 of columns by which WINDOW can be enlarged.
817
818 Optional argument IGNORE non-nil means ignore any restrictions
819 imposed by fixed size windows, `window-min-height' or
820 `window-min-width' settings. IGNORE a window means ignore
821 restrictions for that window only. IGNORE equal `safe' means
822 live windows may get as small as `window-safe-min-height' lines
823 and `window-safe-min-width' columns.
824
825 Optional argument TRAIL `before' means only windows to the left
826 of or below WINDOW can be shrunk. Optional argument TRAIL
827 `after' means only windows to the right of or above WINDOW can be
828 shrunk.
829
830 Optional argument NOUP non-nil means don't go up in the window
831 tree but try to obtain the entire space from windows within
832 WINDOW's combination.
833
834 Optional argument NODOWN non-nil means do not check whether
835 WINDOW itself (and its child windows) can be enlarged; check
836 only whether other windows can be shrunk appropriately."
837 (setq window (window-normalize-window window))
838 (if (and (not (window--size-ignore window ignore))
839 (not nodown) (window-size-fixed-p window horizontal))
840 ;; With IGNORE and NOWDON nil return zero if WINDOW has fixed
841 ;; size.
842 0
843 ;; WINDOW has no fixed size.
844 (window--max-delta-1 window 0 horizontal ignore trail noup)))
845
846 ;; Make NOUP also inhibit the min-size check.
847 (defun window--resizable (window delta &optional horizontal ignore trail noup nodown)
848 "Return DELTA if WINDOW can be resized vertically by DELTA lines.
849 Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
850 can be resized horizontally by DELTA columns. A return value of
851 zero means that WINDOW is not resizable.
852
853 DELTA positive means WINDOW shall be enlarged by DELTA lines or
854 columns. If WINDOW cannot be enlarged by DELTA lines or columns,
855 return the maximum value in the range 0..DELTA by which WINDOW
856 can be enlarged.
857
858 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
859 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
860 return the minimum value in the range DELTA..0 that can be used
861 for shrinking WINDOW.
862
863 Optional argument IGNORE non-nil means ignore any restrictions
864 imposed by fixed size windows, `window-min-height' or
865 `window-min-width' settings. IGNORE a window means ignore
866 restrictions for that window only. IGNORE equal `safe' means
867 live windows may get as small as `window-safe-min-height' lines
868 and `window-safe-min-width' columns.
869
870 Optional argument TRAIL `before' means only windows to the left
871 of or below WINDOW can be shrunk. Optional argument TRAIL
872 `after' means only windows to the right of or above WINDOW can be
873 shrunk.
874
875 Optional argument NOUP non-nil means don't go up in the window
876 tree but check only whether space can be obtained from (or given
877 to) WINDOW's siblings.
878
879 Optional argument NODOWN non-nil means don't go down in the
880 window tree. This means do not check whether resizing would
881 violate size restrictions of WINDOW or its child windows."
882 (setq window (window-normalize-window window))
883 (cond
884 ((< delta 0)
885 (max (- (window-min-delta window horizontal ignore trail noup nodown))
886 delta))
887 ((> delta 0)
888 (min (window-max-delta window horizontal ignore trail noup nodown)
889 delta))
890 (t 0)))
891
892 (defun window--resizable-p (window delta &optional horizontal ignore trail noup nodown)
893 "Return t if WINDOW can be resized vertically by DELTA lines.
894 For the meaning of the arguments of this function see the
895 doc-string of `window--resizable'."
896 (setq window (window-normalize-window window))
897 (if (> delta 0)
898 (>= (window--resizable window delta horizontal ignore trail noup nodown)
899 delta)
900 (<= (window--resizable window delta horizontal ignore trail noup nodown)
901 delta)))
902
903 (defun window-resizable (window delta &optional horizontal ignore)
904 "Return DELTA if WINDOW can be resized vertically by DELTA lines.
905 Optional argument HORIZONTAL non-nil means return DELTA if WINDOW
906 can be resized horizontally by DELTA columns. A return value of
907 zero means that WINDOW is not resizable.
908
909 DELTA positive means WINDOW shall be enlarged by DELTA lines or
910 columns. If WINDOW cannot be enlarged by DELTA lines or columns
911 return the maximum value in the range 0..DELTA by which WINDOW
912 can be enlarged.
913
914 DELTA negative means WINDOW shall be shrunk by -DELTA lines or
915 columns. If WINDOW cannot be shrunk by -DELTA lines or columns,
916 return the minimum value in the range DELTA..0 that can be used
917 for shrinking WINDOW.
918
919 Optional argument IGNORE non-nil means ignore any restrictions
920 imposed by fixed size windows, `window-min-height' or
921 `window-min-width' settings. IGNORE a window means ignore
922 restrictions for that window only. IGNORE equal `safe' means
923 live windows may get as small as `window-safe-min-height' lines
924 and `window-safe-min-width' columns."
925 (setq window (window-normalize-window window))
926 (window--resizable window delta horizontal ignore))
927
928 (defun window-total-size (&optional window horizontal)
929 "Return the total height or width of window WINDOW.
930 If WINDOW is omitted or nil, it defaults to the selected window.
931
932 If HORIZONTAL is omitted or nil, return the total height of
933 WINDOW, in lines, like `window-total-height'. Otherwise return
934 the total width, in columns, like `window-total-width'."
935 (if horizontal
936 (window-total-width window)
937 (window-total-height window)))
938
939 ;; Eventually we should make `window-height' obsolete.
940 (defalias 'window-height 'window-total-height)
941
942 ;; See discussion in bug#4543.
943 (defun window-full-height-p (&optional window)
944 "Return t if WINDOW is as high as the containing frame.
945 More precisely, return t if and only if the total height of
946 WINDOW equals the total height of the root window of WINDOW's
947 frame. WINDOW can be any window and defaults to the selected
948 one."
949 (setq window (window-normalize-window window))
950 (= (window-total-size window)
951 (window-total-size (frame-root-window window))))
952
953 (defun window-full-width-p (&optional window)
954 "Return t if WINDOW is as wide as the containing frame.
955 More precisely, return t if and only if the total width of WINDOW
956 equals the total width of the root window of WINDOW's frame.
957 WINDOW can be any window and defaults to the selected one."
958 (setq window (window-normalize-window window))
959 (= (window-total-size window t)
960 (window-total-size (frame-root-window window) t)))
961
962 (defun window-body-size (&optional window horizontal)
963 "Return the height or width of WINDOW's text area.
964 If WINDOW is omitted or nil, it defaults to the selected window.
965 Signal an error if the window is not live.
966
967 If HORIZONTAL is omitted or nil, return the height of the text
968 area, like `window-body-height'. Otherwise, return the width of
969 the text area, like `window-body-width'."
970 (if horizontal
971 (window-body-width window)
972 (window-body-height window)))
973
974 ;; Eventually we should make `window-height' obsolete.
975 (defalias 'window-width 'window-body-width)
976
977 (defun window-current-scroll-bars (&optional window)
978 "Return the current scroll bar settings for WINDOW.
979 WINDOW must be a live window and defaults to the selected one.
980
981 The return value is a cons cell (VERTICAL . HORIZONTAL) where
982 VERTICAL specifies the current location of the vertical scroll
983 bars (`left', `right', or nil), and HORIZONTAL specifies the
984 current location of the horizontal scroll bars (`top', `bottom',
985 or nil).
986
987 Unlike `window-scroll-bars', this function reports the scroll bar
988 type actually used, once frame defaults and `scroll-bar-mode' are
989 taken into account."
990 (setq window (window-normalize-window window t))
991 (let ((vert (nth 2 (window-scroll-bars window)))
992 (hor nil))
993 (when (or (eq vert t) (eq hor t))
994 (let ((fcsb (frame-current-scroll-bars (window-frame window))))
995 (if (eq vert t)
996 (setq vert (car fcsb)))
997 (if (eq hor t)
998 (setq hor (cdr fcsb)))))
999 (cons vert hor)))
1000
1001 (defun walk-windows (fun &optional minibuf all-frames)
1002 "Cycle through all live windows, calling FUN for each one.
1003 FUN must specify a function with a window as its sole argument.
1004 The optional arguments MINIBUF and ALL-FRAMES specify the set of
1005 windows to include in the walk.
1006
1007 MINIBUF t means include the minibuffer window even if the
1008 minibuffer is not active. MINIBUF nil or omitted means include
1009 the minibuffer window only if the minibuffer is active. Any
1010 other value means do not include the minibuffer window even if
1011 the minibuffer is active.
1012
1013 ALL-FRAMES nil or omitted means consider all windows on the
1014 selected frame, plus the minibuffer window if specified by the
1015 MINIBUF argument. If the minibuffer counts, consider all windows
1016 on all frames that share that minibuffer too. The following
1017 non-nil values of ALL-FRAMES have special meanings:
1018
1019 - t means consider all windows on all existing frames.
1020
1021 - `visible' means consider all windows on all visible frames on
1022 the current terminal.
1023
1024 - 0 (the number zero) means consider all windows on all visible
1025 and iconified frames on the current terminal.
1026
1027 - A frame means consider all windows on that frame only.
1028
1029 Anything else means consider all windows on the selected frame
1030 and no others.
1031
1032 This function changes neither the order of recently selected
1033 windows nor the buffer list."
1034 ;; If we start from the minibuffer window, don't fail to come
1035 ;; back to it.
1036 (when (window-minibuffer-p (selected-window))
1037 (setq minibuf t))
1038 ;; Make sure to not mess up the order of recently selected
1039 ;; windows. Use `save-selected-window' and `select-window'
1040 ;; with second argument non-nil for this purpose.
1041 (save-selected-window
1042 (when (framep all-frames)
1043 (select-window (frame-first-window all-frames) 'norecord))
1044 (dolist (walk-windows-window (window-list-1 nil minibuf all-frames))
1045 (funcall fun walk-windows-window))))
1046
1047 (defun window-point-1 (&optional window)
1048 "Return value of WINDOW's point.
1049 WINDOW can be any live window and defaults to the selected one.
1050
1051 This function is like `window-point' with one exception: If
1052 WINDOW is selected, it returns the value of `point' of WINDOW's
1053 buffer regardless of whether that buffer is current or not."
1054 (setq window (window-normalize-window window t))
1055 (if (eq window (selected-window))
1056 (with-current-buffer (window-buffer window)
1057 (point))
1058 (window-point window)))
1059
1060 (defun set-window-point-1 (window pos)
1061 "Set value of WINDOW's point to POS.
1062 WINDOW can be any live window and defaults to the selected one.
1063
1064 This function is like `set-window-point' with one exception: If
1065 WINDOW is selected, it moves `point' of WINDOW's buffer to POS
1066 regardless of whether that buffer is current or not."
1067 (setq window (window-normalize-window window t))
1068 (if (eq window (selected-window))
1069 (with-current-buffer (window-buffer window)
1070 (goto-char pos))
1071 (set-window-point window pos)))
1072
1073 (defun window-at-side-p (&optional window side)
1074 "Return t if WINDOW is at SIDE of its containing frame.
1075 WINDOW can be any window and defaults to the selected one. SIDE
1076 can be any of the symbols `left', `top', `right' or `bottom'.
1077 The default value nil is handled like `bottom'."
1078 (setq window (window-normalize-window window))
1079 (let ((edge
1080 (cond
1081 ((eq side 'left) 0)
1082 ((eq side 'top) 1)
1083 ((eq side 'right) 2)
1084 ((memq side '(bottom nil)) 3))))
1085 (= (nth edge (window-edges window))
1086 (nth edge (window-edges (frame-root-window window))))))
1087
1088 (defun window-at-side-list (&optional frame side)
1089 "Return list of all windows on SIDE of FRAME.
1090 FRAME must be a live frame and defaults to the selected frame.
1091 SIDE can be any of the symbols `left', `top', `right' or
1092 `bottom'. The default value nil is handled like `bottom'."
1093 (setq frame (window-normalize-frame frame))
1094 (let (windows)
1095 (walk-window-tree
1096 (lambda (window)
1097 (when (window-at-side-p window side)
1098 (setq windows (cons window windows))))
1099 frame)
1100 (nreverse windows)))
1101
1102 (defun window--in-direction-2 (window posn &optional horizontal)
1103 "Support function for `window-in-direction'."
1104 (if horizontal
1105 (let ((top (window-top-line window)))
1106 (if (> top posn)
1107 (- top posn)
1108 (- posn top (window-total-height window))))
1109 (let ((left (window-left-column window)))
1110 (if (> left posn)
1111 (- left posn)
1112 (- posn left (window-total-width window))))))
1113
1114 (defun window-in-direction (direction &optional window ignore)
1115 "Return window in DIRECTION as seen from WINDOW.
1116 DIRECTION must be one of `above', `below', `left' or `right'.
1117 WINDOW must be a live window and defaults to the selected one.
1118 IGNORE, when non-nil means a window can be returned even if its
1119 `no-other-window' parameter is non-nil."
1120 (setq window (window-normalize-window window t))
1121 (unless (memq direction '(above below left right))
1122 (error "Wrong direction %s" direction))
1123 (let* ((frame (window-frame window))
1124 (hor (memq direction '(left right)))
1125 (first (if hor
1126 (window-left-column window)
1127 (window-top-line window)))
1128 (last (+ first (if hor
1129 (window-total-width window)
1130 (window-total-height window))))
1131 (posn-cons (nth 6 (posn-at-point (window-point-1 window) window)))
1132 ;; The column / row value of `posn-at-point' can be nil for the
1133 ;; mini-window, guard against that.
1134 (posn (if hor
1135 (+ (or (cdr posn-cons) 1) (window-top-line window))
1136 (+ (or (car posn-cons) 1) (window-left-column window))))
1137 (best-edge
1138 (cond
1139 ((eq direction 'below) (frame-height frame))
1140 ((eq direction 'right) (frame-width frame))
1141 (t -1)))
1142 (best-edge-2 best-edge)
1143 (best-diff-2 (if hor (frame-height frame) (frame-width frame)))
1144 best best-2 best-diff-2-new)
1145 (walk-window-tree
1146 (lambda (w)
1147 (let* ((w-top (window-top-line w))
1148 (w-left (window-left-column w)))
1149 (cond
1150 ((or (eq window w)
1151 ;; Ignore ourselves.
1152 (and (window-parameter w 'no-other-window)
1153 ;; Ignore W unless IGNORE is non-nil.
1154 (not ignore))))
1155 (hor
1156 (cond
1157 ((and (<= w-top posn)
1158 (< posn (+ w-top (window-total-height w))))
1159 ;; W is to the left or right of WINDOW and covers POSN.
1160 (when (or (and (eq direction 'left)
1161 (<= w-left first) (> w-left best-edge))
1162 (and (eq direction 'right)
1163 (>= w-left last) (< w-left best-edge)))
1164 (setq best-edge w-left)
1165 (setq best w)))
1166 ((and (or (and (eq direction 'left)
1167 (<= (+ w-left (window-total-width w)) first))
1168 (and (eq direction 'right) (<= last w-left)))
1169 ;; W is to the left or right of WINDOW but does not
1170 ;; cover POSN.
1171 (setq best-diff-2-new
1172 (window--in-direction-2 w posn hor))
1173 (or (< best-diff-2-new best-diff-2)
1174 (and (= best-diff-2-new best-diff-2)
1175 (if (eq direction 'left)
1176 (> w-left best-edge-2)
1177 (< w-left best-edge-2)))))
1178 (setq best-edge-2 w-left)
1179 (setq best-diff-2 best-diff-2-new)
1180 (setq best-2 w))))
1181 (t
1182 (cond
1183 ((and (<= w-left posn)
1184 (< posn (+ w-left (window-total-width w))))
1185 ;; W is above or below WINDOW and covers POSN.
1186 (when (or (and (eq direction 'above)
1187 (<= w-top first) (> w-top best-edge))
1188 (and (eq direction 'below)
1189 (>= w-top first) (< w-top best-edge)))
1190 (setq best-edge w-top)
1191 (setq best w)))
1192 ((and (or (and (eq direction 'above)
1193 (<= (+ w-top (window-total-height w)) first))
1194 (and (eq direction 'below) (<= last w-top)))
1195 ;; W is above or below WINDOW but does not cover POSN.
1196 (setq best-diff-2-new
1197 (window--in-direction-2 w posn hor))
1198 (or (< best-diff-2-new best-diff-2)
1199 (and (= best-diff-2-new best-diff-2)
1200 (if (eq direction 'above)
1201 (> w-top best-edge-2)
1202 (< w-top best-edge-2)))))
1203 (setq best-edge-2 w-top)
1204 (setq best-diff-2 best-diff-2-new)
1205 (setq best-2 w)))))))
1206 (window-frame window))
1207 (or best best-2)))
1208
1209 (defun get-window-with-predicate (predicate &optional minibuf all-frames default)
1210 "Return a live window satisfying PREDICATE.
1211 More precisely, cycle through all windows calling the function
1212 PREDICATE on each one of them with the window as its sole
1213 argument. Return the first window for which PREDICATE returns
1214 non-nil. Windows are scanned starting with the window following
1215 the selected window. If no window satisfies PREDICATE, return
1216 DEFAULT.
1217
1218 MINIBUF t means include the minibuffer window even if the
1219 minibuffer is not active. MINIBUF nil or omitted means include
1220 the minibuffer window only if the minibuffer is active. Any
1221 other value means do not include the minibuffer window even if
1222 the minibuffer is active.
1223
1224 ALL-FRAMES nil or omitted means consider all windows on the selected
1225 frame, plus the minibuffer window if specified by the MINIBUF
1226 argument. If the minibuffer counts, consider all windows on all
1227 frames that share that minibuffer too. The following non-nil
1228 values of ALL-FRAMES have special meanings:
1229
1230 - t means consider all windows on all existing frames.
1231
1232 - `visible' means consider all windows on all visible frames on
1233 the current terminal.
1234
1235 - 0 (the number zero) means consider all windows on all visible
1236 and iconified frames on the current terminal.
1237
1238 - A frame means consider all windows on that frame only.
1239
1240 Anything else means consider all windows on the selected frame
1241 and no others."
1242 (catch 'found
1243 (dolist (window (window-list-1
1244 (next-window nil minibuf all-frames)
1245 minibuf all-frames))
1246 (when (funcall predicate window)
1247 (throw 'found window)))
1248 default))
1249
1250 (defalias 'some-window 'get-window-with-predicate)
1251
1252 (defun get-lru-window (&optional all-frames dedicated)
1253 "Return the least recently used window on frames specified by ALL-FRAMES.
1254 Return a full-width window if possible. A minibuffer window is
1255 never a candidate. A dedicated window is never a candidate
1256 unless DEDICATED is non-nil, so if all windows are dedicated, the
1257 value is nil. Avoid returning the selected window if possible.
1258
1259 The following non-nil values of the optional argument ALL-FRAMES
1260 have special meanings:
1261
1262 - t means consider all windows on all existing frames.
1263
1264 - `visible' means consider all windows on all visible frames on
1265 the current terminal.
1266
1267 - 0 (the number zero) means consider all windows on all visible
1268 and iconified frames on the current terminal.
1269
1270 - A frame means consider all windows on that frame only.
1271
1272 Any other value of ALL-FRAMES means consider all windows on the
1273 selected frame and no others."
1274 (let (best-window best-time second-best-window second-best-time time)
1275 (dolist (window (window-list-1 nil 'nomini all-frames))
1276 (when (or dedicated (not (window-dedicated-p window)))
1277 (setq time (window-use-time window))
1278 (if (or (eq window (selected-window))
1279 (not (window-full-width-p window)))
1280 (when (or (not second-best-time) (< time second-best-time))
1281 (setq second-best-time time)
1282 (setq second-best-window window))
1283 (when (or (not best-time) (< time best-time))
1284 (setq best-time time)
1285 (setq best-window window)))))
1286 (or best-window second-best-window)))
1287
1288 (defun get-mru-window (&optional all-frames)
1289 "Return the most recently used window on frames specified by ALL-FRAMES.
1290 Do not return a minibuffer window.
1291
1292 The following non-nil values of the optional argument ALL-FRAMES
1293 have special meanings:
1294
1295 - t means consider all windows on all existing frames.
1296
1297 - `visible' means consider all windows on all visible frames on
1298 the current terminal.
1299
1300 - 0 (the number zero) means consider all windows on all visible
1301 and iconified frames on the current terminal.
1302
1303 - A frame means consider all windows on that frame only.
1304
1305 Any other value of ALL-FRAMES means consider all windows on the
1306 selected frame and no others."
1307 (let (best-window best-time time)
1308 (dolist (window (window-list-1 nil 'nomini all-frames))
1309 (setq time (window-use-time window))
1310 (when (or (not best-time) (> time best-time))
1311 (setq best-time time)
1312 (setq best-window window)))
1313 best-window))
1314
1315 (defun get-largest-window (&optional all-frames dedicated)
1316 "Return the largest window on frames specified by ALL-FRAMES.
1317 A minibuffer window is never a candidate. A dedicated window is
1318 never a candidate unless DEDICATED is non-nil, so if all windows
1319 are dedicated, the value is nil.
1320
1321 The following non-nil values of the optional argument ALL-FRAMES
1322 have special meanings:
1323
1324 - t means consider all windows on all existing frames.
1325
1326 - `visible' means consider all windows on all visible frames on
1327 the current terminal.
1328
1329 - 0 (the number zero) means consider all windows on all visible
1330 and iconified frames on the current terminal.
1331
1332 - A frame means consider all windows on that frame only.
1333
1334 Any other value of ALL-FRAMES means consider all windows on the
1335 selected frame and no others."
1336 (let ((best-size 0)
1337 best-window size)
1338 (dolist (window (window-list-1 nil 'nomini all-frames))
1339 (when (or dedicated (not (window-dedicated-p window)))
1340 (setq size (* (window-total-size window)
1341 (window-total-size window t)))
1342 (when (> size best-size)
1343 (setq best-size size)
1344 (setq best-window window))))
1345 best-window))
1346
1347 (defun get-buffer-window-list (&optional buffer-or-name minibuf all-frames)
1348 "Return list of all windows displaying BUFFER-OR-NAME, or nil if none.
1349 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
1350 and defaults to the current buffer. Windows are scanned starting
1351 with the selected window.
1352
1353 MINIBUF t means include the minibuffer window even if the
1354 minibuffer is not active. MINIBUF nil or omitted means include
1355 the minibuffer window only if the minibuffer is active. Any
1356 other value means do not include the minibuffer window even if
1357 the minibuffer is active.
1358
1359 ALL-FRAMES nil or omitted means consider all windows on the
1360 selected frame, plus the minibuffer window if specified by the
1361 MINIBUF argument. If the minibuffer counts, consider all windows
1362 on all frames that share that minibuffer too. The following
1363 non-nil values of ALL-FRAMES have special meanings:
1364
1365 - t means consider all windows on all existing frames.
1366
1367 - `visible' means consider all windows on all visible frames on
1368 the current terminal.
1369
1370 - 0 (the number zero) means consider all windows on all visible
1371 and iconified frames on the current terminal.
1372
1373 - A frame means consider all windows on that frame only.
1374
1375 Anything else means consider all windows on the selected frame
1376 and no others."
1377 (let ((buffer (window-normalize-buffer buffer-or-name))
1378 windows)
1379 (dolist (window (window-list-1 (selected-window) minibuf all-frames))
1380 (when (eq (window-buffer window) buffer)
1381 (setq windows (cons window windows))))
1382 (nreverse windows)))
1383
1384 (defun minibuffer-window-active-p (window)
1385 "Return t if WINDOW is the currently active minibuffer window."
1386 (eq window (active-minibuffer-window)))
1387
1388 (defun count-windows (&optional minibuf)
1389 "Return the number of live windows on the selected frame.
1390 The optional argument MINIBUF specifies whether the minibuffer
1391 window shall be counted. See `walk-windows' for the precise
1392 meaning of this argument."
1393 (length (window-list-1 nil minibuf)))
1394 \f
1395 ;;; Resizing windows.
1396 (defun window--resize-reset (&optional frame horizontal)
1397 "Reset resize values for all windows on FRAME.
1398 FRAME defaults to the selected frame.
1399
1400 This function stores the current value of `window-total-size' applied
1401 with argument HORIZONTAL in the new total size of all windows on
1402 FRAME. It also resets the new normal size of each of these
1403 windows."
1404 (window--resize-reset-1
1405 (frame-root-window (window-normalize-frame frame)) horizontal))
1406
1407 (defun window--resize-reset-1 (window horizontal)
1408 "Internal function of `window--resize-reset'."
1409 ;; Register old size in the new total size.
1410 (set-window-new-total window (window-total-size window horizontal))
1411 ;; Reset new normal size.
1412 (set-window-new-normal window)
1413 (when (window-child window)
1414 (window--resize-reset-1 (window-child window) horizontal))
1415 (when (window-right window)
1416 (window--resize-reset-1 (window-right window) horizontal)))
1417
1418 ;; The following routine is used to manually resize the minibuffer
1419 ;; window and is currently used, for example, by ispell.el.
1420 (defun window--resize-mini-window (window delta)
1421 "Resize minibuffer window WINDOW by DELTA lines.
1422 If WINDOW cannot be resized by DELTA lines make it as large (or
1423 as small) as possible but don't signal an error."
1424 (when (window-minibuffer-p window)
1425 (let* ((frame (window-frame window))
1426 (root (frame-root-window frame))
1427 (height (window-total-size window))
1428 (min-delta
1429 (- (window-total-size root)
1430 (window-min-size root))))
1431 ;; Sanitize DELTA.
1432 (cond
1433 ((<= (+ height delta) 0)
1434 (setq delta (- (- height 1))))
1435 ((> delta min-delta)
1436 (setq delta min-delta)))
1437
1438 ;; Resize now.
1439 (window--resize-reset frame)
1440 ;; Ideally we should be able to resize just the last child of root
1441 ;; here. See the comment in `resize-root-window-vertically' for
1442 ;; why we do not do that.
1443 (window--resize-this-window root (- delta) nil nil t)
1444 (set-window-new-total window (+ height delta))
1445 ;; The following routine catches the case where we want to resize
1446 ;; a minibuffer-only frame.
1447 (resize-mini-window-internal window))))
1448
1449 (defun window-resize (window delta &optional horizontal ignore)
1450 "Resize WINDOW vertically by DELTA lines.
1451 WINDOW can be an arbitrary window and defaults to the selected
1452 one. An attempt to resize the root window of a frame will raise
1453 an error though.
1454
1455 DELTA a positive number means WINDOW shall be enlarged by DELTA
1456 lines. DELTA negative means WINDOW shall be shrunk by -DELTA
1457 lines.
1458
1459 Optional argument HORIZONTAL non-nil means resize WINDOW
1460 horizontally by DELTA columns. In this case a positive DELTA
1461 means enlarge WINDOW by DELTA columns. DELTA negative means
1462 WINDOW shall be shrunk by -DELTA columns.
1463
1464 Optional argument IGNORE non-nil means ignore any restrictions
1465 imposed by fixed size windows, `window-min-height' or
1466 `window-min-width' settings. IGNORE any window means ignore
1467 restrictions for that window only. IGNORE equal `safe' means
1468 live windows may get as small as `window-safe-min-height' lines
1469 and `window-safe-min-width' columns.
1470
1471 This function resizes other windows proportionally and never
1472 deletes any windows. If you want to move only the low (right)
1473 edge of WINDOW consider using `adjust-window-trailing-edge'
1474 instead."
1475 (setq window (window-normalize-window window))
1476 (let* ((frame (window-frame window))
1477 sibling)
1478 (cond
1479 ((eq window (frame-root-window frame))
1480 (error "Cannot resize the root window of a frame"))
1481 ((window-minibuffer-p window)
1482 (window--resize-mini-window window delta))
1483 ((window--resizable-p window delta horizontal ignore)
1484 (window--resize-reset frame horizontal)
1485 (window--resize-this-window window delta horizontal ignore t)
1486 (if (and (not window-combination-resize)
1487 (window-combined-p window horizontal)
1488 (setq sibling (or (window-right window) (window-left window)))
1489 (window-sizable-p sibling (- delta) horizontal ignore))
1490 ;; If window-combination-resize is nil, WINDOW is part of an
1491 ;; iso-combination, and WINDOW's neighboring right or left
1492 ;; sibling can be resized as requested, resize that sibling.
1493 (let ((normal-delta
1494 (/ (float delta)
1495 (window-total-size (window-parent window) horizontal))))
1496 (window--resize-this-window sibling (- delta) horizontal nil t)
1497 (set-window-new-normal
1498 window (+ (window-normal-size window horizontal)
1499 normal-delta))
1500 (set-window-new-normal
1501 sibling (- (window-normal-size sibling horizontal)
1502 normal-delta)))
1503 ;; Otherwise, resize all other windows in the same combination.
1504 (window--resize-siblings window delta horizontal ignore))
1505 (window-resize-apply frame horizontal))
1506 (t
1507 (error "Cannot resize window %s" window)))))
1508
1509 (defun window--resize-child-windows-skip-p (window)
1510 "Return non-nil if WINDOW shall be skipped by resizing routines."
1511 (memq (window-new-normal window) '(ignore stuck skip)))
1512
1513 (defun window--resize-child-windows-normal (parent horizontal window this-delta &optional trail other-delta)
1514 "Recursively set new normal height of child windows of window PARENT.
1515 HORIZONTAL non-nil means set the new normal width of these
1516 windows. WINDOW specifies a child window of PARENT that has been
1517 resized by THIS-DELTA lines (columns).
1518
1519 Optional argument TRAIL either 'before or 'after means set values
1520 for windows before or after WINDOW only. Optional argument
1521 OTHER-DELTA a number specifies that this many lines (columns)
1522 have been obtained from (or returned to) an ancestor window of
1523 PARENT in order to resize WINDOW."
1524 (let* ((delta-normal
1525 (if (and (= (- this-delta) (window-total-size window horizontal))
1526 (zerop other-delta))
1527 ;; When WINDOW gets deleted and we can return its entire
1528 ;; space to its siblings, use WINDOW's normal size as the
1529 ;; normal delta.
1530 (- (window-normal-size window horizontal))
1531 ;; In any other case calculate the normal delta from the
1532 ;; relation of THIS-DELTA to the total size of PARENT.
1533 (/ (float this-delta) (window-total-size parent horizontal))))
1534 (sub (window-child parent))
1535 (parent-normal 0.0)
1536 (skip (eq trail 'after)))
1537
1538 ;; Set parent-normal to the sum of the normal sizes of all child
1539 ;; windows of PARENT that shall be resized, excluding only WINDOW
1540 ;; and any windows specified by the optional TRAIL argument.
1541 (while sub
1542 (cond
1543 ((eq sub window)
1544 (setq skip (eq trail 'before)))
1545 (skip)
1546 (t
1547 (setq parent-normal
1548 (+ parent-normal (window-normal-size sub horizontal)))))
1549 (setq sub (window-right sub)))
1550
1551 ;; Set the new normal size of all child windows of PARENT from what
1552 ;; they should have contributed for recovering THIS-DELTA lines
1553 ;; (columns).
1554 (setq sub (window-child parent))
1555 (setq skip (eq trail 'after))
1556 (while sub
1557 (cond
1558 ((eq sub window)
1559 (setq skip (eq trail 'before)))
1560 (skip)
1561 (t
1562 (let ((old-normal (window-normal-size sub horizontal)))
1563 (set-window-new-normal
1564 sub (min 1.0 ; Don't get larger than 1.
1565 (max (- old-normal
1566 (* (/ old-normal parent-normal)
1567 delta-normal))
1568 ;; Don't drop below 0.
1569 0.0))))))
1570 (setq sub (window-right sub)))
1571
1572 (when (numberp other-delta)
1573 ;; Set the new normal size of windows from what they should have
1574 ;; contributed for recovering OTHER-DELTA lines (columns).
1575 (setq delta-normal (/ (float (window-total-size parent horizontal))
1576 (+ (window-total-size parent horizontal)
1577 other-delta)))
1578 (setq sub (window-child parent))
1579 (setq skip (eq trail 'after))
1580 (while sub
1581 (cond
1582 ((eq sub window)
1583 (setq skip (eq trail 'before)))
1584 (skip)
1585 (t
1586 (set-window-new-normal
1587 sub (min 1.0 ; Don't get larger than 1.
1588 (max (* (window-new-normal sub) delta-normal)
1589 ;; Don't drop below 0.
1590 0.0)))))
1591 (setq sub (window-right sub))))
1592
1593 ;; Set the new normal size of WINDOW to what is left by the sum of
1594 ;; the normal sizes of its siblings.
1595 (set-window-new-normal
1596 window
1597 (let ((sum 0))
1598 (setq sub (window-child parent))
1599 (while sub
1600 (cond
1601 ((eq sub window))
1602 ((not (numberp (window-new-normal sub)))
1603 (setq sum (+ sum (window-normal-size sub horizontal))))
1604 (t
1605 (setq sum (+ sum (window-new-normal sub)))))
1606 (setq sub (window-right sub)))
1607 ;; Don't get larger than 1 or smaller than 0.
1608 (min 1.0 (max (- 1.0 sum) 0.0))))))
1609
1610 (defun window--resize-child-windows (parent delta &optional horizontal window ignore trail edge)
1611 "Resize child windows of window PARENT vertically by DELTA lines.
1612 PARENT must be a vertically combined internal window.
1613
1614 Optional argument HORIZONTAL non-nil means resize child windows of
1615 PARENT horizontally by DELTA columns. In this case PARENT must
1616 be a horizontally combined internal window.
1617
1618 WINDOW, if specified, must denote a child window of PARENT that
1619 is resized by DELTA lines.
1620
1621 Optional argument IGNORE non-nil means ignore any restrictions
1622 imposed by fixed size windows, `window-min-height' or
1623 `window-min-width' settings. IGNORE equal `safe' means live
1624 windows may get as small as `window-safe-min-height' lines and
1625 `window-safe-min-width' columns. IGNORE any window means ignore
1626 restrictions for that window only.
1627
1628 Optional arguments TRAIL and EDGE, when non-nil, restrict the set
1629 of windows that shall be resized. If TRAIL equals `before',
1630 resize only windows on the left or above EDGE. If TRAIL equals
1631 `after', resize only windows on the right or below EDGE. Also,
1632 preferably only resize windows adjacent to EDGE.
1633
1634 Return the symbol `normalized' if new normal sizes have been
1635 already set by this routine."
1636 (let* ((first (window-child parent))
1637 (sub first)
1638 (parent-total (+ (window-total-size parent horizontal) delta))
1639 best-window best-value)
1640
1641 (if (and edge (memq trail '(before after))
1642 (progn
1643 (setq sub first)
1644 (while (and (window-right sub)
1645 (or (and (eq trail 'before)
1646 (not (window--resize-child-windows-skip-p
1647 (window-right sub))))
1648 (and (eq trail 'after)
1649 (window--resize-child-windows-skip-p sub))))
1650 (setq sub (window-right sub)))
1651 sub)
1652 (if horizontal
1653 (if (eq trail 'before)
1654 (= (+ (window-left-column sub)
1655 (window-total-size sub t))
1656 edge)
1657 (= (window-left-column sub) edge))
1658 (if (eq trail 'before)
1659 (= (+ (window-top-line sub)
1660 (window-total-size sub))
1661 edge)
1662 (= (window-top-line sub) edge)))
1663 (window-sizable-p sub delta horizontal ignore))
1664 ;; Resize only windows adjacent to EDGE.
1665 (progn
1666 (window--resize-this-window
1667 sub delta horizontal ignore t trail edge)
1668 (if (and window (eq (window-parent sub) parent))
1669 (progn
1670 ;; Assign new normal sizes.
1671 (set-window-new-normal
1672 sub (/ (float (window-new-total sub)) parent-total))
1673 (set-window-new-normal
1674 window (- (window-normal-size window horizontal)
1675 (- (window-new-normal sub)
1676 (window-normal-size sub horizontal)))))
1677 (window--resize-child-windows-normal
1678 parent horizontal sub 0 trail delta))
1679 ;; Return 'normalized to notify `window--resize-siblings' that
1680 ;; normal sizes have been already set.
1681 'normalized)
1682 ;; Resize all windows proportionally.
1683 (setq sub first)
1684 (while sub
1685 (cond
1686 ((or (window--resize-child-windows-skip-p sub)
1687 ;; Ignore windows to skip and fixed-size child windows -
1688 ;; in the latter case make it a window to skip.
1689 (and (not ignore)
1690 (window-size-fixed-p sub horizontal)
1691 (set-window-new-normal sub 'ignore))))
1692 ((< delta 0)
1693 ;; When shrinking store the number of lines/cols we can get
1694 ;; from this window here together with the total/normal size
1695 ;; factor.
1696 (set-window-new-normal
1697 sub
1698 (cons
1699 ;; We used to call this with NODOWN t, "fixed" 2011-05-11.
1700 (window-min-delta sub horizontal ignore trail t) ; t)
1701 (- (/ (float (window-total-size sub horizontal))
1702 parent-total)
1703 (window-normal-size sub horizontal)))))
1704 ((> delta 0)
1705 ;; When enlarging store the total/normal size factor only
1706 (set-window-new-normal
1707 sub
1708 (- (/ (float (window-total-size sub horizontal))
1709 parent-total)
1710 (window-normal-size sub horizontal)))))
1711
1712 (setq sub (window-right sub)))
1713
1714 (cond
1715 ((< delta 0)
1716 ;; Shrink windows by delta.
1717 (setq best-window t)
1718 (while (and best-window (not (zerop delta)))
1719 (setq sub first)
1720 (setq best-window nil)
1721 (setq best-value most-negative-fixnum)
1722 (while sub
1723 (when (and (consp (window-new-normal sub))
1724 (not (zerop (car (window-new-normal sub))))
1725 (> (cdr (window-new-normal sub)) best-value))
1726 (setq best-window sub)
1727 (setq best-value (cdr (window-new-normal sub))))
1728
1729 (setq sub (window-right sub)))
1730
1731 (when best-window
1732 (setq delta (1+ delta)))
1733 (set-window-new-total best-window -1 t)
1734 (set-window-new-normal
1735 best-window
1736 (if (= (car (window-new-normal best-window)) 1)
1737 'skip ; We can't shrink best-window any further.
1738 (cons (1- (car (window-new-normal best-window)))
1739 (- (/ (float (window-new-total best-window))
1740 parent-total)
1741 (window-normal-size best-window horizontal)))))))
1742 ((> delta 0)
1743 ;; Enlarge windows by delta.
1744 (setq best-window t)
1745 (while (and best-window (not (zerop delta)))
1746 (setq sub first)
1747 (setq best-window nil)
1748 (setq best-value most-positive-fixnum)
1749 (while sub
1750 (when (and (numberp (window-new-normal sub))
1751 (< (window-new-normal sub) best-value))
1752 (setq best-window sub)
1753 (setq best-value (window-new-normal sub)))
1754
1755 (setq sub (window-right sub)))
1756
1757 (when best-window
1758 (setq delta (1- delta)))
1759 (set-window-new-total best-window 1 t)
1760 (set-window-new-normal
1761 best-window
1762 (- (/ (float (window-new-total best-window))
1763 parent-total)
1764 (window-normal-size best-window horizontal))))))
1765
1766 (when best-window
1767 (setq sub first)
1768 (while sub
1769 (when (or (consp (window-new-normal sub))
1770 (numberp (window-new-normal sub)))
1771 ;; Reset new normal size fields so `window-resize-apply'
1772 ;; won't use them to apply new sizes.
1773 (set-window-new-normal sub))
1774
1775 (unless (eq (window-new-normal sub) 'ignore)
1776 ;; Resize this window's child windows (back-engineering
1777 ;; delta from sub's old and new total sizes).
1778 (let ((delta (- (window-new-total sub)
1779 (window-total-size sub horizontal))))
1780 (unless (and (zerop delta) (not trail))
1781 ;; For the TRAIL non-nil case we have to resize SUB
1782 ;; recursively even if it's size does not change.
1783 (window--resize-this-window
1784 sub delta horizontal ignore nil trail edge))))
1785 (setq sub (window-right sub)))))))
1786
1787 (defun window--resize-siblings (window delta &optional horizontal ignore trail edge)
1788 "Resize other windows when WINDOW is resized vertically by DELTA lines.
1789 Optional argument HORIZONTAL non-nil means resize other windows
1790 when WINDOW is resized horizontally by DELTA columns. WINDOW
1791 itself is not resized by this function.
1792
1793 Optional argument IGNORE non-nil means ignore any restrictions
1794 imposed by fixed size windows, `window-min-height' or
1795 `window-min-width' settings. IGNORE equal `safe' means live
1796 windows may get as small as `window-safe-min-height' lines and
1797 `window-safe-min-width' columns. IGNORE any window means ignore
1798 restrictions for that window only.
1799
1800 Optional arguments TRAIL and EDGE, when non-nil, refine the set
1801 of windows that shall be resized. If TRAIL equals `before',
1802 resize only windows on the left or above EDGE. If TRAIL equals
1803 `after', resize only windows on the right or below EDGE. Also,
1804 preferably only resize windows adjacent to EDGE."
1805 (when (window-parent window)
1806 (let* ((parent (window-parent window))
1807 (sub (window-child parent)))
1808 (if (window-combined-p sub horizontal)
1809 ;; In an iso-combination try to extract DELTA from WINDOW's
1810 ;; siblings.
1811 (let ((skip (eq trail 'after))
1812 this-delta other-delta)
1813 ;; Decide which windows shall be left alone.
1814 (while sub
1815 (cond
1816 ((eq sub window)
1817 ;; Make sure WINDOW is left alone when
1818 ;; resizing its siblings.
1819 (set-window-new-normal sub 'ignore)
1820 (setq skip (eq trail 'before)))
1821 (skip
1822 ;; Make sure this sibling is left alone when
1823 ;; resizing its siblings.
1824 (set-window-new-normal sub 'ignore))
1825 ((or (window--size-ignore sub ignore)
1826 (not (window-size-fixed-p sub horizontal)))
1827 ;; Set this-delta to t to signal that we found a sibling
1828 ;; of WINDOW whose size is not fixed.
1829 (setq this-delta t)))
1830
1831 (setq sub (window-right sub)))
1832
1833 ;; Set this-delta to what we can get from WINDOW's siblings.
1834 (if (= (- delta) (window-total-size window horizontal))
1835 ;; A deletion, presumably. We must handle this case
1836 ;; specially since `window--resizable' can't be used.
1837 (if this-delta
1838 ;; There's at least one resizable sibling we can
1839 ;; give WINDOW's size to.
1840 (setq this-delta delta)
1841 ;; No resizable sibling exists.
1842 (setq this-delta 0))
1843 ;; Any other form of resizing.
1844 (setq this-delta
1845 (window--resizable window delta horizontal ignore trail t)))
1846
1847 ;; Set other-delta to what we still have to get from
1848 ;; ancestor windows of parent.
1849 (setq other-delta (- delta this-delta))
1850 (unless (zerop other-delta)
1851 ;; Unless we got everything from WINDOW's siblings, PARENT
1852 ;; must be resized by other-delta lines or columns.
1853 (set-window-new-total parent other-delta 'add))
1854
1855 (if (zerop this-delta)
1856 ;; We haven't got anything from WINDOW's siblings but we
1857 ;; must update the normal sizes to respect other-delta.
1858 (window--resize-child-windows-normal
1859 parent horizontal window this-delta trail other-delta)
1860 ;; We did get something from WINDOW's siblings which means
1861 ;; we have to resize their child windows.
1862 (unless (eq (window--resize-child-windows
1863 parent (- this-delta) horizontal
1864 window ignore trail edge)
1865 ;; If `window--resize-child-windows' returns
1866 ;; 'normalized, this means it has set the
1867 ;; normal sizes already.
1868 'normalized)
1869 ;; Set the normal sizes.
1870 (window--resize-child-windows-normal
1871 parent horizontal window this-delta trail other-delta))
1872 ;; Set DELTA to what we still have to get from ancestor
1873 ;; windows.
1874 (setq delta other-delta)))
1875
1876 ;; In an ortho-combination all siblings of WINDOW must be
1877 ;; resized by DELTA.
1878 (set-window-new-total parent delta 'add)
1879 (while sub
1880 (unless (eq sub window)
1881 (window--resize-this-window sub delta horizontal ignore t))
1882 (setq sub (window-right sub))))
1883
1884 (unless (zerop delta)
1885 ;; "Go up."
1886 (window--resize-siblings
1887 parent delta horizontal ignore trail edge)))))
1888
1889 (defun window--resize-this-window (window delta &optional horizontal ignore add trail edge)
1890 "Resize WINDOW vertically by DELTA lines.
1891 Optional argument HORIZONTAL non-nil means resize WINDOW
1892 horizontally by DELTA columns.
1893
1894 Optional argument IGNORE non-nil means ignore any restrictions
1895 imposed by fixed size windows, `window-min-height' or
1896 `window-min-width' settings. IGNORE equal `safe' means live
1897 windows may get as small as `window-safe-min-height' lines and
1898 `window-safe-min-width' columns. IGNORE any window means ignore
1899 restrictions for that window only.
1900
1901 Optional argument ADD non-nil means add DELTA to the new total
1902 size of WINDOW.
1903
1904 Optional arguments TRAIL and EDGE, when non-nil, refine the set
1905 of windows that shall be resized. If TRAIL equals `before',
1906 resize only windows on the left or above EDGE. If TRAIL equals
1907 `after', resize only windows on the right or below EDGE. Also,
1908 preferably only resize windows adjacent to EDGE.
1909
1910 This function recursively resizes WINDOW's child windows to fit the
1911 new size. Make sure that WINDOW is `window--resizable' before
1912 calling this function. Note that this function does not resize
1913 siblings of WINDOW or WINDOW's parent window. You have to
1914 eventually call `window-resize-apply' in order to make resizing
1915 actually take effect."
1916 (when add
1917 ;; Add DELTA to the new total size of WINDOW.
1918 (set-window-new-total window delta t))
1919
1920 (let ((sub (window-child window)))
1921 (cond
1922 ((not sub))
1923 ((window-combined-p sub horizontal)
1924 ;; In an iso-combination resize child windows according to their
1925 ;; normal sizes.
1926 (window--resize-child-windows
1927 window delta horizontal nil ignore trail edge))
1928 ;; In an ortho-combination resize each child window by DELTA.
1929 (t
1930 (while sub
1931 (window--resize-this-window
1932 sub delta horizontal ignore t trail edge)
1933 (setq sub (window-right sub)))))))
1934
1935 (defun window--resize-root-window (window delta horizontal ignore)
1936 "Resize root window WINDOW vertically by DELTA lines.
1937 HORIZONTAL non-nil means resize root window WINDOW horizontally
1938 by DELTA columns.
1939
1940 IGNORE non-nil means ignore any restrictions imposed by fixed
1941 size windows, `window-min-height' or `window-min-width' settings.
1942
1943 This function is only called by the frame resizing routines. It
1944 resizes windows proportionally and never deletes any windows."
1945 (when (and (windowp window) (numberp delta)
1946 (window-sizable-p window delta horizontal ignore))
1947 (window--resize-reset (window-frame window) horizontal)
1948 (window--resize-this-window window delta horizontal ignore t)))
1949
1950 (defun window--resize-root-window-vertically (window delta)
1951 "Resize root window WINDOW vertically by DELTA lines.
1952 If DELTA is less than zero and we can't shrink WINDOW by DELTA
1953 lines, shrink it as much as possible. If DELTA is greater than
1954 zero, this function can resize fixed-size windows in order to
1955 recover the necessary lines.
1956
1957 Return the number of lines that were recovered.
1958
1959 This function is only called by the minibuffer window resizing
1960 routines. It resizes windows proportionally and never deletes
1961 any windows."
1962 (when (numberp delta)
1963 (let (ignore)
1964 (cond
1965 ((< delta 0)
1966 (setq delta (window-sizable window delta)))
1967 ((> delta 0)
1968 (unless (window-sizable window delta)
1969 (setq ignore t))))
1970
1971 (window--resize-reset (window-frame window))
1972 ;; Ideally, we would resize just the last window in a combination
1973 ;; but that's not feasible for the following reason: If we grow
1974 ;; the minibuffer window and the last window cannot be shrunk any
1975 ;; more, we shrink another window instead. But if we then shrink
1976 ;; the minibuffer window again, the last window might get enlarged
1977 ;; and the state after shrinking is not the state before growing.
1978 ;; So, in practice, we'd need a history variable to record how to
1979 ;; proceed. But I'm not sure how such a variable could work with
1980 ;; repeated minibuffer window growing steps.
1981 (window--resize-this-window window delta nil ignore t)
1982 delta)))
1983
1984 (defun adjust-window-trailing-edge (window delta &optional horizontal)
1985 "Move WINDOW's bottom edge by DELTA lines.
1986 Optional argument HORIZONTAL non-nil means move WINDOW's right
1987 edge by DELTA columns. WINDOW defaults to the selected window.
1988
1989 If DELTA is greater zero, then move the edge downwards or to the
1990 right. If DELTA is less than zero, move the edge upwards or to
1991 the left. If the edge can't be moved by DELTA lines or columns,
1992 move it as far as possible in the desired direction."
1993 (setq window (window-normalize-window window))
1994 (let ((frame (window-frame window))
1995 (right window)
1996 left this-delta min-delta max-delta)
1997 ;; Find the edge we want to move.
1998 (while (and (or (not (window-combined-p right horizontal))
1999 (not (window-right right)))
2000 (setq right (window-parent right))))
2001 (cond
2002 ((and (not right) (not horizontal) (not resize-mini-windows)
2003 (eq (window-frame (minibuffer-window frame)) frame))
2004 (window--resize-mini-window (minibuffer-window frame) (- delta)))
2005 ((or (not (setq left right)) (not (setq right (window-right right))))
2006 (if horizontal
2007 (error "No window on the right of this one")
2008 (error "No window below this one")))
2009 (t
2010 ;; Set LEFT to the first resizable window on the left. This step is
2011 ;; needed to handle fixed-size windows.
2012 (while (and left (window-size-fixed-p left horizontal))
2013 (setq left
2014 (or (window-left left)
2015 (progn
2016 (while (and (setq left (window-parent left))
2017 (not (window-combined-p left horizontal))))
2018 (window-left left)))))
2019 (unless left
2020 (if horizontal
2021 (error "No resizable window on the left of this one")
2022 (error "No resizable window above this one")))
2023
2024 ;; Set RIGHT to the first resizable window on the right. This step
2025 ;; is needed to handle fixed-size windows.
2026 (while (and right (window-size-fixed-p right horizontal))
2027 (setq right
2028 (or (window-right right)
2029 (progn
2030 (while (and (setq right (window-parent right))
2031 (not (window-combined-p right horizontal))))
2032 (window-right right)))))
2033 (unless right
2034 (if horizontal
2035 (error "No resizable window on the right of this one")
2036 (error "No resizable window below this one")))
2037
2038 ;; LEFT and RIGHT (which might be both internal windows) are now the
2039 ;; two windows we want to resize.
2040 (cond
2041 ((> delta 0)
2042 (setq max-delta (window--max-delta-1 left 0 horizontal nil 'after))
2043 (setq min-delta (window--min-delta-1 right (- delta) horizontal nil 'before))
2044 (when (or (< max-delta delta) (> min-delta (- delta)))
2045 ;; We can't get the whole DELTA - move as far as possible.
2046 (setq delta (min max-delta (- min-delta))))
2047 (unless (zerop delta)
2048 ;; Start resizing.
2049 (window--resize-reset frame horizontal)
2050 ;; Try to enlarge LEFT first.
2051 (setq this-delta (window--resizable left delta horizontal))
2052 (unless (zerop this-delta)
2053 (window--resize-this-window
2054 left this-delta horizontal nil t 'before
2055 (if horizontal
2056 (+ (window-left-column left) (window-total-size left t))
2057 (+ (window-top-line left) (window-total-size left)))))
2058 ;; Shrink windows on right of LEFT.
2059 (window--resize-siblings
2060 left delta horizontal nil 'after
2061 (if horizontal
2062 (window-left-column right)
2063 (window-top-line right)))))
2064 ((< delta 0)
2065 (setq max-delta (window--max-delta-1 right 0 horizontal nil 'before))
2066 (setq min-delta (window--min-delta-1 left delta horizontal nil 'after))
2067 (when (or (< max-delta (- delta)) (> min-delta delta))
2068 ;; We can't get the whole DELTA - move as far as possible.
2069 (setq delta (max (- max-delta) min-delta)))
2070 (unless (zerop delta)
2071 ;; Start resizing.
2072 (window--resize-reset frame horizontal)
2073 ;; Try to enlarge RIGHT.
2074 (setq this-delta (window--resizable right (- delta) horizontal))
2075 (unless (zerop this-delta)
2076 (window--resize-this-window
2077 right this-delta horizontal nil t 'after
2078 (if horizontal
2079 (window-left-column right)
2080 (window-top-line right))))
2081 ;; Shrink windows on left of RIGHT.
2082 (window--resize-siblings
2083 right (- delta) horizontal nil 'before
2084 (if horizontal
2085 (+ (window-left-column left) (window-total-size left t))
2086 (+ (window-top-line left) (window-total-size left)))))))
2087 (unless (zerop delta)
2088 ;; Don't report an error in the standard case.
2089 (unless (window-resize-apply frame horizontal)
2090 ;; But do report an error if applying the changes fails.
2091 (error "Failed adjusting window %s" window)))))))
2092
2093 (defun enlarge-window (delta &optional horizontal)
2094 "Make selected window DELTA lines taller.
2095 Interactively, if no argument is given, make the selected window
2096 one line taller. If optional argument HORIZONTAL is non-nil,
2097 make selected window wider by DELTA columns. If DELTA is
2098 negative, shrink selected window by -DELTA lines or columns.
2099 Return nil."
2100 (interactive "p")
2101 (cond
2102 ((zerop delta))
2103 ((window-size-fixed-p nil horizontal)
2104 (error "Selected window has fixed size"))
2105 ((window--resizable-p nil delta horizontal)
2106 (window-resize nil delta horizontal))
2107 (t
2108 (window-resize
2109 nil (if (> delta 0)
2110 (window-max-delta nil horizontal)
2111 (- (window-min-delta nil horizontal)))
2112 horizontal))))
2113
2114 (defun shrink-window (delta &optional horizontal)
2115 "Make selected window DELTA lines smaller.
2116 Interactively, if no argument is given, make the selected window
2117 one line smaller. If optional argument HORIZONTAL is non-nil,
2118 make selected window narrower by DELTA columns. If DELTA is
2119 negative, enlarge selected window by -DELTA lines or columns.
2120 Also see the `window-min-height' variable.
2121 Return nil."
2122 (interactive "p")
2123 (cond
2124 ((zerop delta))
2125 ((window-size-fixed-p nil horizontal)
2126 (error "Selected window has fixed size"))
2127 ((window--resizable-p nil (- delta) horizontal)
2128 (window-resize nil (- delta) horizontal))
2129 (t
2130 (window-resize
2131 nil (if (> delta 0)
2132 (- (window-min-delta nil horizontal))
2133 (window-max-delta nil horizontal))
2134 horizontal))))
2135
2136 (defun maximize-window (&optional window)
2137 "Maximize WINDOW.
2138 Make WINDOW as large as possible without deleting any windows.
2139 WINDOW can be any window and defaults to the selected window."
2140 (interactive)
2141 (setq window (window-normalize-window window))
2142 (window-resize window (window-max-delta window))
2143 (window-resize window (window-max-delta window t) t))
2144
2145 (defun minimize-window (&optional window)
2146 "Minimize WINDOW.
2147 Make WINDOW as small as possible without deleting any windows.
2148 WINDOW can be any window and defaults to the selected window."
2149 (interactive)
2150 (setq window (window-normalize-window window))
2151 (window-resize window (- (window-min-delta window)))
2152 (window-resize window (- (window-min-delta window t)) t))
2153 \f
2154 (defun frame-root-window-p (window)
2155 "Return non-nil if WINDOW is the root window of its frame."
2156 (eq window (frame-root-window window)))
2157
2158 (defun window--subtree (window &optional next)
2159 "Return window subtree rooted at WINDOW.
2160 Optional argument NEXT non-nil means include WINDOW's right
2161 siblings in the return value.
2162
2163 See the documentation of `window-tree' for a description of the
2164 return value."
2165 (let (list)
2166 (while window
2167 (setq list
2168 (cons
2169 (cond
2170 ((window-top-child window)
2171 (cons t (cons (window-edges window)
2172 (window--subtree (window-top-child window) t))))
2173 ((window-left-child window)
2174 (cons nil (cons (window-edges window)
2175 (window--subtree (window-left-child window) t))))
2176 (t window))
2177 list))
2178 (setq window (when next (window-next-sibling window))))
2179 (nreverse list)))
2180
2181 (defun window-tree (&optional frame)
2182 "Return the window tree of frame FRAME.
2183 FRAME must be a live frame and defaults to the selected frame.
2184 The return value is a list of the form (ROOT MINI), where ROOT
2185 represents the window tree of the frame's root window, and MINI
2186 is the frame's minibuffer window.
2187
2188 If the root window is not split, ROOT is the root window itself.
2189 Otherwise, ROOT is a list (DIR EDGES W1 W2 ...) where DIR is nil
2190 for a horizontal split, and t for a vertical split. EDGES gives
2191 the combined size and position of the child windows in the split,
2192 and the rest of the elements are the child windows in the split.
2193 Each of the child windows may again be a window or a list
2194 representing a window split, and so on. EDGES is a list (LEFT
2195 TOP RIGHT BOTTOM) as returned by `window-edges'."
2196 (setq frame (window-normalize-frame frame))
2197 (window--subtree (frame-root-window frame) t))
2198 \f
2199 (defun other-window (count &optional all-frames)
2200 "Select another window in cyclic ordering of windows.
2201 COUNT specifies the number of windows to skip, starting with the
2202 selected window, before making the selection. If COUNT is
2203 positive, skip COUNT windows forwards. If COUNT is negative,
2204 skip -COUNT windows backwards. COUNT zero means do not skip any
2205 window, so select the selected window. In an interactive call,
2206 COUNT is the numeric prefix argument. Return nil.
2207
2208 If the `other-window' parameter of the selected window is a
2209 function and `ignore-window-parameters' is nil, call that
2210 function with the arguments COUNT and ALL-FRAMES.
2211
2212 This function does not select a window whose `no-other-window'
2213 window parameter is non-nil.
2214
2215 This function uses `next-window' for finding the window to
2216 select. The argument ALL-FRAMES has the same meaning as in
2217 `next-window', but the MINIBUF argument of `next-window' is
2218 always effectively nil."
2219 (interactive "p")
2220 (let* ((window (selected-window))
2221 (function (and (not ignore-window-parameters)
2222 (window-parameter window 'other-window)))
2223 old-window old-count)
2224 (if (functionp function)
2225 (funcall function count all-frames)
2226 ;; `next-window' and `previous-window' may return a window we are
2227 ;; not allowed to select. Hence we need an exit strategy in case
2228 ;; all windows are non-selectable.
2229 (catch 'exit
2230 (while (> count 0)
2231 (setq window (next-window window nil all-frames))
2232 (cond
2233 ((eq window old-window)
2234 (when (= count old-count)
2235 ;; Keep out of infinite loops. When COUNT has not changed
2236 ;; since we last looked at `window' we're probably in one.
2237 (throw 'exit nil)))
2238 ((window-parameter window 'no-other-window)
2239 (unless old-window
2240 ;; The first non-selectable window `next-window' got us:
2241 ;; Remember it and the current value of COUNT.
2242 (setq old-window window)
2243 (setq old-count count)))
2244 (t
2245 (setq count (1- count)))))
2246 (while (< count 0)
2247 (setq window (previous-window window nil all-frames))
2248 (cond
2249 ((eq window old-window)
2250 (when (= count old-count)
2251 ;; Keep out of infinite loops. When COUNT has not changed
2252 ;; since we last looked at `window' we're probably in one.
2253 (throw 'exit nil)))
2254 ((window-parameter window 'no-other-window)
2255 (unless old-window
2256 ;; The first non-selectable window `previous-window' got
2257 ;; us: Remember it and the current value of COUNT.
2258 (setq old-window window)
2259 (setq old-count count)))
2260 (t
2261 (setq count (1+ count)))))
2262
2263 (select-window window)
2264 ;; Always return nil.
2265 nil))))
2266
2267 ;; This should probably return non-nil when the selected window is part
2268 ;; of an atomic window whose root is the frame's root window.
2269 (defun one-window-p (&optional nomini all-frames)
2270 "Return non-nil if the selected window is the only window.
2271 Optional arg NOMINI non-nil means don't count the minibuffer
2272 even if it is active. Otherwise, the minibuffer is counted
2273 when it is active.
2274
2275 Optional argument ALL-FRAMES specifies the set of frames to
2276 consider, see also `next-window'. ALL-FRAMES nil or omitted
2277 means consider windows on the selected frame only, plus the
2278 minibuffer window if specified by the NOMINI argument. If the
2279 minibuffer counts, consider all windows on all frames that share
2280 that minibuffer too. The remaining non-nil values of ALL-FRAMES
2281 with a special meaning are:
2282
2283 - t means consider all windows on all existing frames.
2284
2285 - `visible' means consider all windows on all visible frames on
2286 the current terminal.
2287
2288 - 0 (the number zero) means consider all windows on all visible
2289 and iconified frames on the current terminal.
2290
2291 - A frame means consider all windows on that frame only.
2292
2293 Anything else means consider all windows on the selected frame
2294 and no others."
2295 (let ((base-window (selected-window)))
2296 (if (and nomini (eq base-window (minibuffer-window)))
2297 (setq base-window (next-window base-window)))
2298 (eq base-window
2299 (next-window base-window (if nomini 'arg) all-frames))))
2300 \f
2301 ;;; Deleting windows.
2302 (defun window-deletable-p (&optional window)
2303 "Return t if WINDOW can be safely deleted from its frame.
2304 Return `frame' if deleting WINDOW should also delete its
2305 frame."
2306 (setq window (window-normalize-window window))
2307
2308 (unless ignore-window-parameters
2309 ;; Handle atomicity.
2310 (when (window-parameter window 'window-atom)
2311 (setq window (window-atom-root window))))
2312
2313 (let ((parent (window-parent window))
2314 (frame (window-frame window)))
2315 (cond
2316 ((frame-root-window-p window)
2317 ;; WINDOW's frame can be deleted only if there are other frames
2318 ;; on the same terminal.
2319 (unless (eq frame (next-frame frame 0))
2320 'frame))
2321 ((or ignore-window-parameters
2322 (not (eq (window-parameter window 'window-side) 'none))
2323 (and parent (eq (window-parameter parent 'window-side) 'none)))
2324 ;; WINDOW can be deleted unless it is the main window of its
2325 ;; frame.
2326 t))))
2327
2328 (defun window--in-subtree-p (window root)
2329 "Return t if WINDOW is either ROOT or a member of ROOT's subtree."
2330 (or (eq window root)
2331 (let ((parent (window-parent window)))
2332 (catch 'done
2333 (while parent
2334 (if (eq parent root)
2335 (throw 'done t)
2336 (setq parent (window-parent parent))))))))
2337
2338 (defun delete-window (&optional window)
2339 "Delete WINDOW.
2340 WINDOW can be an arbitrary window and defaults to the selected
2341 one. Return nil.
2342
2343 If the variable `ignore-window-parameters' is non-nil or the
2344 `delete-window' parameter of WINDOW equals t, do not process any
2345 parameters of WINDOW. Otherwise, if the `delete-window'
2346 parameter of WINDOW specifies a function, call that function with
2347 WINDOW as its sole argument and return the value returned by that
2348 function.
2349
2350 Otherwise, if WINDOW is part of an atomic window, call
2351 `delete-window' with the root of the atomic window as its
2352 argument. If WINDOW is the only window on its frame or the last
2353 non-side window, signal an error."
2354 (interactive)
2355 (setq window (window-normalize-window window))
2356 (let* ((frame (window-frame window))
2357 (function (window-parameter window 'delete-window))
2358 (parent (window-parent window))
2359 atom-root)
2360 (window--check frame)
2361 (catch 'done
2362 ;; Handle window parameters.
2363 (cond
2364 ;; Ignore window parameters if `ignore-window-parameters' tells
2365 ;; us so or `delete-window' equals t.
2366 ((or ignore-window-parameters (eq function t)))
2367 ((functionp function)
2368 ;; The `delete-window' parameter specifies the function to call.
2369 ;; If that function is `ignore' nothing is done. It's up to the
2370 ;; function called here to avoid infinite recursion.
2371 (throw 'done (funcall function window)))
2372 ((and (window-parameter window 'window-atom)
2373 (setq atom-root (window-atom-root window))
2374 (not (eq atom-root window)))
2375 (throw 'done (delete-window atom-root)))
2376 ((and (eq (window-parameter window 'window-side) 'none)
2377 (or (not parent)
2378 (not (eq (window-parameter parent 'window-side) 'none))))
2379 (error "Attempt to delete last non-side window"))
2380 ((not parent)
2381 (error "Attempt to delete minibuffer or sole ordinary window")))
2382
2383 (let* ((horizontal (window-left-child parent))
2384 (size (window-total-size window horizontal))
2385 (frame-selected
2386 (window--in-subtree-p (frame-selected-window frame) window))
2387 ;; Emacs 23 preferably gives WINDOW's space to its left
2388 ;; sibling.
2389 (sibling (or (window-left window) (window-right window))))
2390 (window--resize-reset frame horizontal)
2391 (cond
2392 ((and (not window-combination-resize)
2393 sibling (window-sizable-p sibling size))
2394 ;; Resize WINDOW's sibling.
2395 (window--resize-this-window sibling size horizontal nil t)
2396 (set-window-new-normal
2397 sibling (+ (window-normal-size sibling horizontal)
2398 (window-normal-size window horizontal))))
2399 ((window--resizable-p window (- size) horizontal nil nil nil t)
2400 ;; Can do without resizing fixed-size windows.
2401 (window--resize-siblings window (- size) horizontal))
2402 (t
2403 ;; Can't do without resizing fixed-size windows.
2404 (window--resize-siblings window (- size) horizontal t)))
2405 ;; Actually delete WINDOW.
2406 (delete-window-internal window)
2407 (when (and frame-selected
2408 (window-parameter
2409 (frame-selected-window frame) 'no-other-window))
2410 ;; `delete-window-internal' has selected a window that should
2411 ;; not be selected, fix this here.
2412 (other-window -1 frame))
2413 (run-window-configuration-change-hook frame)
2414 (window--check frame)
2415 ;; Always return nil.
2416 nil))))
2417
2418 (defun delete-other-windows (&optional window)
2419 "Make WINDOW fill its frame.
2420 WINDOW may be any window and defaults to the selected one.
2421 Return nil.
2422
2423 If the variable `ignore-window-parameters' is non-nil or the
2424 `delete-other-windows' parameter of WINDOW equals t, do not
2425 process any parameters of WINDOW. Otherwise, if the
2426 `delete-other-windows' parameter of WINDOW specifies a function,
2427 call that function with WINDOW as its sole argument and return
2428 the value returned by that function.
2429
2430 Otherwise, if WINDOW is part of an atomic window, call this
2431 function with the root of the atomic window as its argument. If
2432 WINDOW is a non-side window, make WINDOW the only non-side window
2433 on the frame. Side windows are not deleted. If WINDOW is a side
2434 window signal an error."
2435 (interactive)
2436 (setq window (window-normalize-window window))
2437 (let* ((frame (window-frame window))
2438 (function (window-parameter window 'delete-other-windows))
2439 (window-side (window-parameter window 'window-side))
2440 atom-root side-main)
2441 (window--check frame)
2442 (catch 'done
2443 (cond
2444 ;; Ignore window parameters if `ignore-window-parameters' is t or
2445 ;; `delete-other-windows' is t.
2446 ((or ignore-window-parameters (eq function t)))
2447 ((functionp function)
2448 ;; The `delete-other-windows' parameter specifies the function
2449 ;; to call. If the function is `ignore' no windows are deleted.
2450 ;; It's up to the function called to avoid infinite recursion.
2451 (throw 'done (funcall function window)))
2452 ((and (window-parameter window 'window-atom)
2453 (setq atom-root (window-atom-root window))
2454 (not (eq atom-root window)))
2455 (throw 'done (delete-other-windows atom-root)))
2456 ((eq window-side 'none)
2457 ;; Set side-main to the major non-side window.
2458 (setq side-main (window-with-parameter 'window-side 'none frame t)))
2459 ((memq window-side window-sides)
2460 (error "Cannot make side window the only window")))
2461 ;; If WINDOW is the main non-side window, do nothing.
2462 (unless (eq window side-main)
2463 (delete-other-windows-internal window side-main)
2464 (run-window-configuration-change-hook frame)
2465 (window--check frame))
2466 ;; Always return nil.
2467 nil)))
2468
2469 (defun delete-other-windows-vertically (&optional window)
2470 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
2471 This may be a useful alternative binding for \\[delete-other-windows]
2472 if you often split windows horizontally."
2473 (interactive)
2474 (let* ((window (or window (selected-window)))
2475 (edges (window-edges window))
2476 (w window) delenda)
2477 (while (not (eq (setq w (next-window w 1)) window))
2478 (let ((e (window-edges w)))
2479 (when (and (= (car e) (car edges))
2480 (= (caddr e) (caddr edges)))
2481 (push w delenda))))
2482 (mapc 'delete-window delenda)))
2483
2484 ;;; Windows and buffers.
2485
2486 ;; `prev-buffers' and `next-buffers' are two reserved window slots used
2487 ;; for (1) determining which buffer to show in the window when its
2488 ;; buffer shall be buried or killed and (2) which buffer to show for
2489 ;; `switch-to-prev-buffer' and `switch-to-next-buffer'.
2490
2491 ;; `prev-buffers' consists of <buffer, window-start, window-point>
2492 ;; triples. The entries on this list are ordered by the time their
2493 ;; buffer has been removed from the window, the most recently removed
2494 ;; buffer's entry being first. The window-start and window-point
2495 ;; components are `window-start' and `window-point' at the time the
2496 ;; buffer was removed from the window which implies that the entry must
2497 ;; be added when `set-window-buffer' removes the buffer from the window.
2498
2499 ;; `next-buffers' is the list of buffers that have been replaced
2500 ;; recently by `switch-to-prev-buffer'. These buffers are the least
2501 ;; preferred candidates of `switch-to-prev-buffer' and the preferred
2502 ;; candidates of `switch-to-next-buffer' to switch to. This list is
2503 ;; reset to nil by any action changing the window's buffer with the
2504 ;; exception of `switch-to-prev-buffer' and `switch-to-next-buffer'.
2505 ;; `switch-to-prev-buffer' pushes the buffer it just replaced on it,
2506 ;; `switch-to-next-buffer' pops the last pushed buffer from it.
2507
2508 ;; Both `prev-buffers' and `next-buffers' may reference killed buffers
2509 ;; if such a buffer was killed while the window was hidden within a
2510 ;; window configuration. Such killed buffers get removed whenever
2511 ;; `switch-to-prev-buffer' or `switch-to-next-buffer' encounter them.
2512
2513 ;; The following function is called by `set-window-buffer' _before_ it
2514 ;; replaces the buffer of the argument window with the new buffer.
2515 (defun record-window-buffer (&optional window)
2516 "Record WINDOW's buffer.
2517 WINDOW must be a live window and defaults to the selected one."
2518 (let* ((window (window-normalize-window window t))
2519 (buffer (window-buffer window))
2520 (entry (assq buffer (window-prev-buffers window))))
2521 ;; Reset WINDOW's next buffers. If needed, they are resurrected by
2522 ;; `switch-to-prev-buffer' and `switch-to-next-buffer'.
2523 (set-window-next-buffers window nil)
2524
2525 (when entry
2526 ;; Remove all entries for BUFFER from WINDOW's previous buffers.
2527 (set-window-prev-buffers
2528 window (assq-delete-all buffer (window-prev-buffers window))))
2529
2530 ;; Don't record insignificant buffers.
2531 (unless (eq (aref (buffer-name buffer) 0) ?\s)
2532 ;; Add an entry for buffer to WINDOW's previous buffers.
2533 (with-current-buffer buffer
2534 (let ((start (window-start window))
2535 (point (window-point-1 window)))
2536 (setq entry
2537 (cons buffer
2538 (if entry
2539 ;; We have an entry, update marker positions.
2540 (list (set-marker (nth 1 entry) start)
2541 (set-marker (nth 2 entry) point))
2542 ;; Make new markers.
2543 (list (copy-marker start)
2544 (copy-marker point)))))
2545
2546 (set-window-prev-buffers
2547 window (cons entry (window-prev-buffers window))))))))
2548
2549 (defun unrecord-window-buffer (&optional window buffer)
2550 "Unrecord BUFFER in WINDOW.
2551 WINDOW must be a live window and defaults to the selected one.
2552 BUFFER must be a live buffer and defaults to the buffer of
2553 WINDOW."
2554 (let* ((window (window-normalize-window window t))
2555 (buffer (or buffer (window-buffer window))))
2556 (set-window-prev-buffers
2557 window (assq-delete-all buffer (window-prev-buffers window)))
2558 (set-window-next-buffers
2559 window (delq buffer (window-next-buffers window)))))
2560
2561 (defun set-window-buffer-start-and-point (window buffer &optional start point)
2562 "Set WINDOW's buffer to BUFFER.
2563 Optional argument START non-nil means set WINDOW's start position
2564 to START. Optional argument POINT non-nil means set WINDOW's
2565 point to POINT. If WINDOW is selected this also sets BUFFER's
2566 `point' to POINT. If WINDOW is selected and the buffer it showed
2567 before was current this also makes BUFFER the current buffer."
2568 (let ((selected (eq window (selected-window)))
2569 (current (eq (window-buffer window) (current-buffer))))
2570 (set-window-buffer window buffer)
2571 (when (and selected current)
2572 (set-buffer buffer))
2573 (when start
2574 ;; Don't force window-start here (even if POINT is nil).
2575 (set-window-start window start t))
2576 (when point
2577 (set-window-point-1 window point))))
2578
2579 (defcustom switch-to-visible-buffer t
2580 "If non-nil, allow switching to an already visible buffer.
2581 If this variable is non-nil, `switch-to-prev-buffer' and
2582 `switch-to-next-buffer' may switch to an already visible buffer
2583 provided the buffer was shown in the argument window before. If
2584 this variable is nil, `switch-to-prev-buffer' and
2585 `switch-to-next-buffer' always try to avoid switching to a buffer
2586 that is already visible in another window on the same frame."
2587 :type 'boolean
2588 :version "24.1"
2589 :group 'windows)
2590
2591 (defun switch-to-prev-buffer (&optional window bury-or-kill)
2592 "In WINDOW switch to previous buffer.
2593 WINDOW must be a live window and defaults to the selected one.
2594
2595 Optional argument BURY-OR-KILL non-nil means the buffer currently
2596 shown in WINDOW is about to be buried or killed and consequently
2597 shall not be switched to in future invocations of this command."
2598 (interactive)
2599 (let* ((window (window-normalize-window window t))
2600 (frame (window-frame window))
2601 (old-buffer (window-buffer window))
2602 ;; Save this since it's destroyed by `set-window-buffer'.
2603 (next-buffers (window-next-buffers window))
2604 entry new-buffer killed-buffers visible)
2605 (when (window-dedicated-p window)
2606 (error "Window %s is dedicated to buffer %s" window old-buffer))
2607
2608 (catch 'found
2609 ;; Scan WINDOW's previous buffers first, skipping entries of next
2610 ;; buffers.
2611 (dolist (entry (window-prev-buffers window))
2612 (when (and (setq new-buffer (car entry))
2613 (or (buffer-live-p new-buffer)
2614 (not (setq killed-buffers
2615 (cons new-buffer killed-buffers))))
2616 (not (eq new-buffer old-buffer))
2617 (or bury-or-kill
2618 (not (memq new-buffer next-buffers))))
2619 (if (and (not switch-to-visible-buffer)
2620 (get-buffer-window new-buffer frame))
2621 ;; Try to avoid showing a buffer visible in some other window.
2622 (setq visible new-buffer)
2623 (set-window-buffer-start-and-point
2624 window new-buffer (nth 1 entry) (nth 2 entry))
2625 (throw 'found t))))
2626 ;; Scan reverted buffer list of WINDOW's frame next, skipping
2627 ;; entries of next buffers. Note that when we bury or kill a
2628 ;; buffer we don't reverse the global buffer list to avoid showing
2629 ;; a buried buffer instead. Otherwise, we must reverse the global
2630 ;; buffer list in order to make sure that switching to the
2631 ;; previous/next buffer traverse it in opposite directions.
2632 (dolist (buffer (if bury-or-kill
2633 (buffer-list frame)
2634 (nreverse (buffer-list frame))))
2635 (when (and (buffer-live-p buffer)
2636 (not (eq buffer old-buffer))
2637 (not (eq (aref (buffer-name buffer) 0) ?\s))
2638 (or bury-or-kill (not (memq buffer next-buffers))))
2639 (if (get-buffer-window buffer frame)
2640 ;; Try to avoid showing a buffer visible in some other window.
2641 (unless visible
2642 (setq visible buffer))
2643 (setq new-buffer buffer)
2644 (set-window-buffer-start-and-point window new-buffer)
2645 (throw 'found t))))
2646 (unless bury-or-kill
2647 ;; Scan reverted next buffers last (must not use nreverse
2648 ;; here!).
2649 (dolist (buffer (reverse next-buffers))
2650 ;; Actually, buffer _must_ be live here since otherwise it
2651 ;; would have been caught in the scan of previous buffers.
2652 (when (and (or (buffer-live-p buffer)
2653 (not (setq killed-buffers
2654 (cons buffer killed-buffers))))
2655 (not (eq buffer old-buffer))
2656 (setq entry (assq buffer (window-prev-buffers window))))
2657 (setq new-buffer buffer)
2658 (set-window-buffer-start-and-point
2659 window new-buffer (nth 1 entry) (nth 2 entry))
2660 (throw 'found t))))
2661
2662 ;; Show a buffer visible in another window.
2663 (when visible
2664 (setq new-buffer visible)
2665 (set-window-buffer-start-and-point window new-buffer)))
2666
2667 (if bury-or-kill
2668 ;; Remove `old-buffer' from WINDOW's previous and (restored list
2669 ;; of) next buffers.
2670 (progn
2671 (set-window-prev-buffers
2672 window (assq-delete-all old-buffer (window-prev-buffers window)))
2673 (set-window-next-buffers window (delq old-buffer next-buffers)))
2674 ;; Move `old-buffer' to head of WINDOW's restored list of next
2675 ;; buffers.
2676 (set-window-next-buffers
2677 window (cons old-buffer (delq old-buffer next-buffers))))
2678
2679 ;; Remove killed buffers from WINDOW's previous and next buffers.
2680 (when killed-buffers
2681 (dolist (buffer killed-buffers)
2682 (set-window-prev-buffers
2683 window (assq-delete-all buffer (window-prev-buffers window)))
2684 (set-window-next-buffers
2685 window (delq buffer (window-next-buffers window)))))
2686
2687 ;; Return new-buffer.
2688 new-buffer))
2689
2690 (defun switch-to-next-buffer (&optional window)
2691 "In WINDOW switch to next buffer.
2692 WINDOW must be a live window and defaults to the selected one."
2693 (interactive)
2694 (let* ((window (window-normalize-window window t))
2695 (frame (window-frame window))
2696 (old-buffer (window-buffer window))
2697 (next-buffers (window-next-buffers window))
2698 new-buffer entry killed-buffers visible)
2699 (when (window-dedicated-p window)
2700 (error "Window %s is dedicated to buffer %s" window old-buffer))
2701
2702 (catch 'found
2703 ;; Scan WINDOW's next buffers first.
2704 (dolist (buffer next-buffers)
2705 (when (and (or (buffer-live-p buffer)
2706 (not (setq killed-buffers
2707 (cons buffer killed-buffers))))
2708 (not (eq buffer old-buffer))
2709 (setq entry (assq buffer (window-prev-buffers window))))
2710 (setq new-buffer buffer)
2711 (set-window-buffer-start-and-point
2712 window new-buffer (nth 1 entry) (nth 2 entry))
2713 (throw 'found t)))
2714 ;; Scan the buffer list of WINDOW's frame next, skipping previous
2715 ;; buffers entries.
2716 (dolist (buffer (buffer-list frame))
2717 (when (and (buffer-live-p buffer) (not (eq buffer old-buffer))
2718 (not (eq (aref (buffer-name buffer) 0) ?\s))
2719 (not (assq buffer (window-prev-buffers window))))
2720 (if (get-buffer-window buffer frame)
2721 ;; Try to avoid showing a buffer visible in some other window.
2722 (setq visible buffer)
2723 (setq new-buffer buffer)
2724 (set-window-buffer-start-and-point window new-buffer)
2725 (throw 'found t))))
2726 ;; Scan WINDOW's reverted previous buffers last (must not use
2727 ;; nreverse here!)
2728 (dolist (entry (reverse (window-prev-buffers window)))
2729 (when (and (setq new-buffer (car entry))
2730 (or (buffer-live-p new-buffer)
2731 (not (setq killed-buffers
2732 (cons new-buffer killed-buffers))))
2733 (not (eq new-buffer old-buffer)))
2734 (if (and (not switch-to-visible-buffer)
2735 (get-buffer-window new-buffer frame))
2736 ;; Try to avoid showing a buffer visible in some other window.
2737 (unless visible
2738 (setq visible new-buffer))
2739 (set-window-buffer-start-and-point
2740 window new-buffer (nth 1 entry) (nth 2 entry))
2741 (throw 'found t))))
2742
2743 ;; Show a buffer visible in another window.
2744 (when visible
2745 (setq new-buffer visible)
2746 (set-window-buffer-start-and-point window new-buffer)))
2747
2748 ;; Remove `new-buffer' from and restore WINDOW's next buffers.
2749 (set-window-next-buffers window (delq new-buffer next-buffers))
2750
2751 ;; Remove killed buffers from WINDOW's previous and next buffers.
2752 (when killed-buffers
2753 (dolist (buffer killed-buffers)
2754 (set-window-prev-buffers
2755 window (assq-delete-all buffer (window-prev-buffers window)))
2756 (set-window-next-buffers
2757 window (delq buffer (window-next-buffers window)))))
2758
2759 ;; Return new-buffer.
2760 new-buffer))
2761
2762 (defun get-next-valid-buffer (list &optional buffer visible-ok frame)
2763 "Search LIST for a valid buffer to display in FRAME.
2764 Return nil when all buffers in LIST are undesirable for display,
2765 otherwise return the first suitable buffer in LIST.
2766
2767 Buffers not visible in windows are preferred to visible buffers,
2768 unless VISIBLE-OK is non-nil.
2769 If the optional argument FRAME is nil, it defaults to the selected frame.
2770 If BUFFER is non-nil, ignore occurrences of that buffer in LIST."
2771 ;; This logic is more or less copied from other-buffer.
2772 (setq frame (or frame (selected-frame)))
2773 (let ((pred (frame-parameter frame 'buffer-predicate))
2774 found buf)
2775 (while (and (not found) list)
2776 (setq buf (car list))
2777 (if (and (not (eq buffer buf))
2778 (buffer-live-p buf)
2779 (or (null pred) (funcall pred buf))
2780 (not (eq (aref (buffer-name buf) 0) ?\s))
2781 (or visible-ok (null (get-buffer-window buf 'visible))))
2782 (setq found buf)
2783 (setq list (cdr list))))
2784 (car list)))
2785
2786 (defun last-buffer (&optional buffer visible-ok frame)
2787 "Return the last buffer in FRAME's buffer list.
2788 If BUFFER is the last buffer, return the preceding buffer
2789 instead. Buffers not visible in windows are preferred to visible
2790 buffers, unless optional argument VISIBLE-OK is non-nil.
2791 Optional third argument FRAME nil or omitted means use the
2792 selected frame's buffer list. If no such buffer exists, return
2793 the buffer `*scratch*', creating it if necessary."
2794 (setq frame (or frame (selected-frame)))
2795 (or (get-next-valid-buffer (nreverse (buffer-list frame))
2796 buffer visible-ok frame)
2797 (get-buffer "*scratch*")
2798 (let ((scratch (get-buffer-create "*scratch*")))
2799 (set-buffer-major-mode scratch)
2800 scratch)))
2801
2802 (defcustom frame-auto-hide-function #'iconify-frame
2803 "Function called to automatically hide frames.
2804 The function is called with one argument - a frame.
2805
2806 Functions affected by this option are those that bury a buffer
2807 shown in a separate frame like `quit-window' and `bury-buffer'."
2808 :type '(choice (const :tag "Iconify" iconify-frame)
2809 (const :tag "Delete" delete-frame)
2810 (const :tag "Do nothing" ignore)
2811 function)
2812 :group 'windows
2813 :group 'frames
2814 :version "24.1")
2815
2816 (defun window--delete (&optional window dedicated-only kill)
2817 "Delete WINDOW if possible.
2818 WINDOW must be a live window and defaults to the selected one.
2819 Optional argument DEDICATED-ONLY non-nil means to delete WINDOW
2820 only if it's dedicated to its buffer. Optional argument KILL
2821 means the buffer shown in window will be killed. Return non-nil
2822 if WINDOW gets deleted or its frame is auto-hidden."
2823 (setq window (window-normalize-window window t))
2824 (unless (and dedicated-only (not (window-dedicated-p window)))
2825 (let ((deletable (window-deletable-p window)))
2826 (cond
2827 ((eq deletable 'frame)
2828 (let ((frame (window-frame window)))
2829 (cond
2830 (kill
2831 (delete-frame frame))
2832 ((functionp frame-auto-hide-function)
2833 (funcall frame-auto-hide-function frame))))
2834 'frame)
2835 (deletable
2836 (delete-window window)
2837 t)))))
2838
2839 (defun bury-buffer (&optional buffer-or-name)
2840 "Put BUFFER-OR-NAME at the end of the list of all buffers.
2841 There it is the least likely candidate for `other-buffer' to
2842 return; thus, the least likely buffer for \\[switch-to-buffer] to
2843 select by default.
2844
2845 You can specify a buffer name as BUFFER-OR-NAME, or an actual
2846 buffer object. If BUFFER-OR-NAME is nil or omitted, bury the
2847 current buffer. Also, if BUFFER-OR-NAME is nil or omitted,
2848 remove the current buffer from the selected window if it is
2849 displayed there."
2850 (interactive)
2851 (let* ((buffer (window-normalize-buffer buffer-or-name)))
2852 ;; If `buffer-or-name' is not on the selected frame we unrecord it
2853 ;; although it's not "here" (call it a feature).
2854 (bury-buffer-internal buffer)
2855 ;; Handle case where `buffer-or-name' is nil and the current buffer
2856 ;; is shown in the selected window.
2857 (cond
2858 ((or buffer-or-name (not (eq buffer (window-buffer)))))
2859 ((window--delete nil t))
2860 (t
2861 ;; Switch to another buffer in window.
2862 (set-window-dedicated-p nil nil)
2863 (switch-to-prev-buffer nil 'bury)))
2864
2865 ;; Always return nil.
2866 nil))
2867
2868 (defun unbury-buffer ()
2869 "Switch to the last buffer in the buffer list."
2870 (interactive)
2871 (switch-to-buffer (last-buffer)))
2872
2873 (defun next-buffer ()
2874 "In selected window switch to next buffer."
2875 (interactive)
2876 (if (window-minibuffer-p)
2877 (error "Cannot switch buffers in minibuffer window"))
2878 (switch-to-next-buffer))
2879
2880 (defun previous-buffer ()
2881 "In selected window switch to previous buffer."
2882 (interactive)
2883 (if (window-minibuffer-p)
2884 (error "Cannot switch buffers in minibuffer window"))
2885 (switch-to-prev-buffer))
2886
2887 (defun delete-windows-on (&optional buffer-or-name frame)
2888 "Delete all windows showing BUFFER-OR-NAME.
2889 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
2890 and defaults to the current buffer.
2891
2892 The following non-nil values of the optional argument FRAME
2893 have special meanings:
2894
2895 - t means consider all windows on the selected frame only.
2896
2897 - `visible' means consider all windows on all visible frames on
2898 the current terminal.
2899
2900 - 0 (the number zero) means consider all windows on all visible
2901 and iconified frames on the current terminal.
2902
2903 - A frame means consider all windows on that frame only.
2904
2905 Any other value of FRAME means consider all windows on all
2906 frames.
2907
2908 When a window showing BUFFER-OR-NAME is dedicated and the only
2909 window of its frame, that frame is deleted when there are other
2910 frames left."
2911 (interactive "BDelete windows on (buffer):\nP")
2912 (let ((buffer (window-normalize-buffer buffer-or-name))
2913 ;; Handle the "inverted" meaning of the FRAME argument wrt other
2914 ;; `window-list-1' based function.
2915 (all-frames (cond ((not frame) t) ((eq frame t) nil) (t frame))))
2916 (dolist (window (window-list-1 nil nil all-frames))
2917 (if (eq (window-buffer window) buffer)
2918 (let ((deletable (window-deletable-p window)))
2919 (cond
2920 ((and (eq deletable 'frame) (window-dedicated-p window))
2921 ;; Delete frame if and only if window is dedicated.
2922 (delete-frame (window-frame window)))
2923 ((eq deletable t)
2924 ;; Delete window.
2925 (delete-window window))
2926 (t
2927 ;; In window switch to previous buffer.
2928 (set-window-dedicated-p window nil)
2929 (switch-to-prev-buffer window 'bury))))
2930 ;; If a window doesn't show BUFFER, unrecord BUFFER in it.
2931 (unrecord-window-buffer window buffer)))))
2932
2933 (defun replace-buffer-in-windows (&optional buffer-or-name)
2934 "Replace BUFFER-OR-NAME with some other buffer in all windows showing it.
2935 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
2936 and defaults to the current buffer.
2937
2938 When a window showing BUFFER-OR-NAME is dedicated, that window is
2939 deleted. If that window is the only window on its frame, the
2940 frame is deleted too when there are other frames left. If there
2941 are no other frames left, some other buffer is displayed in that
2942 window.
2943
2944 This function removes the buffer denoted by BUFFER-OR-NAME from
2945 all window-local buffer lists."
2946 (interactive "bBuffer to replace: ")
2947 (let ((buffer (window-normalize-buffer buffer-or-name)))
2948 (dolist (window (window-list-1 nil nil t))
2949 (if (eq (window-buffer window) buffer)
2950 (unless (window--delete window t t)
2951 ;; Switch to another buffer in window.
2952 (set-window-dedicated-p window nil)
2953 (switch-to-prev-buffer window 'kill))
2954 ;; Unrecord BUFFER in WINDOW.
2955 (unrecord-window-buffer window buffer)))))
2956
2957 (defun quit-window (&optional kill window)
2958 "Quit WINDOW and bury its buffer.
2959 WINDOW must be a live window and defaults to the selected one.
2960 With prefix argument KILL non-nil, kill the buffer instead of
2961 burying it.
2962
2963 According to information stored in WINDOW's `quit-restore' window
2964 parameter either (1) delete WINDOW and its frame, (2) delete
2965 WINDOW, (3) restore the buffer previously displayed in WINDOW,
2966 or (4) make WINDOW display some other buffer than the present
2967 one. If non-nil, reset `quit-restore' parameter to nil."
2968 (interactive "P")
2969 (setq window (window-normalize-window window t))
2970 (let* ((buffer (window-buffer window))
2971 (quit-restore (window-parameter window 'quit-restore))
2972 (prev-buffer
2973 (let* ((prev-buffers (window-prev-buffers window))
2974 (prev-buffer (caar prev-buffers)))
2975 (and (or (not (eq prev-buffer buffer))
2976 (and (cdr prev-buffers)
2977 (not (eq (setq prev-buffer (cadr prev-buffers))
2978 buffer))))
2979 prev-buffer)))
2980 quad resize)
2981 (cond
2982 ((and (not prev-buffer)
2983 (memq (nth 1 quit-restore) '(window frame))
2984 (eq (nth 3 quit-restore) buffer)
2985 ;; Delete WINDOW if possible.
2986 (window--delete window nil kill))
2987 ;; If the previously selected window is still alive, select it.
2988 (when (window-live-p (nth 2 quit-restore))
2989 (select-window (nth 2 quit-restore))))
2990 ((and (listp (setq quad (nth 1 quit-restore)))
2991 (buffer-live-p (car quad))
2992 (eq (nth 3 quit-restore) buffer))
2993 ;; Show another buffer stored in quit-restore parameter.
2994 (setq resize (with-current-buffer buffer
2995 (and temp-buffer-resize-mode
2996 (/= (nth 3 quad) (window-total-size window)))))
2997 (set-window-dedicated-p window nil)
2998 (when resize
2999 ;; Try to resize WINDOW to its old height but don't signal an
3000 ;; error.
3001 (condition-case nil
3002 (window-resize window (- (nth 3 quad) (window-total-size window)))
3003 (error nil)))
3004 ;; Restore WINDOW's previous buffer, start and point position.
3005 (set-window-buffer-start-and-point
3006 window (nth 0 quad) (nth 1 quad) (nth 2 quad))
3007 ;; Unrecord WINDOW's buffer here (Bug#9937) to make sure it's not
3008 ;; re-recorded by `set-window-buffer'.
3009 (unrecord-window-buffer window buffer)
3010 ;; Reset the quit-restore parameter.
3011 (set-window-parameter window 'quit-restore nil)
3012 ;; Select old window.
3013 (when (window-live-p (nth 2 quit-restore))
3014 (select-window (nth 2 quit-restore))))
3015 (t
3016 ;; Show some other buffer in WINDOW and reset the quit-restore
3017 ;; parameter.
3018 (set-window-parameter window 'quit-restore nil)
3019 ;; Make sure that WINDOW is no more dedicated.
3020 (set-window-dedicated-p window nil)
3021 (switch-to-prev-buffer window 'bury-or-kill)))
3022
3023 ;; Kill WINDOW's old-buffer if requested
3024 (if kill
3025 (kill-buffer buffer)
3026 (bury-buffer-internal buffer))))
3027
3028 (defun quit-windows-on (&optional buffer-or-name kill frame)
3029 "Quit all windows showing BUFFER-OR-NAME.
3030 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
3031 and defaults to the current buffer. Optional argument KILL
3032 non-nil means to kill BUFFER-OR-NAME. KILL nil means to bury
3033 BUFFER-OR-NAME. Optional argument FRAME is handled as by
3034 `delete-windows-on'.
3035
3036 This function calls `quit-window' on all candidate windows
3037 showing BUFFER-OR-NAME."
3038 (interactive "BQuit windows on (buffer):\nP")
3039 (let ((buffer (window-normalize-buffer buffer-or-name))
3040 ;; Handle the "inverted" meaning of the FRAME argument wrt other
3041 ;; `window-list-1' based function.
3042 (all-frames (cond ((not frame) t) ((eq frame t) nil) (t frame))))
3043 (dolist (window (window-list-1 nil nil all-frames))
3044 (if (eq (window-buffer window) buffer)
3045 (quit-window kill window)
3046 ;; If a window doesn't show BUFFER, unrecord BUFFER in it.
3047 (unrecord-window-buffer window buffer)))))
3048 \f
3049 ;;; Splitting windows.
3050 (defun window-split-min-size (&optional horizontal)
3051 "Return minimum height of any window when splitting windows.
3052 Optional argument HORIZONTAL non-nil means return minimum width."
3053 (if horizontal
3054 (max window-min-width window-safe-min-width)
3055 (max window-min-height window-safe-min-height)))
3056
3057 (defun split-window (&optional window size side)
3058 "Make a new window adjacent to WINDOW.
3059 WINDOW can be any window and defaults to the selected one.
3060 Return the new window which is always a live window.
3061
3062 Optional argument SIZE a positive number means make WINDOW SIZE
3063 lines or columns tall. If SIZE is negative, make the new window
3064 -SIZE lines or columns tall. If and only if SIZE is non-nil, its
3065 absolute value can be less than `window-min-height' or
3066 `window-min-width'; so this command can make a new window as
3067 small as one line or two columns. SIZE defaults to half of
3068 WINDOW's size. Interactively, SIZE is the prefix argument.
3069
3070 Optional third argument SIDE nil (or `below') specifies that the
3071 new window shall be located below WINDOW. SIDE `above' means the
3072 new window shall be located above WINDOW. In both cases SIZE
3073 specifies the new number of lines for WINDOW (or the new window
3074 if SIZE is negative) including space reserved for the mode and/or
3075 header line.
3076
3077 SIDE t (or `right') specifies that the new window shall be
3078 located on the right side of WINDOW. SIDE `left' means the new
3079 window shall be located on the left of WINDOW. In both cases
3080 SIZE specifies the new number of columns for WINDOW (or the new
3081 window provided SIZE is negative) including space reserved for
3082 fringes and the scrollbar or a divider column. Any other non-nil
3083 value for SIDE is currently handled like t (or `right').
3084
3085 If the variable `ignore-window-parameters' is non-nil or the
3086 `split-window' parameter of WINDOW equals t, do not process any
3087 parameters of WINDOW. Otherwise, if the `split-window' parameter
3088 of WINDOW specifies a function, call that function with all three
3089 arguments and return the value returned by that function.
3090
3091 Otherwise, if WINDOW is part of an atomic window, \"split\" the
3092 root of that atomic window. The new window does not become a
3093 member of that atomic window.
3094
3095 If WINDOW is live, properties of the new window like margins and
3096 scrollbars are inherited from WINDOW. If WINDOW is an internal
3097 window, these properties as well as the buffer displayed in the
3098 new window are inherited from the window selected on WINDOW's
3099 frame. The selected window is not changed by this function."
3100 (interactive "i")
3101 (setq window (window-normalize-window window))
3102 (let* ((side (cond
3103 ((not side) 'below)
3104 ((memq side '(below above right left)) side)
3105 (t 'right)))
3106 (horizontal (not (memq side '(nil below above))))
3107 (frame (window-frame window))
3108 (parent (window-parent window))
3109 (function (window-parameter window 'split-window))
3110 (window-side (window-parameter window 'window-side))
3111 ;; Rebind `window-combination-limit' since in some cases we may
3112 ;; have to override its value.
3113 (window-combination-limit window-combination-limit)
3114 atom-root)
3115
3116 (window--check frame)
3117 (catch 'done
3118 (cond
3119 ;; Ignore window parameters if either `ignore-window-parameters'
3120 ;; is t or the `split-window' parameter equals t.
3121 ((or ignore-window-parameters (eq function t)))
3122 ((functionp function)
3123 ;; The `split-window' parameter specifies the function to call.
3124 ;; If that function is `ignore', do nothing.
3125 (throw 'done (funcall function window size side)))
3126 ;; If WINDOW is part of an atomic window, split the root window
3127 ;; of that atomic window instead.
3128 ((and (window-parameter window 'window-atom)
3129 (setq atom-root (window-atom-root window))
3130 (not (eq atom-root window)))
3131 (throw 'done (split-window atom-root size side))))
3132
3133 (when (and window-side
3134 (or (not parent)
3135 (not (window-parameter parent 'window-side))))
3136 ;; WINDOW is a side root window. To make sure that a new parent
3137 ;; window gets created set `window-combination-limit' to t.
3138 (setq window-combination-limit t))
3139
3140 (when (and window-combination-resize size (> size 0))
3141 ;; If `window-combination-resize' is non-nil and SIZE is a
3142 ;; non-negative integer, we cannot reasonably resize other
3143 ;; windows. Rather bind `window-combination-limit' to t to make
3144 ;; sure that subsequent window deletions are handled correctly.
3145 (setq window-combination-limit t))
3146
3147 (let* ((parent-size
3148 ;; `parent-size' is the size of WINDOW's parent, provided
3149 ;; it has one.
3150 (when parent (window-total-size parent horizontal)))
3151 ;; `resize' non-nil means we are supposed to resize other
3152 ;; windows in WINDOW's combination.
3153 (resize
3154 (and window-combination-resize (not window-combination-limit)
3155 ;; Resize makes sense in iso-combinations only.
3156 (window-combined-p window horizontal)))
3157 ;; `old-size' is the current size of WINDOW.
3158 (old-size (window-total-size window horizontal))
3159 ;; `new-size' is the specified or calculated size of the
3160 ;; new window.
3161 (new-size
3162 (cond
3163 ((not size)
3164 (max (window-split-min-size horizontal)
3165 (if resize
3166 ;; When resizing try to give the new window the
3167 ;; average size of a window in its combination.
3168 (min (- parent-size
3169 (window-min-size parent horizontal))
3170 (/ parent-size
3171 (1+ (window-combinations
3172 parent horizontal))))
3173 ;; Else try to give the new window half the size
3174 ;; of WINDOW (plus an eventual odd line).
3175 (+ (/ old-size 2) (% old-size 2)))))
3176 ((>= size 0)
3177 ;; SIZE non-negative specifies the new size of WINDOW.
3178
3179 ;; Note: Specifying a non-negative SIZE is practically
3180 ;; always done as workaround for making the new window
3181 ;; appear above or on the left of the new window (the
3182 ;; ispell window is a typical example of that). In all
3183 ;; these cases the SIDE argument should be set to 'above
3184 ;; or 'left in order to support the 'resize option.
3185 ;; Here we have to nest the windows instead, see above.
3186 (- old-size size))
3187 (t
3188 ;; SIZE negative specifies the size of the new window.
3189 (- size))))
3190 new-parent new-normal)
3191
3192 ;; Check SIZE.
3193 (cond
3194 ((not size)
3195 (cond
3196 (resize
3197 ;; SIZE unspecified, resizing.
3198 (when (and (not (window-sizable-p parent (- new-size) horizontal))
3199 ;; Try again with minimum split size.
3200 (setq new-size
3201 (max new-size (window-split-min-size horizontal)))
3202 (not (window-sizable-p parent (- new-size) horizontal)))
3203 (error "Window %s too small for splitting" parent)))
3204 ((> (+ new-size (window-min-size window horizontal)) old-size)
3205 ;; SIZE unspecified, no resizing.
3206 (error "Window %s too small for splitting" window))))
3207 ((and (>= size 0)
3208 (or (>= size old-size)
3209 (< new-size (if horizontal
3210 window-safe-min-width
3211 window-safe-min-width))))
3212 ;; SIZE specified as new size of old window. If the new size
3213 ;; is larger than the old size or the size of the new window
3214 ;; would be less than the safe minimum, signal an error.
3215 (error "Window %s too small for splitting" window))
3216 (resize
3217 ;; SIZE specified, resizing.
3218 (unless (window-sizable-p parent (- new-size) horizontal)
3219 ;; If we cannot resize the parent give up.
3220 (error "Window %s too small for splitting" parent)))
3221 ((or (< new-size
3222 (if horizontal window-safe-min-width window-safe-min-height))
3223 (< (- old-size new-size)
3224 (if horizontal window-safe-min-width window-safe-min-height)))
3225 ;; SIZE specification violates minimum size restrictions.
3226 (error "Window %s too small for splitting" window)))
3227
3228 (window--resize-reset frame horizontal)
3229
3230 (setq new-parent
3231 ;; Make new-parent non-nil if we need a new parent window;
3232 ;; either because we want to nest or because WINDOW is not
3233 ;; iso-combined.
3234 (or window-combination-limit
3235 (not (window-combined-p window horizontal))))
3236 (setq new-normal
3237 ;; Make new-normal the normal size of the new window.
3238 (cond
3239 (size (/ (float new-size) (if new-parent old-size parent-size)))
3240 (new-parent 0.5)
3241 (resize (/ 1.0 (1+ (window-combinations parent horizontal))))
3242 (t (/ (window-normal-size window horizontal) 2.0))))
3243
3244 (if resize
3245 ;; Try to get space from OLD's siblings. We could go "up" and
3246 ;; try getting additional space from surrounding windows but
3247 ;; we won't be able to return space to those windows when we
3248 ;; delete the one we create here. Hence we do not go up.
3249 (progn
3250 (window--resize-child-windows parent (- new-size) horizontal)
3251 (let* ((normal (- 1.0 new-normal))
3252 (sub (window-child parent)))
3253 (while sub
3254 (set-window-new-normal
3255 sub (* (window-normal-size sub horizontal) normal))
3256 (setq sub (window-right sub)))))
3257 ;; Get entire space from WINDOW.
3258 (set-window-new-total window (- old-size new-size))
3259 (window--resize-this-window window (- new-size) horizontal)
3260 (set-window-new-normal
3261 window (- (if new-parent 1.0 (window-normal-size window horizontal))
3262 new-normal)))
3263
3264 (let* ((new (split-window-internal window new-size side new-normal)))
3265 ;; Inherit window-side parameters, if any.
3266 (when (and window-side new-parent)
3267 (set-window-parameter (window-parent new) 'window-side window-side)
3268 (set-window-parameter new 'window-side window-side))
3269
3270 (run-window-configuration-change-hook frame)
3271 (window--check frame)
3272 ;; Always return the new window.
3273 new)))))
3274
3275 ;; I think this should be the default; I think people will prefer it--rms.
3276 (defcustom split-window-keep-point t
3277 "If non-nil, \\[split-window-below] preserves point in the new window.
3278 If nil, adjust point in the two windows to minimize redisplay.
3279 This option applies only to `split-window-below' and functions
3280 that call it. The low-level `split-window' function always keeps
3281 the original point in both windows."
3282 :type 'boolean
3283 :group 'windows)
3284
3285 (defun split-window-below (&optional size)
3286 "Split the selected window into two windows, one above the other.
3287 The selected window is above. The newly split-off window is
3288 below, and displays the same buffer. Return the new window.
3289
3290 If optional argument SIZE is omitted or nil, both windows get the
3291 same height, or close to it. If SIZE is positive, the upper
3292 \(selected) window gets SIZE lines. If SIZE is negative, the
3293 lower (new) window gets -SIZE lines.
3294
3295 If the variable `split-window-keep-point' is non-nil, both
3296 windows get the same value of point as the selected window.
3297 Otherwise, the window starts are chosen so as to minimize the
3298 amount of redisplay; this is convenient on slow terminals."
3299 (interactive "P")
3300 (let ((old-window (selected-window))
3301 (old-point (window-point-1))
3302 (size (and size (prefix-numeric-value size)))
3303 moved-by-window-height moved new-window bottom)
3304 (when (and size (< size 0) (< (- size) window-min-height))
3305 ;; `split-window' would not signal an error here.
3306 (error "Size of new window too small"))
3307 (setq new-window (split-window nil size))
3308 (unless split-window-keep-point
3309 (with-current-buffer (window-buffer)
3310 ;; Use `save-excursion' around vertical movements below
3311 ;; (Bug#10971). Note: When the selected window's buffer has a
3312 ;; header line, up to two lines of the buffer may not show up
3313 ;; in the resulting configuration.
3314 (save-excursion
3315 (goto-char (window-start))
3316 (setq moved (vertical-motion (window-height)))
3317 (set-window-start new-window (point))
3318 (when (> (point) (window-point new-window))
3319 (set-window-point new-window (point)))
3320 (when (= moved (window-height))
3321 (setq moved-by-window-height t)
3322 (vertical-motion -1))
3323 (setq bottom (point)))
3324 (and moved-by-window-height
3325 (<= bottom (point))
3326 (set-window-point-1 old-window (1- bottom)))
3327 (and moved-by-window-height
3328 (<= (window-start new-window) old-point)
3329 (set-window-point new-window old-point)
3330 (select-window new-window))))
3331 ;; Always copy quit-restore parameter in interactive use.
3332 (let ((quit-restore (window-parameter old-window 'quit-restore)))
3333 (when quit-restore
3334 (set-window-parameter new-window 'quit-restore quit-restore)))
3335 new-window))
3336
3337 (defalias 'split-window-vertically 'split-window-below)
3338
3339 (defun split-window-right (&optional size)
3340 "Split the selected window into two side-by-side windows.
3341 The selected window is on the left. The newly split-off window
3342 is on the right, and displays the same buffer. Return the new
3343 window.
3344
3345 If optional argument SIZE is omitted or nil, both windows get the
3346 same width, or close to it. If SIZE is positive, the left-hand
3347 \(selected) window gets SIZE columns. If SIZE is negative, the
3348 right-hand (new) window gets -SIZE columns. Here, SIZE includes
3349 the width of the window's scroll bar; if there are no scroll
3350 bars, it includes the width of the divider column to the window's
3351 right, if any."
3352 (interactive "P")
3353 (let ((old-window (selected-window))
3354 (size (and size (prefix-numeric-value size)))
3355 new-window)
3356 (when (and size (< size 0) (< (- size) window-min-width))
3357 ;; `split-window' would not signal an error here.
3358 (error "Size of new window too small"))
3359 (setq new-window (split-window nil size t))
3360 ;; Always copy quit-restore parameter in interactive use.
3361 (let ((quit-restore (window-parameter old-window 'quit-restore)))
3362 (when quit-restore
3363 (set-window-parameter new-window 'quit-restore quit-restore)))
3364 new-window))
3365
3366 (defalias 'split-window-horizontally 'split-window-right)
3367 \f
3368 ;;; Balancing windows.
3369
3370 ;; The following routine uses the recycled code from an old version of
3371 ;; `window--resize-child-windows'. It's not very pretty, but coding it the way the
3372 ;; new `window--resize-child-windows' code does would hardly make it any shorter or
3373 ;; more readable (FWIW we'd need three loops - one to calculate the
3374 ;; minimum sizes per window, one to enlarge or shrink windows until the
3375 ;; new parent-size matches, and one where we shrink the largest/enlarge
3376 ;; the smallest window).
3377 (defun balance-windows-2 (window horizontal)
3378 "Subroutine of `balance-windows-1'.
3379 WINDOW must be a vertical combination (horizontal if HORIZONTAL
3380 is non-nil."
3381 (let* ((first (window-child window))
3382 (sub first)
3383 (number-of-children 0)
3384 (parent-size (window-new-total window))
3385 (total-sum parent-size)
3386 failed size sub-total sub-delta sub-amount rest)
3387 (while sub
3388 (setq number-of-children (1+ number-of-children))
3389 (when (window-size-fixed-p sub horizontal)
3390 (setq total-sum
3391 (- total-sum (window-total-size sub horizontal)))
3392 (set-window-new-normal sub 'ignore))
3393 (setq sub (window-right sub)))
3394
3395 (setq failed t)
3396 (while (and failed (> number-of-children 0))
3397 (setq size (/ total-sum number-of-children))
3398 (setq failed nil)
3399 (setq sub first)
3400 (while (and sub (not failed))
3401 ;; Ignore child windows that should be ignored or are stuck.
3402 (unless (window--resize-child-windows-skip-p sub)
3403 (setq sub-total (window-total-size sub horizontal))
3404 (setq sub-delta (- size sub-total))
3405 (setq sub-amount
3406 (window-sizable sub sub-delta horizontal))
3407 ;; Register the new total size for this child window.
3408 (set-window-new-total sub (+ sub-total sub-amount))
3409 (unless (= sub-amount sub-delta)
3410 (setq total-sum (- total-sum sub-total sub-amount))
3411 (setq number-of-children (1- number-of-children))
3412 ;; We failed and need a new round.
3413 (setq failed t)
3414 (set-window-new-normal sub 'skip)))
3415 (setq sub (window-right sub))))
3416
3417 (setq rest (% total-sum number-of-children))
3418 ;; Fix rounding by trying to enlarge non-stuck windows by one line
3419 ;; (column) until `rest' is zero.
3420 (setq sub first)
3421 (while (and sub (> rest 0))
3422 (unless (window--resize-child-windows-skip-p window)
3423 (set-window-new-total sub 1 t)
3424 (setq rest (1- rest)))
3425 (setq sub (window-right sub)))
3426
3427 ;; Fix rounding by trying to enlarge stuck windows by one line
3428 ;; (column) until `rest' equals zero.
3429 (setq sub first)
3430 (while (and sub (> rest 0))
3431 (unless (eq (window-new-normal sub) 'ignore)
3432 (set-window-new-total sub 1 t)
3433 (setq rest (1- rest)))
3434 (setq sub (window-right sub)))
3435
3436 (setq sub first)
3437 (while sub
3438 ;; Record new normal sizes.
3439 (set-window-new-normal
3440 sub (/ (if (eq (window-new-normal sub) 'ignore)
3441 (window-total-size sub horizontal)
3442 (window-new-total sub))
3443 (float parent-size)))
3444 ;; Recursively balance each window's child windows.
3445 (balance-windows-1 sub horizontal)
3446 (setq sub (window-right sub)))))
3447
3448 (defun balance-windows-1 (window &optional horizontal)
3449 "Subroutine of `balance-windows'."
3450 (if (window-child window)
3451 (let ((sub (window-child window)))
3452 (if (window-combined-p sub horizontal)
3453 (balance-windows-2 window horizontal)
3454 (let ((size (window-new-total window)))
3455 (while sub
3456 (set-window-new-total sub size)
3457 (balance-windows-1 sub horizontal)
3458 (setq sub (window-right sub))))))))
3459
3460 (defun balance-windows (&optional window-or-frame)
3461 "Balance the sizes of windows of WINDOW-OR-FRAME.
3462 WINDOW-OR-FRAME is optional and defaults to the selected frame.
3463 If WINDOW-OR-FRAME denotes a frame, balance the sizes of all
3464 windows of that frame. If WINDOW-OR-FRAME denotes a window,
3465 recursively balance the sizes of all child windows of that
3466 window."
3467 (interactive)
3468 (let* ((window
3469 (cond
3470 ((or (not window-or-frame)
3471 (frame-live-p window-or-frame))
3472 (frame-root-window window-or-frame))
3473 ((or (window-live-p window-or-frame)
3474 (window-child window-or-frame))
3475 window-or-frame)
3476 (t
3477 (error "Not a window or frame %s" window-or-frame))))
3478 (frame (window-frame window)))
3479 ;; Balance vertically.
3480 (window--resize-reset (window-frame window))
3481 (balance-windows-1 window)
3482 (window-resize-apply frame)
3483 ;; Balance horizontally.
3484 (window--resize-reset (window-frame window) t)
3485 (balance-windows-1 window t)
3486 (window-resize-apply frame t)))
3487
3488 (defun window-fixed-size-p (&optional window direction)
3489 "Return t if WINDOW cannot be resized in DIRECTION.
3490 WINDOW defaults to the selected window. DIRECTION can be
3491 nil (i.e. any), `height' or `width'."
3492 (with-current-buffer (window-buffer window)
3493 (when (and (boundp 'window-size-fixed) window-size-fixed)
3494 (not (and direction
3495 (member (cons direction window-size-fixed)
3496 '((height . width) (width . height))))))))
3497
3498 ;;; A different solution to balance-windows.
3499 (defvar window-area-factor 1
3500 "Factor by which the window area should be over-estimated.
3501 This is used by `balance-windows-area'.
3502 Changing this globally has no effect.")
3503 (make-variable-buffer-local 'window-area-factor)
3504
3505 (defun balance-windows-area-adjust (window delta horizontal)
3506 "Wrapper around `window-resize' with error checking.
3507 Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function."
3508 ;; `window-resize' may fail if delta is too large.
3509 (while (>= (abs delta) 1)
3510 (condition-case nil
3511 (progn
3512 (window-resize window delta horizontal)
3513 (setq delta 0))
3514 (error
3515 ;;(message "adjust: %s" (error-message-string err))
3516 (setq delta (/ delta 2))))))
3517
3518 (defun balance-windows-area ()
3519 "Make all visible windows the same area (approximately).
3520 See also `window-area-factor' to change the relative size of
3521 specific buffers."
3522 (interactive)
3523 (let* ((unchanged 0) (carry 0) (round 0)
3524 ;; Remove fixed-size windows.
3525 (wins (delq nil (mapcar (lambda (win)
3526 (if (not (window-fixed-size-p win)) win))
3527 (window-list nil 'nomini))))
3528 (changelog nil)
3529 next)
3530 ;; Resizing a window changes the size of surrounding windows in complex
3531 ;; ways, so it's difficult to balance them all. The introduction of
3532 ;; `adjust-window-trailing-edge' made it a bit easier, but it is still
3533 ;; very difficult to do. `balance-window' above takes an off-line
3534 ;; approach: get the whole window tree, then balance it, then try to
3535 ;; adjust the windows so they fit the result.
3536 ;; Here, instead, we take a "local optimization" approach, where we just
3537 ;; go through all the windows several times until nothing needs to be
3538 ;; changed. The main problem with this approach is that it's difficult
3539 ;; to make sure it terminates, so we use some heuristic to try and break
3540 ;; off infinite loops.
3541 ;; After a round without any change, we allow a second, to give a chance
3542 ;; to the carry to propagate a minor imbalance from the end back to
3543 ;; the beginning.
3544 (while (< unchanged 2)
3545 ;; (message "New round")
3546 (setq unchanged (1+ unchanged) round (1+ round))
3547 (dolist (win wins)
3548 (setq next win)
3549 (while (progn (setq next (next-window next))
3550 (window-fixed-size-p next)))
3551 ;; (assert (eq next (or (cadr (member win wins)) (car wins))))
3552 (let* ((horiz
3553 (< (car (window-edges win)) (car (window-edges next))))
3554 (areadiff (/ (- (* (window-height next) (window-width next)
3555 (buffer-local-value 'window-area-factor
3556 (window-buffer next)))
3557 (* (window-height win) (window-width win)
3558 (buffer-local-value 'window-area-factor
3559 (window-buffer win))))
3560 (max (buffer-local-value 'window-area-factor
3561 (window-buffer win))
3562 (buffer-local-value 'window-area-factor
3563 (window-buffer next)))))
3564 (edgesize (if horiz
3565 (+ (window-height win) (window-height next))
3566 (+ (window-width win) (window-width next))))
3567 (diff (/ areadiff edgesize)))
3568 (when (zerop diff)
3569 ;; Maybe diff is actually closer to 1 than to 0.
3570 (setq diff (/ (* 3 areadiff) (* 2 edgesize))))
3571 (when (and (zerop diff) (not (zerop areadiff)))
3572 (setq diff (/ (+ areadiff carry) edgesize))
3573 ;; Change things smoothly.
3574 (if (or (> diff 1) (< diff -1)) (setq diff (/ diff 2))))
3575 (if (zerop diff)
3576 ;; Make sure negligible differences don't accumulate to
3577 ;; become significant.
3578 (setq carry (+ carry areadiff))
3579 ;; This used `adjust-window-trailing-edge' before and uses
3580 ;; `window-resize' now. Error wrapping is still needed.
3581 (balance-windows-area-adjust win diff horiz)
3582 ;; (sit-for 0.5)
3583 (let ((change (cons win (window-edges win))))
3584 ;; If the same change has been seen already for this window,
3585 ;; we're most likely in an endless loop, so don't count it as
3586 ;; a change.
3587 (unless (member change changelog)
3588 (push change changelog)
3589 (setq unchanged 0 carry 0)))))))
3590 ;; We've now basically balanced all the windows.
3591 ;; But there may be some minor off-by-one imbalance left over,
3592 ;; so let's do some fine tuning.
3593 ;; (bw-finetune wins)
3594 ;; (message "Done in %d rounds" round)
3595 ))
3596
3597 ;;; Window states, how to get them and how to put them in a window.
3598 (defun window--state-get-1 (window &optional writable)
3599 "Helper function for `window-state-get'."
3600 (let* ((type
3601 (cond
3602 ((window-top-child window) 'vc)
3603 ((window-left-child window) 'hc)
3604 (t 'leaf)))
3605 (buffer (window-buffer window))
3606 (selected (eq window (selected-window)))
3607 (head
3608 `(,type
3609 ,@(unless (window-next-sibling window) `((last . t)))
3610 (total-height . ,(window-total-size window))
3611 (total-width . ,(window-total-size window t))
3612 (normal-height . ,(window-normal-size window))
3613 (normal-width . ,(window-normal-size window t))
3614 (combination-limit . ,(window-combination-limit window))
3615 ,@(let ((parameters (window-parameters window))
3616 list)
3617 ;; Make copies of those window parameters whose
3618 ;; persistence property is `writable' if WRITABLE is
3619 ;; non-nil and non-nil if WRITABLE is nil.
3620 (dolist (par parameters)
3621 (let ((pers (cdr (assq (car par)
3622 window-persistent-parameters))))
3623 (when (and pers (or (not writable) (eq pers 'writable)))
3624 (setq list (cons (cons (car par) (cdr par)) list)))))
3625 ;; Add `clone-of' parameter if necessary.
3626 (let ((pers (cdr (assq 'clone-of
3627 window-persistent-parameters))))
3628 (when (and pers (or (not writable) (eq pers 'writable))
3629 (not (assq 'clone-of list)))
3630 (setq list (cons (cons 'clone-of window) list))))
3631 (when list
3632 `((parameters . ,list))))
3633 ,@(when buffer
3634 ;; All buffer related things go in here.
3635 (let ((point (window-point-1 window))
3636 (start (window-start window)))
3637 `((buffer
3638 ,(buffer-name buffer)
3639 (selected . ,selected)
3640 (hscroll . ,(window-hscroll window))
3641 (fringes . ,(window-fringes window))
3642 (margins . ,(window-margins window))
3643 (scroll-bars . ,(window-scroll-bars window))
3644 (vscroll . ,(window-vscroll window))
3645 (dedicated . ,(window-dedicated-p window))
3646 (point . ,(if writable point
3647 (copy-marker point
3648 (buffer-local-value
3649 'window-point-insertion-type
3650 buffer))))
3651 (start . ,(if writable start (copy-marker start)))))))))
3652 (tail
3653 (when (memq type '(vc hc))
3654 (let (list)
3655 (setq window (window-child window))
3656 (while window
3657 (setq list (cons (window--state-get-1 window writable) list))
3658 (setq window (window-right window)))
3659 (nreverse list)))))
3660 (append head tail)))
3661
3662 (defun window-state-get (&optional window writable)
3663 "Return state of WINDOW as a Lisp object.
3664 WINDOW can be any window and defaults to the root window of the
3665 selected frame.
3666
3667 Optional argument WRITABLE non-nil means do not use markers for
3668 sampling `window-point' and `window-start'. Together, WRITABLE
3669 and the variable `window-persistent-parameters' specify which
3670 window parameters are saved by this function. WRITABLE should be
3671 non-nil when the return value shall be written to a file and read
3672 back in another session. Otherwise, an application may run into
3673 an `invalid-read-syntax' error while attempting to read back the
3674 value from file.
3675
3676 The return value can be used as argument for `window-state-put'
3677 to put the state recorded here into an arbitrary window. The
3678 value can be also stored on disk and read back in a new session."
3679 (setq window
3680 (if window
3681 (if (window-valid-p window)
3682 window
3683 (error "%s is not a live or internal window" window))
3684 (frame-root-window)))
3685 ;; The return value is a cons whose car specifies some constraints on
3686 ;; the size of WINDOW. The cdr lists the states of the child windows
3687 ;; of WINDOW.
3688 (cons
3689 ;; Frame related things would go into a function, say `frame-state',
3690 ;; calling `window-state-get' to insert the frame's root window.
3691 `((min-height . ,(window-min-size window))
3692 (min-width . ,(window-min-size window t))
3693 (min-height-ignore . ,(window-min-size window nil t))
3694 (min-width-ignore . ,(window-min-size window t t))
3695 (min-height-safe . ,(window-min-size window nil 'safe))
3696 (min-width-safe . ,(window-min-size window t 'safe)))
3697 (window--state-get-1 window writable)))
3698
3699 (defvar window-state-put-list nil
3700 "Helper variable for `window-state-put'.")
3701
3702 (defun window--state-put-1 (state &optional window ignore totals)
3703 "Helper function for `window-state-put'."
3704 (let ((type (car state)))
3705 (setq state (cdr state))
3706 (cond
3707 ((eq type 'leaf)
3708 ;; For a leaf window just add unprocessed entries to
3709 ;; `window-state-put-list'.
3710 (push (cons window state) window-state-put-list))
3711 ((memq type '(vc hc))
3712 (let* ((horizontal (eq type 'hc))
3713 (total (window-total-size window horizontal))
3714 (first t)
3715 size new)
3716 (dolist (item state)
3717 ;; Find the next child window. WINDOW always points to the
3718 ;; real window that we want to fill with what we find here.
3719 (when (memq (car item) '(leaf vc hc))
3720 (if (assq 'last item)
3721 ;; The last child window. Below `window--state-put-1'
3722 ;; will put into it whatever ITEM has in store.
3723 (setq new nil)
3724 ;; Not the last child window, prepare for splitting
3725 ;; WINDOW. SIZE is the new (and final) size of the old
3726 ;; window.
3727 (setq size
3728 (if totals
3729 ;; Use total size.
3730 (cdr (assq (if horizontal 'total-width 'total-height) item))
3731 ;; Use normalized size and round.
3732 (round (* total
3733 (cdr (assq
3734 (if horizontal 'normal-width 'normal-height)
3735 item))))))
3736
3737 ;; Use safe sizes, we try to resize later.
3738 (setq size (max size (if horizontal
3739 window-safe-min-height
3740 window-safe-min-width)))
3741
3742 (if (window-sizable-p window (- size) horizontal 'safe)
3743 (let* ((window-combination-limit
3744 (assq 'combination-limit item)))
3745 ;; We must inherit the combination limit, otherwise
3746 ;; we might mess up handling of atomic and side
3747 ;; window.
3748 (setq new (split-window window size horizontal)))
3749 ;; Give up if we can't resize window down to safe sizes.
3750 (error "Cannot resize window %s" window))
3751
3752 (when first
3753 (setq first nil)
3754 ;; When creating the first child window add for parent
3755 ;; unprocessed entries to `window-state-put-list'.
3756 (setq window-state-put-list
3757 (cons (cons (window-parent window) state)
3758 window-state-put-list))))
3759
3760 ;; Now process the current window (either the one we've just
3761 ;; split or the last child of its parent).
3762 (window--state-put-1 item window ignore totals)
3763 ;; Continue with the last window split off.
3764 (setq window new))))))))
3765
3766 (defun window--state-put-2 (ignore)
3767 "Helper function for `window-state-put'."
3768 (dolist (item window-state-put-list)
3769 (let ((window (car item))
3770 (combination-limit (cdr (assq 'combination-limit item)))
3771 (parameters (cdr (assq 'parameters item)))
3772 (state (cdr (assq 'buffer item))))
3773 (when combination-limit
3774 (set-window-combination-limit window combination-limit))
3775 ;; Reset window's parameters and assign saved ones (we might want
3776 ;; a `remove-window-parameters' function here).
3777 (dolist (parameter (window-parameters window))
3778 (set-window-parameter window (car parameter) nil))
3779 (when parameters
3780 (dolist (parameter parameters)
3781 (set-window-parameter window (car parameter) (cdr parameter))))
3782 ;; Process buffer related state.
3783 (when state
3784 ;; We don't want to raise an error here so we create a buffer if
3785 ;; there's none.
3786 (set-window-buffer window (get-buffer-create (car state)))
3787 (with-current-buffer (window-buffer window)
3788 (set-window-hscroll window (cdr (assq 'hscroll state)))
3789 (apply 'set-window-fringes
3790 (cons window (cdr (assq 'fringes state))))
3791 (let ((margins (cdr (assq 'margins state))))
3792 (set-window-margins window (car margins) (cdr margins)))
3793 (let ((scroll-bars (cdr (assq 'scroll-bars state))))
3794 (set-window-scroll-bars
3795 window (car scroll-bars) (nth 2 scroll-bars) (nth 3 scroll-bars)))
3796 (set-window-vscroll window (cdr (assq 'vscroll state)))
3797 ;; Adjust vertically.
3798 (if (memq window-size-fixed '(t height))
3799 ;; A fixed height window, try to restore the original size.
3800 (let ((delta (- (cdr (assq 'total-height item))
3801 (window-total-height window)))
3802 window-size-fixed)
3803 (when (window--resizable-p window delta)
3804 (window-resize window delta)))
3805 ;; Else check whether the window is not high enough.
3806 (let* ((min-size (window-min-size window nil ignore))
3807 (delta (- min-size (window-total-size window))))
3808 (when (and (> delta 0)
3809 (window--resizable-p window delta nil ignore))
3810 (window-resize window delta nil ignore))))
3811 ;; Adjust horizontally.
3812 (if (memq window-size-fixed '(t width))
3813 ;; A fixed width window, try to restore the original size.
3814 (let ((delta (- (cdr (assq 'total-width item))
3815 (window-total-width window)))
3816 window-size-fixed)
3817 (when (window--resizable-p window delta)
3818 (window-resize window delta)))
3819 ;; Else check whether the window is not wide enough.
3820 (let* ((min-size (window-min-size window t ignore))
3821 (delta (- min-size (window-total-size window t))))
3822 (when (and (> delta 0)
3823 (window--resizable-p window delta t ignore))
3824 (window-resize window delta t ignore))))
3825 ;; Set dedicated status.
3826 (set-window-dedicated-p window (cdr (assq 'dedicated state)))
3827 ;; Install positions (maybe we should do this after all windows
3828 ;; have been created and sized).
3829 (ignore-errors
3830 (set-window-start window (cdr (assq 'start state)))
3831 (set-window-point window (cdr (assq 'point state))))
3832 ;; Select window if it's the selected one.
3833 (when (cdr (assq 'selected state))
3834 (select-window window)))))))
3835
3836 (defun window-state-put (state &optional window ignore)
3837 "Put window state STATE into WINDOW.
3838 STATE should be the state of a window returned by an earlier
3839 invocation of `window-state-get'. Optional argument WINDOW must
3840 specify a live window and defaults to the selected one.
3841
3842 Optional argument IGNORE non-nil means ignore minimum window
3843 sizes and fixed size restrictions. IGNORE equal `safe' means
3844 windows can get as small as `window-safe-min-height' and
3845 `window-safe-min-width'."
3846 (setq window (window-normalize-window window t))
3847 (let* ((frame (window-frame window))
3848 (head (car state))
3849 ;; We check here (1) whether the total sizes of root window of
3850 ;; STATE and that of WINDOW are equal so we can avoid
3851 ;; calculating new sizes, and (2) if we do have to resize
3852 ;; whether we can do so without violating size restrictions.
3853 (totals
3854 (and (= (window-total-size window)
3855 (cdr (assq 'total-height state)))
3856 (= (window-total-size window t)
3857 (cdr (assq 'total-width state)))))
3858 (min-height (cdr (assq 'min-height head)))
3859 (min-width (cdr (assq 'min-width head))))
3860 (if (and (not totals)
3861 (or (> min-height (window-total-size window))
3862 (> min-width (window-total-size window t)))
3863 (or (not ignore)
3864 (and (setq min-height
3865 (cdr (assq 'min-height-ignore head)))
3866 (setq min-width
3867 (cdr (assq 'min-width-ignore head)))
3868 (or (> min-height (window-total-size window))
3869 (> min-width (window-total-size window t)))
3870 (or (not (eq ignore 'safe))
3871 (and (setq min-height
3872 (cdr (assq 'min-height-safe head)))
3873 (setq min-width
3874 (cdr (assq 'min-width-safe head)))
3875 (or (> min-height
3876 (window-total-size window))
3877 (> min-width
3878 (window-total-size window t))))))))
3879 ;; The check above might not catch all errors due to rounding
3880 ;; issues - so IGNORE equal 'safe might not always produce the
3881 ;; minimum possible state. But such configurations hardly make
3882 ;; sense anyway.
3883 (error "Window %s too small to accommodate state" window)
3884 (setq state (cdr state))
3885 (setq window-state-put-list nil)
3886 ;; Work on the windows of a temporary buffer to make sure that
3887 ;; splitting proceeds regardless of any buffer local values of
3888 ;; `window-size-fixed'. Release that buffer after the buffers of
3889 ;; all live windows have been set by `window--state-put-2'.
3890 (with-temp-buffer
3891 (set-window-buffer window (current-buffer))
3892 (window--state-put-1 state window nil totals)
3893 (window--state-put-2 ignore))
3894 (window--check frame))))
3895 \f
3896 (defun display-buffer-record-window (type window buffer)
3897 "Record information for window used by `display-buffer'.
3898 TYPE specifies the type of the calling operation and must be one
3899 of the symbols 'reuse (when WINDOW existed already and was
3900 reused for displaying BUFFER), 'window (when WINDOW was created
3901 on an already existing frame), or 'frame (when WINDOW was
3902 created on a new frame). WINDOW is the window used for or created
3903 by the `display-buffer' routines. BUFFER is the buffer that
3904 shall be displayed.
3905
3906 This function installs or updates the quit-restore parameter of
3907 WINDOW. The quit-restore parameter is a list of four elements:
3908 The first element is one of the symbols 'window, 'frame, 'same or
3909 'other. The second element is either one of the symbols 'window
3910 or 'frame or a list whose elements are the buffer previously
3911 shown in the window, that buffer's window start and window point,
3912 and the window's height. The third element is the window
3913 selected at the time the parameter was created. The fourth
3914 element is BUFFER."
3915 (cond
3916 ((eq type 'reuse)
3917 (if (eq (window-buffer window) buffer)
3918 ;; WINDOW shows BUFFER already.
3919 (when (consp (window-parameter window 'quit-restore))
3920 ;; If WINDOW has a quit-restore parameter, reset its car.
3921 (setcar (window-parameter window 'quit-restore) 'same))
3922 ;; WINDOW shows another buffer.
3923 (set-window-parameter
3924 window 'quit-restore
3925 (list 'other
3926 ;; A quadruple of WINDOW's buffer, start, point and height.
3927 (list (window-buffer window) (window-start window)
3928 (window-point-1 window) (window-total-size window))
3929 (selected-window) buffer))))
3930 ((eq type 'window)
3931 ;; WINDOW has been created on an existing frame.
3932 (set-window-parameter
3933 window 'quit-restore
3934 (list 'window 'window (selected-window) buffer)))
3935 ((eq type 'frame)
3936 ;; WINDOW has been created on a new frame.
3937 (set-window-parameter
3938 window 'quit-restore
3939 (list 'frame 'frame (selected-window) buffer)))))
3940
3941 (defcustom display-buffer-function nil
3942 "If non-nil, function to call to handle `display-buffer'.
3943 It will receive two args, the buffer and a flag which if non-nil
3944 means that the currently selected window is not acceptable. It
3945 should choose or create a window, display the specified buffer in
3946 it, and return the window.
3947
3948 The specified function should call `display-buffer-record-window'
3949 with corresponding arguments to set up the quit-restore parameter
3950 of the window used."
3951 :type '(choice
3952 (const nil)
3953 (function :tag "function"))
3954 :group 'windows)
3955
3956 (defcustom pop-up-frame-alist nil
3957 "Alist of parameters for automatically generated new frames.
3958 You can set this in your init file; for example,
3959
3960 (setq pop-up-frame-alist '((width . 80) (height . 20)))
3961
3962 If non-nil, the value you specify here is used by the default
3963 `pop-up-frame-function' for the creation of new frames.
3964
3965 Since `pop-up-frame-function' is used by `display-buffer' for
3966 making new frames, any value specified here by default affects
3967 the automatic generation of new frames via `display-buffer' and
3968 all functions based on it. The behavior of `make-frame' is not
3969 affected by this variable."
3970 :type '(repeat (cons :format "%v"
3971 (symbol :tag "Parameter")
3972 (sexp :tag "Value")))
3973 :group 'frames)
3974
3975 (defcustom pop-up-frame-function
3976 (lambda () (make-frame pop-up-frame-alist))
3977 "Function used by `display-buffer' for creating a new frame.
3978 This function is called with no arguments and should return a new
3979 frame. The default value calls `make-frame' with the argument
3980 `pop-up-frame-alist'."
3981 :type 'function
3982 :group 'frames)
3983
3984 (defcustom special-display-buffer-names nil
3985 "List of names of buffers that should be displayed specially.
3986 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
3987 its name is in this list, displays the buffer in a way specified
3988 by `special-display-function'. `special-display-popup-frame'
3989 \(the default for `special-display-function') usually displays
3990 the buffer in a separate frame made with the parameters specified
3991 by `special-display-frame-alist'. If `special-display-function'
3992 has been set to some other function, that function is called with
3993 the buffer as first, and nil as second argument.
3994
3995 Alternatively, an element of this list can be specified as
3996 \(BUFFER-NAME FRAME-PARAMETERS), where BUFFER-NAME is a buffer
3997 name and FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.
3998 `special-display-popup-frame' will interpret such pairs as frame
3999 parameters when it creates a special frame, overriding the
4000 corresponding values from `special-display-frame-alist'.
4001
4002 As a special case, if FRAME-PARAMETERS contains (same-window . t)
4003 `special-display-popup-frame' displays that buffer in the
4004 selected window. If FRAME-PARAMETERS contains (same-frame . t),
4005 it displays that buffer in a window on the selected frame.
4006
4007 If `special-display-function' specifies some other function than
4008 `special-display-popup-frame', that function is called with the
4009 buffer named BUFFER-NAME as first, and FRAME-PARAMETERS as second
4010 argument.
4011
4012 Finally, an element of this list can be also specified as
4013 \(BUFFER-NAME FUNCTION OTHER-ARGS). In that case,
4014 `special-display-popup-frame' will call FUNCTION with the buffer
4015 named BUFFER-NAME as first argument, and OTHER-ARGS as the
4016 second.
4017
4018 Any alternative function specified here is responsible for
4019 setting up the quit-restore parameter of the window used.
4020
4021 If this variable appears \"not to work\", because you added a
4022 name to it but the corresponding buffer is displayed in the
4023 selected window, look at the values of `same-window-buffer-names'
4024 and `same-window-regexps'. Those variables take precedence over
4025 this one.
4026
4027 See also `special-display-regexps'."
4028 :type '(repeat
4029 (choice :tag "Buffer"
4030 :value ""
4031 (string :format "%v")
4032 (cons :tag "With parameters"
4033 :format "%v"
4034 :value ("" . nil)
4035 (string :format "%v")
4036 (repeat :tag "Parameters"
4037 (cons :format "%v"
4038 (symbol :tag "Parameter")
4039 (sexp :tag "Value"))))
4040 (list :tag "With function"
4041 :format "%v"
4042 :value ("" . nil)
4043 (string :format "%v")
4044 (function :tag "Function")
4045 (repeat :tag "Arguments" (sexp)))))
4046 :group 'windows
4047 :group 'frames)
4048
4049 ;;;###autoload
4050 (put 'special-display-buffer-names 'risky-local-variable t)
4051
4052 (defcustom special-display-regexps nil
4053 "List of regexps saying which buffers should be displayed specially.
4054 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
4055 any regexp in this list matches its name, displays it specially
4056 using `special-display-function'. `special-display-popup-frame'
4057 \(the default for `special-display-function') usually displays
4058 the buffer in a separate frame made with the parameters specified
4059 by `special-display-frame-alist'. If `special-display-function'
4060 has been set to some other function, that function is called with
4061 the buffer as first, and nil as second argument.
4062
4063 Alternatively, an element of this list can be specified as
4064 \(REGEXP FRAME-PARAMETERS), where REGEXP is a regexp as above and
4065 FRAME-PARAMETERS an alist of (PARAMETER . VALUE) pairs.
4066 `special-display-popup-frame' will then interpret these pairs as
4067 frame parameters when creating a special frame for a buffer whose
4068 name matches REGEXP, overriding the corresponding values from
4069 `special-display-frame-alist'.
4070
4071 As a special case, if FRAME-PARAMETERS contains (same-window . t)
4072 `special-display-popup-frame' displays buffers matching REGEXP in
4073 the selected window. (same-frame . t) in FRAME-PARAMETERS means
4074 to display such buffers in a window on the selected frame.
4075
4076 If `special-display-function' specifies some other function than
4077 `special-display-popup-frame', that function is called with the
4078 buffer whose name matched REGEXP as first, and FRAME-PARAMETERS
4079 as second argument.
4080
4081 Finally, an element of this list can be also specified as
4082 \(REGEXP FUNCTION OTHER-ARGS). `special-display-popup-frame'
4083 will then call FUNCTION with the buffer whose name matched
4084 REGEXP as first, and OTHER-ARGS as second argument.
4085
4086 Any alternative function specified here is responsible for
4087 setting up the quit-restore parameter of the window used.
4088
4089 If this variable appears \"not to work\", because you added a
4090 name to it but the corresponding buffer is displayed in the
4091 selected window, look at the values of `same-window-buffer-names'
4092 and `same-window-regexps'. Those variables take precedence over
4093 this one.
4094
4095 See also `special-display-buffer-names'."
4096 :type '(repeat
4097 (choice :tag "Buffer"
4098 :value ""
4099 (regexp :format "%v")
4100 (cons :tag "With parameters"
4101 :format "%v"
4102 :value ("" . nil)
4103 (regexp :format "%v")
4104 (repeat :tag "Parameters"
4105 (cons :format "%v"
4106 (symbol :tag "Parameter")
4107 (sexp :tag "Value"))))
4108 (list :tag "With function"
4109 :format "%v"
4110 :value ("" . nil)
4111 (regexp :format "%v")
4112 (function :tag "Function")
4113 (repeat :tag "Arguments" (sexp)))))
4114 :group 'windows
4115 :group 'frames)
4116
4117 (defun special-display-p (buffer-name)
4118 "Return non-nil if a buffer named BUFFER-NAME gets a special frame.
4119 More precisely, return t if `special-display-buffer-names' or
4120 `special-display-regexps' contain a string entry equaling or
4121 matching BUFFER-NAME. If `special-display-buffer-names' or
4122 `special-display-regexps' contain a list entry whose car equals
4123 or matches BUFFER-NAME, the return value is the cdr of that
4124 entry."
4125 (let (tmp)
4126 (cond
4127 ((not (stringp buffer-name)))
4128 ((member buffer-name special-display-buffer-names)
4129 t)
4130 ((setq tmp (assoc buffer-name special-display-buffer-names))
4131 (cdr tmp))
4132 ((catch 'found
4133 (dolist (regexp special-display-regexps)
4134 (cond
4135 ((stringp regexp)
4136 (when (string-match-p regexp buffer-name)
4137 (throw 'found t)))
4138 ((and (consp regexp) (stringp (car regexp))
4139 (string-match-p (car regexp) buffer-name))
4140 (throw 'found (cdr regexp))))))))))
4141
4142 (defcustom special-display-frame-alist
4143 '((height . 14) (width . 80) (unsplittable . t))
4144 "Alist of parameters for special frames.
4145 Special frames are used for buffers whose names are listed in
4146 `special-display-buffer-names' and for buffers whose names match
4147 one of the regular expressions in `special-display-regexps'.
4148
4149 This variable can be set in your init file, like this:
4150
4151 (setq special-display-frame-alist '((width . 80) (height . 20)))
4152
4153 These supersede the values given in `default-frame-alist'."
4154 :type '(repeat (cons :format "%v"
4155 (symbol :tag "Parameter")
4156 (sexp :tag "Value")))
4157 :group 'frames)
4158
4159 (defun special-display-popup-frame (buffer &optional args)
4160 "Display BUFFER and return the window chosen.
4161 If BUFFER is already displayed in a visible or iconified frame,
4162 raise that frame. Otherwise, display BUFFER in a new frame.
4163
4164 Optional argument ARGS is a list specifying additional
4165 information.
4166
4167 If ARGS is an alist, use it as a list of frame parameters. If
4168 these parameters contain (same-window . t), display BUFFER in
4169 the selected window. If they contain (same-frame . t), display
4170 BUFFER in a window of the selected frame.
4171
4172 If ARGS is a list whose car is a symbol, use (car ARGS) as a
4173 function to do the work. Pass it BUFFER as first argument,
4174 and (cdr ARGS) as second."
4175 (if (and args (symbolp (car args)))
4176 (apply (car args) buffer (cdr args))
4177 (let ((window (get-buffer-window buffer 0)))
4178 (or
4179 ;; If we have a window already, make it visible.
4180 (when window
4181 (let ((frame (window-frame window)))
4182 (make-frame-visible frame)
4183 (raise-frame frame)
4184 (display-buffer-record-window 'reuse window buffer)
4185 window))
4186 ;; Reuse the current window if the user requested it.
4187 (when (cdr (assq 'same-window args))
4188 (condition-case nil
4189 (progn (switch-to-buffer buffer nil t) (selected-window))
4190 (error nil)))
4191 ;; Stay on the same frame if requested.
4192 (when (or (cdr (assq 'same-frame args)) (cdr (assq 'same-window args)))
4193 (let* ((pop-up-windows t)
4194 pop-up-frames
4195 special-display-buffer-names special-display-regexps)
4196 (display-buffer buffer)))
4197 ;; If no window yet, make one in a new frame.
4198 (let* ((frame
4199 (with-current-buffer buffer
4200 (make-frame (append args special-display-frame-alist))))
4201 (window (frame-selected-window frame)))
4202 (display-buffer-record-window 'frame window buffer)
4203 ;; FIXME: Use window--display-buffer-2?
4204 (set-window-buffer window buffer)
4205 ;; Reset list of WINDOW's previous buffers to nil.
4206 (set-window-prev-buffers window nil)
4207 (set-window-dedicated-p window t)
4208 window)))))
4209
4210 (defcustom special-display-function 'special-display-popup-frame
4211 "Function to call for displaying special buffers.
4212 This function is called with two arguments - the buffer and,
4213 optionally, a list - and should return a window displaying that
4214 buffer. The default value usually makes a separate frame for the
4215 buffer using `special-display-frame-alist' to specify the frame
4216 parameters. See the definition of `special-display-popup-frame'
4217 for how to specify such a function.
4218
4219 A buffer is special when its name is either listed in
4220 `special-display-buffer-names' or matches a regexp in
4221 `special-display-regexps'.
4222
4223 The specified function should call `display-buffer-record-window'
4224 with corresponding arguments to set up the quit-restore parameter
4225 of the window used."
4226 :type 'function
4227 :group 'frames)
4228
4229 (defcustom same-window-buffer-names nil
4230 "List of names of buffers that should appear in the \"same\" window.
4231 `display-buffer' and `pop-to-buffer' show a buffer whose name is
4232 on this list in the selected rather than some other window.
4233
4234 An element of this list can be a cons cell instead of just a
4235 string. In that case, the cell's car must be a string specifying
4236 the buffer name. This is for compatibility with
4237 `special-display-buffer-names'; the cdr of the cons cell is
4238 ignored.
4239
4240 See also `same-window-regexps'."
4241 :type '(repeat (string :format "%v"))
4242 :group 'windows)
4243
4244 (defcustom same-window-regexps nil
4245 "List of regexps saying which buffers should appear in the \"same\" window.
4246 `display-buffer' and `pop-to-buffer' show a buffer whose name
4247 matches a regexp on this list in the selected rather than some
4248 other window.
4249
4250 An element of this list can be a cons cell instead of just a
4251 string. In that case, the cell's car must be a regexp matching
4252 the buffer name. This is for compatibility with
4253 `special-display-regexps'; the cdr of the cons cell is ignored.
4254
4255 See also `same-window-buffer-names'."
4256 :type '(repeat (regexp :format "%v"))
4257 :group 'windows)
4258
4259 (defun same-window-p (buffer-name)
4260 "Return non-nil if a buffer named BUFFER-NAME would be shown in the \"same\" window.
4261 This function returns non-nil if `display-buffer' or
4262 `pop-to-buffer' would show a buffer named BUFFER-NAME in the
4263 selected rather than (as usual) some other window. See
4264 `same-window-buffer-names' and `same-window-regexps'."
4265 (cond
4266 ((not (stringp buffer-name)))
4267 ;; The elements of `same-window-buffer-names' can be buffer
4268 ;; names or cons cells whose cars are buffer names.
4269 ((member buffer-name same-window-buffer-names))
4270 ((assoc buffer-name same-window-buffer-names))
4271 ((catch 'found
4272 (dolist (regexp same-window-regexps)
4273 ;; The elements of `same-window-regexps' can be regexps
4274 ;; or cons cells whose cars are regexps.
4275 (when (or (and (stringp regexp)
4276 (string-match-p regexp buffer-name))
4277 (and (consp regexp) (stringp (car regexp))
4278 (string-match-p (car regexp) buffer-name)))
4279 (throw 'found t)))))))
4280
4281 (defcustom pop-up-frames nil
4282 "Whether `display-buffer' should make a separate frame.
4283 If nil, never make a separate frame.
4284 If the value is `graphic-only', make a separate frame
4285 on graphic displays only.
4286 Any other non-nil value means always make a separate frame."
4287 :type '(choice
4288 (const :tag "Never" nil)
4289 (const :tag "On graphic displays only" graphic-only)
4290 (const :tag "Always" t))
4291 :group 'windows)
4292
4293 (defcustom display-buffer-reuse-frames nil
4294 "Non-nil means `display-buffer' should reuse frames.
4295 If the buffer in question is already displayed in a frame, raise
4296 that frame."
4297 :type 'boolean
4298 :version "21.1"
4299 :group 'windows)
4300
4301 (defcustom pop-up-windows t
4302 "Non-nil means `display-buffer' should make a new window."
4303 :type 'boolean
4304 :group 'windows)
4305
4306 (defcustom split-window-preferred-function 'split-window-sensibly
4307 "Function called by `display-buffer' routines to split a window.
4308 This function is called with a window as single argument and is
4309 supposed to split that window and return the new window. If the
4310 window can (or shall) not be split, it is supposed to return nil.
4311 The default is to call the function `split-window-sensibly' which
4312 tries to split the window in a way which seems most suitable.
4313 You can customize the options `split-height-threshold' and/or
4314 `split-width-threshold' in order to have `split-window-sensibly'
4315 prefer either vertical or horizontal splitting.
4316
4317 If you set this to any other function, bear in mind that the
4318 `display-buffer' routines may call this function two times. The
4319 argument of the first call is the largest window on its frame.
4320 If that call fails to return a live window, the function is
4321 called again with the least recently used window as argument. If
4322 that call fails too, `display-buffer' will use an existing window
4323 to display its buffer.
4324
4325 The window selected at the time `display-buffer' was invoked is
4326 still selected when this function is called. Hence you can
4327 compare the window argument with the value of `selected-window'
4328 if you intend to split the selected window instead or if you do
4329 not want to split the selected window."
4330 :type 'function
4331 :version "23.1"
4332 :group 'windows)
4333
4334 (defcustom split-height-threshold 80
4335 "Minimum height for splitting windows sensibly.
4336 If this is an integer, `split-window-sensibly' may split a window
4337 vertically only if it has at least this many lines. If this is
4338 nil, `split-window-sensibly' is not allowed to split a window
4339 vertically. If, however, a window is the only window on its
4340 frame, `split-window-sensibly' may split it vertically
4341 disregarding the value of this variable."
4342 :type '(choice (const nil) (integer :tag "lines"))
4343 :version "23.1"
4344 :group 'windows)
4345
4346 (defcustom split-width-threshold 160
4347 "Minimum width for splitting windows sensibly.
4348 If this is an integer, `split-window-sensibly' may split a window
4349 horizontally only if it has at least this many columns. If this
4350 is nil, `split-window-sensibly' is not allowed to split a window
4351 horizontally."
4352 :type '(choice (const nil) (integer :tag "columns"))
4353 :version "23.1"
4354 :group 'windows)
4355
4356 (defun window-splittable-p (window &optional horizontal)
4357 "Return non-nil if `split-window-sensibly' may split WINDOW.
4358 Optional argument HORIZONTAL nil or omitted means check whether
4359 `split-window-sensibly' may split WINDOW vertically. HORIZONTAL
4360 non-nil means check whether WINDOW may be split horizontally.
4361
4362 WINDOW may be split vertically when the following conditions
4363 hold:
4364 - `window-size-fixed' is either nil or equals `width' for the
4365 buffer of WINDOW.
4366 - `split-height-threshold' is an integer and WINDOW is at least as
4367 high as `split-height-threshold'.
4368 - When WINDOW is split evenly, the emanating windows are at least
4369 `window-min-height' lines tall and can accommodate at least one
4370 line plus - if WINDOW has one - a mode line.
4371
4372 WINDOW may be split horizontally when the following conditions
4373 hold:
4374 - `window-size-fixed' is either nil or equals `height' for the
4375 buffer of WINDOW.
4376 - `split-width-threshold' is an integer and WINDOW is at least as
4377 wide as `split-width-threshold'.
4378 - When WINDOW is split evenly, the emanating windows are at least
4379 `window-min-width' or two (whichever is larger) columns wide."
4380 (when (window-live-p window)
4381 (with-current-buffer (window-buffer window)
4382 (if horizontal
4383 ;; A window can be split horizontally when its width is not
4384 ;; fixed, it is at least `split-width-threshold' columns wide
4385 ;; and at least twice as wide as `window-min-width' and 2 (the
4386 ;; latter value is hardcoded).
4387 (and (memq window-size-fixed '(nil height))
4388 ;; Testing `window-full-width-p' here hardly makes any
4389 ;; sense nowadays. This can be done more intuitively by
4390 ;; setting up `split-width-threshold' appropriately.
4391 (numberp split-width-threshold)
4392 (>= (window-width window)
4393 (max split-width-threshold
4394 (* 2 (max window-min-width 2)))))
4395 ;; A window can be split vertically when its height is not
4396 ;; fixed, it is at least `split-height-threshold' lines high,
4397 ;; and it is at least twice as high as `window-min-height' and 2
4398 ;; if it has a modeline or 1.
4399 (and (memq window-size-fixed '(nil width))
4400 (numberp split-height-threshold)
4401 (>= (window-height window)
4402 (max split-height-threshold
4403 (* 2 (max window-min-height
4404 (if mode-line-format 2 1))))))))))
4405
4406 (defun split-window-sensibly (window)
4407 "Split WINDOW in a way suitable for `display-buffer'.
4408 If `split-height-threshold' specifies an integer, WINDOW is at
4409 least `split-height-threshold' lines tall and can be split
4410 vertically, split WINDOW into two windows one above the other and
4411 return the lower window. Otherwise, if `split-width-threshold'
4412 specifies an integer, WINDOW is at least `split-width-threshold'
4413 columns wide and can be split horizontally, split WINDOW into two
4414 windows side by side and return the window on the right. If this
4415 can't be done either and WINDOW is the only window on its frame,
4416 try to split WINDOW vertically disregarding any value specified
4417 by `split-height-threshold'. If that succeeds, return the lower
4418 window. Return nil otherwise.
4419
4420 By default `display-buffer' routines call this function to split
4421 the largest or least recently used window. To change the default
4422 customize the option `split-window-preferred-function'.
4423
4424 You can enforce this function to not split WINDOW horizontally,
4425 by setting (or binding) the variable `split-width-threshold' to
4426 nil. If, in addition, you set `split-height-threshold' to zero,
4427 chances increase that this function does split WINDOW vertically.
4428
4429 In order to not split WINDOW vertically, set (or bind) the
4430 variable `split-height-threshold' to nil. Additionally, you can
4431 set `split-width-threshold' to zero to make a horizontal split
4432 more likely to occur.
4433
4434 Have a look at the function `window-splittable-p' if you want to
4435 know how `split-window-sensibly' determines whether WINDOW can be
4436 split."
4437 (or (and (window-splittable-p window)
4438 ;; Split window vertically.
4439 (with-selected-window window
4440 (split-window-below)))
4441 (and (window-splittable-p window t)
4442 ;; Split window horizontally.
4443 (with-selected-window window
4444 (split-window-right)))
4445 (and (eq window (frame-root-window (window-frame window)))
4446 (not (window-minibuffer-p window))
4447 ;; If WINDOW is the only window on its frame and is not the
4448 ;; minibuffer window, try to split it vertically disregarding
4449 ;; the value of `split-height-threshold'.
4450 (let ((split-height-threshold 0))
4451 (when (window-splittable-p window)
4452 (with-selected-window window
4453 (split-window-below)))))))
4454
4455 (defun window--try-to-split-window (window)
4456 "Try to split WINDOW.
4457 Return value returned by `split-window-preferred-function' if it
4458 represents a live window, nil otherwise."
4459 (and (window-live-p window)
4460 (not (frame-parameter (window-frame window) 'unsplittable))
4461 (let ((new-window
4462 ;; Since `split-window-preferred-function' might
4463 ;; throw an error use `condition-case'.
4464 (condition-case nil
4465 (funcall split-window-preferred-function window)
4466 (error nil))))
4467 (and (window-live-p new-window) new-window))))
4468
4469 (defun window--frame-usable-p (frame)
4470 "Return FRAME if it can be used to display a buffer."
4471 (when (frame-live-p frame)
4472 (let ((window (frame-root-window frame)))
4473 ;; `frame-root-window' may be an internal window which is considered
4474 ;; "dead" by `window-live-p'. Hence if `window' is not live we
4475 ;; implicitly know that `frame' has a visible window we can use.
4476 (unless (and (window-live-p window)
4477 (or (window-minibuffer-p window)
4478 ;; If the window is soft-dedicated, the frame is usable.
4479 ;; Actually, even if the window is really dedicated,
4480 ;; the frame is still usable by splitting it.
4481 ;; At least Emacs-22 allowed it, and it is desirable
4482 ;; when displaying same-frame windows.
4483 nil ; (eq t (window-dedicated-p window))
4484 ))
4485 frame))))
4486
4487 (defcustom even-window-heights t
4488 "If non-nil `display-buffer' will try to even window heights.
4489 Otherwise `display-buffer' will leave the window configuration
4490 alone. Heights are evened only when `display-buffer' chooses a
4491 window that appears above or below the selected window."
4492 :type 'boolean
4493 :group 'windows)
4494
4495 (defun window--even-window-heights (window)
4496 "Even heights of WINDOW and selected window.
4497 Do this only if these windows are vertically adjacent to each
4498 other, `even-window-heights' is non-nil, and the selected window
4499 is higher than WINDOW."
4500 (when (and even-window-heights
4501 (not (eq window (selected-window)))
4502 ;; Don't resize minibuffer windows.
4503 (not (window-minibuffer-p (selected-window)))
4504 (> (window-height (selected-window)) (window-height window))
4505 (eq (window-frame window) (window-frame (selected-window)))
4506 (let ((sel-edges (window-edges (selected-window)))
4507 (win-edges (window-edges window)))
4508 (and (= (nth 0 sel-edges) (nth 0 win-edges))
4509 (= (nth 2 sel-edges) (nth 2 win-edges))
4510 (or (= (nth 1 sel-edges) (nth 3 win-edges))
4511 (= (nth 3 sel-edges) (nth 1 win-edges))))))
4512 (let ((window-min-height 1))
4513 ;; Don't throw an error if we can't even window heights for
4514 ;; whatever reason.
4515 (condition-case nil
4516 (enlarge-window (/ (- (window-height window) (window-height)) 2))
4517 (error nil)))))
4518
4519 (defun window--display-buffer-1 (window)
4520 "Raise the frame containing WINDOW.
4521 Do not raise the selected frame. Return WINDOW."
4522 (let* ((frame (window-frame window))
4523 (visible (frame-visible-p frame)))
4524 (unless (or (not visible)
4525 ;; Assume the selected frame is already visible enough.
4526 (eq frame (selected-frame))
4527 ;; Assume the frame from which we invoked the minibuffer
4528 ;; is visible.
4529 (and (minibuffer-window-active-p (selected-window))
4530 (eq frame (window-frame (minibuffer-selected-window)))))
4531 (raise-frame frame))
4532 window))
4533
4534 (defun window--display-buffer-2 (buffer window &optional dedicated)
4535 "Display BUFFER in WINDOW and make its frame visible.
4536 Set `window-dedicated-p' to DEDICATED if non-nil.
4537 Return WINDOW."
4538 (when (and (buffer-live-p buffer) (window-live-p window))
4539 (set-window-buffer window buffer)
4540 (when dedicated
4541 (set-window-dedicated-p window dedicated))
4542 (window--display-buffer-1 window)))
4543
4544 ;; FIXME: Not implemented.
4545 ;; FIXME: By the way, there could be more levels of dedication:
4546 ;; - `barely' dedicated doesn't prevent reuse of the window, only records that
4547 ;; the window hasn't been used for something else yet.
4548 ;; - `softly' dedicated only allows reuse when asked explicitly.
4549 ;; - `strongly' never allows reuse.
4550 (defvar display-buffer-mark-dedicated nil
4551 "If non-nil, `display-buffer' marks the windows it creates as dedicated.
4552 The actual non-nil value of this variable will be copied to the
4553 `window-dedicated-p' flag.")
4554
4555 (defconst display-buffer--action-function-custom-type
4556 '(choice :tag "Function"
4557 (const :tag "--" ignore) ; default for insertion
4558 (const display-buffer-reuse-window)
4559 (const display-buffer-use-some-window)
4560 (const display-buffer-same-window)
4561 (const display-buffer-pop-up-frame)
4562 (const display-buffer-use-some-window)
4563 (function :tag "Other function"))
4564 "Custom type for `display-buffer' action functions.")
4565
4566 (defconst display-buffer--action-custom-type
4567 `(cons :tag "Action"
4568 (choice :tag "Action functions"
4569 ,display-buffer--action-function-custom-type
4570 (repeat
4571 :tag "List of functions"
4572 ,display-buffer--action-function-custom-type))
4573 (alist :tag "Action arguments"
4574 :key-type symbol
4575 :value-type (sexp :tag "Value")))
4576 "Custom type for `display-buffer' actions.")
4577
4578 (defvar display-buffer-overriding-action '(nil . nil)
4579 "Overriding action to perform to display a buffer.
4580 It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
4581 function or a list of functions. Each function should accept two
4582 arguments: a buffer to display and an alist similar to ALIST.
4583 See `display-buffer' for details.")
4584 (put 'display-buffer-overriding-action 'risky-local-variable t)
4585
4586 (defcustom display-buffer-alist nil
4587 "Alist of conditional actions for `display-buffer'.
4588 This is a list of elements (CONDITION . ACTION), where:
4589
4590 CONDITION is either a regexp matching buffer names, or a function
4591 that takes a buffer and returns a boolean.
4592
4593 ACTION is a cons cell (FUNCTION . ALIST), where FUNCTION is a
4594 function or a list of functions. Each such function should
4595 accept two arguments: a buffer to display and an alist of the
4596 same form as ALIST. See `display-buffer' for details."
4597 :type `(alist :key-type
4598 (choice :tag "Condition"
4599 regexp
4600 (function :tag "Matcher function"))
4601 :value-type ,display-buffer--action-custom-type)
4602 :risky t
4603 :version "24.1"
4604 :group 'windows)
4605
4606 (defcustom display-buffer-base-action '(nil . nil)
4607 "User-specified default action for `display-buffer'.
4608 It should be a cons cell (FUNCTION . ALIST), where FUNCTION is a
4609 function or a list of functions. Each function should accept two
4610 arguments: a buffer to display and an alist similar to ALIST.
4611 See `display-buffer' for details."
4612 :type display-buffer--action-custom-type
4613 :risky t
4614 :version "24.1"
4615 :group 'windows)
4616
4617 (defconst display-buffer-fallback-action
4618 '((display-buffer--maybe-same-window ;FIXME: why isn't this redundant?
4619 display-buffer-reuse-window
4620 display-buffer--maybe-pop-up-frame-or-window
4621 display-buffer-use-some-window
4622 ;; If all else fails, pop up a new frame.
4623 display-buffer-pop-up-frame))
4624 "Default fallback action for `display-buffer'.
4625 This is the action used by `display-buffer' if no other actions
4626 specified, e.g. by the user options `display-buffer-alist' or
4627 `display-buffer-base-action'. See `display-buffer'.")
4628 (put 'display-buffer-fallback-action 'risky-local-variable t)
4629
4630 (defun display-buffer-assq-regexp (buffer-name alist)
4631 "Retrieve ALIST entry corresponding to BUFFER-NAME."
4632 (catch 'match
4633 (dolist (entry alist)
4634 (let ((key (car entry)))
4635 (when (or (and (stringp key)
4636 (string-match-p key buffer-name))
4637 (and (symbolp key) (functionp key)
4638 (funcall key buffer-name alist)))
4639 (throw 'match (cdr entry)))))))
4640
4641 (defvar display-buffer--same-window-action
4642 '(display-buffer-same-window
4643 (inhibit-same-window . nil))
4644 "A `display-buffer' action for displaying in the same window.")
4645 (put 'display-buffer--same-window-action 'risky-local-variable t)
4646
4647 (defvar display-buffer--other-frame-action
4648 '((display-buffer-reuse-window
4649 display-buffer-pop-up-frame)
4650 (reusable-frames . 0)
4651 (inhibit-same-window . t))
4652 "A `display-buffer' action for displaying in another frame.")
4653 (put 'display-buffer--other-frame-action 'risky-local-variable t)
4654
4655 (defun display-buffer (buffer-or-name &optional action frame)
4656 "Display BUFFER-OR-NAME in some window, without selecting it.
4657 BUFFER-OR-NAME must be a buffer or the name of an existing
4658 buffer. Return the window chosen for displaying BUFFER-OR-NAME,
4659 or nil if no such window is found.
4660
4661 Optional argument ACTION should have the form (FUNCTION . ALIST).
4662 FUNCTION is either a function or a list of functions.
4663 ALIST is an arbitrary association list (alist).
4664
4665 Each such FUNCTION should accept two arguments: the buffer to
4666 display and an alist. Based on those arguments, it should either
4667 display the buffer and return the window, or return nil if unable
4668 to display the buffer.
4669
4670 The `display-buffer' function builds a function list and an alist
4671 by combining the functions and alists specified in
4672 `display-buffer-overriding-action', `display-buffer-alist', the
4673 ACTION argument, `display-buffer-base-action', and
4674 `display-buffer-fallback-action' (in order). Then it calls each
4675 function in the combined function list in turn, passing the
4676 buffer as the first argument and the combined alist as the second
4677 argument, until one of the functions returns non-nil.
4678
4679 Available action functions include:
4680 `display-buffer-same-window'
4681 `display-buffer-reuse-window'
4682 `display-buffer-pop-up-frame'
4683 `display-buffer-pop-up-window'
4684 `display-buffer-use-some-window'
4685
4686 Recognized alist entries include:
4687
4688 `inhibit-same-window' -- A non-nil value prevents the same
4689 window from being used for display.
4690
4691 `reusable-frames' -- Value specifies frame(s) to search for a
4692 window that already displays the buffer.
4693 See `display-buffer-reuse-window'.
4694
4695 The ACTION argument to `display-buffer' can also have a non-nil
4696 and non-list value. This means to display the buffer in a window
4697 other than the selected one, even if it is already displayed in
4698 the selected window. If called interactively with a prefix
4699 argument, ACTION is t.
4700
4701 Optional argument FRAME, if non-nil, acts like an additional
4702 ALIST entry (reusable-frames . FRAME), specifying the frame(s) to
4703 search for a window that is already displaying the buffer. See
4704 `display-buffer-reuse-window'."
4705 (interactive (list (read-buffer "Display buffer: " (other-buffer))
4706 (if current-prefix-arg t)))
4707 (let ((buffer (if (bufferp buffer-or-name)
4708 buffer-or-name
4709 (get-buffer buffer-or-name)))
4710 ;; Handle the old form of the first argument.
4711 (inhibit-same-window (and action (not (listp action)))))
4712 (unless (listp action) (setq action nil))
4713 (if display-buffer-function
4714 ;; If `display-buffer-function' is defined, let it do the job.
4715 (funcall display-buffer-function buffer inhibit-same-window)
4716 ;; Otherwise, use the defined actions.
4717 (let* ((user-action
4718 (display-buffer-assq-regexp (buffer-name buffer)
4719 display-buffer-alist))
4720 (special-action (display-buffer--special-action buffer))
4721 ;; Extra actions from the arguments to this function:
4722 (extra-action
4723 (cons nil (append (if inhibit-same-window
4724 '((inhibit-same-window . t)))
4725 (if frame
4726 `((reusable-frames . ,frame))))))
4727 ;; Construct action function list and action alist.
4728 (actions (list display-buffer-overriding-action
4729 user-action special-action action extra-action
4730 display-buffer-base-action
4731 display-buffer-fallback-action))
4732 (functions (apply 'append
4733 (mapcar (lambda (x)
4734 (setq x (car x))
4735 (if (functionp x) (list x) x))
4736 actions)))
4737 (alist (apply 'append (mapcar 'cdr actions)))
4738 window)
4739 (unless (buffer-live-p buffer)
4740 (error "Invalid buffer"))
4741 (while (and functions (not window))
4742 (setq window (funcall (car functions) buffer alist)
4743 functions (cdr functions)))
4744 window))))
4745
4746 (defun display-buffer-other-frame (buffer)
4747 "Display buffer BUFFER in another frame.
4748 This uses the function `display-buffer' as a subroutine; see
4749 its documentation for additional customization information."
4750 (interactive "BDisplay buffer in other frame: ")
4751 (display-buffer buffer display-buffer--other-frame-action t))
4752
4753 ;;; `display-buffer' action functions:
4754
4755 (defun display-buffer-same-window (buffer alist)
4756 "Display BUFFER in the selected window.
4757 This fails if ALIST has a non-nil `inhibit-same-window' entry, or
4758 if the selected window is a minibuffer window or is dedicated to
4759 another buffer; in that case, return nil. Otherwise, return the
4760 selected window."
4761 (unless (or (cdr (assq 'inhibit-same-window alist))
4762 (window-minibuffer-p)
4763 (window-dedicated-p))
4764 (display-buffer-record-window 'reuse (selected-window) buffer)
4765 (window--display-buffer-2 buffer (selected-window))))
4766
4767 (defun display-buffer--maybe-same-window (buffer alist)
4768 "Conditionally display BUFFER in the selected window.
4769 If `same-window-p' returns non-nil for BUFFER's name, call
4770 `display-buffer-same-window' and return its value. Otherwise,
4771 return nil."
4772 (and (same-window-p (buffer-name buffer))
4773 (display-buffer-same-window buffer alist)))
4774
4775 (defun display-buffer-reuse-window (buffer alist)
4776 "Return a window that is already displaying BUFFER.
4777 Return nil if no usable window is found.
4778
4779 If ALIST has a non-nil `inhibit-same-window' entry, the selected
4780 window is not eligible for reuse.
4781
4782 If ALIST contains a `reusable-frames' entry, its value determines
4783 which frames to search for a reusable window:
4784 nil -- the selected frame (actually the last non-minibuffer frame)
4785 A frame -- just that frame
4786 `visible' -- all visible frames
4787 0 -- all frames on the current terminal
4788 t -- all frames.
4789
4790 If ALIST contains no `reusable-frames' entry, search just the
4791 selected frame if `display-buffer-reuse-frames' and
4792 `pop-up-frames' are both nil; search all frames on the current
4793 terminal if either of those variables is non-nil."
4794 (let* ((alist-entry (assq 'reusable-frames alist))
4795 (frames (cond (alist-entry (cdr alist-entry))
4796 ((if (eq pop-up-frames 'graphic-only)
4797 (display-graphic-p)
4798 pop-up-frames)
4799 0)
4800 (display-buffer-reuse-frames 0)
4801 (t (last-nonminibuffer-frame))))
4802 (window (if (and (eq buffer (window-buffer))
4803 (not (cdr (assq 'inhibit-same-window alist))))
4804 (selected-window)
4805 (car (delq (selected-window)
4806 (get-buffer-window-list buffer 'nomini
4807 frames))))))
4808 (when window
4809 (display-buffer-record-window 'reuse window buffer)
4810 (window--display-buffer-1 window))))
4811
4812 (defun display-buffer--special-action (buffer)
4813 "Return special display action for BUFFER, if any.
4814 If `special-display-p' returns non-nil for BUFFER, return an
4815 appropriate display action involving `special-display-function'.
4816 See `display-buffer' for the format of display actions."
4817 (and special-display-function
4818 ;; `special-display-p' returns either t or a list of frame
4819 ;; parameters to pass to `special-display-function'.
4820 (let ((pars (special-display-p (buffer-name buffer))))
4821 (when pars
4822 (list (list #'display-buffer-reuse-window
4823 `(lambda (buffer _alist)
4824 (funcall special-display-function
4825 buffer ',(if (listp pars) pars)))))))))
4826
4827 (defun display-buffer-pop-up-frame (buffer _alist)
4828 "Display BUFFER in a new frame.
4829 This works by calling `pop-up-frame-function'. If successful,
4830 return the window used; otherwise return nil."
4831 (let ((fun pop-up-frame-function)
4832 frame window)
4833 (when (and fun
4834 (setq frame (funcall fun))
4835 (setq window (frame-selected-window frame)))
4836 (display-buffer-record-window 'frame window buffer)
4837 (window--display-buffer-2 buffer window display-buffer-mark-dedicated)
4838 ;; Reset list of WINDOW's previous buffers to nil.
4839 (set-window-prev-buffers window nil)
4840 window)))
4841
4842 (defun display-buffer-pop-up-window (buffer _alist)
4843 "Display BUFFER by popping up a new window.
4844 The new window is created on the selected frame, or in
4845 `last-nonminibuffer-frame' if no windows can be created there.
4846 If successful, return the new window; otherwise return nil."
4847 (let ((frame (or (window--frame-usable-p (selected-frame))
4848 (window--frame-usable-p (last-nonminibuffer-frame))))
4849 window)
4850 (when (and (or (not (frame-parameter frame 'unsplittable))
4851 ;; If the selected frame cannot be split, look at
4852 ;; `last-nonminibuffer-frame'.
4853 (and (eq frame (selected-frame))
4854 (setq frame (last-nonminibuffer-frame))
4855 (window--frame-usable-p frame)
4856 (not (frame-parameter frame 'unsplittable))))
4857 ;; Attempt to split largest or least recently used window.
4858 (setq window (or (window--try-to-split-window
4859 (get-largest-window frame t))
4860 (window--try-to-split-window
4861 (get-lru-window frame t)))))
4862 (display-buffer-record-window 'window window buffer)
4863 (window--display-buffer-2 buffer window display-buffer-mark-dedicated)
4864 ;; Reset list of WINDOW's previous buffers to nil.
4865 (set-window-prev-buffers window nil)
4866 window)))
4867
4868 (defun display-buffer--maybe-pop-up-frame-or-window (buffer alist)
4869 "Try displaying BUFFER based on `pop-up-frames' or `pop-up-windows'.
4870
4871 If `pop-up-frames' is non-nil (and not `graphic-only' on a
4872 text-only terminal), try with `display-buffer-pop-up-frame'.
4873
4874 If that cannot be done, and `pop-up-windows' is non-nil, try
4875 again with `display-buffer-pop-up-window'."
4876 (or (and (if (eq pop-up-frames 'graphic-only)
4877 (display-graphic-p)
4878 pop-up-frames)
4879 (display-buffer-pop-up-frame buffer alist))
4880 (and pop-up-windows
4881 (display-buffer-pop-up-window buffer alist))))
4882
4883 (defun display-buffer-use-some-window (buffer alist)
4884 "Display BUFFER in an existing window.
4885 Search for a usable window, set that window to the buffer, and
4886 return the window. If no suitable window is found, return nil."
4887 (let* ((not-this-window (cdr (assq 'inhibit-same-window alist)))
4888 (window-to-undedicate
4889 ;; When NOT-THIS-WINDOW is non-nil, temporarily dedicate the
4890 ;; selected window to its buffer, to prevent any of the
4891 ;; `get-' routines below from choosing it. (Bug#1415)
4892 (and not-this-window (not (window-dedicated-p))
4893 (set-window-dedicated-p (selected-window) t)
4894 (selected-window)))
4895 (frame (or (window--frame-usable-p (selected-frame))
4896 (window--frame-usable-p (last-nonminibuffer-frame))))
4897 window)
4898 (unwind-protect
4899 (setq window
4900 ;; Reuse an existing window.
4901 (or (get-lru-window frame)
4902 (let ((window (get-buffer-window buffer 'visible)))
4903 (unless (and not-this-window
4904 (eq window (selected-window)))
4905 window))
4906 (get-largest-window 'visible)
4907 (let ((window (get-buffer-window buffer 0)))
4908 (unless (and not-this-window
4909 (eq window (selected-window)))
4910 window))
4911 (get-largest-window 0)))
4912 (when (window-live-p window-to-undedicate)
4913 ;; Restore dedicated status of selected window.
4914 (set-window-dedicated-p window-to-undedicate nil)))
4915 (when window
4916 (display-buffer-record-window 'reuse window buffer)
4917 (window--even-window-heights window)
4918 (window--display-buffer-2 buffer window))))
4919
4920 ;;; Display + selection commands:
4921
4922 (defun pop-to-buffer (buffer &optional action norecord)
4923 "Select buffer BUFFER in some window, preferably a different one.
4924 BUFFER may be a buffer, a string (a buffer name), or nil. If it
4925 is a string not naming an existent buffer, create a buffer with
4926 that name. If BUFFER is nil, choose some other buffer. Return
4927 the buffer.
4928
4929 This uses `display-buffer' as a subroutine. The optional ACTION
4930 argument is passed to `display-buffer' as its ACTION argument.
4931 See `display-buffer' for more information. ACTION is t if called
4932 interactively with a prefix argument, which means to pop to a
4933 window other than the selected one even if the buffer is already
4934 displayed in the selected window.
4935
4936 If the window to show BUFFER is not on the selected
4937 frame, raise that window's frame and give it input focus.
4938
4939 Optional third arg NORECORD non-nil means do not put this buffer
4940 at the front of the list of recently selected ones."
4941 (interactive (list (read-buffer "Pop to buffer: " (other-buffer))
4942 (if current-prefix-arg t)))
4943 (setq buffer (window-normalize-buffer-to-switch-to buffer))
4944 (set-buffer buffer)
4945 (let* ((old-frame (selected-frame))
4946 (window (display-buffer buffer action))
4947 (frame (window-frame window)))
4948 ;; If we chose another frame, make sure it gets input focus.
4949 (unless (eq frame old-frame)
4950 (select-frame-set-input-focus frame norecord))
4951 ;; Make sure new window is selected (Bug#8615), (Bug#6954).
4952 (select-window window norecord)
4953 buffer))
4954
4955 (defun pop-to-buffer-same-window (buffer &optional norecord)
4956 "Select buffer BUFFER in some window, preferably the same one.
4957 This function behaves much like `switch-to-buffer', except it
4958 displays with `special-display-function' if BUFFER has a match in
4959 `special-display-buffer-names' or `special-display-regexps'.
4960
4961 Unlike `pop-to-buffer', this function prefers using the selected
4962 window over popping up a new window or frame.
4963
4964 BUFFER may be a buffer, a string (a buffer name), or nil. If it
4965 is a string not naming an existent buffer, create a buffer with
4966 that name. If BUFFER is nil, choose some other buffer. Return
4967 the buffer.
4968
4969 NORECORD, if non-nil means do not put this buffer at the front of
4970 the list of recently selected ones."
4971 (pop-to-buffer buffer display-buffer--same-window-action norecord))
4972
4973 (defun read-buffer-to-switch (prompt)
4974 "Read the name of a buffer to switch to, prompting with PROMPT.
4975 Return the name of the buffer as a string.
4976
4977 This function is intended for the `switch-to-buffer' family of
4978 commands since these need to omit the name of the current buffer
4979 from the list of completions and default values."
4980 (let ((rbts-completion-table (internal-complete-buffer-except)))
4981 (minibuffer-with-setup-hook
4982 (lambda ()
4983 (setq minibuffer-completion-table rbts-completion-table)
4984 ;; Since rbts-completion-table is built dynamically, we
4985 ;; can't just add it to the default value of
4986 ;; icomplete-with-completion-tables, so we add it
4987 ;; here manually.
4988 (if (and (boundp 'icomplete-with-completion-tables)
4989 (listp icomplete-with-completion-tables))
4990 (set (make-local-variable 'icomplete-with-completion-tables)
4991 (cons rbts-completion-table
4992 icomplete-with-completion-tables))))
4993 (read-buffer prompt (other-buffer (current-buffer))
4994 (confirm-nonexistent-file-or-buffer)))))
4995
4996 (defun window-normalize-buffer-to-switch-to (buffer-or-name)
4997 "Normalize BUFFER-OR-NAME argument of buffer switching functions.
4998 If BUFFER-OR-NAME is nil, return the buffer returned by
4999 `other-buffer'. Else, if a buffer specified by BUFFER-OR-NAME
5000 exists, return that buffer. If no such buffer exists, create a
5001 buffer with the name BUFFER-OR-NAME and return that buffer."
5002 (if buffer-or-name
5003 (or (get-buffer buffer-or-name)
5004 (let ((buffer (get-buffer-create buffer-or-name)))
5005 (set-buffer-major-mode buffer)
5006 buffer))
5007 (other-buffer)))
5008
5009 (defun switch-to-buffer (buffer-or-name &optional norecord force-same-window)
5010 "Switch to buffer BUFFER-OR-NAME in the selected window.
5011 If called interactively, prompt for the buffer name using the
5012 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
5013 determines whether to request confirmation before creating a new
5014 buffer.
5015
5016 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
5017 nil. If BUFFER-OR-NAME is a string that does not identify an
5018 existing buffer, create a buffer with that name. If
5019 BUFFER-OR-NAME is nil, switch to the buffer returned by
5020 `other-buffer'.
5021
5022 Optional argument NORECORD non-nil means do not put the buffer
5023 specified by BUFFER-OR-NAME at the front of the buffer list and
5024 do not make the window displaying it the most recently selected
5025 one.
5026
5027 If FORCE-SAME-WINDOW is non-nil, BUFFER-OR-NAME must be displayed
5028 in the selected window; signal an error if that is
5029 impossible (e.g. if the selected window is minibuffer-only). If
5030 nil, BUFFER-OR-NAME may be displayed in another window.
5031
5032 Return the buffer switched to."
5033 (interactive
5034 (list (read-buffer-to-switch "Switch to buffer: ") nil 'force-same-window))
5035 (let ((buffer (window-normalize-buffer-to-switch-to buffer-or-name)))
5036 (cond
5037 ;; Don't call set-window-buffer if it's not needed since it
5038 ;; might signal an error (e.g. if the window is dedicated).
5039 ((eq buffer (window-buffer)))
5040 ((window-minibuffer-p)
5041 (if force-same-window
5042 (error "Cannot switch buffers in minibuffer window")
5043 (pop-to-buffer buffer norecord)))
5044 ((eq (window-dedicated-p) t)
5045 (if force-same-window
5046 (error "Cannot switch buffers in a dedicated window")
5047 (pop-to-buffer buffer norecord)))
5048 (t (set-window-buffer nil buffer)))
5049
5050 (unless norecord
5051 (select-window (selected-window)))
5052 (set-buffer buffer)))
5053
5054 (defun switch-to-buffer-other-window (buffer-or-name &optional norecord)
5055 "Select the buffer specified by BUFFER-OR-NAME in another window.
5056 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
5057 nil. Return the buffer switched to.
5058
5059 If called interactively, prompt for the buffer name using the
5060 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
5061 determines whether to request confirmation before creating a new
5062 buffer.
5063
5064 If BUFFER-OR-NAME is a string and does not identify an existing
5065 buffer, create a new buffer with that name. If BUFFER-OR-NAME is
5066 nil, switch to the buffer returned by `other-buffer'.
5067
5068 Optional second argument NORECORD non-nil means do not put this
5069 buffer at the front of the list of recently selected ones.
5070
5071 This uses the function `display-buffer' as a subroutine; see its
5072 documentation for additional customization information."
5073 (interactive
5074 (list (read-buffer-to-switch "Switch to buffer in other window: ")))
5075 (let ((pop-up-windows t))
5076 (pop-to-buffer buffer-or-name t norecord)))
5077
5078 (defun switch-to-buffer-other-frame (buffer-or-name &optional norecord)
5079 "Switch to buffer BUFFER-OR-NAME in another frame.
5080 BUFFER-OR-NAME may be a buffer, a string (a buffer name), or
5081 nil. Return the buffer switched to.
5082
5083 If called interactively, prompt for the buffer name using the
5084 minibuffer. The variable `confirm-nonexistent-file-or-buffer'
5085 determines whether to request confirmation before creating a new
5086 buffer.
5087
5088 If BUFFER-OR-NAME is a string and does not identify an existing
5089 buffer, create a new buffer with that name. If BUFFER-OR-NAME is
5090 nil, switch to the buffer returned by `other-buffer'.
5091
5092 Optional second arg NORECORD non-nil means do not put this
5093 buffer at the front of the list of recently selected ones.
5094
5095 This uses the function `display-buffer' as a subroutine; see its
5096 documentation for additional customization information."
5097 (interactive
5098 (list (read-buffer-to-switch "Switch to buffer in other frame: ")))
5099 (pop-to-buffer buffer-or-name display-buffer--other-frame-action norecord))
5100 \f
5101 (defun set-window-text-height (window height)
5102 "Set the height in lines of the text display area of WINDOW to HEIGHT.
5103 WINDOW must be a live window. HEIGHT doesn't include the mode
5104 line or header line, if any, or any partial-height lines in the
5105 text display area.
5106
5107 Note that the current implementation of this function cannot
5108 always set the height exactly, but attempts to be conservative,
5109 by allocating more lines than are actually needed in the case
5110 where some error may be present."
5111 (setq window (window-normalize-window window t))
5112 (let ((delta (- height (window-text-height window))))
5113 (unless (zerop delta)
5114 ;; Setting window-min-height to a value like 1 can lead to very
5115 ;; bizarre displays because it also allows Emacs to make *other*
5116 ;; windows 1-line tall, which means that there's no more space for
5117 ;; the modeline.
5118 (let ((window-min-height (min 2 height))) ; One text line plus a modeline.
5119 (window-resize window delta)))))
5120
5121 (defun enlarge-window-horizontally (delta)
5122 "Make selected window DELTA columns wider.
5123 Interactively, if no argument is given, make selected window one
5124 column wider."
5125 (interactive "p")
5126 (enlarge-window delta t))
5127
5128 (defun shrink-window-horizontally (delta)
5129 "Make selected window DELTA columns narrower.
5130 Interactively, if no argument is given, make selected window one
5131 column narrower."
5132 (interactive "p")
5133 (shrink-window delta t))
5134
5135 (defun count-screen-lines (&optional beg end count-final-newline window)
5136 "Return the number of screen lines in the region.
5137 The number of screen lines may be different from the number of actual lines,
5138 due to line breaking, display table, etc.
5139
5140 Optional arguments BEG and END default to `point-min' and `point-max'
5141 respectively.
5142
5143 If region ends with a newline, ignore it unless optional third argument
5144 COUNT-FINAL-NEWLINE is non-nil.
5145
5146 The optional fourth argument WINDOW specifies the window used for obtaining
5147 parameters such as width, horizontal scrolling, and so on. The default is
5148 to use the selected window's parameters.
5149
5150 Like `vertical-motion', `count-screen-lines' always uses the current buffer,
5151 regardless of which buffer is displayed in WINDOW. This makes possible to use
5152 `count-screen-lines' in any buffer, whether or not it is currently displayed
5153 in some window."
5154 (unless beg
5155 (setq beg (point-min)))
5156 (unless end
5157 (setq end (point-max)))
5158 (if (= beg end)
5159 0
5160 (save-excursion
5161 (save-restriction
5162 (widen)
5163 (narrow-to-region (min beg end)
5164 (if (and (not count-final-newline)
5165 (= ?\n (char-before (max beg end))))
5166 (1- (max beg end))
5167 (max beg end)))
5168 (goto-char (point-min))
5169 (1+ (vertical-motion (buffer-size) window))))))
5170
5171 (defun window-buffer-height (window)
5172 "Return the height (in screen lines) of the buffer that WINDOW is displaying."
5173 (with-current-buffer (window-buffer window)
5174 (max 1
5175 (count-screen-lines (point-min) (point-max)
5176 ;; If buffer ends with a newline, ignore it when
5177 ;; counting height unless point is after it.
5178 (eobp)
5179 window))))
5180
5181 ;;; Resizing buffers to fit their contents exactly.
5182 (defun fit-window-to-buffer (&optional window max-height min-height override)
5183 "Adjust height of WINDOW to display its buffer's contents exactly.
5184 WINDOW can be any live window and defaults to the selected one.
5185
5186 Optional argument MAX-HEIGHT specifies the maximum height of
5187 WINDOW and defaults to the height of WINDOW's frame. Optional
5188 argument MIN-HEIGHT specifies the minimum height of WINDOW and
5189 defaults to `window-min-height'. Both MAX-HEIGHT and MIN-HEIGHT
5190 are specified in lines and include the mode line and header line,
5191 if any.
5192
5193 Optional argument OVERRIDE non-nil means override restrictions
5194 imposed by `window-min-height' and `window-min-width' on the size
5195 of WINDOW.
5196
5197 Return the number of lines by which WINDOW was enlarged or
5198 shrunk. If an error occurs during resizing, return nil but don't
5199 signal an error.
5200
5201 Note that even if this function makes WINDOW large enough to show
5202 _all_ lines of its buffer you might not see the first lines when
5203 WINDOW was scrolled."
5204 (interactive)
5205 ;; Do all the work in WINDOW and its buffer and restore the selected
5206 ;; window and the current buffer when we're done.
5207 (setq window (window-normalize-window window t))
5208 ;; Can't resize a full height or fixed-size window.
5209 (unless (or (window-size-fixed-p window)
5210 (window-full-height-p window))
5211 ;; `with-selected-window' should orderly restore the current buffer.
5212 (with-selected-window window
5213 ;; We are in WINDOW's buffer now.
5214 (let* (;; Adjust MIN-HEIGHT.
5215 (min-height
5216 (if override
5217 (window-min-size window nil window)
5218 (max (or min-height window-min-height)
5219 window-safe-min-height)))
5220 (max-window-height
5221 (window-total-size (frame-root-window window)))
5222 ;; Adjust MAX-HEIGHT.
5223 (max-height
5224 (if (or override (not max-height))
5225 max-window-height
5226 (min max-height max-window-height)))
5227 ;; Make `desired-height' the height necessary to show
5228 ;; all of WINDOW's buffer, constrained by MIN-HEIGHT
5229 ;; and MAX-HEIGHT.
5230 (desired-height
5231 (max
5232 (min
5233 (+ (count-screen-lines)
5234 ;; For non-minibuffers count the mode line, if any.
5235 (if (and (not (window-minibuffer-p window))
5236 mode-line-format)
5237 1
5238 0)
5239 ;; Count the header line, if any.
5240 (if header-line-format 1 0))
5241 max-height)
5242 min-height))
5243 (desired-delta
5244 (- desired-height (window-total-size window)))
5245 (delta
5246 (if (> desired-delta 0)
5247 (min desired-delta
5248 (window-max-delta window nil window))
5249 (max desired-delta
5250 (- (window-min-delta window nil window))))))
5251 ;; This `condition-case' shouldn't be necessary, but who knows?
5252 (condition-case nil
5253 (if (zerop delta)
5254 ;; Return zero if DELTA became zero in the process.
5255 0
5256 ;; Don't try to redisplay with the cursor at the end on its
5257 ;; own line--that would force a scroll and spoil things.
5258 (when (and (eobp) (bolp) (not (bobp)))
5259 ;; It's silly to put `point' at the end of the previous
5260 ;; line and so maybe force horizontal scrolling.
5261 (set-window-point window (line-beginning-position 0)))
5262 ;; Call `window-resize' with OVERRIDE argument equal WINDOW.
5263 (window-resize window delta nil window)
5264 ;; Check if the last line is surely fully visible. If
5265 ;; not, enlarge the window.
5266 (let ((end (save-excursion
5267 (goto-char (point-max))
5268 (when (and (bolp) (not (bobp)))
5269 ;; Don't include final newline.
5270 (backward-char 1))
5271 (when truncate-lines
5272 ;; If line-wrapping is turned off, test the
5273 ;; beginning of the last line for
5274 ;; visibility instead of the end, as the
5275 ;; end of the line could be invisible by
5276 ;; virtue of extending past the edge of the
5277 ;; window.
5278 (forward-line 0))
5279 (point))))
5280 (set-window-vscroll window 0)
5281 ;; This loop might in some rare pathological cases raise
5282 ;; an error - another reason for the `condition-case'.
5283 (while (and (< desired-height max-height)
5284 (= desired-height (window-total-size))
5285 (not (pos-visible-in-window-p end)))
5286 (window-resize window 1 nil window)
5287 (setq desired-height (1+ desired-height)))))
5288 (error (setq delta nil)))
5289 delta))))
5290
5291 (defun window-safely-shrinkable-p (&optional window)
5292 "Return t if WINDOW can be shrunk without shrinking other windows.
5293 WINDOW defaults to the selected window."
5294 (with-selected-window (or window (selected-window))
5295 (let ((edges (window-edges)))
5296 (or (= (nth 2 edges) (nth 2 (window-edges (previous-window))))
5297 (= (nth 0 edges) (nth 0 (window-edges (next-window))))))))
5298
5299 (defun shrink-window-if-larger-than-buffer (&optional window)
5300 "Shrink height of WINDOW if its buffer doesn't need so many lines.
5301 More precisely, shrink WINDOW vertically to be as small as
5302 possible, while still showing the full contents of its buffer.
5303 WINDOW defaults to the selected window.
5304
5305 Do not shrink WINDOW to less than `window-min-height' lines. Do
5306 nothing if the buffer contains more lines than the present window
5307 height, or if some of the window's contents are scrolled out of
5308 view, or if shrinking this window would also shrink another
5309 window, or if the window is the only window of its frame.
5310
5311 Return non-nil if the window was shrunk, nil otherwise."
5312 (interactive)
5313 (setq window (window-normalize-window window t))
5314 ;; Make sure that WINDOW is vertically combined and `point-min' is
5315 ;; visible (for whatever reason that's needed). The remaining issues
5316 ;; should be taken care of by `fit-window-to-buffer'.
5317 (when (and (window-combined-p window)
5318 (pos-visible-in-window-p (point-min) window))
5319 (fit-window-to-buffer window (window-total-size window))))
5320 \f
5321 (defun kill-buffer-and-window ()
5322 "Kill the current buffer and delete the selected window."
5323 (interactive)
5324 (let ((window-to-delete (selected-window))
5325 (buffer-to-kill (current-buffer))
5326 (delete-window-hook (lambda () (ignore-errors (delete-window)))))
5327 (unwind-protect
5328 (progn
5329 (add-hook 'kill-buffer-hook delete-window-hook t t)
5330 (if (kill-buffer (current-buffer))
5331 ;; If `delete-window' failed before, we rerun it to regenerate
5332 ;; the error so it can be seen in the echo area.
5333 (when (eq (selected-window) window-to-delete)
5334 (delete-window))))
5335 ;; If the buffer is not dead for some reason (probably because
5336 ;; of a `quit' signal), remove the hook again.
5337 (ignore-errors
5338 (with-current-buffer buffer-to-kill
5339 (remove-hook 'kill-buffer-hook delete-window-hook t))))))
5340
5341 \f
5342 (defvar recenter-last-op nil
5343 "Indicates the last recenter operation performed.
5344 Possible values: `top', `middle', `bottom', integer or float numbers.")
5345
5346 (defcustom recenter-positions '(middle top bottom)
5347 "Cycling order for `recenter-top-bottom'.
5348 A list of elements with possible values `top', `middle', `bottom',
5349 integer or float numbers that define the cycling order for
5350 the command `recenter-top-bottom'.
5351
5352 Top and bottom destinations are `scroll-margin' lines from the true
5353 window top and bottom. Middle redraws the frame and centers point
5354 vertically within the window. Integer number moves current line to
5355 the specified absolute window-line. Float number between 0.0 and 1.0
5356 means the percentage of the screen space from the top. The default
5357 cycling order is middle -> top -> bottom."
5358 :type '(repeat (choice
5359 (const :tag "Top" top)
5360 (const :tag "Middle" middle)
5361 (const :tag "Bottom" bottom)
5362 (integer :tag "Line number")
5363 (float :tag "Percentage")))
5364 :version "23.2"
5365 :group 'windows)
5366
5367 (defun recenter-top-bottom (&optional arg)
5368 "Move current buffer line to the specified window line.
5369 With no prefix argument, successive calls place point according
5370 to the cycling order defined by `recenter-positions'.
5371
5372 A prefix argument is handled like `recenter':
5373 With numeric prefix ARG, move current line to window-line ARG.
5374 With plain `C-u', move current line to window center."
5375 (interactive "P")
5376 (cond
5377 (arg (recenter arg)) ; Always respect ARG.
5378 (t
5379 (setq recenter-last-op
5380 (if (eq this-command last-command)
5381 (car (or (cdr (member recenter-last-op recenter-positions))
5382 recenter-positions))
5383 (car recenter-positions)))
5384 (let ((this-scroll-margin
5385 (min (max 0 scroll-margin)
5386 (truncate (/ (window-body-height) 4.0)))))
5387 (cond ((eq recenter-last-op 'middle)
5388 (recenter))
5389 ((eq recenter-last-op 'top)
5390 (recenter this-scroll-margin))
5391 ((eq recenter-last-op 'bottom)
5392 (recenter (- -1 this-scroll-margin)))
5393 ((integerp recenter-last-op)
5394 (recenter recenter-last-op))
5395 ((floatp recenter-last-op)
5396 (recenter (round (* recenter-last-op (window-height))))))))))
5397
5398 (define-key global-map [?\C-l] 'recenter-top-bottom)
5399
5400 (defun move-to-window-line-top-bottom (&optional arg)
5401 "Position point relative to window.
5402
5403 With a prefix argument ARG, acts like `move-to-window-line'.
5404
5405 With no argument, positions point at center of window.
5406 Successive calls position point at positions defined
5407 by `recenter-positions'."
5408 (interactive "P")
5409 (cond
5410 (arg (move-to-window-line arg)) ; Always respect ARG.
5411 (t
5412 (setq recenter-last-op
5413 (if (eq this-command last-command)
5414 (car (or (cdr (member recenter-last-op recenter-positions))
5415 recenter-positions))
5416 (car recenter-positions)))
5417 (let ((this-scroll-margin
5418 (min (max 0 scroll-margin)
5419 (truncate (/ (window-body-height) 4.0)))))
5420 (cond ((eq recenter-last-op 'middle)
5421 (call-interactively 'move-to-window-line))
5422 ((eq recenter-last-op 'top)
5423 (move-to-window-line this-scroll-margin))
5424 ((eq recenter-last-op 'bottom)
5425 (move-to-window-line (- -1 this-scroll-margin)))
5426 ((integerp recenter-last-op)
5427 (move-to-window-line recenter-last-op))
5428 ((floatp recenter-last-op)
5429 (move-to-window-line (round (* recenter-last-op (window-height))))))))))
5430
5431 (define-key global-map [?\M-r] 'move-to-window-line-top-bottom)
5432 \f
5433 ;;; Scrolling commands.
5434
5435 ;;; Scrolling commands which do not signal errors at top/bottom
5436 ;;; of buffer at first key-press (instead move to top/bottom
5437 ;;; of buffer).
5438
5439 (defcustom scroll-error-top-bottom nil
5440 "Move point to top/bottom of buffer before signaling a scrolling error.
5441 A value of nil means just signal an error if no more scrolling possible.
5442 A value of t means point moves to the beginning or the end of the buffer
5443 \(depending on scrolling direction) when no more scrolling possible.
5444 When point is already on that position, then signal an error."
5445 :type 'boolean
5446 :group 'scrolling
5447 :version "24.1")
5448
5449 (defun scroll-up-command (&optional arg)
5450 "Scroll text of selected window upward ARG lines; or near full screen if no ARG.
5451 If `scroll-error-top-bottom' is non-nil and `scroll-up' cannot
5452 scroll window further, move cursor to the bottom line.
5453 When point is already on that position, then signal an error.
5454 A near full screen is `next-screen-context-lines' less than a full screen.
5455 Negative ARG means scroll downward.
5456 If ARG is the atom `-', scroll downward by nearly full screen."
5457 (interactive "^P")
5458 (cond
5459 ((null scroll-error-top-bottom)
5460 (scroll-up arg))
5461 ((eq arg '-)
5462 (scroll-down-command nil))
5463 ((< (prefix-numeric-value arg) 0)
5464 (scroll-down-command (- (prefix-numeric-value arg))))
5465 ((eobp)
5466 (scroll-up arg)) ; signal error
5467 (t
5468 (condition-case nil
5469 (scroll-up arg)
5470 (end-of-buffer
5471 (if arg
5472 ;; When scrolling by ARG lines can't be done,
5473 ;; move by ARG lines instead.
5474 (forward-line arg)
5475 ;; When ARG is nil for full-screen scrolling,
5476 ;; move to the bottom of the buffer.
5477 (goto-char (point-max))))))))
5478
5479 (put 'scroll-up-command 'scroll-command t)
5480
5481 (defun scroll-down-command (&optional arg)
5482 "Scroll text of selected window down ARG lines; or near full screen if no ARG.
5483 If `scroll-error-top-bottom' is non-nil and `scroll-down' cannot
5484 scroll window further, move cursor to the top line.
5485 When point is already on that position, then signal an error.
5486 A near full screen is `next-screen-context-lines' less than a full screen.
5487 Negative ARG means scroll upward.
5488 If ARG is the atom `-', scroll upward by nearly full screen."
5489 (interactive "^P")
5490 (cond
5491 ((null scroll-error-top-bottom)
5492 (scroll-down arg))
5493 ((eq arg '-)
5494 (scroll-up-command nil))
5495 ((< (prefix-numeric-value arg) 0)
5496 (scroll-up-command (- (prefix-numeric-value arg))))
5497 ((bobp)
5498 (scroll-down arg)) ; signal error
5499 (t
5500 (condition-case nil
5501 (scroll-down arg)
5502 (beginning-of-buffer
5503 (if arg
5504 ;; When scrolling by ARG lines can't be done,
5505 ;; move by ARG lines instead.
5506 (forward-line (- arg))
5507 ;; When ARG is nil for full-screen scrolling,
5508 ;; move to the top of the buffer.
5509 (goto-char (point-min))))))))
5510
5511 (put 'scroll-down-command 'scroll-command t)
5512
5513 ;;; Scrolling commands which scroll a line instead of full screen.
5514
5515 (defun scroll-up-line (&optional arg)
5516 "Scroll text of selected window upward ARG lines; or one line if no ARG.
5517 If ARG is omitted or nil, scroll upward by one line.
5518 This is different from `scroll-up-command' that scrolls a full screen."
5519 (interactive "p")
5520 (scroll-up (or arg 1)))
5521
5522 (put 'scroll-up-line 'scroll-command t)
5523
5524 (defun scroll-down-line (&optional arg)
5525 "Scroll text of selected window down ARG lines; or one line if no ARG.
5526 If ARG is omitted or nil, scroll down by one line.
5527 This is different from `scroll-down-command' that scrolls a full screen."
5528 (interactive "p")
5529 (scroll-down (or arg 1)))
5530
5531 (put 'scroll-down-line 'scroll-command t)
5532
5533 \f
5534 (defun scroll-other-window-down (lines)
5535 "Scroll the \"other window\" down.
5536 For more details, see the documentation for `scroll-other-window'."
5537 (interactive "P")
5538 (scroll-other-window
5539 ;; Just invert the argument's meaning.
5540 ;; We can do that without knowing which window it will be.
5541 (if (eq lines '-) nil
5542 (if (null lines) '-
5543 (- (prefix-numeric-value lines))))))
5544
5545 (defun beginning-of-buffer-other-window (arg)
5546 "Move point to the beginning of the buffer in the other window.
5547 Leave mark at previous position.
5548 With arg N, put point N/10 of the way from the true beginning."
5549 (interactive "P")
5550 (let ((orig-window (selected-window))
5551 (window (other-window-for-scrolling)))
5552 ;; We use unwind-protect rather than save-window-excursion
5553 ;; because the latter would preserve the things we want to change.
5554 (unwind-protect
5555 (progn
5556 (select-window window)
5557 ;; Set point and mark in that window's buffer.
5558 (with-no-warnings
5559 (beginning-of-buffer arg))
5560 ;; Set point accordingly.
5561 (recenter '(t)))
5562 (select-window orig-window))))
5563
5564 (defun end-of-buffer-other-window (arg)
5565 "Move point to the end of the buffer in the other window.
5566 Leave mark at previous position.
5567 With arg N, put point N/10 of the way from the true end."
5568 (interactive "P")
5569 ;; See beginning-of-buffer-other-window for comments.
5570 (let ((orig-window (selected-window))
5571 (window (other-window-for-scrolling)))
5572 (unwind-protect
5573 (progn
5574 (select-window window)
5575 (with-no-warnings
5576 (end-of-buffer arg))
5577 (recenter '(t)))
5578 (select-window orig-window))))
5579 \f
5580 (defvar mouse-autoselect-window-timer nil
5581 "Timer used by delayed window autoselection.")
5582
5583 (defvar mouse-autoselect-window-position nil
5584 "Last mouse position recorded by delayed window autoselection.")
5585
5586 (defvar mouse-autoselect-window-window nil
5587 "Last window recorded by delayed window autoselection.")
5588
5589 (defvar mouse-autoselect-window-state nil
5590 "When non-nil, special state of delayed window autoselection.
5591 Possible values are `suspend' (suspend autoselection after a menu or
5592 scrollbar interaction) and `select' (the next invocation of
5593 `handle-select-window' shall select the window immediately).")
5594
5595 (defun mouse-autoselect-window-cancel (&optional force)
5596 "Cancel delayed window autoselection.
5597 Optional argument FORCE means cancel unconditionally."
5598 (unless (and (not force)
5599 ;; Don't cancel for select-window or select-frame events
5600 ;; or when the user drags a scroll bar.
5601 (or (memq this-command
5602 '(handle-select-window handle-switch-frame))
5603 (and (eq this-command 'scroll-bar-toolkit-scroll)
5604 (memq (nth 4 (event-end last-input-event))
5605 '(handle end-scroll)))))
5606 (setq mouse-autoselect-window-state nil)
5607 (when (timerp mouse-autoselect-window-timer)
5608 (cancel-timer mouse-autoselect-window-timer))
5609 (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel)))
5610
5611 (defun mouse-autoselect-window-start (mouse-position &optional window suspend)
5612 "Start delayed window autoselection.
5613 MOUSE-POSITION is the last position where the mouse was seen as returned
5614 by `mouse-position'. Optional argument WINDOW non-nil denotes the
5615 window where the mouse was seen. Optional argument SUSPEND non-nil
5616 means suspend autoselection."
5617 ;; Record values for MOUSE-POSITION, WINDOW, and SUSPEND.
5618 (setq mouse-autoselect-window-position mouse-position)
5619 (when window (setq mouse-autoselect-window-window window))
5620 (setq mouse-autoselect-window-state (when suspend 'suspend))
5621 ;; Install timer which runs `mouse-autoselect-window-select' after
5622 ;; `mouse-autoselect-window' seconds.
5623 (setq mouse-autoselect-window-timer
5624 (run-at-time
5625 (abs mouse-autoselect-window) nil 'mouse-autoselect-window-select)))
5626
5627 (defun mouse-autoselect-window-select ()
5628 "Select window with delayed window autoselection.
5629 If the mouse position has stabilized in a non-selected window, select
5630 that window. The minibuffer window is selected only if the minibuffer
5631 is active. This function is run by `mouse-autoselect-window-timer'."
5632 (ignore-errors
5633 (let* ((mouse-position (mouse-position))
5634 (window
5635 (ignore-errors
5636 (window-at (cadr mouse-position) (cddr mouse-position)
5637 (car mouse-position)))))
5638 (cond
5639 ((or (menu-or-popup-active-p)
5640 (and window
5641 (not (coordinates-in-window-p (cdr mouse-position) window))))
5642 ;; A menu / popup dialog is active or the mouse is on the scroll-bar
5643 ;; of WINDOW, temporarily suspend delayed autoselection.
5644 (mouse-autoselect-window-start mouse-position nil t))
5645 ((eq mouse-autoselect-window-state 'suspend)
5646 ;; Delayed autoselection was temporarily suspended, reenable it.
5647 (mouse-autoselect-window-start mouse-position))
5648 ((and window (not (eq window (selected-window)))
5649 (or (not (numberp mouse-autoselect-window))
5650 (and (> mouse-autoselect-window 0)
5651 ;; If `mouse-autoselect-window' is positive, select
5652 ;; window if the window is the same as before.
5653 (eq window mouse-autoselect-window-window))
5654 ;; Otherwise select window if the mouse is at the same
5655 ;; position as before. Observe that the first test after
5656 ;; starting autoselection usually fails since the value of
5657 ;; `mouse-autoselect-window-position' recorded there is the
5658 ;; position where the mouse has entered the new window and
5659 ;; not necessarily where the mouse has stopped moving.
5660 (equal mouse-position mouse-autoselect-window-position))
5661 ;; The minibuffer is a candidate window if it's active.
5662 (or (not (window-minibuffer-p window))
5663 (eq window (active-minibuffer-window))))
5664 ;; Mouse position has stabilized in non-selected window: Cancel
5665 ;; delayed autoselection and try to select that window.
5666 (mouse-autoselect-window-cancel t)
5667 ;; Select window where mouse appears unless the selected window is the
5668 ;; minibuffer. Use `unread-command-events' in order to execute pre-
5669 ;; and post-command hooks and trigger idle timers. To avoid delaying
5670 ;; autoselection again, set `mouse-autoselect-window-state'."
5671 (unless (window-minibuffer-p (selected-window))
5672 (setq mouse-autoselect-window-state 'select)
5673 (setq unread-command-events
5674 (cons (list 'select-window (list window))
5675 unread-command-events))))
5676 ((or (and window (eq window (selected-window)))
5677 (not (numberp mouse-autoselect-window))
5678 (equal mouse-position mouse-autoselect-window-position))
5679 ;; Mouse position has either stabilized in the selected window or at
5680 ;; `mouse-autoselect-window-position': Cancel delayed autoselection.
5681 (mouse-autoselect-window-cancel t))
5682 (t
5683 ;; Mouse position has not stabilized yet, resume delayed
5684 ;; autoselection.
5685 (mouse-autoselect-window-start mouse-position window))))))
5686
5687 (defun handle-select-window (event)
5688 "Handle select-window events."
5689 (interactive "e")
5690 (let ((window (posn-window (event-start event))))
5691 (unless (or (not (window-live-p window))
5692 ;; Don't switch if we're currently in the minibuffer.
5693 ;; This tries to work around problems where the
5694 ;; minibuffer gets unselected unexpectedly, and where
5695 ;; you then have to move your mouse all the way down to
5696 ;; the minibuffer to select it.
5697 (window-minibuffer-p (selected-window))
5698 ;; Don't switch to minibuffer window unless it's active.
5699 (and (window-minibuffer-p window)
5700 (not (minibuffer-window-active-p window)))
5701 ;; Don't switch when autoselection shall be delayed.
5702 (and (numberp mouse-autoselect-window)
5703 (not (zerop mouse-autoselect-window))
5704 (not (eq mouse-autoselect-window-state 'select))
5705 (progn
5706 ;; Cancel any delayed autoselection.
5707 (mouse-autoselect-window-cancel t)
5708 ;; Start delayed autoselection from current mouse
5709 ;; position and window.
5710 (mouse-autoselect-window-start (mouse-position) window)
5711 ;; Executing a command cancels delayed autoselection.
5712 (add-hook
5713 'pre-command-hook 'mouse-autoselect-window-cancel))))
5714 (when mouse-autoselect-window
5715 ;; Reset state of delayed autoselection.
5716 (setq mouse-autoselect-window-state nil)
5717 ;; Run `mouse-leave-buffer-hook' when autoselecting window.
5718 (run-hooks 'mouse-leave-buffer-hook))
5719 (select-window window))))
5720
5721 (defun truncated-partial-width-window-p (&optional window)
5722 "Return non-nil if lines in WINDOW are specifically truncated due to its width.
5723 WINDOW defaults to the selected window.
5724 Return nil if WINDOW is not a partial-width window
5725 (regardless of the value of `truncate-lines').
5726 Otherwise, consult the value of `truncate-partial-width-windows'
5727 for the buffer shown in WINDOW."
5728 (unless window
5729 (setq window (selected-window)))
5730 (unless (window-full-width-p window)
5731 (let ((t-p-w-w (buffer-local-value 'truncate-partial-width-windows
5732 (window-buffer window))))
5733 (if (integerp t-p-w-w)
5734 (< (window-width window) t-p-w-w)
5735 t-p-w-w))))
5736 \f
5737 ;; Some of these are in tutorial--default-keys, so update that if you
5738 ;; change these.
5739 (define-key ctl-x-map "0" 'delete-window)
5740 (define-key ctl-x-map "1" 'delete-other-windows)
5741 (define-key ctl-x-map "2" 'split-window-below)
5742 (define-key ctl-x-map "3" 'split-window-right)
5743 (define-key ctl-x-map "o" 'other-window)
5744 (define-key ctl-x-map "^" 'enlarge-window)
5745 (define-key ctl-x-map "}" 'enlarge-window-horizontally)
5746 (define-key ctl-x-map "{" 'shrink-window-horizontally)
5747 (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer)
5748 (define-key ctl-x-map "+" 'balance-windows)
5749 (define-key ctl-x-4-map "0" 'kill-buffer-and-window)
5750
5751 ;;; window.el ends here