annotate lisp/window-xemacs.el @ 209:41ff10fd062f r20-4b3

Import from CVS: tag r20-4b3
author cvs
date Mon, 13 Aug 2007 10:04:58 +0200
parents
children 0e522484dd2a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
209
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
1 ;;; window-xemacs.el --- XEmacs window commands aside from those written in C.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
2
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
3 ;; Copyright (C) 1985, 1989, 1993-94, 1997 Free Software Foundation, Inc.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
4 ;; Copyright (C) 1995, 1996 Ben Wing.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
5
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
6 ;; Maintainer: XEmacs Development Team
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
7 ;; Keywords: frames, extensions, dumped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
8
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
10
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
14 ;; any later version.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
15
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
19 ;; General Public License for more details.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
20
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
23 ;; Free Software Foundation, 59 Temple Place - Suite 330,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
24 ;; Boston, MA 02111-1307, USA.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
25
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
26 ;;; Synched up with: Not synched.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
27
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
28 ;;; Commentary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
29
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
30 ;; This file is dumped with XEmacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
31
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
32 ;; slb - 5/29/97
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
33 ;; Split apart from window.el in order to keep that file better in synch
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
34 ;; with Emacs.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
35
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
36 ;;; Code:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
37
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
38 (defun backward-other-window (arg &optional all-frames device)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
39 "Select the ARG'th different window on this frame, going backwards.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
40 This is just like calling `other-window' with the arg negated."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
41 (interactive "p")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
42 (other-window (- arg) all-frames device))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
43
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
44 (defun windows-of-buffer (&optional buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
45 "Returns a list of windows that have BUFFER in them.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
46 If BUFFER is not specified, the current buffer will be used."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
47 (or (bufferp buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
48 (if (stringp buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
49 (setq buffer (or (get-buffer buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
50 (get-file-buffer buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
51 (setq buffer (current-buffer))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
52 (let* ((firstwin (next-window nil nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
53 (wind firstwin)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
54 (done nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
55 window-list)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
56 (while (not done)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
57 (if (eq (window-buffer wind) buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
58 (setq window-list (append window-list (list wind))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
59 (setq wind (next-window wind nil t))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
60 (setq done (eq wind firstwin)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
61 window-list))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
62
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
63 (defun buffer-in-multiple-windows-p (&optional buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
64 "Return t if BUFFER is in multiple windows.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
65 If BUFFER is not specified, the current buffer will be used."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
66 (setq buffer (or buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
67 (get-buffer buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
68 (get-file-buffer buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
69 (current-buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
70 (> (length (windows-of-buffer buffer)) 1))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
71
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
72 (defun window-list (&optional frame minibuf window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
73 "Return a list of windows on FRAME, beginning with WINDOW.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
74 FRAME and WINDOW default to the selected ones.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
75 Optional second arg MINIBUF t means count the minibuffer window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
76 even if not active. If MINIBUF is neither t nor nil it means
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
77 not to count the minibuffer even if it is active."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
78 (setq window (or window (selected-window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
79 frame (or frame (selected-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
80 (if (not (eq (window-frame window) frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
81 (error "Window must be on frame."))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
82 (let ((current-frame (selected-frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
83 list)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
84 (unwind-protect
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
85 (save-window-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
86 (select-frame frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
87 (walk-windows
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
88 (function (lambda (cur-window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
89 (if (not (eq window cur-window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
90 (setq list (cons cur-window list)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
91 minibuf)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
92 (setq list (cons window list)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
93 (select-frame current-frame))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
94
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
95 ;; We used to have set-window-dedicated-p as an obsolete version
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
96 ;; of set-window-buffer-dedicated, but it really makes more sense
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
97 ;; this way.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
98
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
99 (make-obsolete 'set-window-buffer-dedicated 'set-window-dedicated-p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
100 (defun set-window-buffer-dedicated (window buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
101 "Make WINDOW display BUFFER and be dedicated to that buffer.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
102 Then Emacs will not automatically change which buffer appears in WINDOW.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
103 If BUFFER is nil, make WINDOW not be dedicated (but don't change which
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
104 buffer appears in it currently)."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
105 (if (bufferp buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
106 (set-window-buffer window (get-buffer-create buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
107 (set-window-dedicated-p window (not (null buffer))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
108
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
109
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
110 ;; The window-config stack is stored as a list in frame property
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
111 ;; 'window-config-stack, with the most recent element at the front.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
112 ;; When you pop off an element, the popped off element gets put at the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
113 ;; front of frame property 'window-config-unpop-stack, so you can
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
114 ;; retrieve it using unpop-window-configuration.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
115
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
116 (defcustom window-config-stack-max 16
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
117 "*Maximum size of window configuration stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
118 Start discarding off end if it gets this big."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
119 :type 'integer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
120 :group 'windows)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
121
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
122 (defun window-config-stack (&optional frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
123 (or frame (setq frame (selected-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
124 (let ((stack (frame-property frame 'window-config-stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
125 (if stack
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
126 (set-undoable-stack-max stack window-config-stack-max)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
127 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
128 (setq stack (make-undoable-stack window-config-stack-max))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
129 (set-frame-property frame 'window-config-stack stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
130 stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
131
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
132 (defun push-window-configuration (&optional config)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
133 "Push the current window configuration onto the window-config stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
134 If CONFIG is specified, push it instead of the current window configuration.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
135 Each frame has its own window-config stack."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
136 (interactive)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
137 (let ((wc (or config (current-window-configuration)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
138 (stack (window-config-stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
139 (if (or (= 0 (undoable-stack-a-length stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
140 (not (equal (undoable-stack-a-top stack) wc)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
141 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
142 (undoable-stack-push stack wc)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
143 ;; kludge.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
144 (if (featurep 'toolbar)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
145 (set-specifier-dirty-flag default-toolbar))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
146
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
147 (defun pop-window-configuration ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
148 "Pop the top window configuration off the window-config stack and set it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
149 Before setting the new window configuration, the current window configuration
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
150 is pushed onto the \"unpop\" stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
151 `unpop-window-configuration' undoes what this function does.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
152 Each frame has its own window-config and \"unpop\" stack."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
153 (interactive)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
154 (let ((stack (window-config-stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
155 (wc (current-window-configuration))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
156 popped)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
157 (condition-case nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
158 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
159 (setq popped (undoable-stack-pop stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
160 (while (equal popped wc)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
161 (setq popped (undoable-stack-pop stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
162 (undoable-stack-push stack wc)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
163 (undoable-stack-undo stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
164 (set-window-configuration popped)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
165 ;; probably not necessary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
166 (if (featurep 'toolbar)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
167 (set-specifier-dirty-flag default-toolbar))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
168 popped)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
169 (trunc-stack-bottom
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
170 (error "Bottom of window config stack")))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
171
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
172 (defun unpop-window-configuration ()
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
173 "Undo the effect of the most recent `pop-window-configuration'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
174 This does exactly the inverse of what `pop-window-configuration' does:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
175 i.e. it pops a window configuration off of the \"unpop\" stack and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
176 pushes the current window configuration onto the window-config stack.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
177 Each frame has its own window-config and \"unpop\" stack."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
178 (interactive)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
179 (let ((stack (window-config-stack))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
180 (wc (current-window-configuration))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
181 popped)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
182 (condition-case nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
183 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
184 (setq popped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
185 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
186 (undoable-stack-redo stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
187 (undoable-stack-pop stack)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
188 (while (equal popped wc)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
189 (setq popped
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
190 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
191 (undoable-stack-redo stack)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
192 (undoable-stack-pop stack))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
193 (undoable-stack-push stack wc)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
194 (set-window-configuration popped)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
195 ;; probably not necessary:
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
196 (if (featurep 'toolbar)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
197 (set-specifier-dirty-flag default-toolbar))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
198 popped)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
199 (trunc-stack-bottom
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
200 (error "Top of window config stack")))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
201
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
202
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
203 ;;;;;;;;;;;;; display-buffer, moved here from C. Hallelujah.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
204
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
205 (defvar display-buffer-function nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
206 "If non-nil, function to call to handle `display-buffer'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
207 It will receive three args: the same as those to `display-buffer'.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
208
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
209 (defvar pre-display-buffer-function nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
210 "If non-nil, function that will be called from `display-buffer'
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
211 as the first action. It will receive three args: the same as those
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
212 to `display-buffer'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
213 This function may be used to select an appropriate frame for the buffer,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
214 for example. See also the variable `display-buffer-function', which may
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
215 be used to completely replace the `display-buffer' function.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
216 If the return value of this function is non-nil, it should be a frame,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
217 and that frame will be used to display the buffer.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
218
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
219 (defcustom pop-up-frames nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
220 "*Non-nil means `display-buffer' should make a separate frame."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
221 :type 'boolean
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
222 :group 'frames)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
223
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
224 (defvar pop-up-frame-function nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
225 "Function to call to handle automatic new frame creation.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
226 It is called with no arguments and should return a newly created frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
227
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
228 A typical value might be `(lambda () (new-frame pop-up-frame-alist))'
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
229 where `pop-up-frame-alist' would hold the default frame parameters.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
230
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
231 (defcustom special-display-buffer-names nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
232 "*List of buffer names that should have their own special frames.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
233 Displaying a buffer whose name is in this list makes a special frame for it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
234 using `special-display-function'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
235
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
236 An element of the list can be a cons cell instead of just a string.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
237 Then the car should be a buffer name, and the cdr specifies frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
238 parameters for creating the frame for that buffer.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
239 More precisely, the cdr is passed as the second argument to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
240 the function found in `special-display-function', when making that frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
241 See also `special-display-regexps'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
242 :type '(repeat (choice :value ""
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
243 (string :tag "Name")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
244 (cons :menu-tag "Properties"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
245 :value ("" . nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
246 (string :tag "Name")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
247 (repeat :tag "Properties"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
248 (group :inline t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
249 (symbol :tag "Property")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
250 (sexp :tag "Value"))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
251 :group 'frames)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
252
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
253 (defcustom special-display-regexps nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
254 "*List of regexps saying which buffers should have their own special frames.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
255 If a buffer name matches one of these regexps, it gets its own frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
256 Displaying a buffer whose name is in this list makes a special frame for it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
257 using `special-display-function'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
258
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
259 An element of the list can be a cons cell instead of just a string.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
260 Then the car should be the regexp, and the cdr specifies frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
261 parameters for creating the frame for buffers that match.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
262 More precisely, the cdr is passed as the second argument to
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
263 the function found in `special-display-function', when making that frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
264 See also `special-display-buffer-names'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
265 :type '(repeat (choice :value ""
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
266 regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
267 (cons :menu-tag "Properties"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
268 :value ("" . nil)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
269 regexp
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
270 (repeat :tag "Properties"
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
271 (group :inline t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
272 (symbol :tag "Property")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
273 (sexp :tag "Value"))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
274 :group 'frames)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
275
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
276 (defvar special-display-function nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
277 "Function to call to make a new frame for a special buffer.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
278 It is called with two arguments, the buffer and optional buffer specific
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
279 data, and should return a window displaying that buffer.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
280 The default value makes a separate frame for the buffer,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
281 using `special-display-frame-alist' to specify the frame parameters.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
282
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
283 A buffer is special if its is listed in `special-display-buffer-names'
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
284 or matches a regexp in `special-display-regexps'.")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
285
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
286 (defcustom same-window-buffer-names nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
287 "*List of buffer names that should appear in the selected window.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
288 Displaying one of these buffers using `display-buffer' or `pop-to-buffer'
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
289 switches to it in the selected window, rather than making it appear
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
290 in some other window.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
291
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
292 An element of the list can be a cons cell instead of just a string.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
293 Then the car must be a string, which specifies the buffer name.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
294 This is for compatibility with `special-display-buffer-names';
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
295 the cdr of the cons cell is ignored.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
296
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
297 See also `same-window-regexps'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
298 :type '(repeat (string :tag "Name"))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
299 :group 'windows)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
300
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
301 (defcustom same-window-regexps nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
302 "*List of regexps saying which buffers should appear in the selected window.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
303 If a buffer name matches one of these regexps, then displaying it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
304 using `display-buffer' or `pop-to-buffer' switches to it
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
305 in the selected window, rather than making it appear in some other window.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
306
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
307 An element of the list can be a cons cell instead of just a string.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
308 Then the car must be a string, which specifies the buffer name.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
309 This is for compatibility with `special-display-buffer-names';
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
310 the cdr of the cons cell is ignored.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
311
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
312 See also `same-window-buffer-names'."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
313 :type '(repeat regexp)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
314 :group 'windows)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
315
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
316 (defcustom pop-up-windows t
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
317 "*Non-nil means display-buffer should make new windows."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
318 :type 'boolean
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
319 :group 'windows)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
320
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
321 (defcustom split-height-threshold 500
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
322 "*display-buffer would prefer to split the largest window if this large.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
323 If there is only one window, it is split regardless of this value."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
324 :type 'integer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
325 :group 'windows)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
326
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
327 (defcustom split-width-threshold 500
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
328 "*display-buffer would prefer to split the largest window if this large.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
329 If there is only one window, it is split regardless of this value."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
330 :type 'integer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
331 :group 'windows)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
332
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
333 ;; Deiconify the frame containing the window WINDOW, then return WINDOW.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
334
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
335 (defun display-buffer-1 (window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
336 (if (frame-iconified-p (window-frame window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
337 (make-frame-visible (window-frame window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
338 window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
339
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
340 ;; Can you believe that all of this crap was formerly in C?
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
341 ;; Praise Jesus that it's not there any more.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
342
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
343 (defun display-buffer (buffer &optional not-this-window-p override-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
344 "Make BUFFER appear in some window on the current frame, but don't select it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
345 BUFFER can be a buffer or a buffer name.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
346 If BUFFER is shown already in some window in the current frame,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
347 just uses that one, unless the window is the selected window and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
348 NOT-THIS-WINDOW-P is non-nil (interactively, with prefix arg).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
349
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
350 If BUFFER has a dedicated frame, display on that frame instead of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
351 the current frame, unless OVERRIDE-FRAME is non-nil.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
352
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
353 If OVERRIDE-FRAME is non-nil, display on that frame instead of
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
354 the current frame (or the dedicated frame).
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
355
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
356 If `pop-up-windows' is non-nil, always use the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
357 current frame and create a new window regardless of whether the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
358 buffer has a dedicated frame, and regardless of whether
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
359 OVERRIDE-FRAME was specified.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
360
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
361 If `pop-up-frames' is non-nil, make a new frame if no window shows BUFFER.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
362
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
363 Returns the window displaying BUFFER."
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
364 (interactive "BDisplay buffer:\nP")
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
365
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
366 (let ((wconfig (current-window-configuration))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
367 (result
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
368 ;; We just simulate a `return' in C. This function is way ugly
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
369 ;; and does `returns' all over the place and there's no sense
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
370 ;; in trying to rewrite it to be more Lispy.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
371 (catch 'done
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
372 (let (window old-frame target-frame explicit-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
373 (setq old-frame (or (last-nonminibuf-frame) (selected-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
374 (setq buffer (get-buffer buffer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
375 (check-argument-type 'bufferp buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
376
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
377 (setq explicit-frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
378 (if pre-display-buffer-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
379 (funcall pre-display-buffer-function buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
380 not-this-window-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
381 override-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
382
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
383 ;; Give the user the ability to completely reimplement
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
384 ;; this function via the `display-buffer-function'.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
385 (if display-buffer-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
386 (throw 'done
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
387 (funcall display-buffer-function buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
388 not-this-window-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
389 override-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
390
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
391 ;; If the buffer has a dedicated frame, that takes
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
392 ;; precedence over the current frame, and over what the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
393 ;; pre-display-buffer-function did.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
394 (let ((dedi (buffer-dedicated-frame buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
395 (if (frame-live-p dedi) (setq explicit-frame dedi)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
396
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
397 ;; if override-frame is supplied, that takes precedence over
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
398 ;; everything. This is gonna look bad if the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
399 ;; pre-display-buffer-function raised some other frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
400 ;; already.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
401 (if override-frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
402 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
403 (check-argument-type 'frame-live-p override-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
404 (setq explicit-frame override-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
405
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
406 (setq target-frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
407 (or explicit-frame
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
408 (last-nonminibuf-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
409 (selected-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
410
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
411 ;; If we have switched frames, then set not-this-window-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
412 ;; to false. Switching frames means that selected-window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
413 ;; is no longer the same as it was on entry -- it's the
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
414 ;; selected-window of target_frame instead of old_frame,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
415 ;; so it's a fine candidate for display.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
416 (if (not (eq old-frame target-frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
417 (setq not-this-window-p nil))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
418
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
419 ;; if it's in the selected window, and that's ok, then we're done.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
420 (if (and (not not-this-window-p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
421 (eq buffer (window-buffer (selected-window))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
422 (throw 'done (display-buffer-1 (selected-window))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
423
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
424 ;; See if the user has specified this buffer should appear
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
425 ;; in the selected window.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
426
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
427 (if not-this-window-p
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
428 nil
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
429
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
430 (if (or (member (buffer-name buffer) same-window-buffer-names)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
431 (assoc (buffer-name buffer) same-window-buffer-names))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
432 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
433 (switch-to-buffer buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
434 (throw 'done (display-buffer-1 (selected-window)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
435
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
436 (let ((tem same-window-regexps))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
437 (while tem
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
438 (let ((car (car tem)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
439 (if (or
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
440 (and (stringp car)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
441 (string-match car (buffer-name buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
442 (and (consp car) (stringp (car car))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
443 (string-match (car car) (buffer-name buffer))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
444 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
445 (switch-to-buffer buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
446 (throw 'done (display-buffer-1
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
447 (selected-window))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
448 (setq tem (cdr tem)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
449
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
450 ;; If pop-up-frames, look for a window showing BUFFER on
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
451 ;; any visible or iconified frame. Otherwise search only
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
452 ;; the current frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
453 (if (and (not explicit-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
454 (or pop-up-frames (not (last-nonminibuf-frame))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
455 (setq target-frame 0))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
456
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
457 ;; Otherwise, find some window that it's already in, and
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
458 ;; return that, unless that window is the selected window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
459 ;; and that isn't ok. What a contorted mess!
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
460 (setq window (get-buffer-window buffer target-frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
461 (if (and window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
462 (or (not not-this-window-p)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
463 (not (eq window (selected-window)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
464 (throw 'done (display-buffer-1 window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
465
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
466 ;; Certain buffer names get special handling.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
467 (if special-display-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
468 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
469 (if (member (buffer-name buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
470 special-display-buffer-names)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
471 (throw 'done (funcall special-display-function buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
472
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
473 (let ((tem (assoc (buffer-name buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
474 special-display-buffer-names)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
475 (if tem
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
476 (throw 'done (funcall special-display-function
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
477 buffer (cdr tem)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
478
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
479 (let ((tem special-display-regexps))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
480 (while tem
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
481 (let ((car (car tem)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
482 (if (and (stringp car)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
483 (string-match car (buffer-name buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
484 (throw 'done
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
485 (funcall special-display-function buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
486 (if (and (consp car)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
487 (stringp (car car))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
488 (string-match (car car)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
489 (buffer-name buffer)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
490 (throw 'done (funcall
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
491 special-display-function buffer
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
492 (cdr car)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
493 (setq tem (cdr tem))))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
494
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
495 ;; If there are no frames open that have more than a minibuffer,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
496 ;; we need to create a new frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
497 (if (or pop-up-frames
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
498 (null (last-nonminibuf-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
499 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
500 (setq window (frame-selected-window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
501 (funcall pop-up-frame-function)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
502 (set-window-buffer window buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
503 (throw 'done (display-buffer-1 window))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
504
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
505 ;; Otherwise, make it be in some window, splitting if
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
506 ;; appropriate/possible. Do not split a window if we are
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
507 ;; displaying the buffer in a different frame than that which
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
508 ;; was current when we were called. (It is already in a
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
509 ;; different window by virtue of being in another frame.)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
510 (if (or (and pop-up-windows (eq target-frame old-frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
511 (eq 'only (frame-property (selected-frame) 'minibuffer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
512 ;; If the current frame is a special display frame,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
513 ;; don't try to reuse its windows.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
514 (window-dedicated-p (frame-root-window (selected-frame))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
515 (progn
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
516 (if (eq 'only (frame-property (selected-frame) 'minibuffer))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
517 (setq target-frame (last-nonminibuf-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
518
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
519 ;; Don't try to create a window if would get an error with
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
520 ;; height.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
521 (if (< split-height-threshold (* 2 window-min-height))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
522 (setq split-height-threshold (* 2 window-min-height)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
523
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
524 ;; Same with width.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
525 (if (< split-width-threshold (* 2 window-min-width))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
526 (setq split-width-threshold (* 2 window-min-width)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
527
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
528 ;; If the frame we would try to split cannot be split,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
529 ;; try other frames.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
530 (if (frame-property (if (null target-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
531 (selected-frame)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
532 (last-nonminibuf-frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
533 'unsplittable)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
534 (setq window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
535 ;; Try visible frames first.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
536 (or (get-largest-window 'visible)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
537 ;; If that didn't work, try iconified frames.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
538 (get-largest-window 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
539 (get-largest-window t)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
540 (setq window (get-largest-window target-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
541
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
542 ;; If we got a tall enough full-width window that
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
543 ;; can be split, split it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
544 (if (and window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
545 (not (frame-property (window-frame window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
546 'unsplittable))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
547 (>= (window-height window) split-height-threshold)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
548 (or (>= (window-width window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
549 split-width-threshold)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
550 (and (window-leftmost-p window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
551 (window-rightmost-p window))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
552 (setq window (split-window window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
553 (let (upper
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
554 ;; lower
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
555 other)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
556 (setq window (get-lru-window target-frame))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
557 ;; If the LRU window is selected, and big enough,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
558 ;; and can be split, split it.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
559 (if (and window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
560 (not (frame-property (window-frame window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
561 'unsplittable))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
562 (or (eq window (selected-window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
563 (not (window-parent window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
564 (>= (window-height window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
565 (* 2 window-min-height)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
566 (setq window (split-window window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
567 ;; If get-lru-window returned nil, try other approaches.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
568 ;; Try visible frames first.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
569 (or window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
570 (setq window (or (get-largest-window 'visible)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
571 ;; If that didn't work, try
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
572 ;; iconified frames.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
573 (get-largest-window 0)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
574 ;; Try invisible frames.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
575 (get-largest-window t)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
576 ;; As a last resort, make
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
577 ;; a new frame.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
578 (frame-selected-window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
579 (funcall
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
580 pop-up-frame-function)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
581 ;; If window appears above or below another,
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
582 ;; even out their heights.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
583 (if (window-previous-child window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
584 (setq other (window-previous-child window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
585 ;; lower window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
586 upper other))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
587 (if (window-next-child window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
588 (setq other (window-next-child window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
589 ;; lower other
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
590 upper window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
591 ;; Check that OTHER and WINDOW are vertically arrayed.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
592 (if (and other
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
593 (not (= (nth 1 (window-pixel-edges other))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
594 (nth 1 (window-pixel-edges window))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
595 (> (window-pixel-height other)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
596 (window-pixel-height window)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
597 (enlarge-window (- (/ (+ (window-height other)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
598 (window-height window))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
599 2)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
600 (window-height upper))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
601 nil upper)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
602
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
603 (setq window (get-lru-window target-frame)))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
604
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
605 ;; Bring the window's previous buffer to the top of the MRU chain.
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
606 (if (window-buffer window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
607 (save-excursion
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
608 (save-selected-window
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
609 (select-window window)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
610 (record-buffer (window-buffer window)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
611
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
612 (set-window-buffer window buffer)
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
613
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
614 (display-buffer-1 window)))))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
615 (or (equal wconfig (current-window-configuration))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
616 (push-window-configuration wconfig))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
617 result))
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
618
41ff10fd062f Import from CVS: tag r20-4b3
cvs
parents:
diff changeset
619 ;;; window-xemacs.el ends here