1 ;;; winner.el --- Restore old window configurations
3 ;; Copyright (C) 1997-1998, 2001-2011 Free Software Foundation. Inc.
5 ;; Author: Ivar Rummelhoff <ivarru@math.uio.no>
6 ;; Created: 27 Feb 1997
7 ;; Keywords: convenience frames
9 ;; This file is part of GNU Emacs.
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 3 of the License, or
14 ;; (at your option) any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Winner mode is a global minor mode that records the changes in the
27 ;; window configuration (i.e. how the frames are partitioned into
28 ;; windows) so that the changes can be "undone" using the command
29 ;; `winner-undo'. By default this one is bound to the key sequence
30 ;; ctrl-c left. If you change your mind (while undoing), you can
31 ;; press ctrl-c right (calling `winner-redo'). Even though it uses
32 ;; some features of Emacs20.3, winner.el should also work with
33 ;; Emacs19.34 and XEmacs20, provided that the installed version of
34 ;; custom is not obsolete.
36 ;; Winner mode was improved August 1998.
37 ;; Further improvements February 2002.
45 (defmacro winner-active-region
()
46 (if (boundp 'mark-active
)
50 (defsetf winner-active-region
() (store)
51 (if (featurep 'xemacs
)
52 `(if ,store
(zmacs-activate-region)
53 (zmacs-deactivate-region))
54 `(setq mark-active
,store
)))
56 (defalias 'winner-edges
57 (if (featurep 'xemacs
) 'window-pixel-edges
'window-edges
))
58 (defalias 'winner-window-list
59 (if (featurep 'xemacs
)
60 (lambda () (delq (minibuffer-window) (window-list nil
0)))
61 (lambda () (window-list nil
0))))
66 "Restoring window configurations."
70 (defcustom winner-mode nil
72 Setting this variable directly does not take effect;
73 use either \\[customize] or the function `winner-mode'."
74 :set
#'(lambda (symbol value
) (funcall symbol
(or value
0)))
75 :initialize
'custom-initialize-default
80 (defcustom winner-dont-bind-my-keys nil
81 "If non-nil: Do not use `winner-mode-map' in Winner mode."
85 (defcustom winner-ring-size
200
86 "Maximum number of stored window configurations per frame."
90 (defcustom winner-boring-buffers
'("*Completions*")
91 "`winner-undo' will not restore windows displaying any of these buffers.
92 You may want to include buffer names such as *Help*, *Apropos*,
93 *Buffer List*, *info* and *Compile-Log*."
94 :type
'(repeat string
)
101 ;;;; Saving old configurations (internal variables and subroutines)
104 ;;; Current configuration
106 ;; List the windows according to their edges.
107 (defun winner-sorted-window-list ()
108 (sort (winner-window-list)
110 (loop for a in
(winner-edges x
)
111 for b in
(winner-edges y
)
113 finally return
(< a b
)))))
115 (defun winner-win-data ()
116 ;; Essential properties of the windows in the selected frame.
117 (loop for win in
(winner-sorted-window-list)
118 collect
(cons (winner-edges win
) (window-buffer win
))))
120 ;; This variable is updated with the current window configuration
121 ;; every time it changes.
122 (defvar winner-currents nil
)
124 ;; The current configuration (+ the buffers involved).
125 (defsubst winner-conf
()
126 (cons (current-window-configuration)
130 ;; Save current configuration.
131 ;; (Called below by `winner-save-old-configurations').
132 (defun winner-remember ()
133 (let ((entry (assq (selected-frame) winner-currents
)))
134 (if entry
(setcdr entry
(winner-conf))
135 (push (cons (selected-frame) (winner-conf))
138 ;; Consult `winner-currents'.
139 (defun winner-configuration (&optional frame
)
140 (or (cdr (assq (or frame
(selected-frame)) winner-currents
))
141 (letf (((selected-frame) frame
))
146 ;;; Saved configurations
148 ;; This variable contains the window configuration rings.
149 ;; The key in this alist is the frame.
150 (defvar winner-ring-alist nil
)
152 ;; Find the right ring. If it does not exist, create one.
153 (defsubst winner-ring
(frame)
154 (or (cdr (assq frame winner-ring-alist
))
155 (let ((ring (make-ring winner-ring-size
)))
156 (ring-insert ring
(winner-configuration frame
))
157 (push (cons frame ring
) winner-ring-alist
)
161 ;; If the same command is called several times in a row,
162 ;; we only save one window configuration.
163 (defvar winner-last-command nil
)
165 ;; Frames affected by the previous command.
166 (defvar winner-last-frames nil
)
169 (defsubst winner-equal
(a b
)
170 "Check whether two Winner configurations (as produced by
171 `winner-conf') are equal."
172 (equal (cdr a
) (cdr b
)))
175 ;; Save the current window configuration, if it has changed.
176 ;; If so return frame, otherwise return nil.
177 (defun winner-insert-if-new (frame)
178 (unless (or (memq frame winner-last-frames
)
179 (eq this-command
'winner-redo
))
180 (let ((conf (winner-configuration frame
))
181 (ring (winner-ring frame
)))
182 (when (and (not (ring-empty-p ring
))
183 (winner-equal conf
(ring-ref ring
0)))
184 ;; When the previous configuration was very similar,
185 ;; keep only the latest.
186 (ring-remove ring
0))
187 (ring-insert ring conf
)
188 (push frame winner-last-frames
)
195 ;; Frames affected by the current command.
196 (defvar winner-modified-list nil
)
198 ;; Called whenever the window configuration changes
199 ;; (a `window-configuration-change-hook').
200 (defun winner-change-fun ()
201 (unless (or (memq (selected-frame) winner-modified-list
)
202 (/= 0 (minibuffer-depth)))
203 (push (selected-frame) winner-modified-list
)))
205 ;; A `post-command-hook' for emacsen with
206 ;; `window-configuration-change-hook'.
207 (defun winner-save-old-configurations ()
208 (when (zerop (minibuffer-depth))
209 (unless (eq this-command winner-last-command
)
210 (setq winner-last-frames nil
)
211 (setq winner-last-command this-command
))
212 (dolist (frame winner-modified-list
)
213 (winner-insert-if-new frame
))
214 (setq winner-modified-list nil
)
217 ;; A `minibuffer-setup-hook'.
218 (defun winner-save-unconditionally ()
219 (unless (eq this-command winner-last-command
)
220 (setq winner-last-frames nil
)
221 (setq winner-last-command this-command
))
222 (winner-insert-if-new (selected-frame))
225 ;; A `post-command-hook' for other emacsen.
226 ;; Also called by `winner-undo' before "undoing".
227 (defun winner-save-conditionally ()
228 (when (zerop (minibuffer-depth))
229 (winner-save-unconditionally)))
234 ;;;; Restoring configurations
236 ;; Works almost as `set-window-configuration',
237 ;; but does not change the contents or the size of the minibuffer,
238 ;; and tries to preserve the selected window.
239 (defun winner-set-conf (winconf)
240 (let* ((miniwin (minibuffer-window))
241 (chosen (selected-window))
242 (minisize (window-height miniwin
)))
243 (letf (((window-buffer miniwin
))
244 ((window-point miniwin
)))
245 (set-window-configuration winconf
))
247 ((window-live-p chosen
) (select-window chosen
))
248 ((window-minibuffer-p (selected-window))
250 (when (/= minisize
(window-height miniwin
))
251 (letf (((selected-window) miniwin
) )
252 (setf (window-height) minisize
)))))
256 (defvar winner-point-alist nil
)
257 ;; `set-window-configuration' restores old points and marks. This is
258 ;; not what we want, so we make a list of the "real" (i.e. new) points
259 ;; and marks before undoing window configurations.
261 ;; Format of entries: (buffer (mark . mark-active) (window . point) ..)
263 (defun winner-make-point-alist ()
264 (letf (((current-buffer)))
266 for win in
(winner-window-list)
268 (or (assq (window-buffer win
) alist
)
269 (car (push (list (set-buffer (window-buffer win
))
270 (cons (mark t
) (winner-active-region)))
272 do
(push (cons win
(window-point win
))
274 finally return alist
)))
276 (defun winner-get-point (buf win
)
277 ;; Consult (and possibly extend) `winner-point-alist'.
278 ;; Returns nil if buf no longer exists.
279 (when (buffer-name buf
)
280 (let ((entry (assq buf winner-point-alist
)))
283 (or (cdr (assq win
(cddr entry
)))
284 (cdr (assq nil
(cddr entry
)))
285 (letf (((current-buffer) buf
))
286 (push (cons nil
(point)) (cddr entry
))
288 (t (letf (((current-buffer) buf
))
290 (cons (mark t
) (winner-active-region))
296 ;; Make sure point does not end up in the minibuffer and delete
297 ;; windows displaying dead or boring buffers
298 ;; (c.f. `winner-boring-buffers'). Return nil if all the windows
299 ;; should be deleted. Preserve correct points and marks.
300 (defun winner-set (conf)
301 ;; For the format of `conf', see `winner-conf'.
304 ;; Possibly update `winner-point-alist'
305 (loop for buf in
(mapcar 'cdr
(cdr conf
))
306 for pos
= (winner-get-point buf nil
)
307 if
(and pos
(not (memq buf buffers
)))
308 do
(push buf buffers
)
310 (winner-set-conf (car conf
))
311 (let (xwins) ; to be deleted
314 (dolist (win (winner-sorted-window-list))
315 (unless (and (pop alive
)
316 (setf (window-point win
)
317 (winner-get-point (window-buffer win
) win
))
318 (not (member (buffer-name (window-buffer win
))
319 winner-boring-buffers
)))
320 (push win xwins
))) ; delete this window
323 (letf (((current-buffer)))
324 (loop for buf in buffers
325 for entry
= (cadr (assq buf winner-point-alist
))
326 do
(progn (set-buffer buf
)
327 (set-mark (car entry
))
328 (setf (winner-active-region) (cdr entry
)))))
329 ;; Delete windows, whose buffers are dead or boring.
330 ;; Return t if this is still a possible configuration.
333 (mapc 'delete-window
(cdr xwins
)) ; delete all but one
334 (unless (one-window-p t
)
335 (delete-window (car xwins
))
340 ;;;; Winner mode (a minor mode)
342 (defcustom winner-mode-hook nil
343 "Functions to run whenever Winner mode is turned on."
347 (defcustom winner-mode-leave-hook nil
348 "Functions to run whenever Winner mode is turned off."
352 (defvar winner-mode-map
353 (let ((map (make-sparse-keymap)))
354 (define-key map
[(control c
) left
] 'winner-undo
)
355 (define-key map
[(control c
) right
] 'winner-redo
)
357 "Keymap for Winner mode.")
359 ;; Check if `window-configuration-change-hook' is working.
360 (defun winner-hook-installed-p ()
361 (save-window-excursion
362 (let ((winner-var nil
)
363 (window-configuration-change-hook
364 '((lambda () (setq winner-var t
)))))
370 (defun winner-mode (&optional arg
)
372 With arg, turn Winner mode on if and only if arg is positive."
374 (let ((on-p (if arg
(> (prefix-numeric-value arg
) 0)
381 ((winner-hook-installed-p)
382 (add-hook 'window-configuration-change-hook
'winner-change-fun
)
383 (add-hook 'post-command-hook
'winner-save-old-configurations
))
384 (t (add-hook 'post-command-hook
'winner-save-conditionally
)))
385 (add-hook 'minibuffer-setup-hook
'winner-save-unconditionally
)
386 (setq winner-modified-list
(frame-list))
387 (winner-save-old-configurations)
388 (run-hooks 'winner-mode-hook
)
389 (when (called-interactively-p 'interactive
)
390 (message "Winner mode enabled")))
393 (setq winner-mode nil
)
394 (remove-hook 'window-configuration-change-hook
'winner-change-fun
)
395 (remove-hook 'post-command-hook
'winner-save-old-configurations
)
396 (remove-hook 'post-command-hook
'winner-save-conditionally
)
397 (remove-hook 'minibuffer-setup-hook
'winner-save-unconditionally
)
398 (run-hooks 'winner-mode-leave-hook
)
399 (when (called-interactively-p 'interactive
)
400 (message "Winner mode disabled"))))))
402 ;; Inspired by undo (simple.el)
404 (defvar winner-undo-frame nil
)
406 (defvar winner-pending-undo-ring nil
407 "The ring currently used by `winner-undo'.")
408 (defvar winner-undo-counter nil
)
409 (defvar winner-undone-data nil
) ; There confs have been passed.
411 (defun winner-undo ()
412 "Switch back to an earlier window configuration saved by Winner mode.
413 In other words, \"undo\" changes in window configuration."
416 ((not winner-mode
) (error "Winner mode is turned off"))
417 (t (unless (and (eq last-command
'winner-undo
)
418 (eq winner-undo-frame
(selected-frame)))
419 (winner-save-conditionally) ; current configuration->stack
420 (setq winner-undo-frame
(selected-frame))
421 (setq winner-point-alist
(winner-make-point-alist))
422 (setq winner-pending-undo-ring
(winner-ring (selected-frame)))
423 (setq winner-undo-counter
0)
424 (setq winner-undone-data
(list (winner-win-data))))
425 (incf winner-undo-counter
) ; starting at 1
426 (when (and (winner-undo-this)
427 (not (window-minibuffer-p (selected-window))))
428 (message "Winner undo (%d / %d)"
430 (1- (ring-length winner-pending-undo-ring
)))))))
435 (defun winner-undo-this () ; The heart of winner undo.
438 ((>= winner-undo-counter
(ring-length winner-pending-undo-ring
))
439 (message "No further window configuration undo information")
442 ((and ; If possible configuration
443 (winner-set (ring-ref winner-pending-undo-ring
444 winner-undo-counter
))
445 ; .. and new configuration
446 (let ((data (winner-win-data)))
447 (and (not (member data winner-undone-data
))
448 (push data winner-undone-data
))))
449 (return t
)) ; .. then everything is fine.
450 (t ;; Otherwise, discharge it (and try the next one).
451 (ring-remove winner-pending-undo-ring winner-undo-counter
)))))
454 (defun winner-redo () ; If you change your mind.
455 "Restore a more recent window configuration saved by Winner mode."
458 ((eq last-command
'winner-undo
)
460 (if (zerop (minibuffer-depth))
461 (ring-remove winner-pending-undo-ring
0)
462 (ring-ref winner-pending-undo-ring
0)))
463 (unless (eq (selected-window) (minibuffer-window))
464 (message "Winner undid undo")))
465 (t (error "Previous command was not a `winner-undo'"))))
467 ;;; To be evaluated when the package is loaded:
469 (unless (or (assq 'winner-mode minor-mode-map-alist
)
470 winner-dont-bind-my-keys
)
471 (push (cons 'winner-mode winner-mode-map
)
472 minor-mode-map-alist
))
475 ;;; winner.el ends here