entered into RCS
[bpt/emacs.git] / lisp / frame.el
CommitLineData
dc6d9681 1;;; frame.el --- multi-frame management independent of window systems.
c88ab9ce 2
fc68affa
ER
3;; Maintainer: FSF
4;; Last-Modified: 09 Jul 92
fd7fa35a 5;; Keywords: internal
fc68affa 6
49116ac0 7;;;; Copyright (C) 1990, 1992 Free Software Foundation, Inc.
64c669bc
JB
8
9;;; This file is part of GNU Emacs.
10;;;
11;;; GNU Emacs is free software; you can redistribute it and/or modify
12;;; it under the terms of the GNU General Public License as published by
de49a6d3 13;;; the Free Software Foundation; either version 2, or (at your option)
64c669bc
JB
14;;; any later version.
15;;;
16;;; GNU Emacs is distributed in the hope that it will be useful,
17;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;;; GNU General Public License for more details.
20;;;
21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Emacs; see the file COPYING. If not, write to
23;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
fc68affa
ER
25;;; Code:
26
dc6d9681
JB
27(defvar frame-creation-function nil
28 "Window-system dependent function to call to create a new frame.
29The window system startup file should set this to its frame creation
64c669bc
JB
30function, which should take an alist of parameters as its argument.")
31
32;;; The default value for this must ask for a minibuffer. There must
dc6d9681
JB
33;;; always exist a frame with a minibuffer, and after we delete the
34;;; terminal frame, this will be the only frame.
35(defvar initial-frame-alist '((minibuffer . nil))
36 "Alist of values used when creating the initial emacs text frame.
64c669bc 37These may be set in your init file, like this:
dc6d9681
JB
38 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
39These supercede the values given in frame-default-alist.")
64c669bc 40
dc6d9681
JB
41(defvar minibuffer-frame-alist nil
42 "Alist of values to apply to a minibuffer frame.
64c669bc 43These may be set in your init file, like this:
dc6d9681 44 (setq minibuffer-frame-alist
64c669bc 45 '((top . 1) (left . 1) (width . 80) (height . 1)))
dc6d9681 46These supercede the values given in default-frame-alist.")
64c669bc 47
dc6d9681
JB
48(defvar pop-up-frame-alist nil
49 "Alist of values used when creating pop-up frames.
50Pop-up frames are used for completions, help, and the like.
64c669bc 51This variable can be set in your init file, like this:
dc6d9681
JB
52 (setq pop-up-frame-alist '((width . 80) (height . 20)))
53These supercede the values given in default-frame-alist.")
64c669bc 54
dc6d9681 55(setq pop-up-frame-function
64c669bc 56 (function (lambda ()
dc6d9681 57 (new-frame pop-up-frame-alist))))
64c669bc
JB
58
59\f
dc6d9681 60;;;; Arrangement of frames at startup
64c669bc
JB
61
62;;; 1) Load the window system startup file from the lisp library and read the
63;;; high-priority arguments (-q and the like). The window system startup
dc6d9681 64;;; file should create any frames specified in the window system defaults.
64c669bc 65;;;
dc6d9681 66;;; 2) If no frames have been opened, we open an initial text frame.
64c669bc
JB
67;;;
68;;; 3) Once the init file is done, we apply any newly set parameters
dc6d9681 69;;; in initial-frame-alist to the frame.
64c669bc 70
dc6d9681
JB
71(add-hook 'before-init-hook 'frame-initialize)
72(add-hook 'window-setup-hook 'frame-notice-user-settings)
64c669bc 73
dc6d9681
JB
74;;; If we create the initial frame, this is it.
75(defvar frame-initial-frame nil)
64c669bc
JB
76
77;;; startup.el calls this function before loading the user's init
dc6d9681 78;;; file - if there is no frame with a minibuffer open now, create
64c669bc 79;;; one to display messages while loading the init file.
dc6d9681 80(defun frame-initialize ()
64c669bc
JB
81
82 ;; Are we actually running under a window system at all?
83 (if (and window-system (not noninteractive))
dc6d9681 84 (let ((frames (frame-list)))
64c669bc 85
dc6d9681
JB
86 ;; Look for a frame that has a minibuffer.
87 (while (and frames
88 (or (eq (car frames) terminal-frame)
64c669bc 89 (not (cdr (assq 'minibuffer
dc6d9681
JB
90 (frame-parameters
91 (car frames)))))))
92 (setq frames (cdr frames)))
93
94 ;; If there was none, then we need to create the opening frame.
95 (or frames
96 (setq default-minibuffer-frame
97 (setq frame-initial-frame
98 (new-frame initial-frame-alist))))
64c669bc 99
dc6d9681
JB
100 ;; At this point, we know that we have a frame open, so we
101 ;; can delete the terminal frame.
102 (delete-frame terminal-frame)
103 (setq terminal-frame nil))
64c669bc
JB
104
105 ;; No, we're not running a window system. Arrange to cause errors.
dc6d9681 106 (setq frame-creation-function
9198945a
MB
107 (function
108 (lambda (parameters)
109 (error
dc6d9681 110 "Can't create multiple frames without a window system."))))))
64c669bc
JB
111
112;;; startup.el calls this function after loading the user's init file.
113;;; If we created a minibuffer before knowing if we had permission, we
dc6d9681 114;;; need to see if it should go away or change. Create a text frame
64c669bc 115;;; here.
dc6d9681
JB
116(defun frame-notice-user-settings ()
117 (if frame-initial-frame
64c669bc
JB
118 (progn
119
dc6d9681 120 ;; If the user wants a minibuffer-only frame, we'll have to
64c669bc 121 ;; make a new one; you can't remove or add a root window to/from
dc6d9681
JB
122 ;; an existing frame.
123 (if (eq (cdr (or (assq 'minibuffer initial-frame-alist)
64c669bc
JB
124 '(minibuffer . t)))
125 'only)
126 (progn
dc6d9681
JB
127 (setq default-minibuffer-frame
128 (new-frame
129 (append initial-frame-alist
130 (frame-parameters frame-initial-frame))))
131 (delete-frame frame-initial-frame))
132 (modify-frame-parameters frame-initial-frame
133 initial-frame-alist))))
64c669bc 134
dc6d9681
JB
135 ;; Make sure the initial frame can be GC'd if it is ever deleted.
136 (makunbound 'frame-initial-frame))
64c669bc
JB
137
138\f
dc6d9681
JB
139;;;; Creation of additional frames
140
141;;; Return some frame other than the current frame,
142;;; creating one if neccessary. Note that the minibuffer frame, if
143;;; separate, is not considered (see next-frame).
7253d8e0 144(defun get-other-frame ()
dc6d9681
JB
145 (let ((s (if (equal (next-frame (selected-frame)) (selected-frame))
146 (new-frame)
147 (next-frame (selected-frame)))))
64c669bc
JB
148 s))
149
dc6d9681
JB
150(defun next-multiframe-window ()
151 "Select the next window, regardless of which frame it is on."
64c669bc
JB
152 (interactive)
153 (select-window (next-window (selected-window)
154 (> (minibuffer-depth) 0)
155 t)))
156
dc6d9681
JB
157(defun previous-multiframe-window ()
158 "Select the previous window, regardless of which frame it is on."
64c669bc
JB
159 (interactive)
160 (select-window (previous-window (selected-window)
161 (> (minibuffer-depth) 0)
162 t)))
163
dc6d9681
JB
164(defun new-frame (&optional parameters)
165 "Create a new frame, displaying the current buffer.
bc93c097 166
43a2e52c 167Optional argument PARAMETERS is an alist of parameters for the new
dc6d9681 168frame. Specifically, PARAMETERS is a list of pairs, each having one
43a2e52c
JB
169of the following forms:
170
dc6d9681 171(name . STRING) - The frame should be named STRING.
43a2e52c 172
dc6d9681 173(height . NUMBER) - The frame should be NUMBER text lines high. If
43a2e52c
JB
174 this parameter is present, the width parameter must also be
175 given.
176
dc6d9681 177(width . NUMBER) - The frame should be NUMBER characters in width.
43a2e52c
JB
178 If this parameter is present, the height parameter must also
179 be given.
180
dc6d9681
JB
181(minibuffer . t) - the frame should have a minibuffer
182(minibuffer . none) - the frame should have no minibuffer
183(minibuffer . only) - the frame should contain only a minibuffer
184(minibuffer . WINDOW) - the frame should use WINDOW as its minibuffer window.
43a2e52c
JB
185
186(NAME . VALUE), specifying the parameter and the value it should have.
187NAME should be one of the following symbols:
188 name VALUE
189
dc6d9681
JB
190The documentation for the function x-create-frame describes
191additional frame parameters that Emacs will recognize when running
43a2e52c 192under the X Window System."
64c669bc 193 (interactive)
dc6d9681 194 (funcall frame-creation-function parameters))
64c669bc
JB
195
196\f
197;;;; Iconification
198
199;;; A possible enhancement for the below: if you iconify a surrogate
dc6d9681
JB
200;;; minibuffer frame, iconify all of its minibuffer's users too;
201;;; de-iconify them as a group. This will need to wait until frames
64c669bc
JB
202;;; have mapping and unmapping hooks.
203
204(defun iconify ()
dc6d9681 205 "Iconify or deiconify the selected frame."
64c669bc 206 (interactive)
dc6d9681
JB
207 (let ((frame (selected-frame)))
208 (if (eq (frame-visible-p frame) t)
209 (iconify-frame frame)
210 (make-frame-visible frame))))
06b1a5ef
JB
211
212\f
dc6d9681
JB
213;;;; Frame configurations
214
215(defun current-frame-configuration ()
216 "Return a list describing the positions and states of all frames.
217Each element is a list of the form (FRAME ALIST WINDOW-CONFIG), where
218FRAME is a frame object, ALIST is an association list specifying
219some of FRAME's parameters, and WINDOW-CONFIG is a window
220configuration object for FRAME."
06b1a5ef 221 (mapcar (function
dc6d9681
JB
222 (lambda (frame)
223 (list frame
224 (frame-parameters frame)
225 (current-window-configuration frame))))
226 (frame-list)))
227
228(defun set-frame-configuration (configuration)
229 "Restore the frames to the state described by CONFIGURATION.
230Each frame listed in CONFIGURATION has its position, size, window
06b1a5ef 231configuration, and other parameters set as specified in CONFIGURATION."
dc6d9681 232 (let (frames-to-delete)
06b1a5ef 233 (mapcar (function
dc6d9681
JB
234 (lambda (frame)
235 (let ((parameters (assq frame configuration)))
06b1a5ef
JB
236 (if parameters
237 (progn
dc6d9681 238 (modify-frame-parameters frame (nth 1 parameters))
06b1a5ef 239 (set-window-configuration (nth 2 parameters)))
dc6d9681
JB
240 (setq frames-to-delete (cons frame frames-to-delete))))))
241 (frame-list))
242 (mapcar 'delete-frame frames-to-delete)))
64c669bc
JB
243
244\f
dc6d9681
JB
245;;;; Convenience functions for accessing and interactively changing
246;;;; frame parameters.
64c669bc 247
151bdc83 248(defun frame-height (&optional frame)
dc6d9681
JB
249 "Return number of lines available for display on FRAME.
250If FRAME is omitted, describe the currently selected frame."
151bdc83 251 (cdr (assq 'height (frame-parameters frame))))
dc6d9681
JB
252
253(defun frame-width (&optional frame)
254 "Return number of columns available for display on FRAME.
255If FRAME is omitted, describe the currently selected frame."
151bdc83 256 (cdr (assq 'width (frame-parameters frame))))
dc6d9681
JB
257
258(defun set-frame-height (h)
64c669bc 259 (interactive "NHeight: ")
dc6d9681
JB
260 (let* ((frame (selected-frame))
261 (width (cdr (assoc 'width (frame-parameters (selected-frame))))))
262 (set-frame-size (selected-frame) width h)))
64c669bc 263
dc6d9681 264(defun set-frame-width (w)
64c669bc 265 (interactive "NWidth: ")
dc6d9681
JB
266 (let* ((frame (selected-frame))
267 (height (cdr (assoc 'height (frame-parameters (selected-frame))))))
268 (set-frame-size (selected-frame) w height)))
64c669bc
JB
269
270(defun set-default-font (font-name)
271 (interactive "sFont name: ")
dc6d9681 272 (modify-frame-parameters (selected-frame)
64c669bc
JB
273 (list (cons 'font font-name))))
274
dc6d9681 275(defun set-frame-background (color-name)
64c669bc 276 (interactive "sColor: ")
dc6d9681 277 (modify-frame-parameters (selected-frame)
64c669bc
JB
278 (list (cons 'background-color color-name))))
279
dc6d9681 280(defun set-frame-foreground (color-name)
64c669bc 281 (interactive "sColor: ")
dc6d9681 282 (modify-frame-parameters (selected-frame)
64c669bc
JB
283 (list (cons 'foreground-color color-name))))
284
285(defun set-cursor-color (color-name)
286 (interactive "sColor: ")
dc6d9681 287 (modify-frame-parameters (selected-frame)
64c669bc
JB
288 (list (cons 'cursor-color color-name))))
289
290(defun set-pointer-color (color-name)
291 (interactive "sColor: ")
dc6d9681 292 (modify-frame-parameters (selected-frame)
64c669bc
JB
293 (list (cons 'mouse-color color-name))))
294
295(defun set-auto-raise (toggle)
296 (interactive "xt or nil? ")
dc6d9681 297 (modify-frame-parameters (selected-frame)
64c669bc
JB
298 (list (cons 'auto-raise toggle))))
299
300(defun set-auto-lower (toggle)
301 (interactive "xt or nil? ")
dc6d9681 302 (modify-frame-parameters (selected-frame)
64c669bc
JB
303 (list (cons 'auto-lower toggle))))
304
305(defun set-vertical-bar (toggle)
306 (interactive "xt or nil? ")
dc6d9681 307 (modify-frame-parameters (selected-frame)
64c669bc
JB
308 (list (cons 'vertical-scroll-bar toggle))))
309
310(defun set-horizontal-bar (toggle)
311 (interactive "xt or nil? ")
dc6d9681 312 (modify-frame-parameters (selected-frame)
64c669bc
JB
313 (list (cons 'horizontal-scroll-bar toggle))))
314\f
dc6d9681
JB
315;;;; Aliases for backward compatibility with Emacs 18.
316(fset 'screen-height 'frame-height)
317(fset 'screen-width 'frame-width)
318(fset 'set-screen-width 'set-frame-width)
319(fset 'set-screen-height 'set-frame-height)
320
321\f
64c669bc 322;;;; Key bindings
daa37602 323(defvar ctl-x-5-map (make-sparse-keymap)
dc6d9681 324 "Keymap for frame commands.")
daa37602
JB
325(fset 'ctl-x-5-prefix ctl-x-5-map)
326(define-key ctl-x-map "5" 'ctl-x-5-prefix)
64c669bc 327
dc6d9681
JB
328(define-key ctl-x-5-map "2" 'new-frame)
329(define-key ctl-x-5-map "0" 'delete-frame)
49116ac0 330
dc6d9681 331(provide 'frame)
c88ab9ce 332
dc6d9681 333;;; frame.el ends here