(mouse-drag-secondary): Don't treat end of buffer
[bpt/emacs.git] / lisp / rsz-mini.el
CommitLineData
813f532d
RS
1;;; rsz-mini.el --- dynamically resize minibuffer to display entire contents
2
3;;; Copyright (C) 1990, 1993, 1994 Free Software Foundation, Inc.
4
5;;; Author: Noah Friedman <friedman@prep.ai.mit.edu>
6;;; Roland McGrath <roland@prep.ai.mit.edu>
7;;; Maintainer: friedman@prep.ai.mit.edu
8;;; Keywords: minibuffer, window, frame, display
cb7217a7
NF
9;;; Status: Known to work in FSF GNU Emacs 19.26 and later.
10;;; $Id: rsz-mini.el,v 1.3 1994/05/20 17:43:40 friedman Exp friedman $
813f532d
RS
11
12;; This file is part of GNU Emacs.
13
14;; GNU Emacs is free software; you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
16;; the Free Software Foundation; either version 2, or (at your option)
17;; any later version.
18
19;; GNU Emacs is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
25;; along with GNU Emacs; see the file COPYING. If not, write to
26;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
27
28;;; Commentary:
29
30;;; This package allows the entire contents (or as much as possible) of the
31;;; minibuffer to be visible at once when typing. As the end of a line is
32;;; reached, the minibuffer will resize itself. When the user is done
33;;; typing, the minibuffer will return to its original size.
34
35;;; In window systems where it is possible to have a frame in which the
36;;; minibuffer is the only window, the frame itself can be resized. In FSF
37;;; GNU Emacs 19.22 and earlier, the frame may not be properly returned to
38;;; its original size after it ceases to be active because
39;;; `minibuffer-exit-hook' didn't exist until version 19.23.
cb7217a7
NF
40;;;
41;;; Prior to Emacs 19.26, minibuffer-exit-hook wasn't called after exiting
42;;; from the minibuffer by hitting the quit char. That meant that the
43;;; frame size restoration function wasn't being called in that case. In
44;;; 19.26 or later, minibuffer-exit-hook should be called anyway.
813f532d
RS
45
46;;; Note that the minibuffer and echo area are not the same! They simply
47;;; happen to occupy roughly the same place on the frame. Messages put in
48;;; the echo area will not cause any resizing by this package.
49
50;;; This package is considered a minor mode but it doesn't put anything in
51;;; minor-mode-alist because this mode is specific to the minibuffer, which
52;;; has no mode line.
53
54;;; To use this package, put the following in your .emacs:
55;;;
56;;; (autoload 'resize-minibuffer-mode "rsz-mini" nil t)
57;;;
58;;; Invoking the command `resize-minibuffer-mode' will then enable this mode.
cb7217a7 59;;; Simply loading this file will also enable it.
813f532d
RS
60
61;;; Code:
62
63\f
64;;;###autoload
65(defvar resize-minibuffer-mode nil
66 "*If non-`nil', resize the minibuffer so its entire contents are visible.")
67
68;;;###autoload
69(defvar resize-minibuffer-window-max-height nil
70 "*Maximum size the minibuffer window is allowed to become.
71If less than 1 or not a number, the limit is the height of the frame in
72which the active minibuffer window resides.")
73
74;;;###autoload
75(defvar resize-minibuffer-window-exactly t
cb7217a7
NF
76 "*Allow making minibuffer exactly the size to display all its contents.
77If `nil', the minibuffer window can temporarily increase in size but
78never get smaller while it is active. Any other value allows exact
79resizing.")
813f532d 80
813f532d
RS
81;;;###autoload
82(defvar resize-minibuffer-frame nil
cb7217a7
NF
83 "*Allow changing the frame height of minibuffer frames.
84If non-`nil' and the active minibuffer is the sole window in its frame,
85allow changing the frame height.")
813f532d
RS
86
87;;;###autoload
88(defvar resize-minibuffer-frame-max-height nil
89 "*Maximum size the minibuffer frame is allowed to become.
90If less than 1 or not a number, there is no limit.")
91
92;;;###autoload
cb7217a7
NF
93(defvar resize-minibuffer-frame-exactly t
94 "*Allow making minibuffer frame exactly the size to display all its contents.
95If `nil', the minibuffer frame can temporarily increase in size but
96never get smaller while it is active. Any other value allows exact
97resizing.")
98
99;; Variable used to store the height of the minibuffer frame
100;; on entry, so it can be restored on exit. It is made local before it is
101;; modified. Do not use it yourself.
102(defvar resize-minibuffer-frame-original-height nil)
813f532d
RS
103
104\f
105;;;###autoload
106(defun resize-minibuffer-mode (&optional prefix)
107 "Enable or disable resize-minibuffer mode.
108A negative prefix argument disables this mode. A positive argument or
109argument of 0 enables it.
110
111When this minor mode is enabled, the minibuffer is dynamically resized to
112contain the entire region of text put in it as you type.
113
114The variable `resize-minibuffer-mode' is set to t or nil depending on
115whether this mode is active or not.
116
117The maximum height to which the minibuffer can grow is controlled by the
118variable `resize-minibuffer-window-max-height'.
119
120The variable `resize-minibuffer-window-exactly' determines whether the
121minibuffer window should ever be shrunk to make it no larger than needed to
122display its contents.
123
54059149 124When using a window system, it is possible for a minibuffer to be the sole
813f532d
RS
125window in a frame. Since that window is already its maximum size, the only
126way to make more text visible at once is to increase the size of the frame.
127The variable `resize-minibuffer-frame' controls whether this should be
128done. The variables `resize-minibuffer-frame-max-height' and
129`resize-minibuffer-frame-exactly' are analogous to their window
130counterparts."
131 (interactive "p")
132 (or prefix (setq prefix 0))
133 (cond
134 ((>= prefix 0)
135 (setq resize-minibuffer-mode t))
136 (t
137 (setq resize-minibuffer-mode nil))))
138
139(defun resize-minibuffer-setup ()
140 (cond
141 (resize-minibuffer-mode
142 (cond
143 ((and window-system
144 (eq 'only (cdr (assq 'minibuffer (frame-parameters)))))
145 (and resize-minibuffer-frame
146 (progn
cb7217a7
NF
147 ;; Squirrel away the current height of the frame so we can
148 ;; restore it later. We do this rather than trusting the
149 ;; value in minibuffer-frame-alist since the frame can be
150 ;; resized by the window manager and that variable isn't updated.
151 (make-local-variable 'resize-minibuffer-frame-original-height)
152 (setq resize-minibuffer-frame-original-height (frame-height))
813f532d
RS
153 (make-local-variable 'minibuffer-exit-hook)
154 (add-hook 'minibuffer-exit-hook 'resize-minibuffer-frame-restore)
155 (make-local-variable 'post-command-hook)
cb7217a7 156 (add-hook 'post-command-hook 'resize-minibuffer-frame 'append))))
813f532d
RS
157 (t
158 (make-local-variable 'post-command-hook)
cb7217a7
NF
159 (add-hook 'post-command-hook 'resize-minibuffer-window 'append)
160 (make-local-variable 'minibuffer-exit-hook)
161 (add-hook 'minibuffer-exit-hook 'resize-minibuffer-window-restore))))))
813f532d
RS
162
163(defun resize-minibuffer-count-window-lines (&optional start end)
164 "Return number of window lines occupied by text in region.
165The number of window lines may be greater than the number of actual lines
166in the buffer if any wrap on the display due to their length.
167
168Optional arguments START and END default to point-min and point-max,
169respectively."
170 (or start (setq start (point-min)))
171 (or end (setq end (point-max)))
172 (if (= start end)
173 0
174 (save-excursion
175 (save-restriction
176 (widen)
177 (narrow-to-region start end)
178 (goto-char start)
179 (vertical-motion (buffer-size))))))
180
181\f
182;; Resize the minibuffer window to contain the minibuffer's contents.
cb7217a7 183;; The minibuffer window must be current.
813f532d
RS
184(defun resize-minibuffer-window ()
185 (let ((height (window-height))
186 (lines (1+ (resize-minibuffer-count-window-lines))))
187 (and (numberp resize-minibuffer-window-max-height)
188 (> resize-minibuffer-window-max-height 0)
189 (setq lines (min lines resize-minibuffer-window-max-height)))
190 (or (if resize-minibuffer-window-exactly
191 (= lines height)
192 (<= lines height))
193 (enlarge-window (- lines height)))))
194
cb7217a7
NF
195;; This resizes the minibuffer back to one line as soon as it is exited
196;; (e.g. when the user hits RET). This way, subsequent messages put in the
197;; echo area aren't cluttered with leftover minibuffer text.
198;; It should be called by minibuffer-exit-hook.
199;;
200;; Note that because it calls sit-for to force a screen update, strange
201;; things may happen in the minibuffer, such as unexpanded partial
202;; completions by complete.el showing their completion.
203;; If this bothers you, just redefine this function to do nothing, in, say,
204;; your after-load-alist. Perhaps there should be an option variable,
205;; but I don't know if there's really any demand for it.
206;; (Clobbering this definition is harmless because eventually emacs restores
207;; its idea of the minibuffer window size when the minibuffer isn't in use
208;; anyway; this is just a kludge because of the timing for that update).
209(defun resize-minibuffer-window-restore ()
210 (enlarge-window (- 1 (window-height)))
211 (sit-for 0))
212
813f532d
RS
213\f
214;; Resize the minibuffer frame to contain the minibuffer's contents.
215;; The minibuffer frame must be the current frame.
216(defun resize-minibuffer-frame ()
217 (let ((height (frame-height))
218 (lines (1+ (resize-minibuffer-count-window-lines))))
219 (and (numberp resize-minibuffer-frame-max-height)
220 (> resize-minibuffer-frame-max-height 0)
221 (setq lines (min lines resize-minibuffer-frame-max-height)))
222 (cond
223 ((> lines height)
224 (set-frame-size (selected-frame) (frame-width) lines))
225 ((and resize-minibuffer-frame-exactly
cb7217a7 226 (> height resize-minibuffer-frame-original-height)
813f532d
RS
227 (< lines height))
228 (set-frame-size (selected-frame) (frame-width) lines)))))
229
230;; Restore the original height of the frame.
cb7217a7
NF
231;; resize-minibuffer-frame-original-height is set in
232;; resize-minibuffer-setup.
813f532d
RS
233(defun resize-minibuffer-frame-restore ()
234 (set-frame-size (selected-frame)
235 (frame-width)
cb7217a7 236 resize-minibuffer-frame-original-height))
813f532d
RS
237
238\f
239(provide 'rsz-mini)
240
241(add-hook 'minibuffer-setup-hook 'resize-minibuffer-setup)
dfe893a0 242(resize-minibuffer-mode)
813f532d
RS
243
244;; rsz-mini.el ends here