new version
[emacs.git] / lisp / frame.el
blob326677339aecfe24209cde994c141f51c89a4e8d
1 ;;; frame.el --- multi-frame management independent of window systems.
3 ;; Copyright (C) 1993, 1994, 1996, 1997 Free Software Foundation, Inc.
5 ;; Maintainer: FSF
6 ;; Keywords: internal
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
25 ;;; Code:
27 (defvar frame-creation-function nil
28 "Window-system dependent function to call to create a new frame.
29 The window system startup file should set this to its frame creation
30 function, which should take an alist of parameters as its argument.")
32 ;;; The initial value given here for used to ask for a minibuffer.
33 ;;; But that's not necessary, because the default is to have one.
34 ;;; By not specifying it here, we let an X resource specify it.
35 (defvar initial-frame-alist nil
36 "Alist of frame parameters for creating the initial X window frame.
37 You can set this in your `.emacs' file; for example,
38 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
39 Parameters specified here supersede the values given in `default-frame-alist'.
41 If the value calls for a frame without a minibuffer, and you have not created
42 a minibuffer frame on your own, one is created according to
43 `minibuffer-frame-alist'.
45 You can specify geometry-related options for just the initial frame
46 by setting this variable in your `.emacs' file; however, they won't
47 take effect until Emacs reads `.emacs', which happens after first creating
48 the frame. If you want the frame to have the proper geometry as soon
49 as it appears, you need to use this three-step process:
50 * Specify X resources to give the geometry you want.
51 * Set `default-frame-alist' to override these options so that they
52 don't affect subsequent frames.
53 * Set `initial-frame-alist' in a way that matches the X resources,
54 to override what you put in `default-frame-alist'.")
56 (defvar minibuffer-frame-alist '((width . 80) (height . 2))
57 "Alist of frame parameters for initially creating a minibuffer frame.
58 You can set this in your `.emacs' file; for example,
59 (setq minibuffer-frame-alist
60 '((top . 1) (left . 1) (width . 80) (height . 2)))
61 Parameters specified here supersede the values given in
62 `default-frame-alist'.")
64 (defvar pop-up-frame-alist nil
65 "Alist of frame parameters used when creating pop-up frames.
66 Pop-up frames are used for completions, help, and the like.
67 This variable can be set in your init file, like this:
68 (setq pop-up-frame-alist '((width . 80) (height . 20)))
69 These supersede the values given in `default-frame-alist'.")
71 (setq pop-up-frame-function
72 (function (lambda ()
73 (make-frame pop-up-frame-alist))))
75 (defcustom special-display-frame-alist
76 '((height . 14) (width . 80) (unsplittable . t))
77 "*Alist of frame parameters used when creating special frames.
78 Special frames are used for buffers whose names are in
79 `special-display-buffer-names' and for buffers whose names match
80 one of the regular expressions in `special-display-regexps'.
81 This variable can be set in your init file, like this:
82 (setq special-display-frame-alist '((width . 80) (height . 20)))
83 These supersede the values given in `default-frame-alist'."
84 :type '(repeat (cons :format "%v"
85 (symbol :tag "Parameter")
86 (sexp :tag "Value")))
87 :group 'frames)
89 ;; Display BUFFER in its own frame, reusing an existing window if any.
90 ;; Return the window chosen.
91 ;; Currently we do not insist on selecting the window within its frame.
92 ;; If ARGS is an alist, use it as a list of frame parameter specs.
93 ;; If ARGS is a list whose car is a symbol,
94 ;; use (car ARGS) as a function to do the work.
95 ;; Pass it BUFFER as first arg, and (cdr ARGS) gives the rest of the args.
96 (defun special-display-popup-frame (buffer &optional args)
97 (if (and args (symbolp (car args)))
98 (apply (car args) buffer (cdr args))
99 (let ((window (get-buffer-window buffer t)))
100 (if window
101 ;; If we have a window already, make it visible.
102 (let ((frame (window-frame window)))
103 (make-frame-visible frame)
104 (raise-frame frame)
105 window)
106 ;; If no window yet, make one in a new frame.
107 (let ((frame (make-frame (append args special-display-frame-alist))))
108 (set-window-buffer (frame-selected-window frame) buffer)
109 (set-window-dedicated-p (frame-selected-window frame) t)
110 (frame-selected-window frame))))))
112 ;; Handle delete-frame events from the X server.
113 (defun handle-delete-frame (event)
114 (interactive "e")
115 (let ((frame (posn-window (event-start event)))
116 (i 0)
117 (tail (frame-list)))
118 (while tail
119 (and (frame-visible-p (car tail))
120 (not (eq (car tail) frame))
121 (setq i (1+ i)))
122 (setq tail (cdr tail)))
123 (if (> i 0)
124 (delete-frame frame t)
125 ;; Gildea@x.org says it is ok to ask questions before terminating.
126 (save-buffers-kill-emacs))))
128 ;;;; Arrangement of frames at startup
130 ;;; 1) Load the window system startup file from the lisp library and read the
131 ;;; high-priority arguments (-q and the like). The window system startup
132 ;;; file should create any frames specified in the window system defaults.
134 ;;; 2) If no frames have been opened, we open an initial text frame.
136 ;;; 3) Once the init file is done, we apply any newly set parameters
137 ;;; in initial-frame-alist to the frame.
139 ;; These are now called explicitly at the proper times,
140 ;; since that is easier to understand.
141 ;; Actually using hooks within Emacs is bad for future maintenance. --rms.
142 ;; (add-hook 'before-init-hook 'frame-initialize)
143 ;; (add-hook 'window-setup-hook 'frame-notice-user-settings)
145 ;;; If we create the initial frame, this is it.
146 (defvar frame-initial-frame nil)
148 ;; Record the parameters used in frame-initialize to make the initial frame.
149 (defvar frame-initial-frame-alist)
151 (defvar frame-initial-geometry-arguments nil)
153 ;;; startup.el calls this function before loading the user's init
154 ;;; file - if there is no frame with a minibuffer open now, create
155 ;;; one to display messages while loading the init file.
156 (defun frame-initialize ()
158 ;; Are we actually running under a window system at all?
159 (if (and window-system (not noninteractive) (not (eq window-system 'pc)))
160 (progn
161 ;; Turn on special-display processing only if there's a window system.
162 (setq special-display-function 'special-display-popup-frame)
164 ;; If there is no frame with a minibuffer besides the terminal
165 ;; frame, then we need to create the opening frame. Make sure
166 ;; it has a minibuffer, but let initial-frame-alist omit the
167 ;; minibuffer spec.
168 (or (delq terminal-frame (minibuffer-frame-list))
169 (progn
170 (setq frame-initial-frame-alist
171 (append initial-frame-alist default-frame-alist))
172 (or (assq 'horizontal-scroll-bars frame-initial-frame-alist)
173 (setq frame-initial-frame-alist
174 (cons '(horizontal-scroll-bars . t)
175 frame-initial-frame-alist)))
176 (setq default-minibuffer-frame
177 (setq frame-initial-frame
178 (make-frame frame-initial-frame-alist)))
179 ;; Delete any specifications for window geometry parameters
180 ;; so that we won't reapply them in frame-notice-user-settings.
181 ;; It would be wrong to reapply them then,
182 ;; because that would override explicit user resizing.
183 (setq initial-frame-alist
184 (frame-remove-geometry-params initial-frame-alist))))
185 ;; At this point, we know that we have a frame open, so we
186 ;; can delete the terminal frame.
187 (delete-frame terminal-frame)
188 (setq terminal-frame nil))
190 ;; No, we're not running a window system. Use make-terminal-frame if
191 ;; we support that feature, otherwise arrange to cause errors.
192 (or (eq window-system 'pc)
193 (setq frame-creation-function
194 (if (fboundp 'make-terminal-frame)
195 'make-terminal-frame
196 (function
197 (lambda (parameters)
198 (error
199 "Can't create multiple frames without a window system"))))))))
201 ;;; startup.el calls this function after loading the user's init
202 ;;; file. Now default-frame-alist and initial-frame-alist contain
203 ;;; information to which we must react; do what needs to be done.
204 (defun frame-notice-user-settings ()
206 ;; Make menu-bar-mode and default-frame-alist consistent.
207 (if (boundp 'menu-bar-mode)
208 (let ((default (assq 'menu-bar-lines default-frame-alist)))
209 (if default
210 (setq menu-bar-mode (not (eq (cdr default) 0)))
211 (setq default-frame-alist
212 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
213 default-frame-alist)))))
215 ;; Creating and deleting frames may shift the selected frame around,
216 ;; and thus the current buffer. Protect against that. We don't
217 ;; want to use save-excursion here, because that may also try to set
218 ;; the buffer of the selected window, which fails when the selected
219 ;; window is the minibuffer.
220 (let ((old-buffer (current-buffer)))
222 ;; If the initial frame is still around, apply initial-frame-alist
223 ;; and default-frame-alist to it.
224 (if (frame-live-p frame-initial-frame)
226 ;; The initial frame we create above always has a minibuffer.
227 ;; If the user wants to remove it, or make it a minibuffer-only
228 ;; frame, then we'll have to delete the current frame and make a
229 ;; new one; you can't remove or add a root window to/from an
230 ;; existing frame.
232 ;; NOTE: default-frame-alist was nil when we created the
233 ;; existing frame. We need to explicitly include
234 ;; default-frame-alist in the parameters of the screen we
235 ;; create here, so that its new value, gleaned from the user's
236 ;; .emacs file, will be applied to the existing screen.
237 (if (not (eq (cdr (or (assq 'minibuffer initial-frame-alist)
238 (assq 'minibuffer default-frame-alist)
239 '(minibuffer . t)))
241 ;; Create the new frame.
242 (let (parms new)
243 ;; If the frame isn't visible yet, wait till it is.
244 ;; If the user has to position the window,
245 ;; Emacs doesn't know its real position until
246 ;; the frame is seen to be visible.
247 (while (not (cdr (assq 'visibility
248 (frame-parameters frame-initial-frame))))
249 (sleep-for 1))
250 (setq parms (frame-parameters frame-initial-frame))
251 ;; Get rid of `name' unless it was specified explicitly before.
252 (or (assq 'name frame-initial-frame-alist)
253 (setq parms (delq (assq 'name parms) parms)))
254 (setq parms (append initial-frame-alist
255 default-frame-alist
256 parms
257 nil))
258 ;; Get rid of `reverse', because that was handled
259 ;; when we first made the frame.
260 (setq parms (cons '(reverse) (delq (assq 'reverse parms) parms)))
261 (if (assq 'height frame-initial-geometry-arguments)
262 (setq parms (frame-delete-all 'height parms)))
263 (if (assq 'width frame-initial-geometry-arguments)
264 (setq parms (frame-delete-all 'width parms)))
265 (if (assq 'left frame-initial-geometry-arguments)
266 (setq parms (frame-delete-all 'left parms)))
267 (if (assq 'top frame-initial-geometry-arguments)
268 (setq parms (frame-delete-all 'top parms)))
269 (setq new
270 (make-frame
271 ;; Use the geometry args that created the existing
272 ;; frame, rather than the parms we get for it.
273 (append frame-initial-geometry-arguments
274 '((user-size . t) (user-position . t))
275 parms)))
276 ;; The initial frame, which we are about to delete, may be
277 ;; the only frame with a minibuffer. If it is, create a
278 ;; new one.
279 (or (delq frame-initial-frame (minibuffer-frame-list))
280 (make-initial-minibuffer-frame nil))
282 ;; If the initial frame is serving as a surrogate
283 ;; minibuffer frame for any frames, we need to wean them
284 ;; onto a new frame. The default-minibuffer-frame
285 ;; variable must be handled similarly.
286 (let ((users-of-initial
287 (filtered-frame-list
288 (function (lambda (frame)
289 (and (not (eq frame frame-initial-frame))
290 (eq (window-frame
291 (minibuffer-window frame))
292 frame-initial-frame)))))))
293 (if (or users-of-initial
294 (eq default-minibuffer-frame frame-initial-frame))
296 ;; Choose an appropriate frame. Prefer frames which
297 ;; are only minibuffers.
298 (let* ((new-surrogate
299 (car
300 (or (filtered-frame-list
301 (function
302 (lambda (frame)
303 (eq (cdr (assq 'minibuffer
304 (frame-parameters frame)))
305 'only))))
306 (minibuffer-frame-list))))
307 (new-minibuffer (minibuffer-window new-surrogate)))
309 (if (eq default-minibuffer-frame frame-initial-frame)
310 (setq default-minibuffer-frame new-surrogate))
312 ;; Wean the frames using frame-initial-frame as
313 ;; their minibuffer frame.
314 (mapcar
315 (function
316 (lambda (frame)
317 (modify-frame-parameters
318 frame (list (cons 'minibuffer new-minibuffer)))))
319 users-of-initial))))
321 ;; Redirect events enqueued at this frame to the new frame.
322 ;; Is this a good idea?
323 (redirect-frame-focus frame-initial-frame new)
325 ;; Finally, get rid of the old frame.
326 (delete-frame frame-initial-frame t))
328 ;; Otherwise, we don't need all that rigamarole; just apply
329 ;; the new parameters.
330 (let (newparms allparms tail)
331 (setq allparms (append initial-frame-alist
332 default-frame-alist))
333 (if (assq 'height frame-initial-geometry-arguments)
334 (setq allparms (frame-delete-all 'height allparms)))
335 (if (assq 'width frame-initial-geometry-arguments)
336 (setq allparms (frame-delete-all 'width allparms)))
337 (if (assq 'left frame-initial-geometry-arguments)
338 (setq allparms (frame-delete-all 'left allparms)))
339 (if (assq 'top frame-initial-geometry-arguments)
340 (setq allparms (frame-delete-all 'top allparms)))
341 (setq tail allparms)
342 ;; Find just the parms that have changed since we first
343 ;; made this frame. Those are the ones actually set by
344 ;; the init file. For those parms whose values we already knew
345 ;; (such as those spec'd by command line options)
346 ;; it is undesirable to specify the parm again
347 ;; once the user has seen the frame and been able to alter it
348 ;; manually.
349 (while tail
350 (let (newval oldval)
351 (setq oldval (assq (car (car tail))
352 frame-initial-frame-alist))
353 (setq newval (cdr (assq (car (car tail)) allparms)))
354 (or (and oldval (eq (cdr oldval) newval))
355 (setq newparms
356 (cons (cons (car (car tail)) newval) newparms))))
357 (setq tail (cdr tail)))
358 (setq newparms (nreverse newparms))
359 (modify-frame-parameters frame-initial-frame
360 newparms)
361 (if (assq 'font newparms)
362 (frame-update-faces frame-initial-frame)))))
364 ;; Restore the original buffer.
365 (set-buffer old-buffer)
367 ;; Make sure the initial frame can be GC'd if it is ever deleted.
368 ;; Make sure frame-notice-user-settings does nothing if called twice.
369 (setq frame-initial-frame nil)))
371 (defun make-initial-minibuffer-frame (display)
372 (let ((parms (append minibuffer-frame-alist '((minibuffer . only)))))
373 (if display
374 (make-frame-on-display display parms)
375 (make-frame parms))))
377 ;; Delete from ALIST all elements whose car is KEY.
378 ;; Return the modified alist.
379 (defun frame-delete-all (key alist)
380 (setq alist (copy-sequence alist))
381 (let ((tail alist))
382 (while tail
383 (if (eq (car (car tail)) key)
384 (setq alist (delq (car tail) alist)))
385 (setq tail (cdr tail)))
386 alist))
388 ;;;; Creation of additional frames, and other frame miscellanea
390 ;;; Return some frame other than the current frame, creating one if
391 ;;; necessary. Note that the minibuffer frame, if separate, is not
392 ;;; considered (see next-frame).
393 (defun get-other-frame ()
394 (let ((s (if (equal (next-frame (selected-frame)) (selected-frame))
395 (make-frame)
396 (next-frame (selected-frame)))))
399 (defun next-multiframe-window ()
400 "Select the next window, regardless of which frame it is on."
401 (interactive)
402 (select-window (next-window (selected-window)
403 (> (minibuffer-depth) 0)
404 t)))
406 (defun previous-multiframe-window ()
407 "Select the previous window, regardless of which frame it is on."
408 (interactive)
409 (select-window (previous-window (selected-window)
410 (> (minibuffer-depth) 0)
411 t)))
413 (defun make-frame-on-display (display &optional parameters)
414 "Make a frame on display DISPLAY.
415 The optional second argument PARAMETERS specifies additional frame parameters."
416 (interactive "sMake frame on display: ")
417 (make-frame (cons (cons 'display display) parameters)))
419 (defun make-frame-command ()
420 "Make a new frame, and select it if the terminal displays only one frame."
421 (interactive)
422 (if (and window-system (not (eq window-system 'pc)))
423 (make-frame)
424 (select-frame (make-frame))))
426 (defvar before-make-frame-hook nil
427 "Functions to run before a frame is created.")
429 (defvar after-make-frame-functions nil
430 "Functions to run after a frame is created.
431 The functions are run with one arg, the newly created frame.")
433 ;; Alias, kept temporarily.
434 (defalias 'new-frame 'make-frame)
436 (defun make-frame (&optional parameters)
437 "Return a newly created frame displaying the current buffer.
438 Optional argument PARAMETERS is an alist of parameters for the new frame.
439 Each element of PARAMETERS should have the form (NAME . VALUE), for example:
441 (name . STRING) The frame should be named STRING.
443 (width . NUMBER) The frame should be NUMBER characters in width.
444 (height . NUMBER) The frame should be NUMBER text lines high.
446 You cannot specify either `width' or `height', you must use neither or both.
448 (minibuffer . t) The frame should have a minibuffer.
449 (minibuffer . nil) The frame should have no minibuffer.
450 (minibuffer . only) The frame should contain only a minibuffer.
451 (minibuffer . WINDOW) The frame should use WINDOW as its minibuffer window.
453 Before the frame is created (via `frame-creation-function'), functions on the
454 hook `before-make-frame-hook' are run. After the frame is created, functions
455 on `after-make-frame-functions' are run with one arg, the newly created frame."
456 (interactive)
457 (run-hooks 'before-make-frame-hook)
458 (let ((frame (funcall frame-creation-function parameters)))
459 (run-hook-with-args 'after-make-frame-functions frame)
460 frame))
462 (defun filtered-frame-list (predicate)
463 "Return a list of all live frames which satisfy PREDICATE."
464 (let ((frames (frame-list))
465 good-frames)
466 (while (consp frames)
467 (if (funcall predicate (car frames))
468 (setq good-frames (cons (car frames) good-frames)))
469 (setq frames (cdr frames)))
470 good-frames))
472 (defun minibuffer-frame-list ()
473 "Return a list of all frames with their own minibuffers."
474 (filtered-frame-list
475 (function (lambda (frame)
476 (eq frame (window-frame (minibuffer-window frame)))))))
478 (defun frame-remove-geometry-params (param-list)
479 "Return the parameter list PARAM-LIST, but with geometry specs removed.
480 This deletes all bindings in PARAM-LIST for `top', `left', `width',
481 `height', `user-size' and `user-position' parameters.
482 Emacs uses this to avoid overriding explicit moves and resizings from
483 the user during startup."
484 (setq param-list (cons nil param-list))
485 (let ((tail param-list))
486 (while (consp (cdr tail))
487 (if (and (consp (car (cdr tail)))
488 (memq (car (car (cdr tail)))
489 '(height width top left user-position user-size)))
490 (progn
491 (setq frame-initial-geometry-arguments
492 (cons (car (cdr tail)) frame-initial-geometry-arguments))
493 (setcdr tail (cdr (cdr tail))))
494 (setq tail (cdr tail)))))
495 (setq frame-initial-geometry-arguments
496 (nreverse frame-initial-geometry-arguments))
497 (cdr param-list))
500 (defcustom focus-follows-mouse t
501 "*Non-nil if window system changes focus when you move the mouse."
502 :type 'boolean
503 :group 'frames
504 :version "20.3")
506 (defun other-frame (arg)
507 "Select the ARG'th different visible frame, and raise it.
508 All frames are arranged in a cyclic order.
509 This command selects the frame ARG steps away in that order.
510 A negative ARG moves in the opposite order."
511 (interactive "p")
512 (let ((frame (selected-frame)))
513 (while (> arg 0)
514 (setq frame (next-frame frame))
515 (while (not (eq (frame-visible-p frame) t))
516 (setq frame (next-frame frame)))
517 (setq arg (1- arg)))
518 (while (< arg 0)
519 (setq frame (previous-frame frame))
520 (while (not (eq (frame-visible-p frame) t))
521 (setq frame (previous-frame frame)))
522 (setq arg (1+ arg)))
523 (raise-frame frame)
524 (select-frame frame)
525 ;; Ensure, if possible, that frame gets input focus.
526 (if (eq window-system 'w32)
527 (w32-focus-frame frame)
528 (when focus-follows-mouse
529 (set-mouse-position (selected-frame) (1- (frame-width)) 0)))))
531 (defun make-frame-names-alist ()
532 (let* ((current-frame (selected-frame))
533 (falist
534 (cons
535 (cons (frame-parameter current-frame 'name) current-frame) nil))
536 (frame (next-frame nil t)))
537 (while (not (eq frame current-frame))
538 (progn
539 (setq falist (cons (cons (frame-parameter frame 'name) frame) falist))
540 (setq frame (next-frame frame t))))
541 falist))
543 (defvar frame-name-history nil)
544 (defun select-frame-by-name (name)
545 "Select the frame whose name is NAME and raise it.
546 If there is no frame by that name, signal an error."
547 (interactive
548 (let* ((frame-names-alist (make-frame-names-alist))
549 (default (car (car frame-names-alist)))
550 (input (completing-read
551 (format "Select Frame (default %s): " default)
552 frame-names-alist nil t nil 'frame-name-history)))
553 (if (= (length input) 0)
554 (list default)
555 (list input))))
556 (let* ((frame-names-alist (make-frame-names-alist))
557 (frame (cdr (assoc name frame-names-alist))))
558 (or frame
559 (error "There is no frame named `%s'" name))
560 (make-frame-visible frame)
561 (raise-frame frame)
562 (select-frame frame)))
564 ;;;; Frame configurations
566 (defun current-frame-configuration ()
567 "Return a list describing the positions and states of all frames.
568 Its car is `frame-configuration'.
569 Each element of the cdr is a list of the form (FRAME ALIST WINDOW-CONFIG),
570 where
571 FRAME is a frame object,
572 ALIST is an association list specifying some of FRAME's parameters, and
573 WINDOW-CONFIG is a window configuration object for FRAME."
574 (cons 'frame-configuration
575 (mapcar (function
576 (lambda (frame)
577 (list frame
578 (frame-parameters frame)
579 (current-window-configuration frame))))
580 (frame-list))))
582 (defun set-frame-configuration (configuration &optional nodelete)
583 "Restore the frames to the state described by CONFIGURATION.
584 Each frame listed in CONFIGURATION has its position, size, window
585 configuration, and other parameters set as specified in CONFIGURATION.
586 Ordinarily, this function deletes all existing frames not
587 listed in CONFIGURATION. But if optional second argument NODELETE
588 is given and non-nil, the unwanted frames are iconified instead."
589 (or (frame-configuration-p configuration)
590 (signal 'wrong-type-argument
591 (list 'frame-configuration-p configuration)))
592 (let ((config-alist (cdr configuration))
593 frames-to-delete)
594 (mapcar (function
595 (lambda (frame)
596 (let ((parameters (assq frame config-alist)))
597 (if parameters
598 (progn
599 (modify-frame-parameters
600 frame
601 ;; Since we can't set a frame's minibuffer status,
602 ;; we might as well omit the parameter altogether.
603 (let* ((parms (nth 1 parameters))
604 (mini (assq 'minibuffer parms)))
605 (if mini (setq parms (delq mini parms)))
606 parms))
607 (set-window-configuration (nth 2 parameters)))
608 (setq frames-to-delete (cons frame frames-to-delete))))))
609 (frame-list))
610 (if nodelete
611 ;; Note: making frames invisible here was tried
612 ;; but led to some strange behavior--each time the frame
613 ;; was made visible again, the window manager asked afresh
614 ;; for where to put it.
615 (mapcar 'iconify-frame frames-to-delete)
616 (mapcar 'delete-frame frames-to-delete))))
618 ;;;; Convenience functions for accessing and interactively changing
619 ;;;; frame parameters.
621 (defun frame-parameter (frame parameter)
622 "Return FRAME's value for parameter PARAMETER.
623 If FRAME is omitted, describe the currently selected frame."
624 (cdr (assq parameter (frame-parameters frame))))
626 (defun frame-height (&optional frame)
627 "Return number of lines available for display on FRAME.
628 If FRAME is omitted, describe the currently selected frame."
629 (cdr (assq 'height (frame-parameters frame))))
631 (defun frame-width (&optional frame)
632 "Return number of columns available for display on FRAME.
633 If FRAME is omitted, describe the currently selected frame."
634 (cdr (assq 'width (frame-parameters frame))))
636 (defalias 'set-default-font 'set-frame-font)
637 (defun set-frame-font (font-name)
638 "Set the font of the selected frame to FONT.
639 When called interactively, prompt for the name of the font to use.
640 To get the frame's current default font, use `frame-parameters'."
641 (interactive "sFont name: ")
642 (modify-frame-parameters (selected-frame)
643 (list (cons 'font font-name)))
644 ;; Update faces that want a bold or italic version of the default font.
645 (frame-update-faces (selected-frame)))
647 (defun set-background-color (color-name)
648 "Set the background color of the selected frame to COLOR.
649 When called interactively, prompt for the name of the color to use.
650 To get the frame's current background color, use `frame-parameters'."
651 (interactive "sColor: ")
652 (modify-frame-parameters (selected-frame)
653 (list (cons 'background-color color-name)))
654 (frame-update-face-colors (selected-frame)))
656 (defun set-foreground-color (color-name)
657 "Set the foreground color of the selected frame to COLOR.
658 When called interactively, prompt for the name of the color to use.
659 To get the frame's current foreground color, use `frame-parameters'."
660 (interactive "sColor: ")
661 (modify-frame-parameters (selected-frame)
662 (list (cons 'foreground-color color-name)))
663 (frame-update-face-colors (selected-frame)))
665 (defun set-cursor-color (color-name)
666 "Set the text cursor color of the selected frame to COLOR.
667 When called interactively, prompt for the name of the color to use.
668 To get the frame's current cursor color, use `frame-parameters'."
669 (interactive "sColor: ")
670 (modify-frame-parameters (selected-frame)
671 (list (cons 'cursor-color color-name))))
673 (defun set-mouse-color (color-name)
674 "Set the color of the mouse pointer of the selected frame to COLOR.
675 When called interactively, prompt for the name of the color to use.
676 To get the frame's current mouse color, use `frame-parameters'."
677 (interactive "sColor: ")
678 (modify-frame-parameters (selected-frame)
679 (list (cons 'mouse-color color-name))))
681 (defun set-border-color (color-name)
682 "Set the color of the border of the selected frame to COLOR.
683 When called interactively, prompt for the name of the color to use.
684 To get the frame's current border color, use `frame-parameters'."
685 (interactive "sColor: ")
686 (modify-frame-parameters (selected-frame)
687 (list (cons 'border-color color-name))))
689 (defun auto-raise-mode (arg)
690 "Toggle whether or not the selected frame should auto-raise.
691 With arg, turn auto-raise mode on if and only if arg is positive.
692 Note that this controls Emacs's own auto-raise feature.
693 Some window managers allow you to enable auto-raise for certain windows.
694 You can use that for Emacs windows if you wish, but if you do,
695 that is beyond the control of Emacs and this command has no effect on it."
696 (interactive "P")
697 (if (null arg)
698 (setq arg
699 (if (cdr (assq 'auto-raise (frame-parameters (selected-frame))))
700 -1 1)))
701 (modify-frame-parameters (selected-frame)
702 (list (cons 'auto-raise (> arg 0)))))
704 (defun auto-lower-mode (arg)
705 "Toggle whether or not the selected frame should auto-lower.
706 With arg, turn auto-lower mode on if and only if arg is positive.
707 Note that this controls Emacs's own auto-lower feature.
708 Some window managers allow you to enable auto-lower for certain windows.
709 You can use that for Emacs windows if you wish, but if you do,
710 that is beyond the control of Emacs and this command has no effect on it."
711 (interactive "P")
712 (if (null arg)
713 (setq arg
714 (if (cdr (assq 'auto-lower (frame-parameters (selected-frame))))
715 -1 1)))
716 (modify-frame-parameters (selected-frame)
717 (list (cons 'auto-lower (> arg 0)))))
718 (defun set-frame-name (name)
719 "Set the name of the selected frame to NAME.
720 When called interactively, prompt for the name of the frame.
721 The frame name is displayed on the modeline if the terminal displays only
722 one frame, otherwise the name is displayed on the frame's caption bar."
723 (interactive "sFrame name: ")
724 (modify-frame-parameters (selected-frame)
725 (list (cons 'name name))))
727 ;;;; Aliases for backward compatibility with Emacs 18.
728 (defalias 'screen-height 'frame-height)
729 (defalias 'screen-width 'frame-width)
731 (defun set-screen-width (cols &optional pretend)
732 "Obsolete function to change the size of the screen to COLS columns.\n\
733 Optional second arg non-nil means that redisplay should use COLS columns\n\
734 but that the idea of the actual width of the frame should not be changed.\n\
735 This function is provided only for compatibility with Emacs 18; new code\n\
736 should use `set-frame-width instead'."
737 (set-frame-width (selected-frame) cols pretend))
739 (defun set-screen-height (lines &optional pretend)
740 "Obsolete function to change the height of the screen to LINES lines.\n\
741 Optional second arg non-nil means that redisplay should use LINES lines\n\
742 but that the idea of the actual height of the screen should not be changed.\n\
743 This function is provided only for compatibility with Emacs 18; new code\n\
744 should use `set-frame-height' instead."
745 (set-frame-height (selected-frame) lines pretend))
747 (make-obsolete 'screen-height 'frame-height)
748 (make-obsolete 'screen-width 'frame-width)
749 (make-obsolete 'set-screen-width 'set-frame-width)
750 (make-obsolete 'set-screen-height 'set-frame-height)
753 ;;;; Key bindings
755 (define-key ctl-x-5-map "2" 'make-frame-command)
756 (define-key ctl-x-5-map "0" 'delete-frame)
757 (define-key ctl-x-5-map "o" 'other-frame)
759 (provide 'frame)
761 ;;; frame.el ends here