annotate lisp/window.el @ 82494:bc8a546bb066

*** empty log message ***
author Jeffrey C Honig <jch@bsdi.com>
date Tue, 21 Aug 2007 11:58:12 +0000
parents e5a68f18fcb9
children 5039706521c9 424b655804ca
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
38412
253f761ad37b Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents: 36666
diff changeset
1 ;;; window.el --- GNU Emacs window commands aside from those written in C
773
9c89fd7ddd41 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
2
64762
41bb365f41c4 Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents: 64091
diff changeset
3 ;; Copyright (C) 1985, 1989, 1992, 1993, 1994, 2000, 2001, 2002,
75347
e3694f1cb928 Add 2007 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 73698
diff changeset
4 ;; 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc.
841
2cdce064065f entered into RCS
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 820
diff changeset
5
773
9c89fd7ddd41 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
6 ;; Maintainer: FSF
39117
abd085bfec0c Add Keywords header.
Gerd Moellmann <gerd@gnu.org>
parents: 38412
diff changeset
7 ;; Keywords: internal
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
8
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
9 ;; This file is part of GNU Emacs.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
10
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
12 ;; it under the terms of the GNU General Public License as published by
78236
9355f9b7bbff Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents: 75347
diff changeset
13 ;; the Free Software Foundation; either version 3, or (at your option)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
14 ;; any later version.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
15
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
16 ;; GNU Emacs is distributed in the hope that it will be useful,
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
19 ;; GNU General Public License for more details.
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
20
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
14169
83f275dcd93a Update FSF's address.
Erik Naggum <erik@naggum.no>
parents: 13854
diff changeset
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
64091
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63760
diff changeset
23 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
6fb026ad601f Update FSF's address.
Lute Kamstra <lute@gnu.org>
parents: 63760
diff changeset
24 ;; Boston, MA 02110-1301, USA.
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
25
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
26 ;;; Commentary:
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
27
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
28 ;; Window tree functions.
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
29
773
9c89fd7ddd41 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 707
diff changeset
30 ;;; Code:
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
31
61764
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
32 (defvar window-size-fixed nil
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
33 "*Non-nil in a buffer means windows displaying the buffer are fixed-size.
63162
ae0502a0a9c7 (window-size-fixed): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 62671
diff changeset
34 If the value is `height', then only the window's height is fixed.
61764
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
35 If the value is `width', then only the window's width is fixed.
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
36 Any other non-nil value fixes both the width and the height.
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
37 Emacs won't change the size of any window displaying that buffer,
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
38 unless you explicitly change the size, or Emacs has no other choice.")
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
39 (make-variable-buffer-local 'window-size-fixed)
0d3c33403da5 (window-size-fixed): New defvar.
Richard M. Stallman <rms@gnu.org>
parents: 61038
diff changeset
40
43093
5b046c8a20a6 (save-selected-window): Move macro before first use.
Andreas Schwab <schwab@suse.de>
parents: 42876
diff changeset
41 (defmacro save-selected-window (&rest body)
5b046c8a20a6 (save-selected-window): Move macro before first use.
Andreas Schwab <schwab@suse.de>
parents: 42876
diff changeset
42 "Execute BODY, then select the window that was selected before BODY.
63759
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
43 The value returned is the value of the last form in BODY.
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
44
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
45 This macro saves and restores the current buffer, since otherwise
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
46 its normal operation could potentially make a different
63760
2fe950c6209c Fix previous change.
Richard M. Stallman <rms@gnu.org>
parents: 63759
diff changeset
47 buffer current. It does not alter the buffer list ordering.
63759
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
48
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
49 This macro saves and restores the selected window, as well as
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
50 the selected window in each frame. If the previously selected
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
51 window of some frame is no longer live at the end of BODY, that
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
52 frame's selected window is left alone. If the selected window is
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
53 no longer live, then whatever window is selected at the end of
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
54 BODY remains selected."
48941
7262fd90146a (save-selected-window): Save and restore selected windows of all frames.
Richard M. Stallman <rms@gnu.org>
parents: 46896
diff changeset
55 `(let ((save-selected-window-window (selected-window))
55825
1709fc8089c9 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 55015
diff changeset
56 ;; It is necessary to save all of these, because calling
1709fc8089c9 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 55015
diff changeset
57 ;; select-window changes frame-selected-window for whatever
1709fc8089c9 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 55015
diff changeset
58 ;; frame that window is in.
48941
7262fd90146a (save-selected-window): Save and restore selected windows of all frames.
Richard M. Stallman <rms@gnu.org>
parents: 46896
diff changeset
59 (save-selected-window-alist
82097
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
60 (mapcar (lambda (frame) (cons frame (frame-selected-window frame)))
48941
7262fd90146a (save-selected-window): Save and restore selected windows of all frames.
Richard M. Stallman <rms@gnu.org>
parents: 46896
diff changeset
61 (frame-list))))
63759
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
62 (save-current-buffer
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
63 (unwind-protect
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
64 (progn ,@body)
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
65 (dolist (elt save-selected-window-alist)
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
66 (and (frame-live-p (car elt))
82097
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
67 (window-live-p (cdr elt))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
68 (set-frame-selected-window (car elt) (cdr elt))))
63759
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
69 (if (window-live-p save-selected-window-window)
015a62a98a1c (save-selected-window): Use save-current-buffer.
Richard M. Stallman <rms@gnu.org>
parents: 63179
diff changeset
70 (select-window save-selected-window-window))))))
43093
5b046c8a20a6 (save-selected-window): Move macro before first use.
Andreas Schwab <schwab@suse.de>
parents: 42876
diff changeset
71
42818
55ed8ccce828 (window-body-height): New function.
Richard M. Stallman <rms@gnu.org>
parents: 42307
diff changeset
72 (defun window-body-height (&optional window)
55ed8ccce828 (window-body-height): New function.
Richard M. Stallman <rms@gnu.org>
parents: 42307
diff changeset
73 "Return number of lines in window WINDOW for actual buffer text.
55ed8ccce828 (window-body-height): New function.
Richard M. Stallman <rms@gnu.org>
parents: 42307
diff changeset
74 This does not include the mode line (if any) or the header line (if any)."
55ed8ccce828 (window-body-height): New function.
Richard M. Stallman <rms@gnu.org>
parents: 42307
diff changeset
75 (or window (setq window (selected-window)))
42876
869e78e96e2a (window-body-height): Handle minibuffer window specially.
Richard M. Stallman <rms@gnu.org>
parents: 42818
diff changeset
76 (if (window-minibuffer-p window)
869e78e96e2a (window-body-height): Handle minibuffer window specially.
Richard M. Stallman <rms@gnu.org>
parents: 42818
diff changeset
77 (window-height window)
869e78e96e2a (window-body-height): Handle minibuffer window specially.
Richard M. Stallman <rms@gnu.org>
parents: 42818
diff changeset
78 (with-current-buffer (window-buffer window)
869e78e96e2a (window-body-height): Handle minibuffer window specially.
Richard M. Stallman <rms@gnu.org>
parents: 42818
diff changeset
79 (max 1 (- (window-height window)
869e78e96e2a (window-body-height): Handle minibuffer window specially.
Richard M. Stallman <rms@gnu.org>
parents: 42818
diff changeset
80 (if mode-line-format 1 0)
869e78e96e2a (window-body-height): Handle minibuffer window specially.
Richard M. Stallman <rms@gnu.org>
parents: 42818
diff changeset
81 (if header-line-format 1 0))))))
42818
55ed8ccce828 (window-body-height): New function.
Richard M. Stallman <rms@gnu.org>
parents: 42307
diff changeset
82
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
83 (defun one-window-p (&optional nomini all-frames)
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
84 "Return non-nil if the selected window is the only window.
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
85 Optional arg NOMINI non-nil means don't count the minibuffer
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
86 even if it is active. Otherwise, the minibuffer is counted
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
87 when it is active.
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
88
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
89 The optional arg ALL-FRAMES t means count windows on all frames.
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
90 If it is `visible', count windows on all visible frames.
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
91 ALL-FRAMES nil or omitted means count only the selected frame,
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
92 plus the minibuffer it uses (which may be on another frame).
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
93 ALL-FRAMES 0 means count all windows in all visible or iconified frames.
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
94 If ALL-FRAMES is anything else, count only the selected frame."
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
95 (let ((base-window (selected-window)))
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
96 (if (and nomini (eq base-window (minibuffer-window)))
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
97 (setq base-window (next-window base-window)))
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
98 (eq base-window
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
99 (next-window base-window (if nomini 'arg) all-frames))))
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
100
52615
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
101 (defun window-current-scroll-bars (&optional window)
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
102 "Return the current scroll-bar settings in window WINDOW.
63179
01c52a1fbfe8 (window-current-scroll-bars): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 63168
diff changeset
103 Value is a cons (VERTICAL . HORIZONTAL) where VERTICAL specifies the
52615
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
104 current location of the vertical scroll-bars (left, right, or nil),
63179
01c52a1fbfe8 (window-current-scroll-bars): Fix typos in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 63168
diff changeset
105 and HORIZONTAL specifies the current location of the horizontal scroll
52615
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
106 bars (top, bottom, or nil)."
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
107 (let ((vert (nth 2 (window-scroll-bars window)))
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
108 (hor nil))
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
109 (when (or (eq vert t) (eq hor t))
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
110 (let ((fcsb (frame-current-scroll-bars
52615
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
111 (window-frame (or window (selected-window))))))
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
112 (if (eq vert t)
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
113 (setq vert (car fcsb)))
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
114 (if (eq hor t)
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
115 (setq hor (cdr fcsb)))))
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
116 (cons vert hor)))
de1a002c48c7 (window-current-scroll-bars): New defun.
Kim F. Storm <storm@cua.dk>
parents: 52481
diff changeset
117
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
118 (defun walk-windows (proc &optional minibuf all-frames)
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
119 "Cycle through all visible windows, calling PROC for each one.
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
120 PROC is called with a window as argument.
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
121
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
122 Optional second arg MINIBUF t means count the minibuffer window even
78492
7c8949dbfa0d Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
123 if not active. MINIBUF nil or omitted means count the minibuffer only if
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
124 it is active. MINIBUF neither t nor nil means not to count the
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
125 minibuffer even if it is active.
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
126
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
127 Several frames may share a single minibuffer; if the minibuffer
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
128 counts, all windows on all frames that share that minibuffer count
15057
3f71523422e9 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 14836
diff changeset
129 too. Therefore, if you are using a separate minibuffer frame
3f71523422e9 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 14836
diff changeset
130 and the minibuffer is active and MINIBUF says it counts,
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
131 `walk-windows' includes the windows in the frame from which you
15057
3f71523422e9 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 14836
diff changeset
132 entered the minibuffer, as well as the minibuffer window.
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
133
11302
a9b5c1d727b7 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11149
diff changeset
134 ALL-FRAMES is the optional third argument.
a9b5c1d727b7 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11149
diff changeset
135 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
a9b5c1d727b7 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11149
diff changeset
136 ALL-FRAMES = `visible' means include windows on all visible frames.
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
137 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
11302
a9b5c1d727b7 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 11149
diff changeset
138 ALL-FRAMES = t means include windows on all frames including invisible frames.
26268
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
139 If ALL-FRAMES is a frame, it means include windows on that frame.
15076
5e9132ff1d88 (walk-windows): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 15057
diff changeset
140 Anything else means restrict to the selected frame."
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
141 ;; If we start from the minibuffer window, don't fail to come back to it.
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
142 (if (window-minibuffer-p (selected-window))
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
143 (setq minibuf t))
26268
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
144 (save-selected-window
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
145 (if (framep all-frames)
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
146 (select-window (frame-first-window all-frames)))
30005
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
147 (let* (walk-windows-already-seen
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
148 (walk-windows-current (selected-window)))
26268
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
149 (while (progn
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
150 (setq walk-windows-current
6e6ad5d67263 (walk-windows): If ALL-FRAMES is a frame,
Gerd Moellmann <gerd@gnu.org>
parents: 25263
diff changeset
151 (next-window walk-windows-current minibuf all-frames))
30005
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
152 (not (memq walk-windows-current walk-windows-already-seen)))
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
153 (setq walk-windows-already-seen
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
154 (cons walk-windows-current walk-windows-already-seen))
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
155 (funcall proc walk-windows-current)))))
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
156
39172
9ba7895e6ad2 (get-window-with-predicate): Renamed from some-window.
Gerd Moellmann <gerd@gnu.org>
parents: 39117
diff changeset
157 (defun get-window-with-predicate (predicate &optional minibuf
9ba7895e6ad2 (get-window-with-predicate): Renamed from some-window.
Gerd Moellmann <gerd@gnu.org>
parents: 39117
diff changeset
158 all-frames default)
30005
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
159 "Return a window satisfying PREDICATE.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
160
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
161 This function cycles through all visible windows using `walk-windows',
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
162 calling PREDICATE on each one. PREDICATE is called with a window as
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
163 argument. The first window for which PREDICATE returns a non-nil
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
164 value is returned. If no window satisfies PREDICATE, DEFAULT is
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
165 returned.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
166
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
167 Optional second arg MINIBUF t means count the minibuffer window even
78492
7c8949dbfa0d Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
168 if not active. MINIBUF nil or omitted means count the minibuffer only if
30005
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
169 it is active. MINIBUF neither t nor nil means not to count the
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
170 minibuffer even if it is active.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
171
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
172 Several frames may share a single minibuffer; if the minibuffer
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
173 counts, all windows on all frames that share that minibuffer count
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
174 too. Therefore, if you are using a separate minibuffer frame
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
175 and the minibuffer is active and MINIBUF says it counts,
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
176 `walk-windows' includes the windows in the frame from which you
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
177 entered the minibuffer, as well as the minibuffer window.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
178
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
179 ALL-FRAMES is the optional third argument.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
180 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
181 ALL-FRAMES = `visible' means include windows on all visible frames.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
182 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
183 ALL-FRAMES = t means include windows on all frames including invisible frames.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
184 If ALL-FRAMES is a frame, it means include windows on that frame.
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
185 Anything else means restrict to the selected frame."
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
186 (catch 'found
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
187 (walk-windows #'(lambda (window)
30005
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
188 (when (funcall predicate window)
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
189 (throw 'found window)))
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
190 minibuf all-frames)
766caf49d6a9 (some-window): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 28655
diff changeset
191 default))
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
192
39172
9ba7895e6ad2 (get-window-with-predicate): Renamed from some-window.
Gerd Moellmann <gerd@gnu.org>
parents: 39117
diff changeset
193 (defalias 'some-window 'get-window-with-predicate)
9ba7895e6ad2 (get-window-with-predicate): Renamed from some-window.
Gerd Moellmann <gerd@gnu.org>
parents: 39117
diff changeset
194
66310
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
195 ;; This should probably be written in C (i.e., without using `walk-windows').
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
196 (defun get-buffer-window-list (buffer &optional minibuf frame)
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
197 "Return list of all windows displaying BUFFER, or nil if none.
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
198 BUFFER can be a buffer or a buffer name.
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
199 See `walk-windows' for the meaning of MINIBUF and FRAME."
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
200 (let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows)
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
201 (walk-windows (function (lambda (window)
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
202 (if (eq (window-buffer window) buffer)
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
203 (setq windows (cons window windows)))))
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
204 minibuf frame)
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
205 windows))
c7bbd7c2f47c (get-buffer-window-list): Moved from subr.el.
Richard M. Stallman <rms@gnu.org>
parents: 64762
diff changeset
206
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
207 (defun minibuffer-window-active-p (window)
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
208 "Return t if WINDOW (a minibuffer window) is now active."
11149
8904c26c2182 (minibuffer-window-active-p): Use active-minibuffer-window.
Richard M. Stallman <rms@gnu.org>
parents: 11086
diff changeset
209 (eq window (active-minibuffer-window)))
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
210
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
211 (defun count-windows (&optional minibuf)
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
212 "Return the number of visible windows.
22328
874f007a7d9c (shrink-window-if-larger-than-buffer):
Karl Heuer <kwzh@gnu.org>
parents: 22216
diff changeset
213 This counts the windows in the selected frame and (if the minibuffer is
874f007a7d9c (shrink-window-if-larger-than-buffer):
Karl Heuer <kwzh@gnu.org>
parents: 22216
diff changeset
214 to be counted) its minibuffer frame (if that's not the same frame).
874f007a7d9c (shrink-window-if-larger-than-buffer):
Karl Heuer <kwzh@gnu.org>
parents: 22216
diff changeset
215 The optional arg MINIBUF non-nil means count the minibuffer
14836
6d0ad3e40507 (count-windows): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents: 14169
diff changeset
216 even if it is inactive."
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
217 (let ((count 0))
3375
13ddc81f0b43 (count-windows): PROC argument of walk-windows takes an argument.
Richard M. Stallman <rms@gnu.org>
parents: 3342
diff changeset
218 (walk-windows (function (lambda (w)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
219 (setq count (+ count 1))))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
220 minibuf)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
221 count))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
222
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
223 (defun window-safely-shrinkable-p (&optional window)
36366
62272f68e460 (fit-window-to-buffer, window-safely-shrinkable-p)
Eli Zaretskii <eliz@gnu.org>
parents: 34580
diff changeset
224 "Non-nil if the WINDOW can be shrunk without shrinking other windows.
62272f68e460 (fit-window-to-buffer, window-safely-shrinkable-p)
Eli Zaretskii <eliz@gnu.org>
parents: 34580
diff changeset
225 If WINDOW is nil or omitted, it defaults to the currently selected window."
53894
0a356c1b7057 (window-safely-shrinkable-p): Don't change the buffer-list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52615
diff changeset
226 (with-selected-window (or window (selected-window))
0a356c1b7057 (window-safely-shrinkable-p): Don't change the buffer-list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52615
diff changeset
227 (let ((edges (window-edges)))
0a356c1b7057 (window-safely-shrinkable-p): Don't change the buffer-list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52615
diff changeset
228 (or (= (nth 2 edges) (nth 2 (window-edges (previous-window))))
0a356c1b7057 (window-safely-shrinkable-p): Don't change the buffer-list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52615
diff changeset
229 (= (nth 0 edges) (nth 0 (window-edges (next-window))))))))
0a356c1b7057 (window-safely-shrinkable-p): Don't change the buffer-list.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 52615
diff changeset
230
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
231
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
232 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
233 ;;; `balance-windows' subroutines using `window-tree'
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
234
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
235 ;;; Translate from internal window tree format
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
236
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
237 (defun bw-get-tree (&optional window-or-frame)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
238 "Get a window split tree in our format.
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
239
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
240 WINDOW-OR-FRAME must be nil, a frame, or a window. If it is nil,
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
241 then the whole window split tree for `selected-frame' is returned.
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
242 If it is a frame, then this is used instead. If it is a window,
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
243 then the smallest tree containing that window is returned."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
244 (when window-or-frame
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
245 (unless (or (framep window-or-frame)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
246 (windowp window-or-frame))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
247 (error "Not a frame or window: %s" window-or-frame)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
248 (let ((subtree (bw-find-tree-sub window-or-frame)))
72182
9482f7b84d4d (bw-get-tree): Don't integerp subtree if it's nil.
Eli Zaretskii <eliz@gnu.org>
parents: 71557
diff changeset
249 (when subtree
9482f7b84d4d (bw-get-tree): Don't integerp subtree if it's nil.
Eli Zaretskii <eliz@gnu.org>
parents: 71557
diff changeset
250 (if (integerp subtree)
9482f7b84d4d (bw-get-tree): Don't integerp subtree if it's nil.
Eli Zaretskii <eliz@gnu.org>
parents: 71557
diff changeset
251 nil
9482f7b84d4d (bw-get-tree): Don't integerp subtree if it's nil.
Eli Zaretskii <eliz@gnu.org>
parents: 71557
diff changeset
252 (bw-get-tree-1 subtree)))))
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
253
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
254 (defun bw-get-tree-1 (split)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
255 (if (windowp split)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
256 split
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
257 (let ((dir (car split))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
258 (edges (car (cdr split)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
259 (childs (cdr (cdr split))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
260 (list
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
261 (cons 'dir (if dir 'ver 'hor))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
262 (cons 'b (nth 3 edges))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
263 (cons 'r (nth 2 edges))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
264 (cons 't (nth 1 edges))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
265 (cons 'l (nth 0 edges))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
266 (cons 'childs (mapcar #'bw-get-tree-1 childs))))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
267
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
268 (defun bw-find-tree-sub (window-or-frame &optional get-parent)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
269 (let* ((window (when (windowp window-or-frame) window-or-frame))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
270 (frame (when (windowp window) (window-frame window)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
271 (wt (car (window-tree frame))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
272 (when (< 1 (length (window-list frame 0)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
273 (if window
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
274 (bw-find-tree-sub-1 wt window get-parent)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
275 wt))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
276
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
277 (defun bw-find-tree-sub-1 (tree win &optional get-parent)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
278 (unless (windowp win) (error "Not a window: %s" win))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
279 (if (memq win tree)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
280 (if get-parent
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
281 get-parent
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
282 tree)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
283 (let ((childs (cdr (cdr tree)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
284 child
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
285 subtree)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
286 (while (and childs (not subtree))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
287 (setq child (car childs))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
288 (setq childs (cdr childs))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
289 (when (and child (listp child))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
290 (setq subtree (bw-find-tree-sub-1 child win get-parent))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
291 (if (integerp subtree)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
292 (progn
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
293 (if (= 1 subtree)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
294 tree
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
295 (1- subtree)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
296 subtree
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
297 ))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
298
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
299 ;;; Window or object edges
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
300
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
301 (defun bw-l (obj)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
302 "Left edge of OBJ."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
303 (if (windowp obj) (nth 0 (window-edges obj)) (cdr (assq 'l obj))))
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
304 (defun bw-t (obj)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
305 "Top edge of OBJ."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
306 (if (windowp obj) (nth 1 (window-edges obj)) (cdr (assq 't obj))))
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
307 (defun bw-r (obj)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
308 "Right edge of OBJ."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
309 (if (windowp obj) (nth 2 (window-edges obj)) (cdr (assq 'r obj))))
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
310 (defun bw-b (obj)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
311 "Bottom edge of OBJ."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
312 (if (windowp obj) (nth 3 (window-edges obj)) (cdr (assq 'b obj))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
313
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
314 ;;; Split directions
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
315
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
316 (defun bw-dir (obj)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
317 "Return window split tree direction if OBJ.
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
318 If OBJ is a window return 'both. If it is a window split tree
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
319 then return its direction."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
320 (if (symbolp obj)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
321 obj
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
322 (if (windowp obj)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
323 'both
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
324 (let ((dir (cdr (assq 'dir obj))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
325 (unless (memq dir '(hor ver both))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
326 (error "Can't find dir in %s" obj))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
327 dir))))
42307
922f0ef2951b (balance-windows): Use new PRESERVE-BEFORE arg
Richard M. Stallman <rms@gnu.org>
parents: 41541
diff changeset
328
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
329 (defun bw-eqdir (obj1 obj2)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
330 "Return t if window split tree directions are equal.
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
331 OBJ1 and OBJ2 should be either windows or window split trees in
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
332 our format. The directions returned by `bw-dir' are compared and
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
333 t is returned if they are `eq' or one of them is 'both."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
334 (let ((dir1 (bw-dir obj1))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
335 (dir2 (bw-dir obj2)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
336 (or (eq dir1 dir2)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
337 (eq dir1 'both)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
338 (eq dir2 'both))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
339
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
340 ;;; Building split tree
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
341
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
342 (defun bw-refresh-edges (obj)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
343 "Refresh the edge information of OBJ and return OBJ."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
344 (unless (windowp obj)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
345 (let ((childs (cdr (assq 'childs obj)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
346 (ol 1000)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
347 (ot 1000)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
348 (or -1)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
349 (ob -1))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
350 (dolist (o childs)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
351 (when (> ol (bw-l o)) (setq ol (bw-l o)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
352 (when (> ot (bw-t o)) (setq ot (bw-t o)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
353 (when (< or (bw-r o)) (setq or (bw-r o)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
354 (when (< ob (bw-b o)) (setq ob (bw-b o))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
355 (setq obj (delq 'l obj))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
356 (setq obj (delq 't obj))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
357 (setq obj (delq 'r obj))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
358 (setq obj (delq 'b obj))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
359 (add-to-list 'obj (cons 'l ol))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
360 (add-to-list 'obj (cons 't ot))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
361 (add-to-list 'obj (cons 'r or))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
362 (add-to-list 'obj (cons 'b ob))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
363 ))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
364 obj)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
365
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
366 ;;; Balance windows
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
367
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
368 (defun balance-windows (&optional window-or-frame)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
369 "Make windows the same heights or widths in window split subtrees.
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
370
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
371 When called non-interactively WINDOW-OR-FRAME may be either a
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
372 window or a frame. It then balances the windows on the implied
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
373 frame. If the parameter is a window only the corresponding window
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
374 subtree is balanced."
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
375 (interactive)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
376 (let (
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
377 (wt (bw-get-tree window-or-frame))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
378 (w)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
379 (h)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
380 (tried-sizes)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
381 (last-sizes)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
382 (windows (window-list nil 0))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
383 (counter 0))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
384 (when wt
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
385 (while (not (member last-sizes tried-sizes))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
386 (when last-sizes (setq tried-sizes (cons last-sizes tried-sizes)))
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
387 (setq last-sizes (mapcar (lambda (w)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
388 (window-edges w))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
389 windows))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
390 (when (eq 'hor (bw-dir wt))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
391 (setq w (- (bw-r wt) (bw-l wt))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
392 (when (eq 'ver (bw-dir wt))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
393 (setq h (- (bw-b wt) (bw-t wt))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
394 (bw-balance-sub wt w h)))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
395
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
396 (defun bw-adjust-window (window delta horizontal)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
397 "Wrapper around `adjust-window-trailing-edge' with error checking.
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
398 Arguments WINDOW, DELTA and HORIZONTAL are passed on to that function."
82097
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
399 ;; `adjust-window-trailing-edge' may fail if delta is too large.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
400 (while (>= (abs delta) 1)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
401 (condition-case err
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
402 (progn
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
403 (adjust-window-trailing-edge window delta horizontal)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
404 (setq delta 0))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
405 (error
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
406 ;;(message "adjust: %s" (error-message-string err))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
407 (setq delta (/ delta 2))))))
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
408
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
409 (defun bw-balance-sub (wt w h)
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
410 (setq wt (bw-refresh-edges wt))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
411 (unless w (setq w (- (bw-r wt) (bw-l wt))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
412 (unless h (setq h (- (bw-b wt) (bw-t wt))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
413 (if (windowp wt)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
414 (progn
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
415 (when w
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
416 (let ((dw (- w (- (bw-r wt) (bw-l wt)))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
417 (when (/= 0 dw)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
418 (bw-adjust-window wt dw t))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
419 (when h
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
420 (let ((dh (- h (- (bw-b wt) (bw-t wt)))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
421 (when (/= 0 dh)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
422 (bw-adjust-window wt dh nil)))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
423 (let* ((childs (cdr (assq 'childs wt)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
424 (lastchild (car (last childs)))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
425 (cw (when w (/ w (if (bw-eqdir 'hor wt) (length childs) 1))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
426 (ch (when h (/ h (if (bw-eqdir 'ver wt) (length childs) 1)))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
427 (dolist (c childs)
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
428 (bw-balance-sub c cw ch)))))
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
429
82097
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
430 ;;; A different solution to balance-windows
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
431
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
432 (defun window-fixed-size-p (&optional window direction)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
433 "Non-nil if WINDOW cannot be resized in DIRECTION.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
434 DIRECTION can be nil (i.e. any), `height' or `width'."
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
435 (with-current-buffer (window-buffer window)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
436 (let ((fixed (and (boundp 'window-size-fixed) window-size-fixed)))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
437 (when fixed
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
438 (not (and direction
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
439 (member (cons direction window-size-fixed)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
440 '((height . width) (width . height)))))))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
441
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
442 (defvar window-area-factor 1
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
443 "Factor by which the window area should be over-estimated.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
444 This is used by `balance-windows-area'.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
445 Changing this globally has no effect.")
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
446
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
447 (defun balance-windows-area ()
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
448 "Make all visible windows the same area (approximately).
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
449 See also `window-area-factor' to change the relative size of specific buffers."
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
450 (interactive)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
451 (let* ((unchanged 0) (carry 0) (round 0)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
452 ;; Remove fixed-size windows.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
453 (wins (delq nil (mapcar (lambda (win)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
454 (if (not (window-fixed-size-p win)) win))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
455 (window-list nil 'nomini))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
456 (changelog nil)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
457 next)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
458 ;; Resizing a window changes the size of surrounding windows in complex
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
459 ;; ways, so it's difficult to balance them all. The introduction of
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
460 ;; `adjust-window-trailing-edge' made it a bit easier, but it is still
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
461 ;; very difficult to do. `balance-window' above takes an off-line
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
462 ;; approach: get the whole window tree, then balance it, then try to
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
463 ;; adjust the windows so they fit the result.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
464 ;; Here, instead, we take a "local optimization" approach, where we just
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
465 ;; go through all the windows several times until nothing needs to be
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
466 ;; changed. The main problem with this approach is that it's difficult
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
467 ;; to make sure it terminates, so we use some heuristic to try and break
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
468 ;; off infinite loops.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
469 ;; After a round without any change, we allow a second, to give a chance
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
470 ;; to the carry to propagate a minor imbalance from the end back to
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
471 ;; the beginning.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
472 (while (< unchanged 2)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
473 ;; (message "New round")
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
474 (setq unchanged (1+ unchanged) round (1+ round))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
475 (dolist (win wins)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
476 (setq next win)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
477 (while (progn (setq next (next-window next))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
478 (window-fixed-size-p next)))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
479 ;; (assert (eq next (or (cadr (member win wins)) (car wins))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
480 (let* ((horiz
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
481 (< (car (window-edges win)) (car (window-edges next))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
482 (areadiff (/ (- (* (window-height next) (window-width next)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
483 (buffer-local-value 'window-area-factor
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
484 (window-buffer next)))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
485 (* (window-height win) (window-width win)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
486 (buffer-local-value 'window-area-factor
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
487 (window-buffer win))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
488 (max (buffer-local-value 'window-area-factor
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
489 (window-buffer win))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
490 (buffer-local-value 'window-area-factor
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
491 (window-buffer next)))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
492 (edgesize (if horiz
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
493 (+ (window-height win) (window-height next))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
494 (+ (window-width win) (window-width next))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
495 (diff (/ areadiff edgesize)))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
496 (when (zerop diff)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
497 ;; Maybe diff is actually closer to 1 than to 0.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
498 (setq diff (/ (* 3 areadiff) (* 2 edgesize))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
499 (when (and (zerop diff) (not (zerop areadiff)))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
500 (setq diff (/ (+ areadiff carry) edgesize))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
501 ;; Change things smoothly.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
502 (if (or (> diff 1) (< diff -1)) (setq diff (/ diff 2))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
503 (if (zerop diff)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
504 ;; Make sure negligible differences don't accumulate to
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
505 ;; become significant.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
506 (setq carry (+ carry areadiff))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
507 (bw-adjust-window win diff horiz)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
508 ;; (sit-for 0.5)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
509 (let ((change (cons win (window-edges win))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
510 ;; If the same change has been seen already for this window,
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
511 ;; we're most likely in an endless loop, so don't count it as
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
512 ;; a change.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
513 (unless (member change changelog)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
514 (push change changelog)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
515 (setq unchanged 0 carry 0)))))))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
516 ;; We've now basically balanced all the windows.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
517 ;; But there may be some minor off-by-one imbalance left over,
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
518 ;; so let's do some fine tuning.
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
519 ;; (bw-finetune wins)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
520 ;; (message "Done in %d rounds" round)
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
521 ))
9d01f26910cf (save-selected-window): Minor optimization.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 81770
diff changeset
522
67478
d78d32605019 (bw-get-tree, bw-get-tree-1, bw-find-tree-sub)
Eli Zaretskii <eliz@gnu.org>
parents: 67341
diff changeset
523 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
11086
22693a280a42 (one-window-p, walk-windows, minibuffer-window-active-p): Functions moved here.
Richard M. Stallman <rms@gnu.org>
parents: 11029
diff changeset
524
46896
549bdeb52a93 (split-window-save-restore-data): Use push and with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44297
diff changeset
525 ;; I think this should be the default; I think people will prefer it--rms.
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 16469
diff changeset
526 (defcustom split-window-keep-point t
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
527 "*If non-nil, \\[split-window-vertically] keeps the original point \
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
528 in both children.
3724
dc73f3152d2f (balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 3375
diff changeset
529 This is often more convenient for editing.
dc73f3152d2f (balance-windows): Total rewrite.
Richard M. Stallman <rms@gnu.org>
parents: 3375
diff changeset
530 If nil, adjust point in each of the two windows to minimize redisplay.
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
531 This is convenient on slow terminals, but point can move strangely.
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
532
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
533 This option applies only to `split-window-vertically' and
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
534 functions that call it. `split-window' always keeps the original
68487
bde0adf72ba8 (bw-dir, bw-eqdir, balance-windows, split-window-keep-point):
Juanma Barranquero <lekktu@gmail.com>
parents: 67478
diff changeset
535 point in both children."
17665
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 16469
diff changeset
536 :type 'boolean
b11021ca3525 Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents: 16469
diff changeset
537 :group 'windows)
382
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
538
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
539 (defun split-window-vertically (&optional arg)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
540 "Split current window into two windows, one above the other.
108
8644955999f0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
541 The uppermost window gets ARG lines and the other gets the rest.
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
542 Negative ARG means select the size of the lowermost window instead.
108
8644955999f0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
543 With no argument, split equally or close to it.
8644955999f0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
544 Both windows display the same buffer now current.
382
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
545
22216
5750539e01e7 (split-window-vertically): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 21970
diff changeset
546 If the variable `split-window-keep-point' is non-nil, both new windows
382
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
547 will get the same value of point as the current window. This is often
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
548 more convenient for editing. The upper window is the selected window.
108
8644955999f0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
549
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
550 Otherwise, we choose window starts so as to minimize the amount of
382
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
551 redisplay; this is convenient on slow terminals. The new selected
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
552 window is the one that the current value of point appears in. The
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
553 value of point can change if the text around point is hidden by the
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
554 new mode line.
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
555
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
556 Regardless of the value of `split-window-keep-point', the upper
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
557 window is the original one and the return value is the new, lower
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
558 window."
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
559 (interactive "P")
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
560 (let ((old-w (selected-window))
108
8644955999f0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
561 (old-point (point))
6670
b2c5fca3c10c (split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents: 6019
diff changeset
562 (size (and arg (prefix-numeric-value arg)))
13854
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
563 (window-full-p nil)
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
564 new-w bottom switch moved)
6670
b2c5fca3c10c (split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents: 6019
diff changeset
565 (and size (< size 0) (setq size (+ (window-height) size)))
b2c5fca3c10c (split-window-vertically): If size is negative, measure from bottom.
Karl Heuer <kwzh@gnu.org>
parents: 6019
diff changeset
566 (setq new-w (split-window nil size))
419
4fa4f423f981 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 382
diff changeset
567 (or split-window-keep-point
108
8644955999f0 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 36
diff changeset
568 (progn
382
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
569 (save-excursion
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
570 (set-buffer (window-buffer))
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
571 (goto-char (window-start))
13854
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
572 (setq moved (vertical-motion (window-height)))
382
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
573 (set-window-start new-w (point))
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
574 (if (> (point) (window-point new-w))
b6465a2ae3e5 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 108
diff changeset
575 (set-window-point new-w (point)))
13854
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
576 (and (= moved (window-height))
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
577 (progn
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
578 (setq window-full-p t)
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
579 (vertical-motion -1)))
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
580 (setq bottom (point)))
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
581 (and window-full-p
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
582 (<= bottom (point))
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
583 (set-window-point old-w (1- bottom)))
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
584 (and window-full-p
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
585 (<= (window-start new-w) old-point)
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
586 (progn
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
587 (set-window-point new-w old-point)
84de7ffae8ae (split-window-vertically): Don't change point in old
Richard M. Stallman <rms@gnu.org>
parents: 13523
diff changeset
588 (select-window new-w)))))
18279
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
589 (split-window-save-restore-data new-w old-w)))
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
590
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
591 ;; This is to avoid compiler warnings.
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
592 (defvar view-return-to-alist)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
593
18279
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
594 (defun split-window-save-restore-data (new-w old-w)
46896
549bdeb52a93 (split-window-save-restore-data): Use push and with-current-buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 44297
diff changeset
595 (with-current-buffer (window-buffer)
18279
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
596 (if view-mode
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
597 (let ((old-info (assq old-w view-return-to-alist)))
55015
10dc0a48bc2c (split-window-save-restore-data):
Richard M. Stallman <rms@gnu.org>
parents: 53894
diff changeset
598 (if old-info
10dc0a48bc2c (split-window-save-restore-data):
Richard M. Stallman <rms@gnu.org>
parents: 53894
diff changeset
599 (push (cons new-w (cons (car (cdr old-info)) t))
10dc0a48bc2c (split-window-save-restore-data):
Richard M. Stallman <rms@gnu.org>
parents: 53894
diff changeset
600 view-return-to-alist))))
3253
f4d37be94734 (split-window-vertically): Return the new window.
Richard M. Stallman <rms@gnu.org>
parents: 2529
diff changeset
601 new-w))
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
602
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
603 (defun split-window-horizontally (&optional arg)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
604 "Split current window into two windows side by side.
8565
2a2208286955 (split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents: 7300
diff changeset
605 This window becomes the leftmost of the two, and gets ARG columns.
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
606 Negative ARG means select the size of the rightmost window instead.
22924
13888875bea1 (split-window-horizontally): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22328
diff changeset
607 The argument includes the width of the window's scroll bar; if there
13888875bea1 (split-window-horizontally): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 22328
diff changeset
608 are no scroll bars, it includes the width of the divider column
56391
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
609 to the window's right, if any. No ARG means split equally.
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
610
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
611 The original, leftmost window remains selected.
fa07df089602 (save-selected-window, one-window-p)
Luc Teirlinck <teirllm@auburn.edu>
parents: 55825
diff changeset
612 The return value is the new, rightmost window."
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
613 (interactive "P")
18279
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
614 (let ((old-w (selected-window))
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
615 (size (and arg (prefix-numeric-value arg))))
8565
2a2208286955 (split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents: 7300
diff changeset
616 (and size (< size 0)
2a2208286955 (split-window-horizontally): If size is negative, measure from the right.
Karl Heuer <kwzh@gnu.org>
parents: 7300
diff changeset
617 (setq size (+ (window-width) size)))
18279
a9c40a80c9b1 (split-window-save-restore-data): New function that
Richard M. Stallman <rms@gnu.org>
parents: 17665
diff changeset
618 (split-window-save-restore-data (split-window nil size t) old-w)))
32689
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
619
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
620
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
621 (defun set-window-text-height (window height)
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
622 "Sets the height in lines of the text display area of WINDOW to HEIGHT.
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
623 This doesn't include the mode-line (or header-line if any) or any
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
624 partial-height lines in the text display area.
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
625
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
626 If WINDOW is nil, the selected window is used.
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
627
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
628 Note that the current implementation of this function cannot always set
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
629 the height exactly, but attempts to be conservative, by allocating more
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
630 lines than are actually needed in the case where some error may be present."
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
631 (let ((delta (- height (window-text-height window))))
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
632 (unless (zerop delta)
71557
695dbebf4c20 (set-window-text-height): Only set window-min-height to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71083
diff changeset
633 ;; Setting window-min-height to a value like 1 can lead to very
695dbebf4c20 (set-window-text-height): Only set window-min-height to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71083
diff changeset
634 ;; bizarre displays because it also allows Emacs to make *other*
695dbebf4c20 (set-window-text-height): Only set window-min-height to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71083
diff changeset
635 ;; windows 1-line tall, which means that there's no more space for
695dbebf4c20 (set-window-text-height): Only set window-min-height to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71083
diff changeset
636 ;; the modeline.
695dbebf4c20 (set-window-text-height): Only set window-min-height to
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 71083
diff changeset
637 (let ((window-min-height (min 2 height))) ;One text line plus a modeline.
32695
5a4f1fbd4ed7 (set-window-text-height): Force window-min-height to 1.
Miles Bader <miles@gnu.org>
parents: 32689
diff changeset
638 (if (and window (not (eq window (selected-window))))
5a4f1fbd4ed7 (set-window-text-height): Force window-min-height to 1.
Miles Bader <miles@gnu.org>
parents: 32689
diff changeset
639 (save-selected-window
5a4f1fbd4ed7 (set-window-text-height): Force window-min-height to 1.
Miles Bader <miles@gnu.org>
parents: 32689
diff changeset
640 (select-window window)
5a4f1fbd4ed7 (set-window-text-height): Force window-min-height to 1.
Miles Bader <miles@gnu.org>
parents: 32689
diff changeset
641 (enlarge-window delta))
5a4f1fbd4ed7 (set-window-text-height): Force window-min-height to 1.
Miles Bader <miles@gnu.org>
parents: 32689
diff changeset
642 (enlarge-window delta))))))
32689
9f29610841ca (window-text-height, set-window-text-height): New functions.
Miles Bader <miles@gnu.org>
parents: 32684
diff changeset
643
32681
569ef1445e17 (mode-line-window-height-fudge): New variable.
Miles Bader <miles@gnu.org>
parents: 31790
diff changeset
644
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
645 (defun enlarge-window-horizontally (arg)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
646 "Make current window ARG columns wider."
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
647 (interactive "p")
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
648 (enlarge-window arg t))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
649
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
650 (defun shrink-window-horizontally (arg)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
651 "Make current window ARG columns narrower."
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
652 (interactive "p")
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
653 (shrink-window arg t))
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
654
23748
19e23f0e3cd3 (window-buffer-height): New function, split from
Richard M. Stallman <rms@gnu.org>
parents: 22924
diff changeset
655 (defun window-buffer-height (window)
19e23f0e3cd3 (window-buffer-height): New function, split from
Richard M. Stallman <rms@gnu.org>
parents: 22924
diff changeset
656 "Return the height (in screen lines) of the buffer that WINDOW is displaying."
61038
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
657 (with-current-buffer (window-buffer window)
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
658 (max 1
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
659 (count-screen-lines (point-min) (point-max)
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
660 ;; If buffer ends with a newline, ignore it when
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
661 ;; counting height unless point is after it.
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
662 (eobp)
f7f0c6eb075b (window-buffer-height): Use count-screen-lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 59652
diff changeset
663 window))))
23748
19e23f0e3cd3 (window-buffer-height): New function, split from
Richard M. Stallman <rms@gnu.org>
parents: 22924
diff changeset
664
28655
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
665 (defun count-screen-lines (&optional beg end count-final-newline window)
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
666 "Return the number of screen lines in the region.
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
667 The number of screen lines may be different from the number of actual lines,
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
668 due to line breaking, display table, etc.
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
669
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
670 Optional arguments BEG and END default to `point-min' and `point-max'
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
671 respectively.
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
672
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
673 If region ends with a newline, ignore it unless optional third argument
28655
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
674 COUNT-FINAL-NEWLINE is non-nil.
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
675
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
676 The optional fourth argument WINDOW specifies the window used for obtaining
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
677 parameters such as width, horizontal scrolling, and so on. The default is
28655
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
678 to use the selected window's parameters.
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
679
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
680 Like `vertical-motion', `count-screen-lines' always uses the current buffer,
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
681 regardless of which buffer is displayed in WINDOW. This makes possible to use
28655
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
682 `count-screen-lines' in any buffer, whether or not it is currently displayed
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
683 in some window."
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
684 (unless beg
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
685 (setq beg (point-min)))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
686 (unless end
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
687 (setq end (point-max)))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
688 (if (= beg end)
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
689 0
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
690 (save-excursion
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
691 (save-restriction
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
692 (widen)
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
693 (narrow-to-region (min beg end)
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
694 (if (and (not count-final-newline)
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
695 (= ?\n (char-before (max beg end))))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
696 (1- (max beg end))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
697 (max beg end)))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
698 (goto-char (point-min))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
699 (1+ (vertical-motion (buffer-size) window))))))
2ea744c8844a (count-screen-lines): New function.
Gerd Moellmann <gerd@gnu.org>
parents: 26268
diff changeset
700
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
701 (defun fit-window-to-buffer (&optional window max-height min-height)
71083
073af3c41750 (fit-window-to-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 68651
diff changeset
702 "Make WINDOW the right height to display its contents exactly.
36366
62272f68e460 (fit-window-to-buffer, window-safely-shrinkable-p)
Eli Zaretskii <eliz@gnu.org>
parents: 34580
diff changeset
703 If WINDOW is omitted or nil, it defaults to the selected window.
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
704 If the optional argument MAX-HEIGHT is supplied, it is the maximum height
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
705 the window is allowed to be, defaulting to the frame height.
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
706 If the optional argument MIN-HEIGHT is supplied, it is the minimum
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
707 height the window is allowed to be, defaulting to `window-min-height'.
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
708
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
709 The heights in MAX-HEIGHT and MIN-HEIGHT include the mode-line and/or
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
710 header-line."
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
711 (interactive)
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
712
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
713 (when (null window)
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
714 (setq window (selected-window)))
32737
29a87f28cd51 (fit-window-to-buffer): Change defaulting of MAX-HEIGHT slightly.
Miles Bader <miles@gnu.org>
parents: 32736
diff changeset
715 (when (null max-height)
29a87f28cd51 (fit-window-to-buffer): Change defaulting of MAX-HEIGHT slightly.
Miles Bader <miles@gnu.org>
parents: 32736
diff changeset
716 (setq max-height (frame-height (window-frame window))))
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
717
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
718 (let* ((buf
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
719 ;; Buffer that is displayed in WINDOW
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
720 (window-buffer window))
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
721 (window-height
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
722 ;; The current height of WINDOW
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
723 (window-height window))
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
724 (desired-height
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
725 ;; The height necessary to show the buffer displayed by WINDOW
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
726 ;; (`count-screen-lines' always works on the current buffer).
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
727 (with-current-buffer buf
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
728 (+ (count-screen-lines)
33536
035e7b097577 (fit-window-to-buffer): Be sure to acquire at least
Kenichi Handa <handa@m17n.org>
parents: 33478
diff changeset
729 ;; If the buffer is empty, (count-screen-lines) is
035e7b097577 (fit-window-to-buffer): Be sure to acquire at least
Kenichi Handa <handa@m17n.org>
parents: 33478
diff changeset
730 ;; zero. But, even in that case, we need one text line
035e7b097577 (fit-window-to-buffer): Be sure to acquire at least
Kenichi Handa <handa@m17n.org>
parents: 33478
diff changeset
731 ;; for cursor.
035e7b097577 (fit-window-to-buffer): Be sure to acquire at least
Kenichi Handa <handa@m17n.org>
parents: 33478
diff changeset
732 (if (= (point-min) (point-max))
035e7b097577 (fit-window-to-buffer): Be sure to acquire at least
Kenichi Handa <handa@m17n.org>
parents: 33478
diff changeset
733 1 0)
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
734 ;; For non-minibuffers, count the mode-line, if any
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
735 (if (and (not (window-minibuffer-p window))
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
736 mode-line-format)
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
737 1 0)
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
738 ;; Count the header-line, if any
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
739 (if header-line-format 1 0))))
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
740 (delta
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
741 ;; Calculate how much the window height has to change to show
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
742 ;; desired-height lines, constrained by MIN-HEIGHT and MAX-HEIGHT.
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
743 (- (max (min desired-height max-height)
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
744 (or min-height window-min-height))
81770
ffd64654faa7 (fit-window-to-buffer): Remove setting of window-min-height
Jan Djärv <jan.h.d@swipnet.se>
parents: 75347
diff changeset
745 window-height)))
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
746
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
747 ;; Don't try to redisplay with the cursor at the end
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
748 ;; on its own line--that would force a scroll and spoil things.
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
749 (when (with-current-buffer buf
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
750 (and (eobp) (bolp) (not (bobp))))
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
751 (set-window-point window (1- (window-point window))))
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
752
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
753 (save-selected-window
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
754 (select-window window)
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
755
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
756 ;; Adjust WINDOW to the nominally correct size (which may actually
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
757 ;; be slightly off because of variable height text, etc).
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
758 (unless (zerop delta)
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
759 (enlarge-window delta))
33475
b18c7c71cf2e (fit-window-to-buffer): Don't check
Kenichi Handa <handa@m17n.org>
parents: 32811
diff changeset
760
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
761 ;; Check if the last line is surely fully visible. If not,
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
762 ;; enlarge the window.
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
763 (let ((end (with-current-buffer buf
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
764 (save-excursion
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
765 (goto-char (point-max))
34079
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
766 (when (and (bolp) (not (bobp)))
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
767 ;; Don't include final newline
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
768 (backward-char 1))
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
769 (when truncate-lines
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
770 ;; If line-wrapping is turned off, test the
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
771 ;; beginning of the last line for visibility
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
772 ;; instead of the end, as the end of the line
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
773 ;; could be invisible by virtue of extending past
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
774 ;; the edge of the window.
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
775 (forward-line 0))
6316cacc1e16 (fit-window-to-buffer): Handle non-nil `truncate-lines'.
Miles Bader <miles@gnu.org>
parents: 33708
diff changeset
776 (point)))))
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
777 (set-window-vscroll window 0)
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
778 (while (and (< desired-height max-height)
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
779 (= desired-height (window-height window))
34383
87e249cf993b (fit-window-to-buffer): Don't pass last argument to
Miles Bader <miles@gnu.org>
parents: 34079
diff changeset
780 (not (pos-visible-in-window-p end window)))
33478
05a649280be2 (fit-window-to-buffer): Handle windows without mode-lines.
Miles Bader <miles@gnu.org>
parents: 33475
diff changeset
781 (enlarge-window 1)
33537
53c51fd75027 (fit-window-to-buffer): Fix previous change.
Kenichi Handa <handa@m17n.org>
parents: 33536
diff changeset
782 (setq desired-height (1+ desired-height)))))))
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
783
2529
bb127c1081af (shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 841
diff changeset
784 (defun shrink-window-if-larger-than-buffer (&optional window)
3342
ce8aa0ba8b08 (shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents: 3253
diff changeset
785 "Shrink the WINDOW to be as small as possible to display its contents.
36366
62272f68e460 (fit-window-to-buffer, window-safely-shrinkable-p)
Eli Zaretskii <eliz@gnu.org>
parents: 34580
diff changeset
786 If WINDOW is omitted or nil, it defaults to the selected window.
8721
c94f87ea8a1b (shrink-window-if-larger-than-buffer): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 8672
diff changeset
787 Do not shrink to less than `window-min-height' lines.
3342
ce8aa0ba8b08 (shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents: 3253
diff changeset
788 Do nothing if the buffer contains more lines than the present window height,
4364
69e5c2373d37 (shrink-window-if-larger-than-buffer): Do nothing if the
Richard M. Stallman <rms@gnu.org>
parents: 3724
diff changeset
789 or if some of the window's contents are scrolled out of view,
63168
54196b74d427 (shrink-window-if-larger-than-buffer): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents: 63162
diff changeset
790 or if shrinking this window would also shrink another window,
62671
bf8ebb1d0b0b (quit-window, shrink-window-if-larger-than-buffer): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 61764
diff changeset
791 or if the window is the only window of its frame."
3342
ce8aa0ba8b08 (shrink-window-if-larger-than-buffer): Add `interactive'.
Richard M. Stallman <rms@gnu.org>
parents: 3253
diff changeset
792 (interactive)
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
793 (when (null window)
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
794 (setq window (selected-window)))
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
795 (let* ((frame (window-frame window))
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
796 (mini (frame-parameter frame 'minibuffer))
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
797 (edges (window-edges window)))
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
798 (if (and (not (eq window (frame-root-window frame)))
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
799 (window-safely-shrinkable-p)
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
800 (pos-visible-in-window-p (point-min) window)
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
801 (not (eq mini 'only))
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
802 (or (not mini)
36666
2b284278da9c (shrink-window-if-larger-than-buffer): Handle frame
Gerd Moellmann <gerd@gnu.org>
parents: 36366
diff changeset
803 (let ((mini-window (minibuffer-window frame)))
2b284278da9c (shrink-window-if-larger-than-buffer): Handle frame
Gerd Moellmann <gerd@gnu.org>
parents: 36366
diff changeset
804 (or (null mini-window)
2b284278da9c (shrink-window-if-larger-than-buffer): Handle frame
Gerd Moellmann <gerd@gnu.org>
parents: 36366
diff changeset
805 (not (eq frame (window-frame mini-window)))
2b284278da9c (shrink-window-if-larger-than-buffer): Handle frame
Gerd Moellmann <gerd@gnu.org>
parents: 36366
diff changeset
806 (< (nth 3 edges)
2b284278da9c (shrink-window-if-larger-than-buffer): Handle frame
Gerd Moellmann <gerd@gnu.org>
parents: 36366
diff changeset
807 (nth 1 (window-edges mini-window)))
49597
e88404e8f2cf Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 48941
diff changeset
808 (> (nth 1 edges)
36666
2b284278da9c (shrink-window-if-larger-than-buffer): Handle frame
Gerd Moellmann <gerd@gnu.org>
parents: 36366
diff changeset
809 (frame-parameter frame 'menu-bar-lines))))))
32705
7d93bad80655 (fit-window-to-buffer): New function.
Miles Bader <miles@gnu.org>
parents: 32695
diff changeset
810 (fit-window-to-buffer window (window-height window)))))
16469
479c96f4be3a (kill-buffer-and-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 15076
diff changeset
811
479c96f4be3a (kill-buffer-and-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 15076
diff changeset
812 (defun kill-buffer-and-window ()
479c96f4be3a (kill-buffer-and-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 15076
diff changeset
813 "Kill the current buffer and delete the selected window."
479c96f4be3a (kill-buffer-and-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 15076
diff changeset
814 (interactive)
52481
f1cce2846e29 (kill-buffer-and-window): Remove `yes-or-no-p' so that
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
815 (let ((window-to-delete (selected-window))
73447
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
816 (buffer-to-kill (current-buffer))
52481
f1cce2846e29 (kill-buffer-and-window): Remove `yes-or-no-p' so that
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
817 (delete-window-hook (lambda ()
f1cce2846e29 (kill-buffer-and-window): Remove `yes-or-no-p' so that
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
818 (condition-case nil
f1cce2846e29 (kill-buffer-and-window): Remove `yes-or-no-p' so that
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
819 (delete-window)
f1cce2846e29 (kill-buffer-and-window): Remove `yes-or-no-p' so that
Richard M. Stallman <rms@gnu.org>
parents: 52401
diff changeset
820 (error nil)))))
73447
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
821 (unwind-protect
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
822 (progn
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
823 (add-hook 'kill-buffer-hook delete-window-hook t t)
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
824 (if (kill-buffer (current-buffer))
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
825 ;; If `delete-window' failed before, we rerun it to regenerate
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
826 ;; the error so it can be seen in the echo area.
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
827 (when (eq (selected-window) window-to-delete)
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
828 (delete-window))))
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
829 ;; If the buffer is not dead for some reason (probably because
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
830 ;; of a `quit' signal), remove the hook again.
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
831 (condition-case nil
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
832 (with-current-buffer buffer-to-kill
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
833 (remove-hook 'kill-buffer-hook delete-window-hook t))
7c85e65e0464 (kill-buffer-and-window): Fix a bug where an aborted
David Kastrup <dak@gnu.org>
parents: 72737
diff changeset
834 (error nil)))))
16469
479c96f4be3a (kill-buffer-and-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 15076
diff changeset
835
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
836 (defun quit-window (&optional kill window)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
837 "Quit the current buffer. Bury it, and maybe delete the selected frame.
62671
bf8ebb1d0b0b (quit-window, shrink-window-if-larger-than-buffer): Doc fixes.
Juanma Barranquero <lekktu@gmail.com>
parents: 61764
diff changeset
838 \(The frame is deleted if it contains a dedicated window for the buffer.)
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
839 With a prefix argument, kill the buffer instead.
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
840
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
841 Noninteractively, if KILL is non-nil, then kill the current buffer,
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
842 otherwise bury it.
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
843
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
844 If WINDOW is non-nil, it specifies a window; we delete that window,
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
845 and the buffer that is killed or buried is the one in that window."
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
846 (interactive "P")
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
847 (let ((buffer (window-buffer window))
21970
3c8d5ab91f84 (quit-window): Fixed FRAME to be the frame and never window.
Richard M. Stallman <rms@gnu.org>
parents: 21860
diff changeset
848 (frame (window-frame (or window (selected-window))))
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
849 (window-solitary
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
850 (save-selected-window
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
851 (if window
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
852 (select-window window))
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
853 (one-window-p t)))
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
854 window-handled)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
855
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
856 (save-selected-window
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
857 (if window
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
858 (select-window window))
21860
58d299618042 (quit-window): Don't try to switch buffers
Richard M. Stallman <rms@gnu.org>
parents: 21118
diff changeset
859 (or (window-minibuffer-p)
58d299618042 (quit-window): Don't try to switch buffers
Richard M. Stallman <rms@gnu.org>
parents: 21118
diff changeset
860 (window-dedicated-p (selected-window))
58d299618042 (quit-window): Don't try to switch buffers
Richard M. Stallman <rms@gnu.org>
parents: 21118
diff changeset
861 (switch-to-buffer (other-buffer))))
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
862
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
863 ;; Get rid of the frame, if it has just one dedicated window
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
864 ;; and other visible frames exist.
21860
58d299618042 (quit-window): Don't try to switch buffers
Richard M. Stallman <rms@gnu.org>
parents: 21118
diff changeset
865 (and (or (window-minibuffer-p) (window-dedicated-p window))
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
866 (delq frame (visible-frame-list))
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
867 window-solitary
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
868 (if (and (eq default-minibuffer-frame frame)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
869 (= 1 (length (minibuffer-frame-list))))
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
870 (setq window nil)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
871 (delete-frame frame)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
872 (setq window-handled t)))
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
873
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
874 ;; Deal with the buffer.
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
875 (if kill
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
876 (kill-buffer buffer)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
877 (bury-buffer buffer))
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
878
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
879 ;; Maybe get rid of the window.
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
880 (and window (not window-handled) (not window-solitary)
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
881 (delete-window window))))
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
882
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
883 (defvar mouse-autoselect-window-timer nil
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
884 "Timer used by delayed window autoselection.")
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
885
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
886 (defvar mouse-autoselect-window-position nil
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
887 "Last mouse position recorded by delayed window autoselection.")
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
888
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
889 (defvar mouse-autoselect-window-window nil
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
890 "Last window recorded by delayed window autoselection.")
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
891
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
892 (defvar mouse-autoselect-window-state nil
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
893 "When non-nil, special state of delayed window autoselection.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
894 Possible values are `suspend' \(suspend autoselection after a menu or
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
895 scrollbar interaction\) and `select' \(the next invocation of
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
896 'handle-select-window' shall select the window immediately\).")
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
897
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
898 (defun mouse-autoselect-window-cancel (&optional force)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
899 "Cancel delayed window autoselection.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
900 Optional argument FORCE means cancel unconditionally."
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
901 (unless (and (not force)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
902 ;; Don't cancel while the user drags a scroll bar.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
903 (eq this-command 'scroll-bar-toolkit-scroll)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
904 (memq (nth 4 (event-end last-input-event))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
905 '(handle end-scroll)))
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
906 (setq mouse-autoselect-window-state nil)
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
907 (when (timerp mouse-autoselect-window-timer)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
908 (cancel-timer mouse-autoselect-window-timer))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
909 (remove-hook 'pre-command-hook 'mouse-autoselect-window-cancel)))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
910
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
911 (defun mouse-autoselect-window-start (mouse-position &optional window suspend)
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
912 "Start delayed window autoselection.
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
913 MOUSE-POSITION is the last position where the mouse was seen as returned
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
914 by `mouse-position'. Optional argument WINDOW non-nil denotes the
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
915 window where the mouse was seen. Optional argument SUSPEND non-nil
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
916 means suspend autoselection."
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
917 ;; Record values for MOUSE-POSITION, WINDOW, and SUSPEND.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
918 (setq mouse-autoselect-window-position mouse-position)
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
919 (when window (setq mouse-autoselect-window-window window))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
920 (setq mouse-autoselect-window-state (when suspend 'suspend))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
921 ;; Install timer which runs `mouse-autoselect-window-select' after
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
922 ;; `mouse-autoselect-window' seconds.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
923 (setq mouse-autoselect-window-timer
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
924 (run-at-time
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
925 (abs mouse-autoselect-window) nil 'mouse-autoselect-window-select)))
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
926
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
927 (defun mouse-autoselect-window-select ()
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
928 "Select window with delayed window autoselection.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
929 If the mouse position has stabilized in a non-selected window, select
78492
7c8949dbfa0d Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
930 that window. The minibuffer window is selected only if the minibuffer is
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
931 active. This function is run by `mouse-autoselect-window-timer'."
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
932 (condition-case nil
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
933 (let* ((mouse-position (mouse-position))
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
934 (window
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
935 (condition-case nil
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
936 (window-at (cadr mouse-position) (cddr mouse-position)
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
937 (car mouse-position))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
938 (error nil))))
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
939 (cond
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
940 ((or (menu-or-popup-active-p)
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
941 (and window
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
942 (not (coordinates-in-window-p (cdr mouse-position) window))))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
943 ;; A menu / popup dialog is active or the mouse is on the scroll-bar
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
944 ;; of WINDOW, temporarily suspend delayed autoselection.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
945 (mouse-autoselect-window-start mouse-position nil t))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
946 ((eq mouse-autoselect-window-state 'suspend)
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
947 ;; Delayed autoselection was temporarily suspended, reenable it.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
948 (mouse-autoselect-window-start mouse-position))
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
949 ((and window (not (eq window (selected-window)))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
950 (or (not (numberp mouse-autoselect-window))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
951 (and (> mouse-autoselect-window 0)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
952 ;; If `mouse-autoselect-window' is positive, select
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
953 ;; window if the window is the same as before.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
954 (eq window mouse-autoselect-window-window))
78492
7c8949dbfa0d Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
955 ;; Otherwise select window if the mouse is at the same
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
956 ;; position as before. Observe that the first test after
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
957 ;; starting autoselection usually fails since the value of
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
958 ;; `mouse-autoselect-window-position' recorded there is the
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
959 ;; position where the mouse has entered the new window and
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
960 ;; not necessarily where the mouse has stopped moving.
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
961 (equal mouse-position mouse-autoselect-window-position))
78492
7c8949dbfa0d Replace `iff' in doc-strings and comments.
Glenn Morris <rgm@gnu.org>
parents: 78236
diff changeset
962 ;; The minibuffer is a candidate window if it's active.
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
963 (or (not (window-minibuffer-p window))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
964 (eq window (active-minibuffer-window))))
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
965 ;; Mouse position has stabilized in non-selected window: Cancel
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
966 ;; delayed autoselection and try to select that window.
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
967 (mouse-autoselect-window-cancel t)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
968 ;; Select window where mouse appears unless the selected window is the
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
969 ;; minibuffer. Use `unread-command-events' in order to execute pre-
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
970 ;; and post-command hooks and trigger idle timers. To avoid delaying
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
971 ;; autoselection again, set `mouse-autoselect-window-state'."
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
972 (unless (window-minibuffer-p (selected-window))
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
973 (setq mouse-autoselect-window-state 'select)
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
974 (setq unread-command-events
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
975 (cons (list 'select-window (list window))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
976 unread-command-events))))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
977 ((or (and window (eq window (selected-window)))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
978 (not (numberp mouse-autoselect-window))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
979 (equal mouse-position mouse-autoselect-window-position))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
980 ;; Mouse position has either stabilized in the selected window or at
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
981 ;; `mouse-autoselect-window-position': Cancel delayed autoselection.
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
982 (mouse-autoselect-window-cancel t))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
983 (t
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
984 ;; Mouse position has not stabilized yet, resume delayed
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
985 ;; autoselection.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
986 (mouse-autoselect-window-start mouse-position window))))
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
987 (error nil)))
21118
2aa0dc203036 (quit-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 18517
diff changeset
988
44296
915a76139f37 (handle-select-window): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 43095
diff changeset
989 (defun handle-select-window (event)
915a76139f37 (handle-select-window): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 43095
diff changeset
990 "Handle select-window events."
915a76139f37 (handle-select-window): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 43095
diff changeset
991 (interactive "e")
915a76139f37 (handle-select-window): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 43095
diff changeset
992 (let ((window (posn-window (event-start event))))
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
993 (when (and (window-live-p window)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
994 ;; Don't switch if we're currently in the minibuffer.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
995 ;; This tries to work around problems where the minibuffer gets
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
996 ;; unselected unexpectedly, and where you then have to move
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
997 ;; your mouse all the way down to the minibuffer to select it.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
998 (not (window-minibuffer-p (selected-window)))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
999 ;; Don't switch to a minibuffer window unless it's active.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1000 (or (not (window-minibuffer-p window))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1001 (minibuffer-window-active-p window)))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1002 (unless (and (numberp mouse-autoselect-window)
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1003 (not (zerop mouse-autoselect-window))
73698
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1004 (not (eq mouse-autoselect-window-state 'select))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1005 (progn
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1006 ;; Cancel any delayed autoselection.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1007 (mouse-autoselect-window-cancel t)
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1008 ;; Start delayed autoselection from current mouse position
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1009 ;; and window.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1010 (mouse-autoselect-window-start (mouse-position) window)
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1011 ;; Executing a command cancels delayed autoselection.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1012 (add-hook
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1013 'pre-command-hook 'mouse-autoselect-window-cancel)))
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1014 ;; Reset state of delayed autoselection.
97a25a5ed8a9 (mouse-autoselect-window-now): Remove variable.
Eli Zaretskii <eliz@gnu.org>
parents: 73447
diff changeset
1015 (setq mouse-autoselect-window-state nil)
72737
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1016 (when mouse-autoselect-window
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1017 ;; Run `mouse-leave-buffer-hook' when autoselecting window.
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1018 (run-hooks 'mouse-leave-buffer-hook))
455031002c62 * window.el (mouse-autoselect-window-timer)
Chong Yidong <cyd@stupidchicken.com>
parents: 72182
diff changeset
1019 (select-window window)))))
44296
915a76139f37 (handle-select-window): New function.
Pavel Janík <Pavel@Janik.cz>
parents: 43095
diff changeset
1020
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
1021 (define-key ctl-x-map "2" 'split-window-vertically)
707
e4253da532fb *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 698
diff changeset
1022 (define-key ctl-x-map "3" 'split-window-horizontally)
36
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
1023 (define-key ctl-x-map "}" 'enlarge-window-horizontally)
9697c13298e5 Initial revision
Joseph Arceneaux <jla@gnu.org>
parents:
diff changeset
1024 (define-key ctl-x-map "{" 'shrink-window-horizontally)
2529
bb127c1081af (shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 841
diff changeset
1025 (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer)
bb127c1081af (shrink-window-if-larger-than-buffer): Moved from electric.el to windows.el,
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 841
diff changeset
1026 (define-key ctl-x-map "+" 'balance-windows)
16469
479c96f4be3a (kill-buffer-and-window): New command.
Richard M. Stallman <rms@gnu.org>
parents: 15076
diff changeset
1027 (define-key ctl-x-4-map "0" 'kill-buffer-and-window)
656
d74e65773062 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 419
diff changeset
1028
59652
9672303dbf4f (handle-select-window): Don't switch window when we're in the minibuffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 56588
diff changeset
1029 ;; arch-tag: b508dfcc-c353-4c37-89fa-e773fe10cea9
33708
7c2b5397acbc General comment and spacing fixes.
Stefan Monnier <monnier@iro.umontreal.ca>
parents: 33537
diff changeset
1030 ;;; window.el ends here