]> code.delx.au - gnu-emacs/blob - lisp/window.el
Comment changes.
[gnu-emacs] / lisp / window.el
1 ;;; window.el --- GNU Emacs window commands aside from those written in C
2
3 ;; Copyright (C) 1985, 1989, 1992, 1993, 1994, 2000, 2001, 2002
4 ;; Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: internal
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;; Window tree functions.
29
30 ;;; Code:
31
32 (defmacro save-selected-window (&rest body)
33 "Execute BODY, then select the window that was selected before BODY.
34 However, if that window has become dead, don't get an error,
35 just refrain from switching to it."
36 `(let ((save-selected-window-window (selected-window)))
37 (unwind-protect
38 (progn ,@body)
39 (if (window-live-p save-selected-window-window)
40 (select-window save-selected-window-window)))))
41
42 (defun window-body-height (&optional window)
43 "Return number of lines in window WINDOW for actual buffer text.
44 This does not include the mode line (if any) or the header line (if any)."
45 (or window (setq window (selected-window)))
46 (if (window-minibuffer-p window)
47 (window-height window)
48 (with-current-buffer (window-buffer window)
49 (max 1 (- (window-height window)
50 (if mode-line-format 1 0)
51 (if header-line-format 1 0))))))
52
53 (defun one-window-p (&optional nomini all-frames)
54 "Return non-nil if the selected window is the only window (in its frame).
55 Optional arg NOMINI non-nil means don't count the minibuffer
56 even if it is active.
57
58 The optional arg ALL-FRAMES t means count windows on all frames.
59 If it is `visible', count windows on all visible frames.
60 ALL-FRAMES nil or omitted means count only the selected frame,
61 plus the minibuffer it uses (which may be on another frame).
62 If ALL-FRAMES is neither nil nor t, count only the selected frame."
63 (let ((base-window (selected-window)))
64 (if (and nomini (eq base-window (minibuffer-window)))
65 (setq base-window (next-window base-window)))
66 (eq base-window
67 (next-window base-window (if nomini 'arg) all-frames))))
68
69 (defun walk-windows (proc &optional minibuf all-frames)
70 "Cycle through all visible windows, calling PROC for each one.
71 PROC is called with a window as argument.
72
73 Optional second arg MINIBUF t means count the minibuffer window even
74 if not active. MINIBUF nil or omitted means count the minibuffer iff
75 it is active. MINIBUF neither t nor nil means not to count the
76 minibuffer even if it is active.
77
78 Several frames may share a single minibuffer; if the minibuffer
79 counts, all windows on all frames that share that minibuffer count
80 too. Therefore, if you are using a separate minibuffer frame
81 and the minibuffer is active and MINIBUF says it counts,
82 `walk-windows' includes the windows in the frame from which you
83 entered the minibuffer, as well as the minibuffer window.
84
85 ALL-FRAMES is the optional third argument.
86 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
87 ALL-FRAMES = `visible' means include windows on all visible frames.
88 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
89 ALL-FRAMES = t means include windows on all frames including invisible frames.
90 If ALL-FRAMES is a frame, it means include windows on that frame.
91 Anything else means restrict to the selected frame."
92 ;; If we start from the minibuffer window, don't fail to come back to it.
93 (if (window-minibuffer-p (selected-window))
94 (setq minibuf t))
95 (save-selected-window
96 (if (framep all-frames)
97 (select-window (frame-first-window all-frames)))
98 (let* (walk-windows-already-seen
99 (walk-windows-current (selected-window)))
100 (while (progn
101 (setq walk-windows-current
102 (next-window walk-windows-current minibuf all-frames))
103 (not (memq walk-windows-current walk-windows-already-seen)))
104 (setq walk-windows-already-seen
105 (cons walk-windows-current walk-windows-already-seen))
106 (funcall proc walk-windows-current)))))
107
108 (defun get-window-with-predicate (predicate &optional minibuf
109 all-frames default)
110 "Return a window satisfying PREDICATE.
111
112 This function cycles through all visible windows using `walk-windows',
113 calling PREDICATE on each one. PREDICATE is called with a window as
114 argument. The first window for which PREDICATE returns a non-nil
115 value is returned. If no window satisfies PREDICATE, DEFAULT is
116 returned.
117
118 Optional second arg MINIBUF t means count the minibuffer window even
119 if not active. MINIBUF nil or omitted means count the minibuffer iff
120 it is active. MINIBUF neither t nor nil means not to count the
121 minibuffer even if it is active.
122
123 Several frames may share a single minibuffer; if the minibuffer
124 counts, all windows on all frames that share that minibuffer count
125 too. Therefore, if you are using a separate minibuffer frame
126 and the minibuffer is active and MINIBUF says it counts,
127 `walk-windows' includes the windows in the frame from which you
128 entered the minibuffer, as well as the minibuffer window.
129
130 ALL-FRAMES is the optional third argument.
131 ALL-FRAMES nil or omitted means cycle within the frames as specified above.
132 ALL-FRAMES = `visible' means include windows on all visible frames.
133 ALL-FRAMES = 0 means include windows on all visible and iconified frames.
134 ALL-FRAMES = t means include windows on all frames including invisible frames.
135 If ALL-FRAMES is a frame, it means include windows on that frame.
136 Anything else means restrict to the selected frame."
137 (catch 'found
138 (walk-windows #'(lambda (window)
139 (when (funcall predicate window)
140 (throw 'found window)))
141 minibuf all-frames)
142 default))
143
144 (defalias 'some-window 'get-window-with-predicate)
145
146 (defun minibuffer-window-active-p (window)
147 "Return t if WINDOW (a minibuffer window) is now active."
148 (eq window (active-minibuffer-window)))
149 \f
150 (defun count-windows (&optional minibuf)
151 "Return the number of visible windows.
152 This counts the windows in the selected frame and (if the minibuffer is
153 to be counted) its minibuffer frame (if that's not the same frame).
154 The optional arg MINIBUF non-nil means count the minibuffer
155 even if it is inactive."
156 (let ((count 0))
157 (walk-windows (function (lambda (w)
158 (setq count (+ count 1))))
159 minibuf)
160 count))
161
162 (defun window-safely-shrinkable-p (&optional window)
163 "Non-nil if the WINDOW can be shrunk without shrinking other windows.
164 If WINDOW is nil or omitted, it defaults to the currently selected window."
165 (save-selected-window
166 (when window (select-window window))
167 (or (and (not (eq window (frame-first-window)))
168 (= (car (window-edges))
169 (car (window-edges (previous-window)))))
170 (= (car (window-edges))
171 (car (window-edges (next-window)))))))
172
173 (defun balance-windows ()
174 "Make all visible windows the same height (approximately)."
175 (interactive)
176 (let ((count -1) levels newsizes level-size
177 ;; Don't count the lines that are above the uppermost windows.
178 ;; (These are the menu bar lines, if any.)
179 (mbl (nth 1 (window-edges (frame-first-window (selected-frame)))))
180 (last-window (previous-window (frame-first-window (selected-frame))))
181 ;; Don't count the lines that are past the lowest main window.
182 total)
183 ;; Bottom edge of last window determines what size we have to work with.
184 (setq total
185 (+ (window-height last-window)
186 (nth 1 (window-edges last-window))))
187
188 ;; Find all the different vpos's at which windows start,
189 ;; then count them. But ignore levels that differ by only 1.
190 (let (tops (prev-top -2))
191 (walk-windows (function (lambda (w)
192 (setq tops (cons (nth 1 (window-edges w))
193 tops))))
194 'nomini)
195 (setq tops (sort tops '<))
196 (while tops
197 (if (> (car tops) (1+ prev-top))
198 (setq prev-top (car tops)
199 count (1+ count)))
200 (setq levels (cons (cons (car tops) count) levels))
201 (setq tops (cdr tops)))
202 (setq count (1+ count)))
203 ;; Subdivide the frame into desired number of vertical levels.
204 (setq level-size (/ (- total mbl) count))
205 (save-selected-window
206 ;; Set up NEWSIZES to map windows to their desired sizes.
207 ;; If a window ends at the bottom level, don't include
208 ;; it in NEWSIZES. Those windows get the right sizes
209 ;; by adjusting the ones above them.
210 (walk-windows (function
211 (lambda (w)
212 (let ((newtop (cdr (assq (nth 1 (window-edges w))
213 levels)))
214 (newbot (cdr (assq (+ (window-height w)
215 (nth 1 (window-edges w)))
216 levels))))
217 (if newbot
218 (setq newsizes
219 (cons (cons w (* level-size (- newbot newtop)))
220 newsizes))))))
221 'nomini)
222 ;; Make walk-windows start with the topmost window.
223 (select-window (previous-window (frame-first-window (selected-frame))))
224 (let (done (count 0))
225 ;; Give each window its precomputed size, or at least try.
226 ;; Keep trying until they all get the intended sizes,
227 ;; but not more than 3 times (to prevent infinite loop).
228 (while (and (not done) (< count 3))
229 (setq done t)
230 (setq count (1+ count))
231 (walk-windows (function (lambda (w)
232 (select-window w)
233 (let ((newsize (cdr (assq w newsizes))))
234 (when newsize
235 (enlarge-window (- newsize
236 (window-height))
237 nil t)
238 (unless (= (window-height) newsize)
239 (setq done nil))))))
240 'nomini))))))
241 \f
242 ;; I think this should be the default; I think people will prefer it--rms.
243 (defcustom split-window-keep-point t
244 "*If non-nil, split windows keeps the original point in both children.
245 This is often more convenient for editing.
246 If nil, adjust point in each of the two windows to minimize redisplay.
247 This is convenient on slow terminals, but point can move strangely."
248 :type 'boolean
249 :group 'windows)
250
251 (defun split-window-vertically (&optional arg)
252 "Split current window into two windows, one above the other.
253 The uppermost window gets ARG lines and the other gets the rest.
254 Negative arg means select the size of the lowermost window instead.
255 With no argument, split equally or close to it.
256 Both windows display the same buffer now current.
257
258 If the variable `split-window-keep-point' is non-nil, both new windows
259 will get the same value of point as the current window. This is often
260 more convenient for editing.
261
262 Otherwise, we chose window starts so as to minimize the amount of
263 redisplay; this is convenient on slow terminals. The new selected
264 window is the one that the current value of point appears in. The
265 value of point can change if the text around point is hidden by the
266 new mode line."
267 (interactive "P")
268 (let ((old-w (selected-window))
269 (old-point (point))
270 (size (and arg (prefix-numeric-value arg)))
271 (window-full-p nil)
272 new-w bottom switch moved)
273 (and size (< size 0) (setq size (+ (window-height) size)))
274 (setq new-w (split-window nil size))
275 (or split-window-keep-point
276 (progn
277 (save-excursion
278 (set-buffer (window-buffer))
279 (goto-char (window-start))
280 (setq moved (vertical-motion (window-height)))
281 (set-window-start new-w (point))
282 (if (> (point) (window-point new-w))
283 (set-window-point new-w (point)))
284 (and (= moved (window-height))
285 (progn
286 (setq window-full-p t)
287 (vertical-motion -1)))
288 (setq bottom (point)))
289 (and window-full-p
290 (<= bottom (point))
291 (set-window-point old-w (1- bottom)))
292 (and window-full-p
293 (<= (window-start new-w) old-point)
294 (progn
295 (set-window-point new-w old-point)
296 (select-window new-w)))))
297 (split-window-save-restore-data new-w old-w)))
298
299 ;; This is to avoid compiler warnings.
300 (defvar view-return-to-alist)
301
302 (defun split-window-save-restore-data (new-w old-w)
303 (with-current-buffer (window-buffer)
304 (if view-mode
305 (let ((old-info (assq old-w view-return-to-alist)))
306 (push (cons new-w (cons (and old-info (car (cdr old-info))) t))
307 view-return-to-alist)))
308 new-w))
309
310 (defun split-window-horizontally (&optional arg)
311 "Split current window into two windows side by side.
312 This window becomes the leftmost of the two, and gets ARG columns.
313 Negative arg means select the size of the rightmost window instead.
314 The argument includes the width of the window's scroll bar; if there
315 are no scroll bars, it includes the width of the divider column
316 to the window's right, if any. No arg means split equally."
317 (interactive "P")
318 (let ((old-w (selected-window))
319 (size (and arg (prefix-numeric-value arg))))
320 (and size (< size 0)
321 (setq size (+ (window-width) size)))
322 (split-window-save-restore-data (split-window nil size t) old-w)))
323
324 \f
325 (defun set-window-text-height (window height)
326 "Sets the height in lines of the text display area of WINDOW to HEIGHT.
327 This doesn't include the mode-line (or header-line if any) or any
328 partial-height lines in the text display area.
329
330 If WINDOW is nil, the selected window is used.
331
332 Note that the current implementation of this function cannot always set
333 the height exactly, but attempts to be conservative, by allocating more
334 lines than are actually needed in the case where some error may be present."
335 (let ((delta (- height (window-text-height window))))
336 (unless (zerop delta)
337 (let ((window-min-height 1))
338 (if (and window (not (eq window (selected-window))))
339 (save-selected-window
340 (select-window window)
341 (enlarge-window delta))
342 (enlarge-window delta))))))
343
344 \f
345 (defun enlarge-window-horizontally (arg)
346 "Make current window ARG columns wider."
347 (interactive "p")
348 (enlarge-window arg t))
349
350 (defun shrink-window-horizontally (arg)
351 "Make current window ARG columns narrower."
352 (interactive "p")
353 (shrink-window arg t))
354
355 (defun window-buffer-height (window)
356 "Return the height (in screen lines) of the buffer that WINDOW is displaying."
357 (save-excursion
358 (set-buffer (window-buffer window))
359 (goto-char (point-min))
360 (let ((ignore-final-newline
361 ;; If buffer ends with a newline, ignore it when counting height
362 ;; unless point is after it.
363 (and (not (eobp)) (eq ?\n (char-after (1- (point-max)))))))
364 (+ 1 (nth 2 (compute-motion (point-min)
365 '(0 . 0)
366 (- (point-max) (if ignore-final-newline 1 0))
367 (cons 0 100000000)
368 (window-width window)
369 nil
370 window))))))
371
372 (defun count-screen-lines (&optional beg end count-final-newline window)
373 "Return the number of screen lines in the region.
374 The number of screen lines may be different from the number of actual lines,
375 due to line breaking, display table, etc.
376
377 Optional arguments BEG and END default to `point-min' and `point-max'
378 respectively.
379
380 If region ends with a newline, ignore it unless optional third argument
381 COUNT-FINAL-NEWLINE is non-nil.
382
383 The optional fourth argument WINDOW specifies the window used for obtaining
384 parameters such as width, horizontal scrolling, and so on. The default is
385 to use the selected window's parameters.
386
387 Like `vertical-motion', `count-screen-lines' always uses the current buffer,
388 regardless of which buffer is displayed in WINDOW. This makes possible to use
389 `count-screen-lines' in any buffer, whether or not it is currently displayed
390 in some window."
391 (unless beg
392 (setq beg (point-min)))
393 (unless end
394 (setq end (point-max)))
395 (if (= beg end)
396 0
397 (save-excursion
398 (save-restriction
399 (widen)
400 (narrow-to-region (min beg end)
401 (if (and (not count-final-newline)
402 (= ?\n (char-before (max beg end))))
403 (1- (max beg end))
404 (max beg end)))
405 (goto-char (point-min))
406 (1+ (vertical-motion (buffer-size) window))))))
407
408 (defun fit-window-to-buffer (&optional window max-height min-height)
409 "Make WINDOW the right size to display its contents exactly.
410 If WINDOW is omitted or nil, it defaults to the selected window.
411 If the optional argument MAX-HEIGHT is supplied, it is the maximum height
412 the window is allowed to be, defaulting to the frame height.
413 If the optional argument MIN-HEIGHT is supplied, it is the minimum
414 height the window is allowed to be, defaulting to `window-min-height'.
415
416 The heights in MAX-HEIGHT and MIN-HEIGHT include the mode-line and/or
417 header-line."
418 (interactive)
419
420 (when (null window)
421 (setq window (selected-window)))
422 (when (null max-height)
423 (setq max-height (frame-height (window-frame window))))
424
425 (let* ((buf
426 ;; Buffer that is displayed in WINDOW
427 (window-buffer window))
428 (window-height
429 ;; The current height of WINDOW
430 (window-height window))
431 (desired-height
432 ;; The height necessary to show the buffer displayed by WINDOW
433 ;; (`count-screen-lines' always works on the current buffer).
434 (with-current-buffer buf
435 (+ (count-screen-lines)
436 ;; If the buffer is empty, (count-screen-lines) is
437 ;; zero. But, even in that case, we need one text line
438 ;; for cursor.
439 (if (= (point-min) (point-max))
440 1 0)
441 ;; For non-minibuffers, count the mode-line, if any
442 (if (and (not (window-minibuffer-p window))
443 mode-line-format)
444 1 0)
445 ;; Count the header-line, if any
446 (if header-line-format 1 0))))
447 (delta
448 ;; Calculate how much the window height has to change to show
449 ;; desired-height lines, constrained by MIN-HEIGHT and MAX-HEIGHT.
450 (- (max (min desired-height max-height)
451 (or min-height window-min-height))
452 window-height))
453 ;; We do our own height checking, so avoid any restrictions due to
454 ;; window-min-height.
455 (window-min-height 1))
456
457 ;; Don't try to redisplay with the cursor at the end
458 ;; on its own line--that would force a scroll and spoil things.
459 (when (with-current-buffer buf
460 (and (eobp) (bolp) (not (bobp))))
461 (set-window-point window (1- (window-point window))))
462
463 (save-selected-window
464 (select-window window)
465
466 ;; Adjust WINDOW to the nominally correct size (which may actually
467 ;; be slightly off because of variable height text, etc).
468 (unless (zerop delta)
469 (enlarge-window delta))
470
471 ;; Check if the last line is surely fully visible. If not,
472 ;; enlarge the window.
473 (let ((end (with-current-buffer buf
474 (save-excursion
475 (goto-char (point-max))
476 (when (and (bolp) (not (bobp)))
477 ;; Don't include final newline
478 (backward-char 1))
479 (when truncate-lines
480 ;; If line-wrapping is turned off, test the
481 ;; beginning of the last line for visibility
482 ;; instead of the end, as the end of the line
483 ;; could be invisible by virtue of extending past
484 ;; the edge of the window.
485 (forward-line 0))
486 (point)))))
487 (set-window-vscroll window 0)
488 (while (and (< desired-height max-height)
489 (= desired-height (window-height window))
490 (not (pos-visible-in-window-p end window)))
491 (enlarge-window 1)
492 (setq desired-height (1+ desired-height)))))))
493
494 (defun shrink-window-if-larger-than-buffer (&optional window)
495 "Shrink the WINDOW to be as small as possible to display its contents.
496 If WINDOW is omitted or nil, it defaults to the selected window.
497 Do not shrink to less than `window-min-height' lines.
498 Do nothing if the buffer contains more lines than the present window height,
499 or if some of the window's contents are scrolled out of view,
500 or if shrinking this window would also shrink another window.
501 or if the window is the only window of its frame.
502 Return non-nil if the window was shrunk."
503 (interactive)
504 (when (null window)
505 (setq window (selected-window)))
506 (let* ((frame (window-frame window))
507 (mini (frame-parameter frame 'minibuffer))
508 (edges (window-edges window)))
509 (if (and (not (eq window (frame-root-window frame)))
510 (window-safely-shrinkable-p)
511 (pos-visible-in-window-p (point-min) window)
512 (not (eq mini 'only))
513 (or (not mini)
514 (let ((mini-window (minibuffer-window frame)))
515 (or (null mini-window)
516 (not (eq frame (window-frame mini-window)))
517 (< (nth 3 edges)
518 (nth 1 (window-edges mini-window)))
519 (> (nth 1 edges)
520 (frame-parameter frame 'menu-bar-lines))))))
521 (fit-window-to-buffer window (window-height window)))))
522
523 (defun kill-buffer-and-window ()
524 "Kill the current buffer and delete the selected window."
525 (interactive)
526 (if (yes-or-no-p (format "Kill buffer `%s'? " (buffer-name)))
527 (let ((buffer (current-buffer)))
528 (delete-window (selected-window))
529 (kill-buffer buffer))
530 (error "Aborted")))
531
532 (defun quit-window (&optional kill window)
533 "Quit the current buffer. Bury it, and maybe delete the selected frame.
534 \(The frame is deleted if it is contains a dedicated window for the buffer.)
535 With a prefix argument, kill the buffer instead.
536
537 Noninteractively, if KILL is non-nil, then kill the current buffer,
538 otherwise bury it.
539
540 If WINDOW is non-nil, it specifies a window; we delete that window,
541 and the buffer that is killed or buried is the one in that window."
542 (interactive "P")
543 (let ((buffer (window-buffer window))
544 (frame (window-frame (or window (selected-window))))
545 (window-solitary
546 (save-selected-window
547 (if window
548 (select-window window))
549 (one-window-p t)))
550 window-handled)
551
552 (save-selected-window
553 (if window
554 (select-window window))
555 (or (window-minibuffer-p)
556 (window-dedicated-p (selected-window))
557 (switch-to-buffer (other-buffer))))
558
559 ;; Get rid of the frame, if it has just one dedicated window
560 ;; and other visible frames exist.
561 (and (or (window-minibuffer-p) (window-dedicated-p window))
562 (delq frame (visible-frame-list))
563 window-solitary
564 (if (and (eq default-minibuffer-frame frame)
565 (= 1 (length (minibuffer-frame-list))))
566 (setq window nil)
567 (delete-frame frame)
568 (setq window-handled t)))
569
570 ;; Deal with the buffer.
571 (if kill
572 (kill-buffer buffer)
573 (bury-buffer buffer))
574
575 ;; Maybe get rid of the window.
576 (and window (not window-handled) (not window-solitary)
577 (delete-window window))))
578
579 (defun handle-select-window (event)
580 "Handle select-window events."
581 (interactive "e")
582 (let ((window (posn-window (event-start event))))
583 (if (and (window-live-p window)
584 (or (not (window-minibuffer-p window))
585 (minibuffer-window-active-p window)))
586 (select-window window))))
587
588 (define-key ctl-x-map "2" 'split-window-vertically)
589 (define-key ctl-x-map "3" 'split-window-horizontally)
590 (define-key ctl-x-map "}" 'enlarge-window-horizontally)
591 (define-key ctl-x-map "{" 'shrink-window-horizontally)
592 (define-key ctl-x-map "-" 'shrink-window-if-larger-than-buffer)
593 (define-key ctl-x-map "+" 'balance-windows)
594 (define-key ctl-x-4-map "0" 'kill-buffer-and-window)
595
596 ;;; window.el ends here