annotate lisp/window.el @ 99226:9065d5721384

(Fdaemon_initialized): Initialize nfd.
author Chong Yidong <cyd@stupidchicken.com>
date Wed, 29 Oct 2008 18:03:03 +0000
parents 6fff8b7a31ca
children 57c1a97ddf78
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1 ;;; window.el --- GNU Emacs window commands aside from those written in C
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
2
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
3 ;; Copyright (C) 1985, 1989, 1992, 1993, 1994, 2000, 2001, 2002,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
4 ;; 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
5
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
6 ;; Maintainer: FSF
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
7 ;; Keywords: internal
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
8
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
9 ;; This file is part of GNU Emacs.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
10
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
13 ;; the Free Software Foundation, either version 3 of the License, or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
14 ;; (at your option) any later version.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
15
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
19 ;; GNU General Public License for more details.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
20
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
21 ;; You should have received a copy of the GNU General Public License
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
23
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
24 ;;; Commentary:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
25
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
26 ;; Window tree functions.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
27
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
28 ;;; Code:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
29
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
30 (eval-when-compile (require 'cl))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
31
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
32 (defvar window-size-fixed nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
33 "*Non-nil in a buffer means windows displaying the buffer are fixed-size.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
34 If the value is `height', then only the window's height is fixed.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
35 If the value is `width', then only the window's width is fixed.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
36 Any other non-nil value fixes both the width and the height.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
37 Emacs won't change the size of any window displaying that buffer,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
38 unless you explicitly change the size, or Emacs has no other choice.")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
39 (make-variable-buffer-local 'window-size-fixed)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
40
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
41 (defmacro save-selected-window (&rest body)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
42 "Execute BODY, then select the window that was selected before BODY.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
43 The value returned is the value of the last form in BODY.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
44
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
45 This macro saves and restores the current buffer, since otherwise
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
46 its normal operation could potentially make a different
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
47 buffer current. It does not alter the buffer list ordering.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
48
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
49 This macro saves and restores the selected window, as well as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
50 the selected window in each frame. If the previously selected
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
51 window of some frame is no longer live at the end of BODY, that
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
52 frame's selected window is left alone. If the selected window is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
53 no longer live, then whatever window is selected at the end of
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
54 BODY remains selected."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
55 `(let ((save-selected-window-window (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
56 ;; It is necessary to save all of these, because calling
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
57 ;; select-window changes frame-selected-window for whatever
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
58 ;; frame that window is in.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
59 (save-selected-window-alist
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
60 (mapcar (lambda (frame) (cons frame (frame-selected-window frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
61 (frame-list))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
62 (save-current-buffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
63 (unwind-protect
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
64 (progn ,@body)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
65 (dolist (elt save-selected-window-alist)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
66 (and (frame-live-p (car elt))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
67 (window-live-p (cdr elt))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
68 (set-frame-selected-window (car elt) (cdr elt))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
69 (if (window-live-p save-selected-window-window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
70 (select-window save-selected-window-window))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
71
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
72 (defun window-body-height (&optional window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
73 "Return number of lines in window WINDOW for actual buffer text.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
74 This does not include the mode line (if any) or the header line (if any)."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
75 (or window (setq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
76 (if (window-minibuffer-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
77 (window-height window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
78 (with-current-buffer (window-buffer window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
79 (max 1 (- (window-height window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
80 (if mode-line-format 1 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
81 (if header-line-format 1 0))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
82
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
83 (defun one-window-p (&optional nomini all-frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
84 "Return non-nil if the selected window is the only window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
85 Optional arg NOMINI non-nil means don't count the minibuffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
86 even if it is active. Otherwise, the minibuffer is counted
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
87 when it is active.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
88
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
89 The optional arg ALL-FRAMES t means count windows on all frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
90 If it is `visible', count windows on all visible frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
91 ALL-FRAMES nil or omitted means count only the selected frame,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
92 plus the minibuffer it uses (which may be on another frame).
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
93 ALL-FRAMES 0 means count all windows in all visible or iconified frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
94 If ALL-FRAMES is anything else, count only the selected frame."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
95 (let ((base-window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
96 (if (and nomini (eq base-window (minibuffer-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
97 (setq base-window (next-window base-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
98 (eq base-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
99 (next-window base-window (if nomini 'arg) all-frames))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
100
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
101 (defun window-current-scroll-bars (&optional window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
102 "Return the current scroll-bar settings in window WINDOW.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
103 Value is a cons (VERTICAL . HORIZONTAL) where VERTICAL specifies the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
104 current location of the vertical scroll-bars (left, right, or nil),
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
105 and HORIZONTAL specifies the current location of the horizontal scroll
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
106 bars (top, bottom, or nil)."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
107 (let ((vert (nth 2 (window-scroll-bars window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
108 (hor nil))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
109 (when (or (eq vert t) (eq hor t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
110 (let ((fcsb (frame-current-scroll-bars
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
111 (window-frame (or window (selected-window))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
112 (if (eq vert t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
113 (setq vert (car fcsb)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
114 (if (eq hor t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
115 (setq hor (cdr fcsb)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
116 (cons vert hor)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
117
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
118 (defun walk-windows (proc &optional minibuf all-frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
119 "Cycle through all visible windows, calling PROC for each one.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
120 PROC is called with a window as argument.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
121
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
122 Optional second arg MINIBUF t means count the minibuffer window even
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
123 if not active. MINIBUF nil or omitted means count the minibuffer only if
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
124 it is active. MINIBUF neither t nor nil means not to count the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
125 minibuffer even if it is active.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
126
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
127 Several frames may share a single minibuffer; if the minibuffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
128 counts, all windows on all frames that share that minibuffer count
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
129 too. Therefore, if you are using a separate minibuffer frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
130 and the minibuffer is active and MINIBUF says it counts,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
131 `walk-windows' includes the windows in the frame from which you
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
132 entered the minibuffer, as well as the minibuffer window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
133
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
134 ALL-FRAMES is the optional third argument.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
135 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
136 ALL-FRAMES = `visible' means include windows on all visible frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
137 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
138 ALL-FRAMES = t means include windows on all frames including invisible frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
139 If ALL-FRAMES is a frame, it means include windows on that frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
140 Anything else means restrict to the selected frame."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
141 ;; If we start from the minibuffer window, don't fail to come back to it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
142 (if (window-minibuffer-p (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
143 (setq minibuf t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
144 (save-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
145 (if (framep all-frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
146 (select-window (frame-first-window all-frames)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
147 (let* (walk-windows-already-seen
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
148 (walk-windows-current (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
149 (while (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
150 (setq walk-windows-current
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
151 (next-window walk-windows-current minibuf all-frames))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
152 (not (memq walk-windows-current walk-windows-already-seen)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
153 (setq walk-windows-already-seen
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
154 (cons walk-windows-current walk-windows-already-seen))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
155 (funcall proc walk-windows-current)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
156
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
157 (defun get-window-with-predicate (predicate &optional minibuf
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
158 all-frames default)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
159 "Return a window satisfying PREDICATE.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
160
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
161 This function cycles through all visible windows using `walk-windows',
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
162 calling PREDICATE on each one. PREDICATE is called with a window as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
163 argument. The first window for which PREDICATE returns a non-nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
164 value is returned. If no window satisfies PREDICATE, DEFAULT is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
165 returned.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
166
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
167 Optional second arg MINIBUF t means count the minibuffer window even
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
168 if not active. MINIBUF nil or omitted means count the minibuffer only if
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
169 it is active. MINIBUF neither t nor nil means not to count the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
170 minibuffer even if it is active.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
171
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
172 Several frames may share a single minibuffer; if the minibuffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
173 counts, all windows on all frames that share that minibuffer count
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
174 too. Therefore, if you are using a separate minibuffer frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
175 and the minibuffer is active and MINIBUF says it counts,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
176 `walk-windows' includes the windows in the frame from which you
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
177 entered the minibuffer, as well as the minibuffer window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
178
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
179 ALL-FRAMES is the optional third argument.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
180 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
181 ALL-FRAMES = `visible' means include windows on all visible frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
182 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
183 ALL-FRAMES = t means include windows on all frames including invisible frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
184 If ALL-FRAMES is a frame, it means include windows on that frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
185 Anything else means restrict to the selected frame."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
186 (catch 'found
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
187 (walk-windows #'(lambda (window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
188 (when (funcall predicate window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
189 (throw 'found window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
190 minibuf all-frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
191 default))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
192
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
193 (defalias 'some-window 'get-window-with-predicate)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
194
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
195 ;; This should probably be written in C (i.e., without using `walk-windows').
99122
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
196 (defun get-buffer-window-list (&optional buffer-or-name minibuf all-frames)
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
197 "Return list of all windows displaying BUFFER-OR-NAME, or nil if none.
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
198 BUFFER-OR-NAME may be a buffer or the name of an existing buffer
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
199 and defaults to nil.
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
200 See `walk-windows' for the meaning of MINIBUF and ALL-FRAMES."
99122
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
201 (let ((buffer (cond
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
202 ((not buffer-or-name) (current-buffer))
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
203 ((bufferp buffer-or-name) buffer-or-name)
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
204 (t (get-buffer buffer-or-name))))
6fff8b7a31ca (get-buffer-window-list): Rename buffer argument to
Martin Rudalics <rudalics@gmx.at>
parents: 98886
diff changeset
205 windows)
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
206 (walk-windows (function (lambda (window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
207 (if (eq (window-buffer window) buffer)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
208 (setq windows (cons window windows)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
209 minibuf all-frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
210 windows))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
211
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
212 (defun minibuffer-window-active-p (window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
213 "Return t if WINDOW (a minibuffer window) is now active."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
214 (eq window (active-minibuffer-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
215
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
216 (defun count-windows (&optional minibuf)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
217 "Return the number of visible windows.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
218 This counts the windows in the selected frame and (if the minibuffer is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
219 to be counted) its minibuffer frame (if that's not the same frame).
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
220 The optional arg MINIBUF non-nil means count the minibuffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
221 even if it is inactive."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
222 (let ((count 0))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
223 (walk-windows (lambda (w) (setq count (+ count 1)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
224 minibuf)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
225 count))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
226
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
227 (defun window-safely-shrinkable-p (&optional window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
228 "Non-nil if the WINDOW can be shrunk without shrinking other windows.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
229 If WINDOW is nil or omitted, it defaults to the currently selected window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
230 (with-selected-window (or window (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
231 (let ((edges (window-edges)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
232 (or (= (nth 2 edges) (nth 2 (window-edges (previous-window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
233 (= (nth 0 edges) (nth 0 (window-edges (next-window))))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
234
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
235
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
236 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
237 ;;; `balance-windows' subroutines using `window-tree'
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
238
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
239 ;;; Translate from internal window tree format
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
240
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
241 (defun bw-get-tree (&optional window-or-frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
242 "Get a window split tree in our format.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
243
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
244 WINDOW-OR-FRAME must be nil, a frame, or a window. If it is nil,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
245 then the whole window split tree for `selected-frame' is returned.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
246 If it is a frame, then this is used instead. If it is a window,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
247 then the smallest tree containing that window is returned."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
248 (when window-or-frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
249 (unless (or (framep window-or-frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
250 (windowp window-or-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
251 (error "Not a frame or window: %s" window-or-frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
252 (let ((subtree (bw-find-tree-sub window-or-frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
253 (when subtree
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
254 (if (integerp subtree)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
255 nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
256 (bw-get-tree-1 subtree)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
257
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
258 (defun bw-get-tree-1 (split)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
259 (if (windowp split)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
260 split
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
261 (let ((dir (car split))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
262 (edges (car (cdr split)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
263 (childs (cdr (cdr split))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
264 (list
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
265 (cons 'dir (if dir 'ver 'hor))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
266 (cons 'b (nth 3 edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
267 (cons 'r (nth 2 edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
268 (cons 't (nth 1 edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
269 (cons 'l (nth 0 edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
270 (cons 'childs (mapcar #'bw-get-tree-1 childs))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
271
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
272 (defun bw-find-tree-sub (window-or-frame &optional get-parent)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
273 (let* ((window (when (windowp window-or-frame) window-or-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
274 (frame (when (windowp window) (window-frame window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
275 (wt (car (window-tree frame))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
276 (when (< 1 (length (window-list frame 0)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
277 (if window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
278 (bw-find-tree-sub-1 wt window get-parent)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
279 wt))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
280
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
281 (defun bw-find-tree-sub-1 (tree win &optional get-parent)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
282 (unless (windowp win) (error "Not a window: %s" win))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
283 (if (memq win tree)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
284 (if get-parent
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
285 get-parent
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
286 tree)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
287 (let ((childs (cdr (cdr tree)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
288 child
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
289 subtree)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
290 (while (and childs (not subtree))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
291 (setq child (car childs))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
292 (setq childs (cdr childs))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
293 (when (and child (listp child))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
294 (setq subtree (bw-find-tree-sub-1 child win get-parent))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
295 (if (integerp subtree)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
296 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
297 (if (= 1 subtree)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
298 tree
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
299 (1- subtree)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
300 subtree
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
301 ))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
302
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
303 ;;; Window or object edges
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
304
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
305 (defun bw-l (obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
306 "Left edge of OBJ."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
307 (if (windowp obj) (nth 0 (window-edges obj)) (cdr (assq 'l obj))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
308 (defun bw-t (obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
309 "Top edge of OBJ."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
310 (if (windowp obj) (nth 1 (window-edges obj)) (cdr (assq 't obj))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
311 (defun bw-r (obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
312 "Right edge of OBJ."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
313 (if (windowp obj) (nth 2 (window-edges obj)) (cdr (assq 'r obj))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
314 (defun bw-b (obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
315 "Bottom edge of OBJ."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
316 (if (windowp obj) (nth 3 (window-edges obj)) (cdr (assq 'b obj))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
317
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
318 ;;; Split directions
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
319
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
320 (defun bw-dir (obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
321 "Return window split tree direction if OBJ.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
322 If OBJ is a window return 'both. If it is a window split tree
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
323 then return its direction."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
324 (if (symbolp obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
325 obj
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
326 (if (windowp obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
327 'both
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
328 (let ((dir (cdr (assq 'dir obj))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
329 (unless (memq dir '(hor ver both))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
330 (error "Can't find dir in %s" obj))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
331 dir))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
332
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
333 (defun bw-eqdir (obj1 obj2)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
334 "Return t if window split tree directions are equal.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
335 OBJ1 and OBJ2 should be either windows or window split trees in
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
336 our format. The directions returned by `bw-dir' are compared and
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
337 t is returned if they are `eq' or one of them is 'both."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
338 (let ((dir1 (bw-dir obj1))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
339 (dir2 (bw-dir obj2)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
340 (or (eq dir1 dir2)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
341 (eq dir1 'both)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
342 (eq dir2 'both))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
343
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
344 ;;; Building split tree
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
345
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
346 (defun bw-refresh-edges (obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
347 "Refresh the edge information of OBJ and return OBJ."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
348 (unless (windowp obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
349 (let ((childs (cdr (assq 'childs obj)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
350 (ol 1000)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
351 (ot 1000)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
352 (or -1)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
353 (ob -1))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
354 (dolist (o childs)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
355 (when (> ol (bw-l o)) (setq ol (bw-l o)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
356 (when (> ot (bw-t o)) (setq ot (bw-t o)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
357 (when (< or (bw-r o)) (setq or (bw-r o)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
358 (when (< ob (bw-b o)) (setq ob (bw-b o))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
359 (setq obj (delq 'l obj))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
360 (setq obj (delq 't obj))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
361 (setq obj (delq 'r obj))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
362 (setq obj (delq 'b obj))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
363 (add-to-list 'obj (cons 'l ol))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
364 (add-to-list 'obj (cons 't ot))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
365 (add-to-list 'obj (cons 'r or))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
366 (add-to-list 'obj (cons 'b ob))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
367 ))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
368 obj)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
369
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
370 ;;; Balance windows
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
371
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
372 (defun balance-windows (&optional window-or-frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
373 "Make windows the same heights or widths in window split subtrees.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
374
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
375 When called non-interactively WINDOW-OR-FRAME may be either a
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
376 window or a frame. It then balances the windows on the implied
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
377 frame. If the parameter is a window only the corresponding window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
378 subtree is balanced."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
379 (interactive)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
380 (let (
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
381 (wt (bw-get-tree window-or-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
382 (w)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
383 (h)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
384 (tried-sizes)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
385 (last-sizes)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
386 (windows (window-list nil 0)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
387 (when wt
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
388 (while (not (member last-sizes tried-sizes))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
389 (when last-sizes (setq tried-sizes (cons last-sizes tried-sizes)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
390 (setq last-sizes (mapcar (lambda (w)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
391 (window-edges w))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
392 windows))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
393 (when (eq 'hor (bw-dir wt))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
394 (setq w (- (bw-r wt) (bw-l wt))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
395 (when (eq 'ver (bw-dir wt))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
396 (setq h (- (bw-b wt) (bw-t wt))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
397 (bw-balance-sub wt w h)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
398
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
399 (defun bw-adjust-window (window delta horizontal)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
400 "Wrapper around `adjust-window-trailing-edge' with error checking.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
401 Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
402 ;; `adjust-window-trailing-edge' may fail if delta is too large.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
403 (while (>= (abs delta) 1)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
404 (condition-case err
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
405 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
406 (adjust-window-trailing-edge window delta horizontal)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
407 (setq delta 0))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
408 (error
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
409 ;;(message "adjust: %s" (error-message-string err))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
410 (setq delta (/ delta 2))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
411
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
412 (defun bw-balance-sub (wt w h)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
413 (setq wt (bw-refresh-edges wt))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
414 (unless w (setq w (- (bw-r wt) (bw-l wt))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
415 (unless h (setq h (- (bw-b wt) (bw-t wt))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
416 (if (windowp wt)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
417 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
418 (when w
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
419 (let ((dw (- w (- (bw-r wt) (bw-l wt)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
420 (when (/= 0 dw)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
421 (bw-adjust-window wt dw t))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
422 (when h
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
423 (let ((dh (- h (- (bw-b wt) (bw-t wt)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
424 (when (/= 0 dh)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
425 (bw-adjust-window wt dh nil)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
426 (let* ((childs (cdr (assq 'childs wt)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
427 (cw (when w (/ w (if (bw-eqdir 'hor wt) (length childs) 1))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
428 (ch (when h (/ h (if (bw-eqdir 'ver wt) (length childs) 1)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
429 (dolist (c childs)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
430 (bw-balance-sub c cw ch)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
431
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
432 ;;; A different solution to balance-windows
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
433
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
434 (defun window-fixed-size-p (&optional window direction)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
435 "Non-nil if WINDOW cannot be resized in DIRECTION.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
436 DIRECTION can be nil (i.e. any), `height' or `width'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
437 (with-current-buffer (window-buffer window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
438 (let ((fixed (and (boundp 'window-size-fixed) window-size-fixed)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
439 (when fixed
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
440 (not (and direction
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
441 (member (cons direction window-size-fixed)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
442 '((height . width) (width . height)))))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
443
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
444 (defvar window-area-factor 1
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
445 "Factor by which the window area should be over-estimated.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
446 This is used by `balance-windows-area'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
447 Changing this globally has no effect.")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
448 (make-variable-buffer-local 'window-area-factor)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
449
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
450 (defun balance-windows-area ()
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
451 "Make all visible windows the same area (approximately).
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
452 See also `window-area-factor' to change the relative size of specific buffers."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
453 (interactive)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
454 (let* ((unchanged 0) (carry 0) (round 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
455 ;; Remove fixed-size windows.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
456 (wins (delq nil (mapcar (lambda (win)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
457 (if (not (window-fixed-size-p win)) win))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
458 (window-list nil 'nomini))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
459 (changelog nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
460 next)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
461 ;; Resizing a window changes the size of surrounding windows in complex
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
462 ;; ways, so it's difficult to balance them all. The introduction of
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
463 ;; `adjust-window-trailing-edge' made it a bit easier, but it is still
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
464 ;; very difficult to do. `balance-window' above takes an off-line
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
465 ;; approach: get the whole window tree, then balance it, then try to
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
466 ;; adjust the windows so they fit the result.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
467 ;; Here, instead, we take a "local optimization" approach, where we just
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
468 ;; go through all the windows several times until nothing needs to be
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
469 ;; changed. The main problem with this approach is that it's difficult
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
470 ;; to make sure it terminates, so we use some heuristic to try and break
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
471 ;; off infinite loops.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
472 ;; After a round without any change, we allow a second, to give a chance
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
473 ;; to the carry to propagate a minor imbalance from the end back to
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
474 ;; the beginning.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
475 (while (< unchanged 2)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
476 ;; (message "New round")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
477 (setq unchanged (1+ unchanged) round (1+ round))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
478 (dolist (win wins)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
479 (setq next win)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
480 (while (progn (setq next (next-window next))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
481 (window-fixed-size-p next)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
482 ;; (assert (eq next (or (cadr (member win wins)) (car wins))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
483 (let* ((horiz
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
484 (< (car (window-edges win)) (car (window-edges next))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
485 (areadiff (/ (- (* (window-height next) (window-width next)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
486 (buffer-local-value 'window-area-factor
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
487 (window-buffer next)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
488 (* (window-height win) (window-width win)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
489 (buffer-local-value 'window-area-factor
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
490 (window-buffer win))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
491 (max (buffer-local-value 'window-area-factor
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
492 (window-buffer win))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
493 (buffer-local-value 'window-area-factor
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
494 (window-buffer next)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
495 (edgesize (if horiz
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
496 (+ (window-height win) (window-height next))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
497 (+ (window-width win) (window-width next))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
498 (diff (/ areadiff edgesize)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
499 (when (zerop diff)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
500 ;; Maybe diff is actually closer to 1 than to 0.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
501 (setq diff (/ (* 3 areadiff) (* 2 edgesize))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
502 (when (and (zerop diff) (not (zerop areadiff)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
503 (setq diff (/ (+ areadiff carry) edgesize))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
504 ;; Change things smoothly.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
505 (if (or (> diff 1) (< diff -1)) (setq diff (/ diff 2))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
506 (if (zerop diff)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
507 ;; Make sure negligible differences don't accumulate to
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
508 ;; become significant.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
509 (setq carry (+ carry areadiff))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
510 (bw-adjust-window win diff horiz)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
511 ;; (sit-for 0.5)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
512 (let ((change (cons win (window-edges win))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
513 ;; If the same change has been seen already for this window,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
514 ;; we're most likely in an endless loop, so don't count it as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
515 ;; a change.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
516 (unless (member change changelog)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
517 (push change changelog)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
518 (setq unchanged 0 carry 0)))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
519 ;; We've now basically balanced all the windows.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
520 ;; But there may be some minor off-by-one imbalance left over,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
521 ;; so let's do some fine tuning.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
522 ;; (bw-finetune wins)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
523 ;; (message "Done in %d rounds" round)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
524 ))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
525
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
526
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
527 (defcustom display-buffer-function nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
528 "If non-nil, function to call to handle `display-buffer'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
529 It will receive two args, the buffer and a flag which if non-nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
530 means that the currently selected window is not acceptable. It
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
531 should choose or create a window, display the specified buffer in
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
532 it, and return the window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
533
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
534 Commands such as `switch-to-buffer-other-window' and
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
535 `find-file-other-window' work using this function."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
536 :type '(choice
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
537 (const nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
538 (function :tag "function"))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
539 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
540
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
541 (defun special-display-p (buffer-name)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
542 "Return non-nil if a buffer named BUFFER-NAME gets a special frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
543 If the value is t, `display-buffer' or `pop-to-buffer' would
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
544 create a special frame for that buffer using the default frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
545 parameters.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
546
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
547 If the value is a list, it is a list of frame parameters that
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
548 would be used to make a frame for that buffer. The variables
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
549 `special-display-buffer-names' and `special-display-regexps'
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
550 control this."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
551 (let (tmp)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
552 (cond
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
553 ((not (stringp buffer-name)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
554 ;; Make sure to return t in the following two cases.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
555 ((member buffer-name special-display-buffer-names) t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
556 ((setq tmp (assoc buffer-name special-display-buffer-names)) (cdr tmp))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
557 ((catch 'found
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
558 (dolist (regexp special-display-regexps)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
559 (cond
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
560 ((stringp regexp)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
561 (when (string-match-p regexp buffer-name)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
562 (throw 'found t)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
563 ((and (consp regexp) (stringp (car regexp))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
564 (string-match-p (car regexp) buffer-name))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
565 (throw 'found (cdr regexp))))))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
566
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
567 (defcustom special-display-buffer-names nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
568 "List of buffer names that should have their own special frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
569 Displaying a buffer with `display-buffer' or `pop-to-buffer', if
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
570 its name is in this list, makes a special frame for it using
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
571 `special-display-function'. See also `special-display-regexps'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
572
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
573 An element of the list can be a list instead of just a string.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
574 There are two ways to use a list as an element:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
575 (BUFFER FRAME-PARAMETERS...) (BUFFER FUNCTION OTHER-ARGS...)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
576 In the first case, the FRAME-PARAMETERS are pairs of the form
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
577 \(PARAMETER . VALUE); these parameter values are used to create
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
578 the frame. In the second case, FUNCTION is called with BUFFER as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
579 the first argument, followed by the OTHER-ARGS--it can display
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
580 BUFFER in any way it likes. All this is done by the function
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
581 found in `special-display-function'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
582
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
583 If the specified frame parameters include (same-buffer . t), the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
584 buffer is displayed in the currently selected window. Otherwise, if
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
585 they include (same-frame . t), the buffer is displayed in a new window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
586 in the currently selected frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
587
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
588 If this variable appears \"not to work\", because you add a name to it
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
589 but that buffer still appears in the selected window, look at the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
590 values of `same-window-buffer-names' and `same-window-regexps'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
591 Those variables take precedence over this one."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
592 :type '(repeat (choice :tag "Buffer"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
593 :value ""
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
594 (string :format "%v")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
595 (cons :tag "With attributes"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
596 :format "%v"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
597 :value ("" . nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
598 (string :format "%v")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
599 (repeat :tag "Attributes"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
600 (cons :format "%v"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
601 (symbol :tag "Parameter")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
602 (sexp :tag "Value"))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
603 :group 'frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
604
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
605 (defcustom special-display-regexps nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
606 "List of regexps saying which buffers should have their own special frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
607 When displaying a buffer with `display-buffer' or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
608 `pop-to-buffer', if any regexp in this list matches the buffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
609 name, it makes a special frame for the buffer by calling
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
610 `special-display-function'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
611
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
612 An element of the list can be a list instead of just a string.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
613 There are two ways to use a list as an element:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
614 (REGEXP FRAME-PARAMETERS...) (REGEXP FUNCTION OTHER-ARGS...)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
615 In the first case, the FRAME-PARAMETERS are pairs of the form
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
616 \(PARAMETER . VALUE); these parameter values are used to create
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
617 the frame. In the second case, FUNCTION is called with BUFFER as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
618 the first argument, followed by the OTHER-ARGS--it can display
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
619 the buffer in any way it likes. All this is done by the function
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
620 found in `special-display-function'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
621
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
622 If the specified frame parameters include (same-buffer . t), the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
623 buffer is displayed in the currently selected window. Otherwise,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
624 if they include (same-frame . t), the buffer is displayed in a
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
625 new window in the currently selected frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
626
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
627 If this variable appears \"not to work\", because you add a
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
628 regexp to it but the matching buffers still appear in the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
629 selected window, look at the values of `same-window-buffer-names'
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
630 and `same-window-regexps'. Those variables take precedence over
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
631 this one."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
632 :type '(repeat (choice :tag "Buffer"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
633 :value ""
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
634 (regexp :format "%v")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
635 (cons :tag "With attributes"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
636 :format "%v"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
637 :value ("" . nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
638 (regexp :format "%v")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
639 (repeat :tag "Attributes"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
640 (cons :format "%v"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
641 (symbol :tag "Parameter")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
642 (sexp :tag "Value"))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
643 :group 'frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
644
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
645 (defcustom special-display-function 'special-display-popup-frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
646 "Function to call to make a new frame for a special buffer.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
647 It is called with two arguments, the buffer and optional buffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
648 specific data, and should return a window displaying that buffer.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
649 The default value normally makes a separate frame for the buffer,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
650 using `special-display-frame-alist' to specify the frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
651 parameters.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
652
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
653 But if the buffer specific data includes (same-buffer . t) then
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
654 the buffer is displayed in the current selected window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
655 Otherwise if it includes (same-frame . t) then the buffer is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
656 displayed in a new window in the currently selected frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
657
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
658 A buffer is special if it is listed in
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
659 `special-display-buffer-names' or matches a regexp in
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
660 `special-display-regexps'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
661 :type 'function
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
662 :group 'frames)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
663
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
664 (defun same-window-p (buffer-name)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
665 "Return non-nil if a buffer named BUFFER-NAME would be shown in the \"same\" window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
666 This function returns non-nil if `display-buffer' or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
667 `pop-to-buffer' would show a buffer named BUFFER-NAME in the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
668 selected rather than \(as usual\) some other window. See
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
669 `same-window-buffer-names' and `same-window-regexps'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
670 (cond
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
671 ((not (stringp buffer-name)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
672 ;; The elements of `same-window-buffer-names' can be buffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
673 ;; names or cons cells whose cars are buffer names.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
674 ((member buffer-name same-window-buffer-names))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
675 ((assoc buffer-name same-window-buffer-names))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
676 ((catch 'found
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
677 (dolist (regexp same-window-regexps)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
678 ;; The elements of `same-window-regexps' can be regexps
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
679 ;; or cons cells whose cars are regexps.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
680 (when (or (and (stringp regexp)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
681 (string-match regexp buffer-name))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
682 (and (consp regexp) (stringp (car regexp))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
683 (string-match-p (car regexp) buffer-name)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
684 (throw 'found t)))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
685
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
686 (defcustom same-window-buffer-names nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
687 "List of names of buffers that should appear in the \"same\" window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
688 `display-buffer' and `pop-to-buffer' show a buffer whose name is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
689 on this list in the selected rather than some other window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
690
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
691 An element of this list can be a cons cell instead of just a
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
692 string. In that case the car must be a string specifying the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
693 buffer name. This is for compatibility with
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
694 `special-display-buffer-names'; the cdr of the cons cell is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
695 ignored.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
696
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
697 See also `same-window-regexps'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
698 :type '(repeat (string :format "%v"))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
699 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
700
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
701 (defcustom same-window-regexps nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
702 "List of regexps saying which buffers should appear in the \"same\" window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
703 `display-buffer' and `pop-to-buffer' show a buffer whose name
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
704 matches a regexp on this list in the selected rather than some
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
705 other window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
706
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
707 An element of this list can be a cons cell instead of just a
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
708 string. In that case the car must be a string, which specifies
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
709 the buffer name. This is for compatibility with
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
710 `special-display-buffer-names'; the cdr of the cons cell is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
711 ignored.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
712
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
713 See also `same-window-buffer-names'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
714 :type '(repeat (regexp :format "%v"))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
715 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
716
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
717 (defcustom pop-up-frames nil
98577
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
718 "Whether `display-buffer' should make a separate frame.
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
719 If nil, never make a seperate frame.
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
720 If the value is `graphic-only', make a separate frame
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
721 on graphic displays only.
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
722 Any other non-nil value means always make a separate frame."
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
723 :type '(choice
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
724 (const :tag "Never" nil)
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
725 (const :tag "On graphic displays only" graphic-only)
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
726 (const :tag "Always" t))
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
727 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
728
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
729 (defcustom display-buffer-reuse-frames nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
730 "Non-nil means `display-buffer' should reuse frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
731 If the buffer in question is already displayed in a frame, raise
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
732 that frame."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
733 :type 'boolean
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
734 :version "21.1"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
735 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
736
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
737 (defcustom pop-up-windows t
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
738 "Non-nil means `display-buffer' should make a new window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
739 :type 'boolean
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
740 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
741
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
742 (defcustom split-height-threshold 80
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
743 "Minimum height of window to be split vertically.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
744 If the value is a number, `display-buffer' can split a window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
745 only if it has at least as many lines. If the value is nil,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
746 `display-buffer' cannot split a window vertically.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
747
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
748 If the window is the only window on its frame, `display-buffer'
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
749 can split it regardless of this value."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
750 :type '(choice (const nil) (number :tag "lines"))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
751 :version "23.1"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
752 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
753
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
754 (defcustom split-width-threshold 160
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
755 "Minimum width of window to be split horizontally.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
756 If the value is a number, `display-buffer' can split a window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
757 only if it has at least as many columns. If the value is nil,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
758 `display-buffer' cannot split a window horizontally."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
759 :type '(choice (const nil) (number :tag "columns"))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
760 :version "23.1"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
761 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
762
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
763 (defcustom split-window-preferred-function nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
764 "Function used by `display-buffer' to split windows.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
765 If non-nil, a function called with a window as single argument
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
766 supposed to split that window and return the new window. If the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
767 function returns nil the window is not split.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
768
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
769 If nil, `display-buffer' will split the window respecting the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
770 values of `split-height-threshold' and `split-width-threshold'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
771 :type '(choice (const nil) (function :tag "Function"))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
772 :version "23.1"
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
773 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
774
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
775 (defun window--splittable-p (window &optional horizontal)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
776 "Return non-nil if window WINDOW can be split evenly.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
777 Optional argument HORIZONTAL non-nil means check whether WINDOW
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
778 can be split horizontally.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
779
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
780 WINDOW can be split vertically when the following conditions
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
781 hold:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
782
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
783 - `window-size-fixed' is either nil or equals `width' for the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
784 buffer of WINDOW.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
785
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
786 - `split-height-threshold' is a number and WINDOW is at least as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
787 high as `split-height-threshold'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
788
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
789 - When WINDOW is split evenly, the emanating windows are at least
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
790 `window-min-height' lines tall and can accommodate at least one
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
791 line plus - if WINDOW has one - a modeline.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
792
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
793 WINDOW can be split horizontally when the following conditions
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
794 hold:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
795
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
796 - `window-size-fixed' is either nil or equals `height' for the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
797 buffer of WINDOW.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
798
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
799 - `split-width-threshold' is a number and WINDOW is at least as
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
800 wide as `split-width-threshold'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
801
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
802 - When WINDOW is split evenly, the emanating windows are at least
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
803 `window-min-width' or two (whichever is larger) columns wide."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
804 (when (window-live-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
805 (with-current-buffer (window-buffer window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
806 (if horizontal
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
807 ;; A window can be split horizontally when its width is not
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
808 ;; fixed, it is at least `split-width-threshold' columns wide
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
809 ;; and at least twice as wide as `window-min-width' and 2 (the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
810 ;; latter value is hardcoded).
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
811 (and (memq window-size-fixed '(nil height))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
812 ;; Testing `window-full-width-p' here hardly makes any
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
813 ;; sense nowadays. This can be done more intuitively by
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
814 ;; setting up `split-width-threshold' appropriately.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
815 (numberp split-width-threshold)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
816 (>= (window-width window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
817 (max split-width-threshold
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
818 (* 2 (max window-min-width 2)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
819 ;; A window can be split vertically when its height is not
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
820 ;; fixed, it is at least `split-height-threshold' lines high,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
821 ;; and it is at least twice as high as `window-min-height' and 2
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
822 ;; if it has a modeline or 1.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
823 (and (memq window-size-fixed '(nil width))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
824 (numberp split-height-threshold)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
825 (>= (window-height window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
826 (max split-height-threshold
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
827 (* 2 (max window-min-height
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
828 (if mode-line-format 2 1))))))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
829
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
830 (defun window--try-to-split-window (window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
831 "Split window WINDOW if it is splittable.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
832 See `window--splittable-p' for how to determine whether a window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
833 is splittable. If WINDOW can be split, return the value returned
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
834 by `split-window' or `split-window-preferred-function'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
835 (when (and (window-live-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
836 (not (frame-parameter (window-frame window) 'unsplittable)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
837 (if (functionp split-window-preferred-function)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
838 ;; `split-window-preferred-function' is specified, so use it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
839 (funcall split-window-preferred-function window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
840 (or (and (window--splittable-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
841 ;; Split window vertically.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
842 (split-window window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
843 (and (window--splittable-p window t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
844 ;; Split window horizontally.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
845 (split-window window nil t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
846 (and (eq window (frame-root-window (window-frame window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
847 (not (window-minibuffer-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
848 ;; If WINDOW is the only window on its frame and not the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
849 ;; minibuffer window, attempt to split it vertically
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
850 ;; disregarding the value of `split-height-threshold'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
851 (let ((split-height-threshold 0))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
852 (and (window--splittable-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
853 (split-window window))))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
854
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
855 (defun window--frame-usable-p (frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
856 "Return frame FRAME if it can be used to display another buffer."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
857 (when (framep frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
858 (let ((window (frame-root-window frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
859 ;; `frame-root-window' may be an internal window which is considered
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
860 ;; "dead" by `window-live-p'. Hence if `window' is not live we
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
861 ;; implicitly know that `frame' has a visible window we can use.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
862 (when (or (not (window-live-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
863 (and (not (window-minibuffer-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
864 (not (window-dedicated-p window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
865 frame))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
866
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
867 (defcustom even-window-heights t
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
868 "If non-nil `display-buffer' will try to even window heights.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
869 Otherwise `display-buffer' will leave the window configuration
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
870 alone. Heights are evened only when `display-buffer' chooses a
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
871 window that appears above or below the selected window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
872 :type 'boolean
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
873 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
874
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
875 (defun window--even-window-heights (window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
876 "Even heights of window WINDOW and selected window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
877 Do this only if these windows are vertically adjacent to each
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
878 other, `even-window-heights' is non-nil, and the selected window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
879 is higher than WINDOW."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
880 (when (and even-window-heights
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
881 (not (eq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
882 ;; Don't resize minibuffer windows.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
883 (not (window-minibuffer-p (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
884 (> (window-height (selected-window)) (window-height window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
885 (eq (window-frame window) (window-frame (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
886 (let ((sel-edges (window-edges (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
887 (win-edges (window-edges window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
888 (and (= (nth 0 sel-edges) (nth 0 win-edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
889 (= (nth 2 sel-edges) (nth 2 win-edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
890 (or (= (nth 1 sel-edges) (nth 3 win-edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
891 (= (nth 3 sel-edges) (nth 1 win-edges))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
892 (let ((window-min-height 1))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
893 ;; Don't throw an error if we can't even window heights for
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
894 ;; whatever reason.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
895 (condition-case nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
896 (enlarge-window (/ (- (window-height window) (window-height)) 2))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
897 (error nil)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
898
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
899 (defun window--display-buffer-1 (window)
98487
93f3b87e5666 (window--display-buffer-1): Don't care about
Martin Rudalics <rudalics@gmx.at>
parents: 98165
diff changeset
900 "Raise the frame containing the window WINDOW.
93f3b87e5666 (window--display-buffer-1): Don't care about
Martin Rudalics <rudalics@gmx.at>
parents: 98165
diff changeset
901 Do not raise the selected frame. Return WINDOW."
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
902 (let* ((frame (window-frame window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
903 (visible (frame-visible-p frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
904 (unless (or (not visible)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
905 ;; Assume the selected frame is already visible enough.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
906 (eq frame (selected-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
907 ;; Assume the frame from which we invoked the minibuffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
908 ;; is visible.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
909 (and (minibuffer-window-active-p (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
910 (eq frame (window-frame (minibuffer-selected-window)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
911 (raise-frame frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
912 window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
913
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
914 (defun window--display-buffer-2 (buffer window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
915 "Display buffer BUFFER in window WINDOW and make its frame visible.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
916 Return WINDOW."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
917 (when (and (buffer-live-p buffer) (window-live-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
918 (set-window-buffer window buffer)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
919 (window--display-buffer-1 window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
920
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
921 (defun display-buffer (buffer-or-name &optional not-this-window frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
922 "Make buffer BUFFER-OR-NAME appear in some window but don't select it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
923 BUFFER-OR-NAME must be a buffer or the name of an existing
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
924 buffer. Return the window chosen to display BUFFER-OR-NAME or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
925 nil if no such window is found.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
926
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
927 Optional argument NOT-THIS-WINDOW non-nil means display the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
928 buffer in a window other than the selected one, even if it is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
929 already displayed in the selected window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
930
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
931 Optional argument FRAME specifies which frames to investigate
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
932 when the specified buffer is already displayed. If the buffer is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
933 already displayed in some window on one of these frames simply
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
934 return that window. Possible values of FRAME are:
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
935
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
936 `visible' - consider windows on all visible frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
937
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
938 0 - consider windows on all visible or iconified frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
939
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
940 t - consider windows on all frames.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
941
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
942 A specific frame - consider windows on that frame only.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
943
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
944 nil - consider windows on the selected frame \(actually the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
945 last non-minibuffer frame\) only. If, however, either
98577
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
946 `display-buffer-reuse-frames' or `pop-up-frames' is non-nil
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
947 \(non-nil and not graphic-only on a text-only terminal),
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
948 consider all visible or iconified frames."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
949 (interactive "BDisplay buffer:\nP")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
950 (let* ((can-use-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
951 ;; The selected window is usable unless either NOT-THIS-WINDOW
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
952 ;; is non-nil, it is dedicated to its buffer, or it is the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
953 ;; `minibuffer-window'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
954 (not (or not-this-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
955 (window-dedicated-p (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
956 (window-minibuffer-p))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
957 (buffer (if (bufferp buffer-or-name)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
958 buffer-or-name
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
959 (get-buffer buffer-or-name)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
960 (name-of-buffer (buffer-name buffer))
98577
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
961 ;; On text-only terminals do not pop up a new frame when
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
962 ;; `pop-up-frames' equals graphic-only.
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
963 (use-pop-up-frames (if (eq pop-up-frames 'graphic-only)
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
964 (display-graphic-p)
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
965 pop-up-frames))
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
966 ;; `frame-to-use' is the frame where to show `buffer' - either
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
967 ;; the selected frame or the last nonminibuffer frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
968 (frame-to-use
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
969 (or (window--frame-usable-p (selected-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
970 (window--frame-usable-p (last-nonminibuffer-frame))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
971 ;; `window-to-use' is the window we use for showing `buffer'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
972 window-to-use)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
973 (cond
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
974 ((not (buffer-live-p buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
975 (error "No such buffer %s" buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
976 (display-buffer-function
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
977 ;; Let `display-buffer-function' do the job.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
978 (funcall display-buffer-function buffer not-this-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
979 ((and (not not-this-window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
980 (eq (window-buffer (selected-window)) buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
981 ;; The selected window already displays BUFFER and
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
982 ;; `not-this-window' is nil, so use it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
983 (window--display-buffer-1 (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
984 ((and can-use-selected-window (same-window-p name-of-buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
985 ;; If the buffer's name tells us to use the selected window do so.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
986 (window--display-buffer-2 buffer (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
987 ((let ((frames (or frame
98577
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
988 (and (or use-pop-up-frames
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
989 display-buffer-reuse-frames
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
990 (not (last-nonminibuffer-frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
991 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
992 (last-nonminibuffer-frame))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
993 (and (setq window-to-use (get-buffer-window buffer frames))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
994 (or can-use-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
995 (not (eq (selected-window) window-to-use)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
996 ;; If the buffer is already displayed in some window use that.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
997 (window--display-buffer-1 window-to-use))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
998 ((and special-display-function
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
999 ;; `special-display-p' returns either t or a list of frame
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1000 ;; parameters to pass to `special-display-function'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1001 (let ((pars (special-display-p name-of-buffer)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1002 (when pars
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1003 (funcall special-display-function
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1004 buffer (if (listp pars) pars))))))
98577
457b5cef3f44 (pop-up-frames): Add choice graphic-only.
Martin Rudalics <rudalics@gmx.at>
parents: 98487
diff changeset
1005 ((or use-pop-up-frames (not frame-to-use))
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1006 ;; We want or need a new frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1007 (window--display-buffer-2
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1008 buffer (frame-selected-window (funcall pop-up-frame-function))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1009 ((and pop-up-windows
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1010 ;; Make a new window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1011 (or (not (frame-parameter frame-to-use 'unsplittable))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1012 ;; If the selected frame cannot be split look at
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1013 ;; `last-nonminibuffer-frame'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1014 (and (eq frame-to-use (selected-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1015 (setq frame-to-use (last-nonminibuffer-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1016 (window--frame-usable-p frame-to-use)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1017 (not (frame-parameter frame-to-use 'unsplittable))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1018 ;; Attempt to split largest or least recently used window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1019 (setq window-to-use
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1020 (or (window--try-to-split-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1021 (get-largest-window frame-to-use t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1022 (window--try-to-split-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1023 (get-lru-window frame-to-use t))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1024 (window--display-buffer-2 buffer window-to-use)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1025 ((setq window-to-use
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1026 ;; Reuse an existing window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1027 (or (get-lru-window frame-to-use)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1028 (get-buffer-window buffer 'visible)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1029 (get-largest-window 'visible nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1030 (get-buffer-window buffer 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1031 (get-largest-window 0 nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1032 (frame-selected-window (funcall pop-up-frame-function))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1033 (window--even-window-heights window-to-use)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1034 (window--display-buffer-2 buffer window-to-use)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1035
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1036 (defun pop-to-buffer (buffer-or-name &optional other-window norecord)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1037 "Select buffer BUFFER-OR-NAME in some window, preferably a different one.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1038 BUFFER-OR-NAME may be a buffer, a string \(a buffer name), or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1039 nil. If BUFFER-OR-NAME is a string not naming an existent
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1040 buffer, create a buffer with that name. If BUFFER-OR-NAME is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1041 nil, choose some other buffer.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1042
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1043 If `pop-up-windows' is non-nil, windows can be split to display
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1044 the buffer. If optional second arg OTHER-WINDOW is non-nil,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1045 insist on finding another window even if the specified buffer is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1046 already visible in the selected window, and ignore
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1047 `same-window-regexps' and `same-window-buffer-names'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1048
98141
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1049 If the window to show BUFFER-OR-NAME is not on the selected
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1050 frame, raise that window's frame and give it input focus.
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1051
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1052 This function returns the buffer it switched to. This uses the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1053 function `display-buffer' as a subroutine; see the documentation
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1054 of `display-buffer' for additional customization information.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1055
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1056 Optional third arg NORECORD non-nil means do not put this buffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1057 at the front of the list of recently selected ones."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1058 (let ((buffer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1059 ;; FIXME: This behavior is carried over from the previous C version
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1060 ;; of pop-to-buffer, but really we should use just
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1061 ;; `get-buffer' here.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1062 (if (null buffer-or-name) (other-buffer (current-buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1063 (or (get-buffer buffer-or-name)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1064 (let ((buf (get-buffer-create buffer-or-name)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1065 (set-buffer-major-mode buf)
98141
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1066 buf))))
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1067 (old-window (selected-window))
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1068 (old-frame (selected-frame))
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1069 new-window new-frame)
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1070 (set-buffer buffer)
98607
234a18b5c81e (pop-to-buffer): Fix misplacement of arg norecord in
Martin Rudalics <rudalics@gmx.at>
parents: 98577
diff changeset
1071 (setq new-window (display-buffer buffer other-window))
98141
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1072 (unless (eq new-window old-window)
98165
8b39b6502384 (pop-to-buffer): Select window before calling
Martin Rudalics <rudalics@gmx.at>
parents: 98141
diff changeset
1073 ;; `display-buffer' has chosen another window, select it.
98607
234a18b5c81e (pop-to-buffer): Fix misplacement of arg norecord in
Martin Rudalics <rudalics@gmx.at>
parents: 98577
diff changeset
1074 (select-window new-window norecord)
98141
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1075 (setq new-frame (window-frame new-window))
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1076 (unless (eq new-frame old-frame)
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1077 ;; `display-buffer' has chosen another frame, make sure it gets
2184b626a9cc (pop-to-buffer): If the window for buffer-or-name is
Martin Rudalics <rudalics@gmx.at>
parents: 98135
diff changeset
1078 ;; input focus and is risen.
98165
8b39b6502384 (pop-to-buffer): Select window before calling
Martin Rudalics <rudalics@gmx.at>
parents: 98141
diff changeset
1079 (select-frame-set-input-focus new-frame)))
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1080 buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1081
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1082 ;; I think this should be the default; I think people will prefer it--rms.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1083 (defcustom split-window-keep-point t
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1084 "If non-nil, \\[split-window-vertically] keeps the original point \
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1085 in both children.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1086 This is often more convenient for editing.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1087 If nil, adjust point in each of the two windows to minimize redisplay.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1088 This is convenient on slow terminals, but point can move strangely.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1089
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1090 This option applies only to `split-window-vertically' and
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1091 functions that call it. `split-window' always keeps the original
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1092 point in both children."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1093 :type 'boolean
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1094 :group 'windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1095
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1096 (defun split-window-vertically (&optional arg)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1097 "Split current window into two windows, one above the other.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1098 The uppermost window gets ARG lines and the other gets the rest.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1099 Negative ARG means select the size of the lowermost window instead.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1100 With no argument, split equally or close to it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1101 Both windows display the same buffer now current.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1102
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1103 If the variable `split-window-keep-point' is non-nil, both new windows
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1104 will get the same value of point as the current window. This is often
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1105 more convenient for editing. The upper window is the selected window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1106
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1107 Otherwise, we choose window starts so as to minimize the amount of
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1108 redisplay; this is convenient on slow terminals. The new selected
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1109 window is the one that the current value of point appears in. The
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1110 value of point can change if the text around point is hidden by the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1111 new mode line.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1112
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1113 Regardless of the value of `split-window-keep-point', the upper
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1114 window is the original one and the return value is the new, lower
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1115 window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1116 (interactive "P")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1117 (let ((old-w (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1118 (old-point (point))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1119 (size (and arg (prefix-numeric-value arg)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1120 (window-full-p nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1121 new-w bottom moved)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1122 (and size (< size 0) (setq size (+ (window-height) size)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1123 (setq new-w (split-window nil size))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1124 (or split-window-keep-point
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1125 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1126 (save-excursion
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1127 (set-buffer (window-buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1128 (goto-char (window-start))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1129 (setq moved (vertical-motion (window-height)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1130 (set-window-start new-w (point))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1131 (if (> (point) (window-point new-w))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1132 (set-window-point new-w (point)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1133 (and (= moved (window-height))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1134 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1135 (setq window-full-p t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1136 (vertical-motion -1)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1137 (setq bottom (point)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1138 (and window-full-p
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1139 (<= bottom (point))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1140 (set-window-point old-w (1- bottom)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1141 (and window-full-p
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1142 (<= (window-start new-w) old-point)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1143 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1144 (set-window-point new-w old-point)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1145 (select-window new-w)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1146 (split-window-save-restore-data new-w old-w)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1147
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1148 ;; This is to avoid compiler warnings.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1149 (defvar view-return-to-alist)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1150
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1151 (defun split-window-save-restore-data (new-w old-w)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1152 (with-current-buffer (window-buffer)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1153 (if view-mode
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1154 (let ((old-info (assq old-w view-return-to-alist)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1155 (if old-info
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1156 (push (cons new-w (cons (car (cdr old-info)) t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1157 view-return-to-alist))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1158 new-w))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1159
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1160 (defun split-window-horizontally (&optional arg)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1161 "Split current window into two windows side by side.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1162 This window becomes the leftmost of the two, and gets ARG columns.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1163 Negative ARG means select the size of the rightmost window instead.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1164 The argument includes the width of the window's scroll bar; if there
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1165 are no scroll bars, it includes the width of the divider column
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1166 to the window's right, if any. No ARG means split equally.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1167
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1168 The original, leftmost window remains selected.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1169 The return value is the new, rightmost window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1170 (interactive "P")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1171 (let ((old-w (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1172 (size (and arg (prefix-numeric-value arg))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1173 (and size (< size 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1174 (setq size (+ (window-width) size)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1175 (split-window-save-restore-data (split-window nil size t) old-w)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1176
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1177
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1178 (defun set-window-text-height (window height)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1179 "Sets the height in lines of the text display area of WINDOW to HEIGHT.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1180 This doesn't include the mode-line (or header-line if any) or any
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1181 partial-height lines in the text display area.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1182
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1183 If WINDOW is nil, the selected window is used.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1184
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1185 Note that the current implementation of this function cannot always set
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1186 the height exactly, but attempts to be conservative, by allocating more
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1187 lines than are actually needed in the case where some error may be present."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1188 (let ((delta (- height (window-text-height window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1189 (unless (zerop delta)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1190 ;; Setting window-min-height to a value like 1 can lead to very
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1191 ;; bizarre displays because it also allows Emacs to make *other*
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1192 ;; windows 1-line tall, which means that there's no more space for
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1193 ;; the modeline.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1194 (let ((window-min-height (min 2 height))) ;One text line plus a modeline.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1195 (if (and window (not (eq window (selected-window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1196 (save-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1197 (select-window window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1198 (enlarge-window delta))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1199 (enlarge-window delta))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1200
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1201
98886
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1202 (defun enlarge-window-horizontally (columns)
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1203 "Make selected window COLUMNS wider.
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1204 Interactively, if no argument is given, make selected window one
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1205 column wider."
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1206 (interactive "p")
98886
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1207 (enlarge-window columns t))
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1208
98886
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1209 (defun shrink-window-horizontally (columns)
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1210 "Make selected window COLUMNS narrower.
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1211 Interactively, if no argument is given, make selected window one
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1212 column narrower."
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1213 (interactive "p")
98886
49a2b54dc78a (enlarge-window-horizontally, shrink-window-horizontally):
Martin Rudalics <rudalics@gmx.at>
parents: 98607
diff changeset
1214 (shrink-window columns t))
98135
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1215
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1216 (defun window-buffer-height (window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1217 "Return the height (in screen lines) of the buffer that WINDOW is displaying."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1218 (with-current-buffer (window-buffer window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1219 (max 1
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1220 (count-screen-lines (point-min) (point-max)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1221 ;; If buffer ends with a newline, ignore it when
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1222 ;; counting height unless point is after it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1223 (eobp)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1224 window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1225
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1226 (defun count-screen-lines (&optional beg end count-final-newline window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1227 "Return the number of screen lines in the region.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1228 The number of screen lines may be different from the number of actual lines,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1229 due to line breaking, display table, etc.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1230
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1231 Optional arguments BEG and END default to `point-min' and `point-max'
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1232 respectively.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1233
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1234 If region ends with a newline, ignore it unless optional third argument
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1235 COUNT-FINAL-NEWLINE is non-nil.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1236
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1237 The optional fourth argument WINDOW specifies the window used for obtaining
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1238 parameters such as width, horizontal scrolling, and so on. The default is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1239 to use the selected window's parameters.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1240
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1241 Like `vertical-motion', `count-screen-lines' always uses the current buffer,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1242 regardless of which buffer is displayed in WINDOW. This makes possible to use
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1243 `count-screen-lines' in any buffer, whether or not it is currently displayed
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1244 in some window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1245 (unless beg
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1246 (setq beg (point-min)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1247 (unless end
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1248 (setq end (point-max)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1249 (if (= beg end)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1250 0
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1251 (save-excursion
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1252 (save-restriction
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1253 (widen)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1254 (narrow-to-region (min beg end)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1255 (if (and (not count-final-newline)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1256 (= ?\n (char-before (max beg end))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1257 (1- (max beg end))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1258 (max beg end)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1259 (goto-char (point-min))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1260 (1+ (vertical-motion (buffer-size) window))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1261
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1262 (defun fit-window-to-buffer (&optional window max-height min-height)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1263 "Make WINDOW the right height to display its contents exactly.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1264 If WINDOW is omitted or nil, it defaults to the selected window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1265 If the optional argument MAX-HEIGHT is supplied, it is the maximum height
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1266 the window is allowed to be, defaulting to the frame height.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1267 If the optional argument MIN-HEIGHT is supplied, it is the minimum
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1268 height the window is allowed to be, defaulting to `window-min-height'.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1269
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1270 The heights in MAX-HEIGHT and MIN-HEIGHT include the mode-line and/or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1271 header-line."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1272 (interactive)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1273
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1274 (when (null window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1275 (setq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1276 (when (null max-height)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1277 (setq max-height (frame-height (window-frame window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1278
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1279 (let* ((buf
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1280 ;; Buffer that is displayed in WINDOW
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1281 (window-buffer window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1282 (window-height
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1283 ;; The current height of WINDOW
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1284 (window-height window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1285 (desired-height
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1286 ;; The height necessary to show the buffer displayed by WINDOW
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1287 ;; (`count-screen-lines' always works on the current buffer).
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1288 (with-current-buffer buf
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1289 (+ (count-screen-lines)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1290 ;; If the buffer is empty, (count-screen-lines) is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1291 ;; zero. But, even in that case, we need one text line
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1292 ;; for cursor.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1293 (if (= (point-min) (point-max))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1294 1 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1295 ;; For non-minibuffers, count the mode-line, if any
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1296 (if (and (not (window-minibuffer-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1297 mode-line-format)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1298 1 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1299 ;; Count the header-line, if any
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1300 (if header-line-format 1 0))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1301 (delta
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1302 ;; Calculate how much the window height has to change to show
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1303 ;; desired-height lines, constrained by MIN-HEIGHT and MAX-HEIGHT.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1304 (- (max (min desired-height max-height)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1305 (or min-height window-min-height))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1306 window-height)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1307
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1308 ;; Don't try to redisplay with the cursor at the end
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1309 ;; on its own line--that would force a scroll and spoil things.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1310 (when (with-current-buffer buf
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1311 (and (eobp) (bolp) (not (bobp))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1312 (set-window-point window (1- (window-point window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1313
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1314 (save-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1315 (select-window window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1316
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1317 ;; Adjust WINDOW to the nominally correct size (which may actually
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1318 ;; be slightly off because of variable height text, etc).
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1319 (unless (zerop delta)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1320 (enlarge-window delta))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1321
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1322 ;; Check if the last line is surely fully visible. If not,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1323 ;; enlarge the window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1324 (let ((end (with-current-buffer buf
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1325 (save-excursion
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1326 (goto-char (point-max))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1327 (when (and (bolp) (not (bobp)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1328 ;; Don't include final newline
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1329 (backward-char 1))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1330 (when truncate-lines
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1331 ;; If line-wrapping is turned off, test the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1332 ;; beginning of the last line for visibility
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1333 ;; instead of the end, as the end of the line
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1334 ;; could be invisible by virtue of extending past
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1335 ;; the edge of the window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1336 (forward-line 0))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1337 (point)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1338 (set-window-vscroll window 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1339 (while (and (< desired-height max-height)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1340 (= desired-height (window-height window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1341 (not (pos-visible-in-window-p end window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1342 (enlarge-window 1)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1343 (setq desired-height (1+ desired-height)))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1344
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1345 (defun shrink-window-if-larger-than-buffer (&optional window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1346 "Shrink the WINDOW to be as small as possible to display its contents.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1347 If WINDOW is omitted or nil, it defaults to the selected window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1348 Do not shrink to less than `window-min-height' lines.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1349 Do nothing if the buffer contains more lines than the present window height,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1350 or if some of the window's contents are scrolled out of view,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1351 or if shrinking this window would also shrink another window,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1352 or if the window is the only window of its frame."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1353 (interactive)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1354 (when (null window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1355 (setq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1356 (let* ((frame (window-frame window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1357 (mini (frame-parameter frame 'minibuffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1358 (edges (window-edges window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1359 (if (and (not (eq window (frame-root-window frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1360 (window-safely-shrinkable-p)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1361 (pos-visible-in-window-p (point-min) window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1362 (not (eq mini 'only))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1363 (or (not mini)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1364 (let ((mini-window (minibuffer-window frame)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1365 (or (null mini-window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1366 (not (eq frame (window-frame mini-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1367 (< (nth 3 edges)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1368 (nth 1 (window-edges mini-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1369 (> (nth 1 edges)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1370 (frame-parameter frame 'menu-bar-lines))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1371 (fit-window-to-buffer window (window-height window)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1372
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1373 (defun kill-buffer-and-window ()
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1374 "Kill the current buffer and delete the selected window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1375 (interactive)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1376 (let ((window-to-delete (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1377 (buffer-to-kill (current-buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1378 (delete-window-hook (lambda ()
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1379 (condition-case nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1380 (delete-window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1381 (error nil)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1382 (unwind-protect
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1383 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1384 (add-hook 'kill-buffer-hook delete-window-hook t t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1385 (if (kill-buffer (current-buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1386 ;; If `delete-window' failed before, we rerun it to regenerate
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1387 ;; the error so it can be seen in the echo area.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1388 (when (eq (selected-window) window-to-delete)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1389 (delete-window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1390 ;; If the buffer is not dead for some reason (probably because
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1391 ;; of a `quit' signal), remove the hook again.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1392 (condition-case nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1393 (with-current-buffer buffer-to-kill
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1394 (remove-hook 'kill-buffer-hook delete-window-hook t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1395 (error nil)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1396
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1397 (defun quit-window (&optional kill window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1398 "Quit the current buffer. Bury it, and maybe delete the selected frame.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1399 \(The frame is deleted if it contains a dedicated window for the buffer.)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1400 With a prefix argument, kill the buffer instead.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1401
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1402 Noninteractively, if KILL is non-nil, then kill the current buffer,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1403 otherwise bury it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1404
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1405 If WINDOW is non-nil, it specifies a window; we delete that window,
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1406 and the buffer that is killed or buried is the one in that window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1407 (interactive "P")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1408 (let ((buffer (window-buffer window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1409 (frame (window-frame (or window (selected-window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1410 (window-solitary
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1411 (save-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1412 (if window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1413 (select-window window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1414 (one-window-p t)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1415 window-handled)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1416
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1417 (save-selected-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1418 (if window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1419 (select-window window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1420 (or (window-minibuffer-p)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1421 (window-dedicated-p (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1422 (switch-to-buffer (other-buffer))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1423
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1424 ;; Get rid of the frame, if it has just one dedicated window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1425 ;; and other visible frames exist.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1426 (and (or (window-minibuffer-p) (window-dedicated-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1427 (delq frame (visible-frame-list))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1428 window-solitary
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1429 (if (and (eq default-minibuffer-frame frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1430 (= 1 (length (minibuffer-frame-list))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1431 (setq window nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1432 (delete-frame frame)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1433 (setq window-handled t)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1434
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1435 ;; Deal with the buffer.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1436 (if kill
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1437 (kill-buffer buffer)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1438 (bury-buffer buffer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1439
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1440 ;; Maybe get rid of the window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1441 (and window (not window-handled) (not window-solitary)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1442 (delete-window window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1443
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1444 (defvar recenter-last-op nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1445 "Indicates the last recenter operation performed.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1446 Possible values: `top', `middle', `bottom'.")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1447
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1448 (defun recenter-top-bottom (&optional arg)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1449 "Move current line to window center, top, and bottom, successively.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1450 With no prefix argument, the first call redraws the frame and
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1451 centers point vertically within the window. Successive calls
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1452 scroll the window, placing point on the top, bottom, and middle
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1453 consecutively. The cycling order is middle -> top -> bottom.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1454
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1455 A prefix argument is handled like `recenter':
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1456 With numeric prefix ARG, move current line to window-line ARG.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1457 With plain `C-u', move current line to window center.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1458
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1459 Top and bottom destinations are actually `scroll-margin' lines
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1460 the from true window top and bottom."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1461 (interactive "P")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1462 (cond
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1463 (arg (recenter arg)) ; Always respect ARG.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1464 ((or (not (eq this-command last-command))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1465 (eq recenter-last-op 'bottom))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1466 (setq recenter-last-op 'middle)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1467 (recenter))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1468 (t
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1469 (let ((this-scroll-margin
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1470 (min (max 0 scroll-margin)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1471 (truncate (/ (window-body-height) 4.0)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1472 (cond ((eq recenter-last-op 'middle)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1473 (setq recenter-last-op 'top)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1474 (recenter this-scroll-margin))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1475 ((eq recenter-last-op 'top)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1476 (setq recenter-last-op 'bottom)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1477 (recenter (- -1 this-scroll-margin))))))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1478
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1479 (define-key global-map [?\C-l] 'recenter-top-bottom)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1480
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1481 (defvar mouse-autoselect-window-timer nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1482 "Timer used by delayed window autoselection.")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1483
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1484 (defvar mouse-autoselect-window-position nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1485 "Last mouse position recorded by delayed window autoselection.")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1486
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1487 (defvar mouse-autoselect-window-window nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1488 "Last window recorded by delayed window autoselection.")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1489
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1490 (defvar mouse-autoselect-window-state nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1491 "When non-nil, special state of delayed window autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1492 Possible values are `suspend' \(suspend autoselection after a menu or
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1493 scrollbar interaction\) and `select' \(the next invocation of
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1494 'handle-select-window' shall select the window immediately\).")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1495
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1496 (defun mouse-autoselect-window-cancel (&optional force)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1497 "Cancel delayed window autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1498 Optional argument FORCE means cancel unconditionally."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1499 (unless (and (not force)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1500 ;; Don't cancel for select-window or select-frame events
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1501 ;; or when the user drags a scroll bar.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1502 (or (memq this-command
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1503 '(handle-select-window handle-switch-frame))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1504 (and (eq this-command 'scroll-bar-toolkit-scroll)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1505 (memq (nth 4 (event-end last-input-event))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1506 '(handle end-scroll)))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1507 (setq mouse-autoselect-window-state nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1508 (when (timerp mouse-autoselect-window-timer)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1509 (cancel-timer mouse-autoselect-window-timer))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1510 (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1511
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1512 (defun mouse-autoselect-window-start (mouse-position &optional window suspend)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1513 "Start delayed window autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1514 MOUSE-POSITION is the last position where the mouse was seen as returned
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1515 by `mouse-position'. Optional argument WINDOW non-nil denotes the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1516 window where the mouse was seen. Optional argument SUSPEND non-nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1517 means suspend autoselection."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1518 ;; Record values for MOUSE-POSITION, WINDOW, and SUSPEND.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1519 (setq mouse-autoselect-window-position mouse-position)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1520 (when window (setq mouse-autoselect-window-window window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1521 (setq mouse-autoselect-window-state (when suspend 'suspend))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1522 ;; Install timer which runs `mouse-autoselect-window-select' after
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1523 ;; `mouse-autoselect-window' seconds.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1524 (setq mouse-autoselect-window-timer
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1525 (run-at-time
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1526 (abs mouse-autoselect-window) nil 'mouse-autoselect-window-select)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1527
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1528 (defun mouse-autoselect-window-select ()
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1529 "Select window with delayed window autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1530 If the mouse position has stabilized in a non-selected window, select
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1531 that window. The minibuffer window is selected only if the minibuffer is
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1532 active. This function is run by `mouse-autoselect-window-timer'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1533 (condition-case nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1534 (let* ((mouse-position (mouse-position))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1535 (window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1536 (condition-case nil
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1537 (window-at (cadr mouse-position) (cddr mouse-position)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1538 (car mouse-position))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1539 (error nil))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1540 (cond
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1541 ((or (menu-or-popup-active-p)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1542 (and window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1543 (not (coordinates-in-window-p (cdr mouse-position) window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1544 ;; A menu / popup dialog is active or the mouse is on the scroll-bar
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1545 ;; of WINDOW, temporarily suspend delayed autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1546 (mouse-autoselect-window-start mouse-position nil t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1547 ((eq mouse-autoselect-window-state 'suspend)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1548 ;; Delayed autoselection was temporarily suspended, reenable it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1549 (mouse-autoselect-window-start mouse-position))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1550 ((and window (not (eq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1551 (or (not (numberp mouse-autoselect-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1552 (and (> mouse-autoselect-window 0)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1553 ;; If `mouse-autoselect-window' is positive, select
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1554 ;; window if the window is the same as before.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1555 (eq window mouse-autoselect-window-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1556 ;; Otherwise select window if the mouse is at the same
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1557 ;; position as before. Observe that the first test after
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1558 ;; starting autoselection usually fails since the value of
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1559 ;; `mouse-autoselect-window-position' recorded there is the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1560 ;; position where the mouse has entered the new window and
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1561 ;; not necessarily where the mouse has stopped moving.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1562 (equal mouse-position mouse-autoselect-window-position))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1563 ;; The minibuffer is a candidate window if it's active.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1564 (or (not (window-minibuffer-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1565 (eq window (active-minibuffer-window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1566 ;; Mouse position has stabilized in non-selected window: Cancel
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1567 ;; delayed autoselection and try to select that window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1568 (mouse-autoselect-window-cancel t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1569 ;; Select window where mouse appears unless the selected window is the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1570 ;; minibuffer. Use `unread-command-events' in order to execute pre-
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1571 ;; and post-command hooks and trigger idle timers. To avoid delaying
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1572 ;; autoselection again, set `mouse-autoselect-window-state'."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1573 (unless (window-minibuffer-p (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1574 (setq mouse-autoselect-window-state 'select)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1575 (setq unread-command-events
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1576 (cons (list 'select-window (list window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1577 unread-command-events))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1578 ((or (and window (eq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1579 (not (numberp mouse-autoselect-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1580 (equal mouse-position mouse-autoselect-window-position))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1581 ;; Mouse position has either stabilized in the selected window or at
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1582 ;; `mouse-autoselect-window-position': Cancel delayed autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1583 (mouse-autoselect-window-cancel t))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1584 (t
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1585 ;; Mouse position has not stabilized yet, resume delayed
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1586 ;; autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1587 (mouse-autoselect-window-start mouse-position window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1588 (error nil)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1589
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1590 (defun handle-select-window (event)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1591 "Handle select-window events."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1592 (interactive "e")
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1593 (let ((window (posn-window (event-start event))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1594 (unless (or (not (window-live-p window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1595 ;; Don't switch if we're currently in the minibuffer.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1596 ;; This tries to work around problems where the
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1597 ;; minibuffer gets unselected unexpectedly, and where
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1598 ;; you then have to move your mouse all the way down to
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1599 ;; the minibuffer to select it.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1600 (window-minibuffer-p (selected-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1601 ;; Don't switch to minibuffer window unless it's active.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1602 (and (window-minibuffer-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1603 (not (minibuffer-window-active-p window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1604 ;; Don't switch when autoselection shall be delayed.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1605 (and (numberp mouse-autoselect-window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1606 (not (zerop mouse-autoselect-window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1607 (not (eq mouse-autoselect-window-state 'select))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1608 (progn
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1609 ;; Cancel any delayed autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1610 (mouse-autoselect-window-cancel t)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1611 ;; Start delayed autoselection from current mouse
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1612 ;; position and window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1613 (mouse-autoselect-window-start (mouse-position) window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1614 ;; Executing a command cancels delayed autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1615 (add-hook
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1616 'pre-command-hook 'mouse-autoselect-window-cancel))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1617 (when mouse-autoselect-window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1618 ;; Reset state of delayed autoselection.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1619 (setq mouse-autoselect-window-state nil)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1620 ;; Run `mouse-leave-buffer-hook' when autoselecting window.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1621 (run-hooks 'mouse-leave-buffer-hook))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1622 (select-window window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1623
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1624 (defun delete-other-windows-vertically (&optional window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1625 "Delete the windows in the same column with WINDOW, but not WINDOW itself.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1626 This may be a useful alternative binding for \\[delete-other-windows]
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1627 if you often split windows horizontally."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1628 (interactive)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1629 (let* ((window (or window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1630 (edges (window-edges window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1631 (w window) delenda)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1632 (while (not (eq (setq w (next-window w 1)) window))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1633 (let ((e (window-edges w)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1634 (when (and (= (car e) (car edges))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1635 (= (caddr e) (caddr edges)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1636 (push w delenda))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1637 (mapc 'delete-window delenda)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1638
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1639 (defun truncated-partial-width-window-p (&optional window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1640 "Non-nil if lines in WINDOW are specifically truncated due to its width.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1641 This returns nil if WINDOW is not a partial-width window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1642 (regardless of the value of `truncate-lines').
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1643 Otherwise, consult the value of `truncate-partial-width-windows'
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1644 for the buffer shown in WINDOW.
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1645 If WINDOW is nil, use the selected window."
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1646 (unless window
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1647 (setq window (selected-window)))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1648 (unless (window-full-width-p window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1649 (let ((t-p-w-w (buffer-local-value 'truncate-partial-width-windows
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1650 (window-buffer window))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1651 (if (integerp t-p-w-w)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1652 (< (window-width window) t-p-w-w)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1653 t-p-w-w))))
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1654
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1655 (define-key ctl-x-map "2" 'split-window-vertically)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1656 (define-key ctl-x-map "3" 'split-window-horizontally)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1657 (define-key ctl-x-map "}" 'enlarge-window-horizontally)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1658 (define-key ctl-x-map "{" 'shrink-window-horizontally)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1659 (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1660 (define-key ctl-x-map "+" 'balance-windows)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1661 (define-key ctl-x-4-map "0" 'kill-buffer-and-window)
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1662
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1663 ;; arch-tag: b508dfcc-c353-4c37-89fa-e773fe10cea9
d4db403fda8d Fix EOL mishap in previous commit.
Juanma Barranquero <lekktu@gmail.com>
parents: 98126
diff changeset
1664 ;;; window.el ends here