-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautofit-frame.el
517 lines (463 loc) · 21.6 KB
/
autofit-frame.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
;;; autofit-frame.el --- Automatically resize one-window frames to fit
;;
;; Filename: autofit-frame.el
;; Description: Automatically resize one-window frames to fit.
;; Author: Drew Adams
;; Maintainer: Drew Adams
;; Copyright (C) 2000-2012, Drew Adams, all rights reserved.
;; Created: Thu Dec 7 10:06:18 2000
;; Version: 21.0
;; Last-Updated: Fri Mar 2 08:03:48 2012 (-0800)
;; By: dradams
;; Update #: 687
;; URL: http://www.emacswiki.org/cgi-bin/wiki/autofit-frame.el
;; Keywords: internal, extensions, convenience, local
;; Compatibility: GNU Emacs: 20.x, 21.x, 22.x, 23.x
;;
;; Features that might be required by this library:
;;
;; `fit-frame', `misc-fns', `strings', `thingatpt', `thingatpt+'.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;; Automatically resize one-window frames to fit.
;;
;; Functions are provided here to automatically resize each frame to
;; fit its selected window, when there is no other window in the
;; frame. Some standard Emacs primitive functions are redefined to
;; do this: `display-buffer' (prior to Emacs 23 only),
;; `switch-to-buffer', and `pop-to-buffer' (prior to Emacs 23 only).
;;
;; Prior to Emacs 23, automatic frame resizing is also provided here
;; implicitly for functions `switch-to-buffer-other-window' and
;; `switch-to-buffer-other-frame', since they ultimately use
;; `display-buffer', and so the version of it defined here. (Command
;; `switch-to-buffer' does not use `display-buffer' - it is redefined
;; separately here, for all Emacs versions.)
;;
;; Put the following in your Emacs initialization file (`~/.emacs'),
;; in order to provide for automatic frame resizing:
;;
;; (require 'autofit-frame)
;; (add-hook 'after-make-frame-functions 'fit-frame)
;;
;; The second line here causes newly created frames to be fitted to
;; their buffer (window). Even if you load `auto-fit-frames.el', you
;; will still need to do this, because `display-buffer' and so on are
;; not called when a new frame is created.
;;
;; To automatically fit frames that show a temporary buffer in their
;; sole window, add this to your initialization file also:
;;
;; (add-hook 'temp-buffer-show-hook
;; 'fit-frame-if-one-window 'append)
;;
;; User option (variable) `autofit-frames-flag' turns on and off the
;; automatic resizing defined here. Setting it to nil turns it off:
;; (setq autofit-frames-flag nil). You can also bind it to nil to
;; temporarily inhibit frame resizing in Lisp code:
;;
;; (let ((autofit-frames-flag nil))...)
;;
;;
;; New user option (variable) defined here: `autofit-frames-flag'.
;;
;; New function defined here (useful as a `temp-buffer-show-hook'):
;;
;; `fit-frame-if-one-window'.
;;
;;
;; ***** NOTE: The following function defined in `window.el' has been
;; REDEFINED HERE:
;;
;; `window--display-buffer-1' (Emacs 23+) -
;; Resize frame to fit sole window if `autofit-frames-flag'.
;;
;;
;; ***** NOTE: The following EMACS PRIMITIVES are REDEFINED HERE:
;;
;; `display-buffer' (prior to Emacs 23 only) -
;; 1) Use `read-buffer' in interactive spec.
;; 2) Resize frame to fit sole window if `autofit-frames-flag'
;; (and provided buffer was not yet displayed).
;; 3) Raise the frame.
;; 4) Restore point in buffer - fixes unknown Emacs 22 bug.
;;
;; `pop-to-buffer' (prior to Emacs 23 only) -
;; Use the `display-buffer' defined here.
;;
;; `switch-to-buffer' (all Emacs versions) -
;; 1) Use `read-buffer' in interactive spec.
;; 2) If current window is dedicated, then use another window.
;; 3) Resize frame to fit sole window if `autofit-frames-flag'
;; (unless BUFFER is already the `current-buffer').
;;
;;
;; This file loads file `fit-frame.el', which provides the main
;; functionality behind the automatic frame resizing. See it for
;; user options to do such things as customize default frame sizes.
;;
;; The reason for separating the code here from that in
;; `fit-frame.el' is to let you load that code but not load the code
;; here, if you do not want to redefine Emacs primitives.
;;
;; This file was formerly called `shrink-fit-all.el', then
;; `auto-resize-frames.el'.
;;
;;
;; See also these files for other frame commands:
;;
;; `doremi-frm.el' - Incrementally adjust frame properties
;; using arrow keys and/or mouse wheel.
;;
;; `frame-cmds.el' - Miscellaneous frame and window commands.
;;
;; `thumb-frm.el' - Shrink frames to a thumbnail size and
;; restore them again.
;;
;; `zoom-frm.el' - Zoom a frame, so that its font becomes
;; larger or smaller.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Change Log:
;;
;; 2011/11/30 dadams
;; switch-to-buffer:
;; Pass NORECORD arg to switch-to-buffer-other-window.
;; Emacs 24+: Same as other versions: use other window if dedicated window.
;; 2011/11/08 dadams
;; switch-to-buffer: Added Emacs 24+ version (they changed Emacs 24 again).
;; 2011/10-19 dadams
;; Removed redefinition of pop-to-buffer-same-window (Emacs 24 pretest).
;; 2011/08/14 dadams
;; Added redefinition of pop-to-buffer-same-window, for Emacs 24.
;; 2011/02/25 dadams
;; switch-to-buffer:
;; If BUFFER is nil, use other-buffer. Thx to Martial Boniou.
;; 2011/01/03 dadams
;; Removed autoload cookies: non def* sexps, non-interactive functions.
;; 2009/05/03 dadams
;; Use (fboundp 'window--display-buffer-1), not Emacs version test.
;; 2009/03/08 dadams
;; Do not redefine for Emacs 23+: pop-to-buffer, display-buffer.
;; Added (Emacs 23+): window--display-buffer-1.
;; display-buffer: Added save-excursion around save-selected-window.
;; 2007/09/03 dadams
;; Added: redefinition of pop-to-buffer.
;; display-buffer: Raise frame. Needed for buffer in thumbnail frame.
;; Don't fit frame if buffer was already displayed.
;; 2007/02/14 dadams
;; display-buffer: Hack: restore point, to work around some Emacs 22 bug.
;; 2006/03/07 dadams
;; switch-to-buffer: Bug fix: return destination buffer. Thx to AndreyZ.
;; 2006/01/07 dadams
;; Added :link for sending bug report.
;; 2006/01/06 dadams
;; Removed defgroup - we require fit-frame.el, which does it.
;; 2005/09/02 dadams
;; switch-to-buffer: Don't require existing buffer.
;; 2005/05/28 dadams
;; autofit-frames-flag: defvar -> defcustom. Added defgroup fit-frame.
;; switch-to-buffer: Use explicit default in read-buffer.
;; Require misc-fns.el.
;; 2004/10/07 dadams
;; Renamed resize-* to fit-*, per RMS.
;; Renamed automatically-resize-frames-p to autofit-frames-flag.
;; 2004/09/21 dadams
;; Commented-out redefinition of pop-to-buffer. Removed it from intro.
;; 2004/06/01 dadams
;; 1. Replaced fit-frame-when-display-p, fit-frame-when-pop-to-p,
;; and fit-frame-when-switch-to-p by
;; automatically-resize-frames-p.
;; 2. Removed pop-to-buffer and
;; resize-frame-if-one-window-and-cond.
;; 3. Renamed fit-frame-* to resize-frame-*. Renamed file.
;; 4. switch-to-buffer: Don't resize if buffer is already current.
;; 2004/05/07 dadams
;; Updated to work with Emacs 21:
;; pop-to-buffer has additional arg and doc-string changes
;; display-buffer has doc-string changes
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING. If not, write to
;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth
;; Floor, Boston, MA 02110-1301, USA.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Code:
(require 'fit-frame) ;; fit-frame
(require 'strings nil t) ;; (no error if not found) read-buffer
(require 'misc-fns nil t) ;; (no error if not found) another-buffer
(unless (> emacs-major-version 22) ; Quiet the byte-compiler.
(defvar display-buffer-reuse-frames))
;;;;;;;;;;;;;;;;;;;;;;;
;;; User options ---------------------------------------------------
;;;###autoload
(defcustom autofit-frames-flag t
"*Non-nil means automatically resize one-window frames to fit buffer."
:type 'boolean :group 'Fit-Frame ; Group is defined in `fit-frame.el'.
:link `(url-link :tag "Send Bug Report"
,(concat "mailto:" "drew.adams" "@" "oracle" ".com?subject=\
autofit-frame.el bug: \
&body=Describe bug here, starting with `emacs -q'. \
Don't forget to mention your Emacs and library versions.")))
;;; Non-interactive functions ---------------------------------
;; This is not used here. It is useful as a `temp-buffer-show-hook':
;; (add-hook 'temp-buffer-show-hook 'fit-frame-if-one-window 'append)
;;
(defun fit-frame-if-one-window ()
"Resize frame to fit selected window if it is alone in the frame.
Usable in `temp-buffer-show-hook'.
This does nothing if `autofit-frames-flag' is nil."
(and (one-window-p t) autofit-frames-flag (fit-frame)))
(when (< emacs-major-version 23)
(or (fboundp 'old-pop-to-buffer)
(fset 'old-pop-to-buffer (symbol-function 'pop-to-buffer)))
;; REPLACES ORIGINAL (built-in):
;; Call my version of `display-buffer'. Needed because built-in
;; `pop-to-buffer' calls C version, Fdisplay_buffer, not `display-buffer'.
;;
(defun pop-to-buffer (buffer &optional other-window norecord)
"Select buffer BUFFER in some window, preferably a different one.
BUFFER may be a buffer, a string (a buffer name), or nil.
If BUFFER is a string which is not the name of an existing buffer,
then create a buffer with that name.
If BUFFER is nil, then choose some other buffer.
If `pop-up-windows' is non-nil, windows can be split.
If optional second arg OTHER-WINDOW is non-nil, then insist on finding
another window, even if BUFFER is already visible in the selected
window, and ignore `same-window-regexps' and
`same-window-buffer-names'.
Optional third arg NORECORD non-nil means do not put this buffer at
the front of the list of recently selected ones.
Return the buffer switched to.
This uses function `display-buffer' as a subroutine; see the documentation
of `display-buffer' for additional customization information."
(display-buffer (get-buffer-create buffer))
(old-pop-to-buffer buffer other-window norecord)))
;;; Commands ---------------------------------------------------
(when (< emacs-major-version 23)
(or (fboundp 'old-display-buffer)
(fset 'old-display-buffer (symbol-function 'display-buffer)))
;; REPLACES ORIGINAL (built-in):
;; 1) Use `read-buffer' in interactive spec.
;; 2) Resize frame to fit sole window if `autofit-frames-flag'.
;; 3) Raise the frame. In particular, this ensures that a thumbified frame
;; is raised (see `thumb-frm.el').
;; 4) Hack to restore point in buffer - fixes unknown Emacs 22 bug.
;;
;; NOTE: It would be better to rewrite the C code, so that the frame
;; is not resized if the frame is simply _raised_.
(defun display-buffer (buffer &optional not-this-window frame)
"Make BUFFER appear in some window but don't select it.
BUFFER can be a buffer or the name of an existing buffer.
If BUFFER is shown already in some window, just use that one,
unless the window is the selected window and the optional second
argument NOT-THIS-WINDOW is non-nil (interactively, with prefix arg).
If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.
Return the window displaying BUFFER.
Emacs 21 or later only:
If `display-buffer-reuse-frames' is non-nil, and another frame is
currently displaying BUFFER, then simply raise that frame.
The variables `special-display-buffer-names', `special-display-regexps',
`same-window-buffer-names', and `same-window-regexps' customize how certain
buffer names are handled.
If optional argument FRAME is `visible', search all visible frames.
If FRAME is 0, search all visible and iconified frames.
If FRAME is t, search all frames.
If FRAME is a frame, search only that frame.
If FRAME is nil, search only the selected frame
(actually the last nonminibuffer frame),
unless `pop-up-frames' or `display-buffer-reuse-frames' is non-nil,
which means search visible and iconified frames.
Emacs 21 or later only:
If `even-window-heights' is non-nil, window heights will be evened
out if displaying the buffer causes two vertically adjacent windows
to be displayed.
Resizes frame to fit sole window if `autofit-frames-flag', but only if
BUFFER was not yet displayed. If BUFFER was already displayed, its
frame is assumed to already be the size you want (perhaps you resized
it manually)."
(interactive
(list (read-buffer "Display buffer: " (current-buffer) 'existing)
current-prefix-arg))
(let* ((wins ())
(old-wins (progn (walk-windows (lambda (w) (push w wins)) t 0) wins))
(win (old-display-buffer buffer not-this-window frame))
(pt (save-excursion (set-buffer buffer) (point))))
(when (window-live-p win)
(save-excursion
(save-selected-window
(select-window win)
(raise-frame)
(goto-char pt) ; Hack to fix unknown Emacs 22 bug.
(and (one-window-p t)
autofit-frames-flag
(not (member win old-wins)) ; Don't fit if already displayed.
(fit-frame)))))
win))) ; Return the window
;; REPLACES ORIGINAL defined in `window.el' (Emacs 23+):
;; Resize frame to fit sole window if `autofit-frames-flag'.
;;
(when (fboundp 'window--display-buffer-1) ; Emacs 23+
;; We save the original anyway, but we don't use it.
(or (fboundp 'old-window--display-buffer-1)
(fset 'old-window--display-buffer-1
(symbol-function 'window--display-buffer-1)))
(defun window--display-buffer-1 (window)
"Raise the frame containing WINDOW.
Do not raise the selected frame.
Resize frame to fit sole window if `autofit-frames-flag'.
Return WINDOW."
(let* ((frame (window-frame window))
(visible (frame-visible-p frame)))
(unless (or (not visible)
;; Assume the selected frame is already visible enough.
(eq frame (selected-frame))
;; Assume frame from which we invoked minibuffer is visible.
(and (minibuffer-window-active-p (selected-window))
(eq frame (window-frame (minibuffer-selected-window)))))
(raise-frame frame)
(save-excursion
(save-selected-window
(select-window window)
(and (one-window-p t) autofit-frames-flag (fit-frame)))))
window)))
(or (fboundp 'old-switch-to-buffer)
(fset 'old-switch-to-buffer (symbol-function 'switch-to-buffer)))
(if (< emacs-major-version 24)
;; REPLACES ORIGINAL (built-in):
;; 1) Use `read-buffer' interactively. If null BUFFER, use `other-buffer'.
;; 2) If current window is dedicated, then use another window, instead of
;; raising an error.
;; 3) Resize frame to fit sole window if `autofit-frames-flag'
;; (unless BUFFER is already the `current-buffer').
(defun switch-to-buffer (buffer &optional norecord)
"Select buffer BUFFER in current window, unless the window is dedicated.
If the selected window is dedicated (`window-dedicated-p'), then use
another window.
BUFFER may be a buffer, a string (a buffer name), or nil. If BUFFER
is a string that does not identify an existing buffer, then a new
buffer with that name is created. If BUFFER is nil, then function
`other-buffer' is used to choose a buffer.
Optional second arg NORECORD non-nil means do not put BUFFER at the
front of the list of recently selected buffers.
The buffer switched to is returned.
*WARNING*: This is NOT the way to work on another buffer temporarily
within a Lisp program! Use `set-buffer' instead, to avoid messing
with correspondences between windows and buffers.
Resize frame to fit sole window if `autofit-frames-flag'
\(unless BUFFER is already the `current-buffer')."
(interactive
(list (read-buffer "Switch to buffer: "
(if (fboundp 'another-buffer) ; In `misc-fns.el'.
(another-buffer nil t)
(other-buffer (current-buffer))))))
;; If string arg, convert to a buffer. If nil, use `other-buffer'.
(setq buffer (if buffer (get-buffer-create buffer) (other-buffer)))
(let ((orig-buf (current-buffer)))
(prog1 (if (window-dedicated-p (selected-window))
(switch-to-buffer-other-window buffer norecord)
(old-switch-to-buffer buffer norecord))
(and (one-window-p t)
(not (eq buffer orig-buf)) ; Don't resize if same buffer.
autofit-frames-flag
(fit-frame)))))
;; REPLACES ORIGINAL (built-in):
;;
;; 1) If current window is dedicated, then use another window,
;; instead of raising an error. In this case, FORCE-SAME-WINDOW is ignored.
;; 2) Resize frame to fit sole window if `autofit-frames-flag'
;; (unless BUFFER is already the `current-buffer').
;;
(defun switch-to-buffer (buffer-or-name &optional norecord force-same-window)
"Switch to buffer BUFFER-OR-NAME in the selected window.
Return the buffer switched to.
If the selected window is dedicated (`window-dedicated-p'), then use
another window, regardless of argument FORCE-SAME-WINDOW.
If called interactively, prompt for the buffer name with completion.
Variable `confirm-nonexistent-file-or-buffer' determines whether to
require confirmation before creating a new buffer.
BUFFER-OR-NAME may be a buffer, a buffer name (a string), or nil. If
it is a string that does not identify an existing buffer, create a
buffer with that name. If nil, switch to `other-buffer'.
Optional argument NORECORD non-nil means do not put the buffer
specified by BUFFER-OR-NAME at the front of the buffer list and
do not make the window displaying it the most recently selected
one.
If the selected window is not dedicated, then:
* If FORCE-SAME-WINDOW is non-nil, signal an error if BUFFER-OR-NAME
cannot be displayed in the selected window (e.g. if the selected
window is minibuffer-only).
* If FORCE-SAME-WINDOW is nil, display BUFFER-OR-NAME in another
window if it cannot be displayed in the selected window."
(interactive
(list (read-buffer-to-switch "Switch to buffer: ") nil 'force-same-window))
(let ((orig-buf (current-buffer))
(switch-buf (if (not (window-dedicated-p (selected-window)))
(old-switch-to-buffer
buffer-or-name norecord force-same-window)
;; If string, convert to buffer.
;; If nil, use `other-buffer'.
(setq buffer-or-name (if buffer-or-name
(get-buffer-create
buffer-or-name)
(other-buffer)))
(switch-to-buffer-other-window
buffer-or-name norecord))))
(when (and (one-window-p t)
(not (eq switch-buf orig-buf)) ; Don't resize if same buffer.
autofit-frames-flag
(fit-frame)))
switch-buf)))
;;; ;; REPLACES ORIGINAL in `window.el':
;;; ;; 1) Use `read-buffer' in interactive spec.
;;; ;; 2) Resize frame to fit sole window if `autofit-frames-flag'
;;; ;; (unless BUFFER is already the `current-buffer').
;;; (when (fboundp 'pop-to-buffer-same-window) ; Emacs 24+.
;;;
;;; $$$$$$ Martin Rudalics's version, modified for frame fitting,
;;; before Yidong Chong got into the act.
;;; (defun pop-to-buffer-same-window (&optional buffer-or-name norecord label)
;;; "Pop to buffer specified by BUFFER-OR-NAME in the selected window.
;;; Another window is used only if the buffer cannot be shown in the
;;; selected window, usually because it is dedicated to another buffer.
;;; Optional arguments BUFFER-OR-NAME, NORECORD, and LABEL are as for
;;; `pop-to-buffer'.
;;;
;;; Resize frame to fit sole window if `autofit-frames-flag' is non-nil.
;;; \(unless BUFFER is already the `current-buffer')."
;;; (interactive
;;; (list (read-buffer "Pop to buffer in selected window: "
;;; (if (fboundp 'another-buffer) ; In `misc-fns.el'.
;;; (another-buffer nil t)
;;; (other-buffer (current-buffer))))
;;; current-prefix-arg))
;;; ;; If string arg, convert to a buffer. If nil, use `current-buffer'.
;;; (setq buffer-or-name (if buffer-or-name
;;; (get-buffer-create buffer-or-name)
;;; (current-buffer)))
;;; (let ((orig-buf (current-buffer)))
;;; (prog1 (pop-to-buffer buffer-or-name 'same-window norecord label)
;;; (and (one-window-p t)
;;; (not (eq buffer-or-name orig-buf)) ; No resize if same buffer.
;;; autofit-frames-flag
;;; (fit-frame))))))
;;;;;;;;;;;;;;;;;;;;;;;
(provide 'autofit-frame)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;; autofit-frame.el ends here