Change the "pretest" bug report address to the multi-tty list.
[bpt/emacs.git] / lisp / frame.el
CommitLineData
55535639 1;;; frame.el --- multi-frame management independent of window systems
c88ab9ce 2
0d30b337
TTN
3;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001, 2002, 2003,
4;; 2004, 2005 Free Software Foundation, Inc.
3a801d0c 5
fc68affa 6;; Maintainer: FSF
fd7fa35a 7;; Keywords: internal
fc68affa 8
b578f267
EN
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
13;; the Free Software Foundation; either version 2, or (at your option)
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 the
086add15
LK
23;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24;; Boston, MA 02110-1301, USA.
64c669bc 25
55535639
PJ
26;;; Commentary:
27
fc68affa
ER
28;;; Code:
29
2246281f
KL
30(defvar frame-creation-function-alist
31 (list (cons nil
32 (if (fboundp 'tty-create-frame-with-faces)
33 'tty-create-frame-with-faces
34 (function
35 (lambda (parameters)
36 (error "Can't create multiple frames without a window system"))))))
37 "Alist of window-system dependent functions to call to create a new frame.
38The window system startup file should add its frame creation
39function to this list, which should take an alist of parameters
40as its argument.")
114a8b8c 41
bf1ba39f
KL
42(defvar window-system-default-frame-alist nil
43 "Alist of window-system dependent default frame parameters.
44These may be set in your init file, like this:
45
46 ;; Disable menubar and toolbar on the console, but enable them under X.
47 (setq window-system-default-frame-alist
48 '((x (menu-bar-lines . 1) (tool-bar-lines . 1))
49 (nil (menu-bar-lines . 0) (tool-bar-lines . 0))))
50
51Also see `default-frame-alist'.")
52
7e573c4a
SM
53;; The initial value given here used to ask for a minibuffer.
54;; But that's not necessary, because the default is to have one.
55;; By not specifying it here, we let an X resource specify it.
0c966f88 56(defcustom initial-frame-alist nil
0b9d32af 57 "*Alist of frame parameters for creating the initial X window frame.
eaa974e1 58You can set this in your `.emacs' file; for example,
dc6d9681 59 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
de17da15
RS
60Parameters specified here supersede the values given in `default-frame-alist'.
61
62If the value calls for a frame without a minibuffer, and you have not created
63a minibuffer frame on your own, one is created according to
7eadab74 64`minibuffer-frame-alist'.
de17da15
RS
65
66You can specify geometry-related options for just the initial frame
67by setting this variable in your `.emacs' file; however, they won't
85557d7e 68take effect until Emacs reads `.emacs', which happens after first creating
de17da15
RS
69the frame. If you want the frame to have the proper geometry as soon
70as it appears, you need to use this three-step process:
71* Specify X resources to give the geometry you want.
72* Set `default-frame-alist' to override these options so that they
73 don't affect subsequent frames.
74* Set `initial-frame-alist' in a way that matches the X resources,
0c966f88
RS
75 to override what you put in `default-frame-alist'."
76 :type '(repeat (cons :format "%v"
77 (symbol :tag "Parameter")
78 (sexp :tag "Value")))
79 :group 'frames)
64c669bc 80
0b9d32af
RS
81(defcustom minibuffer-frame-alist '((width . 80) (height . 2))
82 "*Alist of frame parameters for initially creating a minibuffer frame.
eaa974e1 83You can set this in your `.emacs' file; for example,
dc6d9681 84 (setq minibuffer-frame-alist
7eadab74 85 '((top . 1) (left . 1) (width . 80) (height . 2)))
eaa974e1 86Parameters specified here supersede the values given in
0b9d32af
RS
87`default-frame-alist', for a minibuffer frame."
88 :type '(repeat (cons :format "%v"
89 (symbol :tag "Parameter")
90 (sexp :tag "Value")))
91 :group 'frames)
64c669bc 92
0b9d32af
RS
93(defcustom pop-up-frame-alist nil
94 "*Alist of frame parameters used when creating pop-up frames.
dc6d9681 95Pop-up frames are used for completions, help, and the like.
64c669bc 96This variable can be set in your init file, like this:
dc6d9681 97 (setq pop-up-frame-alist '((width . 80) (height . 20)))
0b9d32af
RS
98These supersede the values given in `default-frame-alist',
99for pop-up frames."
100 :type '(repeat (cons :format "%v"
101 (symbol :tag "Parameter")
102 (sexp :tag "Value")))
103 :group 'frames)
64c669bc 104
dc6d9681 105(setq pop-up-frame-function
7f18ce22
RS
106 ;; Using `function' here caused some sort of problem.
107 '(lambda ()
108 (make-frame pop-up-frame-alist)))
64c669bc 109
30e19aee 110(defcustom special-display-frame-alist
8a9e86e6
RS
111 '((height . 14) (width . 80) (unsplittable . t))
112 "*Alist of frame parameters used when creating special frames.
113Special frames are used for buffers whose names are in
114`special-display-buffer-names' and for buffers whose names match
115one of the regular expressions in `special-display-regexps'.
116This variable can be set in your init file, like this:
117 (setq special-display-frame-alist '((width . 80) (height . 20)))
30e19aee
RS
118These supersede the values given in `default-frame-alist'."
119 :type '(repeat (cons :format "%v"
120 (symbol :tag "Parameter")
121 (sexp :tag "Value")))
122 :group 'frames)
8a9e86e6 123
95e6cf39 124(defun special-display-popup-frame (buffer &optional args)
40d34803
DL
125 "Display BUFFER in its own frame, reusing an existing window if any.
126Return the window chosen.
127Currently we do not insist on selecting the window within its frame.
128If ARGS is an alist, use it as a list of frame parameter specs.
129If ARGS is a list whose car is a symbol,
130use (car ARGS) as a function to do the work.
131Pass it BUFFER as first arg, and (cdr ARGS) gives the rest of the args."
95e6cf39
RS
132 (if (and args (symbolp (car args)))
133 (apply (car args) buffer (cdr args))
bb2c34b1 134 (let ((window (get-buffer-window buffer 0)))
7e573c4a
SM
135 (or
136 ;; If we have a window already, make it visible.
137 (when window
138 (let ((frame (window-frame window)))
139 (make-frame-visible frame)
140 (raise-frame frame)
141 window))
142 ;; Reuse the current window if the user requested it.
143 (when (cdr (assq 'same-window args))
144 (condition-case nil
145 (progn (switch-to-buffer buffer) (selected-window))
146 (error nil)))
147 ;; Stay on the same frame if requested.
148 (when (or (cdr (assq 'same-frame args)) (cdr (assq 'same-window args)))
149 (let* ((pop-up-frames nil) (pop-up-windows t)
150 special-display-regexps special-display-buffer-names
151 (window (display-buffer buffer)))
bb2c34b1 152 ;; Only do it if this is a new window:
7e573c4a
SM
153 ;; (set-window-dedicated-p window t)
154 window))
155 ;; If no window yet, make one in a new frame.
bf247b6e 156 (let ((frame
86bd482f
RS
157 (with-current-buffer buffer
158 (make-frame (append args special-display-frame-alist)))))
7e573c4a
SM
159 (set-window-buffer (frame-selected-window frame) buffer)
160 (set-window-dedicated-p (frame-selected-window frame) t)
161 (frame-selected-window frame))))))
8a9e86e6 162
924be53a 163(defun handle-delete-frame (event)
40d34803 164 "Handle delete-frame events from the X server."
924be53a
RS
165 (interactive "e")
166 (let ((frame (posn-window (event-start event)))
167 (i 0)
168 (tail (frame-list)))
169 (while tail
170 (and (frame-visible-p (car tail))
171 (not (eq (car tail) frame))
172 (setq i (1+ i)))
173 (setq tail (cdr tail)))
174 (if (> i 0)
175 (delete-frame frame t)
a9562d19
RS
176 ;; Gildea@x.org says it is ok to ask questions before terminating.
177 (save-buffers-kill-emacs))))
64c669bc 178\f
dc6d9681 179;;;; Arrangement of frames at startup
64c669bc 180
7e573c4a
SM
181;; 1) Load the window system startup file from the lisp library and read the
182;; high-priority arguments (-q and the like). The window system startup
183;; file should create any frames specified in the window system defaults.
184;;
185;; 2) If no frames have been opened, we open an initial text frame.
186;;
187;; 3) Once the init file is done, we apply any newly set parameters
188;; in initial-frame-alist to the frame.
64c669bc 189
85557d7e 190;; These are now called explicitly at the proper times,
fc4d4afb
RS
191;; since that is easier to understand.
192;; Actually using hooks within Emacs is bad for future maintenance. --rms.
193;; (add-hook 'before-init-hook 'frame-initialize)
194;; (add-hook 'window-setup-hook 'frame-notice-user-settings)
64c669bc 195
7e573c4a 196;; If we create the initial frame, this is it.
dc6d9681 197(defvar frame-initial-frame nil)
64c669bc 198
3f2f8c83
RS
199;; Record the parameters used in frame-initialize to make the initial frame.
200(defvar frame-initial-frame-alist)
201
791e09d8
RS
202(defvar frame-initial-geometry-arguments nil)
203
7e573c4a
SM
204;; startup.el calls this function before loading the user's init
205;; file - if there is no frame with a minibuffer open now, create
206;; one to display messages while loading the init file.
dc6d9681 207(defun frame-initialize ()
ff2a1c79 208 "Create an initial frame if necessary."
64c669bc 209 ;; Are we actually running under a window system at all?
2246281f
KL
210 (if (and initial-window-system
211 (not noninteractive)
212 (not (eq initial-window-system 'pc)))
7eadab74 213 (progn
62642af9
RS
214 ;; Turn on special-display processing only if there's a window system.
215 (setq special-display-function 'special-display-popup-frame)
216
7eadab74
JB
217 ;; If there is no frame with a minibuffer besides the terminal
218 ;; frame, then we need to create the opening frame. Make sure
219 ;; it has a minibuffer, but let initial-frame-alist omit the
220 ;; minibuffer spec.
221 (or (delq terminal-frame (minibuffer-frame-list))
36fc9c9f 222 (progn
3f2f8c83 223 (setq frame-initial-frame-alist
9688894d 224 (append initial-frame-alist default-frame-alist nil))
a8bb5882
RS
225 (or (assq 'horizontal-scroll-bars frame-initial-frame-alist)
226 (setq frame-initial-frame-alist
227 (cons '(horizontal-scroll-bars . t)
228 frame-initial-frame-alist)))
2246281f
KL
229 (setq frame-initial-frame-alist
230 (cons (cons 'window-system initial-window-system)
231 frame-initial-frame-alist))
36fc9c9f
RS
232 (setq default-minibuffer-frame
233 (setq frame-initial-frame
96a84970 234 (make-frame frame-initial-frame-alist)))
11281034
RS
235 ;; Delete any specifications for window geometry parameters
236 ;; so that we won't reapply them in frame-notice-user-settings.
237 ;; It would be wrong to reapply them then,
238 ;; because that would override explicit user resizing.
58bf6042 239 (setq initial-frame-alist
c2079f0a 240 (frame-remove-geometry-params initial-frame-alist))))
85557d7e 241 ;; At this point, we know that we have a frame open, so we
dc6d9681
JB
242 ;; can delete the terminal frame.
243 (delete-frame terminal-frame)
2246281f 244 (setq terminal-frame nil))))
85557d7e 245
8f2a992b
GM
246(defvar frame-notice-user-settings t
247 "Non-nil means function `frame-notice-user-settings' wasn't run yet.")
248
7e573c4a
SM
249;; startup.el calls this function after loading the user's init
250;; file. Now default-frame-alist and initial-frame-alist contain
251;; information to which we must react; do what needs to be done.
dc6d9681 252(defun frame-notice-user-settings ()
40d34803 253 "Act on user's init file settings of frame parameters.
0e1bfc78
KL
254React to settings of `initial-frame-alist',
255`window-system-default-frame-alist' and `default-frame-alist'
256there (in decreasing order of priority)."
2ffa6186 257 ;; Make menu-bar-mode and default-frame-alist consistent.
61f2bcd7
GM
258 (when (boundp 'menu-bar-mode)
259 (let ((default (assq 'menu-bar-lines default-frame-alist)))
260 (if default
261 (setq menu-bar-mode (not (eq (cdr default) 0)))
262 (setq default-frame-alist
263 (cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
264 default-frame-alist)))))
f39784dd 265
33a33c06
GM
266 ;; Make tool-bar-mode and default-frame-alist consistent. Don't do
267 ;; it in batch mode since that would leave a tool-bar-lines
268 ;; parameter in default-frame-alist in a dumped Emacs, which is not
9688894d 269 ;; what we want.
33a33c06
GM
270 (when (and (boundp 'tool-bar-mode)
271 (not noninteractive))
61f2bcd7
GM
272 (let ((default (assq 'tool-bar-lines default-frame-alist)))
273 (if default
274 (setq tool-bar-mode (not (eq (cdr default) 0)))
275 (setq default-frame-alist
276 (cons (cons 'tool-bar-lines (if tool-bar-mode 1 0))
277 default-frame-alist)))))
2ffa6186 278
7eadab74
JB
279 ;; Creating and deleting frames may shift the selected frame around,
280 ;; and thus the current buffer. Protect against that. We don't
281 ;; want to use save-excursion here, because that may also try to set
282 ;; the buffer of the selected window, which fails when the selected
283 ;; window is the minibuffer.
0e1bfc78
KL
284 (let ((old-buffer (current-buffer))
285 (window-system-frame-alist (cdr (assq initial-window-system
286 window-system-default-frame-alist))))
7eadab74 287
8f2a992b
GM
288 (when (and frame-notice-user-settings
289 (null frame-initial-frame))
42002db5
EZ
290 ;; This case happens when we don't have a window system, and
291 ;; also for MS-DOS frames.
8f2a992b
GM
292 (let ((parms (frame-parameters frame-initial-frame)))
293 ;; Don't change the frame names.
294 (setq parms (delq (assq 'name parms) parms))
295 ;; Can't modify the minibuffer parameter, so don't try.
296 (setq parms (delq (assq 'minibuffer parms) parms))
297 (modify-frame-parameters nil
2246281f 298 (if (null initial-window-system)
42002db5 299 (append initial-frame-alist
0e1bfc78 300 window-system-frame-alist
42002db5
EZ
301 default-frame-alist
302 parms
303 nil)
304 ;; initial-frame-alist and
305 ;; default-frame-alist were already
306 ;; applied in pc-win.el.
307 parms))
2246281f 308 (if (null initial-window-system) ;; MS-DOS does this differently in pc-win.el
42002db5
EZ
309 (let ((newparms (frame-parameters))
310 (frame (selected-frame)))
311 (tty-handle-reverse-video frame newparms)
312 ;; If we changed the background color, we need to update
313 ;; the background-mode parameter, and maybe some faces,
314 ;; too.
315 (when (assq 'background-color newparms)
316 (unless (or (assq 'background-mode initial-frame-alist)
317 (assq 'background-mode default-frame-alist))
318 (frame-set-background-mode frame))
319 (face-set-after-frame-default frame))))))
8f2a992b 320
7eadab74
JB
321 ;; If the initial frame is still around, apply initial-frame-alist
322 ;; and default-frame-alist to it.
9688894d
GM
323 (when (frame-live-p frame-initial-frame)
324
325 ;; When tool-bar has been switched off, correct the frame size
326 ;; by the lines added in x-create-frame for the tool-bar and
327 ;; switch `tool-bar-mode' off.
085ef9b3
GM
328 (when (display-graphic-p)
329 (let ((tool-bar-lines (or (assq 'tool-bar-lines initial-frame-alist)
0e1bfc78 330 (assq 'tool-bar-lines window-system-frame-alist)
085ef9b3 331 (assq 'tool-bar-lines default-frame-alist))))
5c39a60f
JR
332 (when (and tool-bar-originally-present
333 (or (null tool-bar-lines)
334 (null (cdr tool-bar-lines))
335 (eq 0 (cdr tool-bar-lines))))
085ef9b3 336 (let* ((char-height (frame-char-height frame-initial-frame))
5c39a60f 337 (image-height tool-bar-images-pixel-height)
085ef9b3
GM
338 (margin (cond ((and (consp tool-bar-button-margin)
339 (integerp (cdr tool-bar-button-margin))
340 (> tool-bar-button-margin 0))
341 (cdr tool-bar-button-margin))
342 ((and (integerp tool-bar-button-margin)
343 (> tool-bar-button-margin 0))
344 tool-bar-button-margin)
345 (t 0)))
346 (relief (if (and (integerp tool-bar-button-relief)
347 (> tool-bar-button-relief 0))
348 tool-bar-button-relief 3))
f39784dd 349 (lines (/ (+ image-height
085ef9b3
GM
350 (* 2 margin)
351 (* 2 relief)
352 (1- char-height))
353 char-height))
354 (height (frame-parameter frame-initial-frame 'height))
355 (newparms (list (cons 'height (- height lines))))
f39784dd 356 (initial-top (cdr (assq 'top
085ef9b3
GM
357 frame-initial-geometry-arguments)))
358 (top (frame-parameter frame-initial-frame 'top)))
359 (when (and (consp initial-top) (eq '- (car initial-top)))
7f18ce22
RS
360 (let ((adjusted-top
361 (cond ((and (consp top)
362 (eq '+ (car top)))
363 (list '+
364 (+ (cadr top)
365 (* lines char-height))))
366 ((and (consp top)
367 (eq '- (car top)))
368 (list '-
369 (- (cadr top)
370 (* lines char-height))))
371 (t (+ top (* lines char-height))))))
372 (setq newparms
373 (append newparms
374 `((top . ,adjusted-top))
375 nil))))
085ef9b3
GM
376 (modify-frame-parameters frame-initial-frame newparms)
377 (tool-bar-mode -1)))))
9688894d
GM
378
379 ;; The initial frame we create above always has a minibuffer.
380 ;; If the user wants to remove it, or make it a minibuffer-only
381 ;; frame, then we'll have to delete the current frame and make a
382 ;; new one; you can't remove or add a root window to/from an
383 ;; existing frame.
384 ;;
385 ;; NOTE: default-frame-alist was nil when we created the
386 ;; existing frame. We need to explicitly include
387 ;; default-frame-alist in the parameters of the screen we
388 ;; create here, so that its new value, gleaned from the user's
389 ;; .emacs file, will be applied to the existing screen.
de2f5dbe 390 (if (not (eq (cdr (or (assq 'minibuffer initial-frame-alist)
0e1bfc78 391 (assq 'minibuffer window-system-frame-alist)
de2f5dbe
GM
392 (assq 'minibuffer default-frame-alist)
393 '(minibuffer . t)))
394 t))
395 ;; Create the new frame.
396 (let (parms new)
397 ;; If the frame isn't visible yet, wait till it is.
398 ;; If the user has to position the window,
399 ;; Emacs doesn't know its real position until
400 ;; the frame is seen to be visible.
401 (while (not (cdr (assq 'visibility
402 (frame-parameters frame-initial-frame))))
403 (sleep-for 1))
404 (setq parms (frame-parameters frame-initial-frame))
9688894d 405
f39784dd 406 ;; Get rid of `name' unless it was specified explicitly before.
de2f5dbe
GM
407 (or (assq 'name frame-initial-frame-alist)
408 (setq parms (delq (assq 'name parms) parms)))
409
410 (setq parms (append initial-frame-alist
0e1bfc78 411 window-system-frame-alist
de2f5dbe
GM
412 default-frame-alist
413 parms
414 nil))
415
416 ;; Get rid of `reverse', because that was handled
417 ;; when we first made the frame.
418 (setq parms (cons '(reverse) (delq (assq 'reverse parms) parms)))
419
420 (if (assq 'height frame-initial-geometry-arguments)
421 (setq parms (assq-delete-all 'height parms)))
422 (if (assq 'width frame-initial-geometry-arguments)
423 (setq parms (assq-delete-all 'width parms)))
424 (if (assq 'left frame-initial-geometry-arguments)
425 (setq parms (assq-delete-all 'left parms)))
426 (if (assq 'top frame-initial-geometry-arguments)
427 (setq parms (assq-delete-all 'top parms)))
428 (setq new
429 (make-frame
430 ;; Use the geometry args that created the existing
431 ;; frame, rather than the parms we get for it.
432 (append frame-initial-geometry-arguments
433 '((user-size . t) (user-position . t))
434 parms)))
435 ;; The initial frame, which we are about to delete, may be
436 ;; the only frame with a minibuffer. If it is, create a
437 ;; new one.
438 (or (delq frame-initial-frame (minibuffer-frame-list))
439 (make-initial-minibuffer-frame nil))
440
441 ;; If the initial frame is serving as a surrogate
442 ;; minibuffer frame for any frames, we need to wean them
443 ;; onto a new frame. The default-minibuffer-frame
444 ;; variable must be handled similarly.
445 (let ((users-of-initial
446 (filtered-frame-list
447 (function (lambda (frame)
448 (and (not (eq frame frame-initial-frame))
449 (eq (window-frame
450 (minibuffer-window frame))
451 frame-initial-frame)))))))
452 (if (or users-of-initial
453 (eq default-minibuffer-frame frame-initial-frame))
454
455 ;; Choose an appropriate frame. Prefer frames which
456 ;; are only minibuffers.
457 (let* ((new-surrogate
458 (car
459 (or (filtered-frame-list
460 (function
461 (lambda (frame)
462 (eq (cdr (assq 'minibuffer
463 (frame-parameters frame)))
464 'only))))
465 (minibuffer-frame-list))))
466 (new-minibuffer (minibuffer-window new-surrogate)))
467
468 (if (eq default-minibuffer-frame frame-initial-frame)
469 (setq default-minibuffer-frame new-surrogate))
470
471 ;; Wean the frames using frame-initial-frame as
472 ;; their minibuffer frame.
473 (mapcar
474 (function
475 (lambda (frame)
476 (modify-frame-parameters
477 frame (list (cons 'minibuffer new-minibuffer)))))
478 users-of-initial))))
479
480 ;; Redirect events enqueued at this frame to the new frame.
481 ;; Is this a good idea?
482 (redirect-frame-focus frame-initial-frame new)
483
484 ;; Finally, get rid of the old frame.
485 (delete-frame frame-initial-frame t))
9688894d
GM
486
487 ;; Otherwise, we don't need all that rigamarole; just apply
488 ;; the new parameters.
489 (let (newparms allparms tail)
490 (setq allparms (append initial-frame-alist
0e1bfc78 491 window-system-frame-alist
9688894d
GM
492 default-frame-alist nil))
493 (if (assq 'height frame-initial-geometry-arguments)
494 (setq allparms (assq-delete-all 'height allparms)))
495 (if (assq 'width frame-initial-geometry-arguments)
496 (setq allparms (assq-delete-all 'width allparms)))
497 (if (assq 'left frame-initial-geometry-arguments)
498 (setq allparms (assq-delete-all 'left allparms)))
499 (if (assq 'top frame-initial-geometry-arguments)
500 (setq allparms (assq-delete-all 'top allparms)))
501 (setq tail allparms)
502 ;; Find just the parms that have changed since we first
503 ;; made this frame. Those are the ones actually set by
f39784dd 504 ;; the init file. For those parms whose values we already knew
9688894d
GM
505 ;; (such as those spec'd by command line options)
506 ;; it is undesirable to specify the parm again
f39784dd 507 ;; once the user has seen the frame and been able to alter it
9688894d
GM
508 ;; manually.
509 (while tail
510 (let (newval oldval)
511 (setq oldval (assq (car (car tail))
512 frame-initial-frame-alist))
513 (setq newval (cdr (assq (car (car tail)) allparms)))
514 (or (and oldval (eq (cdr oldval) newval))
515 (setq newparms
516 (cons (cons (car (car tail)) newval) newparms))))
517 (setq tail (cdr tail)))
518 (setq newparms (nreverse newparms))
519 (modify-frame-parameters frame-initial-frame
520 newparms)
521 ;; If we changed the background color,
522 ;; we need to update the background-mode parameter
523 ;; and maybe some faces too.
524 (when (assq 'background-color newparms)
525 (unless (assq 'background-mode newparms)
526 (frame-set-background-mode frame-initial-frame))
527 (face-set-after-frame-default frame-initial-frame)))))
64c669bc 528
7eadab74
JB
529 ;; Restore the original buffer.
530 (set-buffer old-buffer)
531
532 ;; Make sure the initial frame can be GC'd if it is ever deleted.
d202f1f2 533 ;; Make sure frame-notice-user-settings does nothing if called twice.
8f2a992b 534 (setq frame-notice-user-settings nil)
d202f1f2 535 (setq frame-initial-frame nil)))
64c669bc 536
746bd265
KH
537(defun make-initial-minibuffer-frame (display)
538 (let ((parms (append minibuffer-frame-alist '((minibuffer . only)))))
539 (if display
540 (make-frame-on-display display parms)
541 (make-frame parms))))
542
7eadab74 543;;;; Creation of additional frames, and other frame miscellanea
dc6d9681 544
63019bad 545(defun modify-all-frames-parameters (alist)
d398de43 546 "Modify all current and future frames' parameters according to ALIST.
63019bad
JB
547This changes `default-frame-alist' and possibly `initial-frame-alist'.
548See help of `modify-frame-parameters' for more information."
549 (let (element) ;; temp
550 (dolist (frame (frame-list))
551 (modify-frame-parameters frame alist))
552
553 (dolist (pair alist) ;; conses to add/replace
554 ;; initial-frame-alist needs setting only when
555 ;; frame-notice-user-settings is true
556 (and frame-notice-user-settings
557 (setq element (assoc (car pair) initial-frame-alist))
558 (setq initial-frame-alist (delq element initial-frame-alist)))
559 (and (setq element (assoc (car pair) default-frame-alist))
560 (setq default-frame-alist (delq element default-frame-alist)))))
561 (and frame-notice-user-settings
562 (setq initial-frame-alist (append initial-frame-alist alist)))
563 (setq default-frame-alist (append default-frame-alist alist)))
564
7253d8e0 565(defun get-other-frame ()
40d34803
DL
566 "Return some frame other than the current frame.
567Create one if necessary. Note that the minibuffer frame, if separate,
568is not considered (see `next-frame')."
dc6d9681 569 (let ((s (if (equal (next-frame (selected-frame)) (selected-frame))
6eb018ba 570 (make-frame)
dc6d9681 571 (next-frame (selected-frame)))))
64c669bc
JB
572 s))
573
dc6d9681
JB
574(defun next-multiframe-window ()
575 "Select the next window, regardless of which frame it is on."
64c669bc
JB
576 (interactive)
577 (select-window (next-window (selected-window)
578 (> (minibuffer-depth) 0)
bb2c34b1 579 0))
030f4537 580 (select-frame-set-input-focus (selected-frame)))
64c669bc 581
dc6d9681
JB
582(defun previous-multiframe-window ()
583 "Select the previous window, regardless of which frame it is on."
64c669bc
JB
584 (interactive)
585 (select-window (previous-window (selected-window)
586 (> (minibuffer-depth) 0)
bb2c34b1 587 0))
030f4537 588 (select-frame-set-input-focus (selected-frame)))
64c669bc 589
6d73e337 590(defun make-frame-on-display (display &optional parameters)
b6660415 591 "Make a frame on X display DISPLAY.
6d73e337
RS
592The optional second argument PARAMETERS specifies additional frame parameters."
593 (interactive "sMake frame on display: ")
a9ca74cd
RS
594 (or (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" display)
595 (error "Invalid display, not HOST:SERVER or HOST:SERVER.SCREEN"))
6afdd335 596 (when (and (boundp 'x-initialized) (not x-initialized))
e9cda827
KL
597 (setq x-display-name display)
598 (x-initialize-window-system))
2246281f 599 (make-frame `((window-system . x) (display . ,display) . ,parameters)))
6d73e337 600
fca177d4
KL
601(defun make-frame-on-tty (device type &optional parameters)
602 "Make a frame on terminal DEVICE which is of type TYPE (e.g., \"xterm\").
2246281f 603The optional third argument PARAMETERS specifies additional frame parameters."
428a555e 604 (interactive "fOpen frame on tty device: \nsTerminal type of %s: ")
fca177d4
KL
605 (unless device
606 (error "Invalid terminal device"))
607 (unless type
608 (error "Invalid terminal type"))
2246281f 609 (make-frame `((window-system . nil) (tty . ,device) (tty-type . ,type) . ,parameters)))
fca177d4 610
6238bfaf
RS
611(defun make-frame-command ()
612 "Make a new frame, and select it if the terminal displays only one frame."
613 (interactive)
c1b1350b 614 (if (and window-system (not (eq window-system 'pc)))
6238bfaf
RS
615 (make-frame)
616 (select-frame (make-frame))))
617
45c4fdeb
SM
618(defvar before-make-frame-hook nil
619 "Functions to run before a frame is created.")
620
621(defvar after-make-frame-functions nil
622 "Functions to run after a frame is created.
623The functions are run with one arg, the newly created frame.")
624
72bf1a8b 625(defvar after-setting-font-hook nil
81b99826
GM
626 "Functions to run after a frame's font has been changed.")
627
92e443b1 628;; Alias, kept temporarily.
84ed1560 629(define-obsolete-function-alias 'new-frame 'make-frame "22.1")
bc93c097 630
45c4fdeb
SM
631(defun make-frame (&optional parameters)
632 "Return a newly created frame displaying the current buffer.
633Optional argument PARAMETERS is an alist of parameters for the new frame.
634Each element of PARAMETERS should have the form (NAME . VALUE), for example:
a105105a 635
45c4fdeb 636 (name . STRING) The frame should be named STRING.
43a2e52c 637
45c4fdeb
SM
638 (width . NUMBER) The frame should be NUMBER characters in width.
639 (height . NUMBER) The frame should be NUMBER text lines high.
43a2e52c 640
45c4fdeb 641You cannot specify either `width' or `height', you must use neither or both.
43a2e52c 642
45c4fdeb
SM
643 (minibuffer . t) The frame should have a minibuffer.
644 (minibuffer . nil) The frame should have no minibuffer.
645 (minibuffer . only) The frame should contain only a minibuffer.
646 (minibuffer . WINDOW) The frame should use WINDOW as its minibuffer window.
43a2e52c 647
2246281f
KL
648 (window-system . nil) The frame should be displayed on a terminal device.
649 (window-system . x) The frame should be displayed in an X window.
650
7e59217d 651 (device . ID) The frame should use the display device identified by ID.
b6660415 652
2246281f 653Before the frame is created (via `frame-creation-function-alist'), functions on the
45c4fdeb 654hook `before-make-frame-hook' are run. After the frame is created, functions
8de9d3f6
LT
655on `after-make-frame-functions' are run with one arg, the newly created frame.
656
657This function itself does not make the new frame the selected frame.
658The previously selected frame remains selected. However, the
659window system may select the new frame for its own reasons, for
660instance if the frame appears under the mouse pointer and your
661setup is for focus to follow the pointer."
64c669bc 662 (interactive)
b6660415 663 (let* ((w (cond
7e59217d
KL
664 ((assq 'device parameters)
665 (let ((type (display-live-p (cdr (assq 'device parameters)))))
b6660415
KL
666 (cond
667 ((eq type t) nil)
7e59217d 668 ((eq type nil) (error "Display %s does not exist" (cdr (assq 'device parameters))))
b6660415
KL
669 (t type))))
670 ((assq 'window-system parameters)
671 (cdr (assq 'window-system parameters)))
672 (t window-system)))
2246281f
KL
673 (frame-creation-function (cdr (assq w frame-creation-function-alist)))
674 frame)
675 (unless frame-creation-function
676 (error "Don't know how to create a frame on window system %s" w))
677 (run-hooks 'before-make-frame-hook)
e682e37e 678 (setq frame (funcall frame-creation-function (append parameters (cdr (assq w window-system-default-frame-alist)))))
30a2fded 679 (normal-erase-is-backspace-setup-frame frame)
45c4fdeb
SM
680 (run-hook-with-args 'after-make-frame-functions frame)
681 frame))
64c669bc 682
7eadab74
JB
683(defun filtered-frame-list (predicate)
684 "Return a list of all live frames which satisfy PREDICATE."
047bc928
GM
685 (let* ((frames (frame-list))
686 (list frames))
7eadab74 687 (while (consp frames)
047bc928
GM
688 (unless (funcall predicate (car frames))
689 (setcar frames nil))
7eadab74 690 (setq frames (cdr frames)))
047bc928 691 (delq nil list)))
7eadab74
JB
692
693(defun minibuffer-frame-list ()
694 "Return a list of all frames with their own minibuffers."
695 (filtered-frame-list
696 (function (lambda (frame)
697 (eq frame (window-frame (minibuffer-window frame)))))))
698
9911648b
EZ
699(defun frames-on-display-list (&optional display)
700 "Return a list of all frames on DISPLAY.
b6660415
KL
701
702DISPLAY should be a display identifier (an integer), but it may
703also be a name of a display, a string of the form HOST:SERVER.SCREEN.
704
9911648b 705If DISPLAY is omitted or nil, it defaults to the selected frame's display."
b6660415 706 (let* ((display (or display (frame-display)))
047bc928 707 (func #'(lambda (frame)
b6660415
KL
708 (or (eq (frame-display frame) display)
709 (equal (frame-parameter frame 'display) display)))))
9911648b
EZ
710 (filtered-frame-list func)))
711
712(defun framep-on-display (&optional display)
713 "Return the type of frames on DISPLAY.
b6660415
KL
714DISPLAY may be a display id, a display name or a frame. If it is
715a frame, its type is returned.
9911648b
EZ
716If DISPLAY is omitted or nil, it defaults to the selected frame's display.
717All frames on a given display are of the same type."
b6660415
KL
718 (or (display-live-p display)
719 (framep display)
9911648b
EZ
720 (framep (car (frames-on-display-list display)))))
721
58bf6042
JB
722(defun frame-remove-geometry-params (param-list)
723 "Return the parameter list PARAM-LIST, but with geometry specs removed.
724This deletes all bindings in PARAM-LIST for `top', `left', `width',
791e09d8 725`height', `user-size' and `user-position' parameters.
58bf6042
JB
726Emacs uses this to avoid overriding explicit moves and resizings from
727the user during startup."
728 (setq param-list (cons nil param-list))
729 (let ((tail param-list))
730 (while (consp (cdr tail))
731 (if (and (consp (car (cdr tail)))
791e09d8
RS
732 (memq (car (car (cdr tail)))
733 '(height width top left user-position user-size)))
734 (progn
735 (setq frame-initial-geometry-arguments
736 (cons (car (cdr tail)) frame-initial-geometry-arguments))
737 (setcdr tail (cdr (cdr tail))))
58bf6042 738 (setq tail (cdr tail)))))
e11c3dc2
KH
739 (setq frame-initial-geometry-arguments
740 (nreverse frame-initial-geometry-arguments))
58bf6042
JB
741 (cdr param-list))
742
0ac18fb0 743(defcustom focus-follows-mouse t
6527c9b7
RS
744 "*Non-nil if window system changes focus when you move the mouse.
745You should set this variable to tell Emacs how your window manager
746handles focus, since there is no way in general for Emacs to find out
747automatically."
0ac18fb0 748 :type 'boolean
cd32a7ba
DN
749 :group 'frames
750 :version "20.3")
26ef026d 751
030f4537
GM
752(defun select-frame-set-input-focus (frame)
753 "Select FRAME, raise it, and set input focus, if possible."
754 (select-frame frame)
755 (raise-frame frame)
756 ;; Ensure, if possible, that frame gets input focus.
114a8b8c 757 (cond ((eq (window-system frame) 'x)
80c39c38 758 (x-focus-frame frame))
114a8b8c 759 ((eq (window-system frame) 'w32)
80c39c38 760 (w32-focus-frame frame)))
030f4537 761 (cond (focus-follows-mouse
80c39c38 762 (set-mouse-position (selected-frame) (1- (frame-width)) 0))))
030f4537 763
ceab6935 764(defun other-frame (arg)
563283b1 765 "Select the ARG'th different visible frame on current display, and raise it.
ceab6935
RM
766All frames are arranged in a cyclic order.
767This command selects the frame ARG steps away in that order.
bb578a72
RS
768A negative ARG moves in the opposite order.
769
770To make this command work properly, you must tell Emacs
771how the system (or the window manager) generally handles
772focus-switching between windows. If moving the mouse onto a window
773selects it (gives it focus), set `focus-follows-mouse' to t.
774Otherwise, that variable should be nil."
ceab6935
RM
775 (interactive "p")
776 (let ((frame (selected-frame)))
777 (while (> arg 0)
a569dbc3
RM
778 (setq frame (next-frame frame))
779 (while (not (eq (frame-visible-p frame) t))
780 (setq frame (next-frame frame)))
781 (setq arg (1- arg)))
ceab6935 782 (while (< arg 0)
a569dbc3
RM
783 (setq frame (previous-frame frame))
784 (while (not (eq (frame-visible-p frame) t))
785 (setq frame (previous-frame frame)))
915cfd1f 786 (setq arg (1+ arg)))
030f4537 787 (select-frame-set-input-focus frame)))
845cde06 788
3db7df06
SM
789(defun iconify-or-deiconify-frame ()
790 "Iconify the selected frame, or deiconify if it's currently an icon."
791 (interactive)
792 (if (eq (cdr (assq 'visibility (frame-parameters))) t)
793 (iconify-frame)
794 (make-frame-visible)))
795
0b0d3e0b
KL
796(defun suspend-frame ()
797 "Do whatever is right to suspend the current frame.
798Calls `suspend-emacs' if invoked from the controlling terminal,
799`suspend-tty' from a secondary terminal, and
800`iconify-or-deiconify-frame' from an X frame."
801 (interactive)
802 (let ((type (framep (selected-frame))))
803 (cond
804 ((eq type 'x) (iconify-or-deiconify-frame))
805 ((eq type t)
4a933ef8
KL
806 (if (display-controlling-tty-p)
807 (suspend-emacs)
808 (suspend-tty)))
0b0d3e0b
KL
809 (t (suspend-emacs)))))
810
811
845cde06
EZ
812(defun make-frame-names-alist ()
813 (let* ((current-frame (selected-frame))
814 (falist
815 (cons
816 (cons (frame-parameter current-frame 'name) current-frame) nil))
817 (frame (next-frame nil t)))
818 (while (not (eq frame current-frame))
819 (progn
820 (setq falist (cons (cons (frame-parameter frame 'name) frame) falist))
821 (setq frame (next-frame frame t))))
822 falist))
823
824(defvar frame-name-history nil)
845cde06 825(defun select-frame-by-name (name)
563283b1 826 "Select the frame on the current terminal whose name is NAME and raise it.
845cde06
EZ
827If there is no frame by that name, signal an error."
828 (interactive
716ff1c9
RS
829 (let* ((frame-names-alist (make-frame-names-alist))
830 (default (car (car frame-names-alist)))
831 (input (completing-read
832 (format "Select Frame (default %s): " default)
833 frame-names-alist nil t nil 'frame-name-history)))
845cde06
EZ
834 (if (= (length input) 0)
835 (list default)
836 (list input))))
716ff1c9
RS
837 (let* ((frame-names-alist (make-frame-names-alist))
838 (frame (cdr (assoc name frame-names-alist))))
845cde06
EZ
839 (or frame
840 (error "There is no frame named `%s'" name))
841 (make-frame-visible frame)
842 (raise-frame frame)
880a9ae1
AI
843 (select-frame frame)
844 ;; Ensure, if possible, that frame gets input focus.
2246281f 845 (cond ((eq (window-system frame) 'x)
80c39c38 846 (x-focus-frame frame))
2246281f 847 ((eq (window-system frame) 'w32)
80c39c38
RS
848 (w32-focus-frame frame)))
849 (when focus-follows-mouse
850 (set-mouse-position frame (1- (frame-width frame)) 0))))
64c669bc 851\f
dc6d9681
JB
852;;;; Frame configurations
853
854(defun current-frame-configuration ()
855 "Return a list describing the positions and states of all frames.
376a7584
JB
856Its car is `frame-configuration'.
857Each element of the cdr is a list of the form (FRAME ALIST WINDOW-CONFIG),
858where
859 FRAME is a frame object,
860 ALIST is an association list specifying some of FRAME's parameters, and
861 WINDOW-CONFIG is a window configuration object for FRAME."
862 (cons 'frame-configuration
863 (mapcar (function
864 (lambda (frame)
865 (list frame
866 (frame-parameters frame)
867 (current-window-configuration frame))))
868 (frame-list))))
dc6d9681 869
68cd265f 870(defun set-frame-configuration (configuration &optional nodelete)
dc6d9681
JB
871 "Restore the frames to the state described by CONFIGURATION.
872Each frame listed in CONFIGURATION has its position, size, window
68cd265f 873configuration, and other parameters set as specified in CONFIGURATION.
d398de43
LT
874However, this function does not restore deleted frames.
875
a78db71c
RS
876Ordinarily, this function deletes all existing frames not
877listed in CONFIGURATION. But if optional second argument NODELETE
5da841d2 878is given and non-nil, the unwanted frames are iconified instead."
376a7584
JB
879 (or (frame-configuration-p configuration)
880 (signal 'wrong-type-argument
881 (list 'frame-configuration-p configuration)))
882 (let ((config-alist (cdr configuration))
883 frames-to-delete)
06b1a5ef 884 (mapcar (function
dc6d9681 885 (lambda (frame)
376a7584 886 (let ((parameters (assq frame config-alist)))
06b1a5ef
JB
887 (if parameters
888 (progn
98e9d14b
JB
889 (modify-frame-parameters
890 frame
85557d7e 891 ;; Since we can't set a frame's minibuffer status,
98e9d14b
JB
892 ;; we might as well omit the parameter altogether.
893 (let* ((parms (nth 1 parameters))
894 (mini (assq 'minibuffer parms)))
895 (if mini (setq parms (delq mini parms)))
896 parms))
06b1a5ef 897 (set-window-configuration (nth 2 parameters)))
dc6d9681
JB
898 (setq frames-to-delete (cons frame frames-to-delete))))))
899 (frame-list))
a78db71c 900 (if nodelete
5da841d2
RS
901 ;; Note: making frames invisible here was tried
902 ;; but led to some strange behavior--each time the frame
903 ;; was made visible again, the window manager asked afresh
904 ;; for where to put it.
905 (mapcar 'iconify-frame frames-to-delete)
a78db71c 906 (mapcar 'delete-frame frames-to-delete))))
64c669bc 907\f
dc6d9681
JB
908;;;; Convenience functions for accessing and interactively changing
909;;;; frame parameters.
64c669bc 910
151bdc83 911(defun frame-height (&optional frame)
dc6d9681
JB
912 "Return number of lines available for display on FRAME.
913If FRAME is omitted, describe the currently selected frame."
151bdc83 914 (cdr (assq 'height (frame-parameters frame))))
dc6d9681
JB
915
916(defun frame-width (&optional frame)
917 "Return number of columns available for display on FRAME.
918If FRAME is omitted, describe the currently selected frame."
151bdc83 919 (cdr (assq 'width (frame-parameters frame))))
dc6d9681 920
889611f0 921(defalias 'set-default-font 'set-frame-font)
1cef6541 922(defun set-frame-font (font-name &optional keep-size)
40d34803 923 "Set the font of the selected frame to FONT-NAME.
61298010 924When called interactively, prompt for the name of the font to use.
1cef6541
JB
925To get the frame's current default font, use `frame-parameters'.
926
927The default behavior is to keep the numbers of lines and columns in
84ed1560 928the frame, thus may change its pixel size. If optional KEEP-SIZE is
1cef6541
JB
929non-nil (interactively, prefix argument) the current frame size (in
930pixels) is kept by adjusting the numbers of the lines and columns."
f39784dd 931 (interactive
1cef6541
JB
932 (let* ((completion-ignore-case t)
933 (font (completing-read "Font name: "
934 (mapcar #'list
935 ;; x-list-fonts will fail with an error
936 ;; if this frame doesn't support fonts.
93289292
MB
937 (x-list-fonts "*" nil (selected-frame)))
938 nil nil nil nil
939 (frame-parameter nil 'font))))
1cef6541
JB
940 (list font current-prefix-arg)))
941 (let (fht fwd)
942 (if keep-size
943 (setq fht (* (frame-parameter nil 'height) (frame-char-height))
944 fwd (* (frame-parameter nil 'width) (frame-char-width))))
945 (modify-frame-parameters (selected-frame)
946 (list (cons 'font font-name)))
947 (if keep-size
948 (modify-frame-parameters
949 (selected-frame)
950 (list (cons 'height (round fht (frame-char-height)))
951 (cons 'width (round fwd (frame-char-width)))))))
72bf1a8b 952 (run-hooks 'after-setting-font-hook 'after-setting-font-hooks))
64c669bc 953
7e573c4a
SM
954(defun set-frame-parameter (frame parameter value)
955 (modify-frame-parameters frame (list (cons parameter value))))
956
8290babd 957(defun set-background-color (color-name)
40d34803 958 "Set the background color of the selected frame to COLOR-NAME.
61298010
RS
959When called interactively, prompt for the name of the color to use.
960To get the frame's current background color, use `frame-parameters'."
40d34803 961 (interactive (list (facemenu-read-color)))
dc6d9681 962 (modify-frame-parameters (selected-frame)
528e1416
EZ
963 (list (cons 'background-color color-name)))
964 (or window-system
965 (face-set-after-frame-default (selected-frame))))
64c669bc 966
8290babd 967(defun set-foreground-color (color-name)
40d34803 968 "Set the foreground color of the selected frame to COLOR-NAME.
61298010
RS
969When called interactively, prompt for the name of the color to use.
970To get the frame's current foreground color, use `frame-parameters'."
40d34803 971 (interactive (list (facemenu-read-color)))
dc6d9681 972 (modify-frame-parameters (selected-frame)
528e1416
EZ
973 (list (cons 'foreground-color color-name)))
974 (or window-system
975 (face-set-after-frame-default (selected-frame))))
64c669bc
JB
976
977(defun set-cursor-color (color-name)
40d34803 978 "Set the text cursor color of the selected frame to COLOR-NAME.
61298010
RS
979When called interactively, prompt for the name of the color to use.
980To get the frame's current cursor color, use `frame-parameters'."
40d34803 981 (interactive (list (facemenu-read-color)))
dc6d9681 982 (modify-frame-parameters (selected-frame)
7eadab74 983 (list (cons 'cursor-color color-name))))
64c669bc 984
eaa974e1 985(defun set-mouse-color (color-name)
40d34803 986 "Set the color of the mouse pointer of the selected frame to COLOR-NAME.
61298010
RS
987When called interactively, prompt for the name of the color to use.
988To get the frame's current mouse color, use `frame-parameters'."
40d34803 989 (interactive (list (facemenu-read-color)))
dc6d9681 990 (modify-frame-parameters (selected-frame)
ec6d4463
KH
991 (list (cons 'mouse-color
992 (or color-name
993 (cdr (assq 'mouse-color
994 (frame-parameters))))))))
7eadab74 995
eaa974e1 996(defun set-border-color (color-name)
40d34803 997 "Set the color of the border of the selected frame to COLOR-NAME.
61298010
RS
998When called interactively, prompt for the name of the color to use.
999To get the frame's current border color, use `frame-parameters'."
40d34803 1000 (interactive (list (facemenu-read-color)))
eaa974e1
JB
1001 (modify-frame-parameters (selected-frame)
1002 (list (cons 'border-color color-name))))
1003
1004(defun auto-raise-mode (arg)
7eadab74 1005 "Toggle whether or not the selected frame should auto-raise.
79e6ae33
RS
1006With arg, turn auto-raise mode on if and only if arg is positive.
1007Note that this controls Emacs's own auto-raise feature.
1008Some window managers allow you to enable auto-raise for certain windows.
1009You can use that for Emacs windows if you wish, but if you do,
1010that is beyond the control of Emacs and this command has no effect on it."
7eadab74
JB
1011 (interactive "P")
1012 (if (null arg)
1013 (setq arg
1014 (if (cdr (assq 'auto-raise (frame-parameters (selected-frame))))
1015 -1 1)))
9626b928
GM
1016 (if (> arg 0)
1017 (raise-frame (selected-frame)))
dc6d9681 1018 (modify-frame-parameters (selected-frame)
7eadab74
JB
1019 (list (cons 'auto-raise (> arg 0)))))
1020
eaa974e1 1021(defun auto-lower-mode (arg)
7eadab74 1022 "Toggle whether or not the selected frame should auto-lower.
79e6ae33
RS
1023With arg, turn auto-lower mode on if and only if arg is positive.
1024Note that this controls Emacs's own auto-lower feature.
1025Some window managers allow you to enable auto-lower for certain windows.
1026You can use that for Emacs windows if you wish, but if you do,
1027that is beyond the control of Emacs and this command has no effect on it."
7eadab74
JB
1028 (interactive "P")
1029 (if (null arg)
1030 (setq arg
1031 (if (cdr (assq 'auto-lower (frame-parameters (selected-frame))))
1032 -1 1)))
dc6d9681 1033 (modify-frame-parameters (selected-frame)
7eadab74 1034 (list (cons 'auto-lower (> arg 0)))))
7777d03b
EZ
1035(defun set-frame-name (name)
1036 "Set the name of the selected frame to NAME.
1037When called interactively, prompt for the name of the frame.
1038The frame name is displayed on the modeline if the terminal displays only
1039one frame, otherwise the name is displayed on the frame's caption bar."
1040 (interactive "sFrame name: ")
1041 (modify-frame-parameters (selected-frame)
1042 (list (cons 'name name))))
56cfea72
KS
1043
1044(defun frame-current-scroll-bars (&optional frame)
1045 "Return the current scroll-bar settings in frame FRAME.
1cecf04d 1046Value is a cons (VERTICAL . HORIZ0NTAL) where VERTICAL specifies the
56cfea72 1047current location of the vertical scroll-bars (left, right, or nil),
1cecf04d 1048and HORIZONTAL specifies the current location of the horizontal scroll
56cfea72
KS
1049bars (top, bottom, or nil)."
1050 (let ((vert (frame-parameter frame 'vertical-scroll-bars))
1051 (hor nil))
1052 (unless (memq vert '(left right nil))
1053 (setq vert default-frame-scroll-bars))
1054 (cons vert hor)))
64c669bc 1055\f
9911648b 1056;;;; Frame/display capabilities.
b6660415
KL
1057(defun selected-display ()
1058 "Return the display that is now selected."
1059 (frame-display (selected-frame)))
1060
9911648b
EZ
1061(defun display-mouse-p (&optional display)
1062 "Return non-nil if DISPLAY has a mouse available.
1063DISPLAY can be a display name, a frame, or nil (meaning the selected
1064frame's display)."
1065 (let ((frame-type (framep-on-display display)))
1066 (cond
1067 ((eq frame-type 'pc)
1068 (msdos-mouse-p))
1069 ((eq system-type 'windows-nt)
9fa5bb32
RS
1070 (with-no-warnings
1071 (> w32-num-mouse-buttons 0)))
9911648b
EZ
1072 ((memq frame-type '(x mac))
1073 t) ;; We assume X and Mac *always* have a pointing device
1074 (t
7565ee93
DL
1075 (or (and (featurep 'xt-mouse)
1076 xterm-mouse-mode)
1077 ;; t-mouse is distributed with the GPM package. It doesn't have
1078 ;; a toggle.
1079 (featurep 't-mouse))))))
9911648b
EZ
1080
1081(defun display-popup-menus-p (&optional display)
1082 "Return non-nil if popup menus are supported on DISPLAY.
1083DISPLAY can be a display name, a frame, or nil (meaning the selected
1084frame's display).
1085Support for popup menus requires that the mouse be available."
1086 (and
1087 (let ((frame-type (framep-on-display display)))
1088 (memq frame-type '(x w32 pc mac)))
1089 (display-mouse-p display)))
1090
1091(defun display-graphic-p (&optional display)
1092 "Return non-nil if DISPLAY is a graphic display.
1093Graphical displays are those which are capable of displaying several
1094frames and several different fonts at once. This is true for displays
1095that use a window system such as X, and false for text-only terminals.
1096DISPLAY can be a display name, a frame, or nil (meaning the selected
1097frame's display)."
1098 (not (null (memq (framep-on-display display) '(x w32 mac)))))
1099
ddc456e4
EZ
1100(defun display-images-p (&optional display)
1101 "Return non-nil if DISPLAY can display images.
1102
1103DISPLAY can be a display name, a frame, or nil (meaning the selected
1104frame's display)."
1105 (and (display-graphic-p display)
1106 (fboundp 'image-mask-p)
fcc6f5cc 1107 (fboundp 'image-size)))
ddc456e4 1108
6693b279
EZ
1109(defalias 'display-multi-frame-p 'display-graphic-p)
1110(defalias 'display-multi-font-p 'display-graphic-p)
1111
9911648b
EZ
1112(defun display-selections-p (&optional display)
1113 "Return non-nil if DISPLAY supports selections.
1114A selection is a way to transfer text or other data between programs
1115via special system buffers called `selection' or `cut buffer' or
1116`clipboard'.
1117DISPLAY can be a display name, a frame, or nil (meaning the selected
1118frame's display)."
1119 (let ((frame-type (framep-on-display display)))
1120 (cond
1121 ((eq frame-type 'pc)
1122 ;; MS-DOG frames support selections when Emacs runs inside
1123 ;; the Windows' DOS Box.
9fa5bb32
RS
1124 (with-no-warnings
1125 (not (null dos-windows-version))))
9911648b
EZ
1126 ((memq frame-type '(x w32 mac))
1127 t) ;; FIXME?
1128 (t
1129 nil))))
1130
1131(defun display-screens (&optional display)
1132 "Return the number of screens associated with DISPLAY."
1133 (let ((frame-type (framep-on-display display)))
1134 (cond
1135 ((memq frame-type '(x w32))
1136 (x-display-screens display))
1137 (t ;; FIXME: is this correct for the Mac?
1138 1))))
1139
1140(defun display-pixel-height (&optional display)
1141 "Return the height of DISPLAY's screen in pixels.
1142For character terminals, each character counts as a single pixel."
1143 (let ((frame-type (framep-on-display display)))
1144 (cond
1145 ((memq frame-type '(x w32 mac))
1146 (x-display-pixel-height display))
1147 (t
1148 (frame-height (if (framep display) display (selected-frame)))))))
1149
1150(defun display-pixel-width (&optional display)
1151 "Return the width of DISPLAY's screen in pixels.
1152For character terminals, each character counts as a single pixel."
1153 (let ((frame-type (framep-on-display display)))
1154 (cond
1155 ((memq frame-type '(x w32 mac))
1156 (x-display-pixel-width display))
1157 (t
1158 (frame-width (if (framep display) display (selected-frame)))))))
1159
1160(defun display-mm-height (&optional display)
1161 "Return the height of DISPLAY's screen in millimeters.
1162If the information is unavailable, value is nil."
1163 (and (memq (framep-on-display display) '(x w32 mac))
1164 (x-display-mm-height display)))
1165
1166(defun display-mm-width (&optional display)
1167 "Return the width of DISPLAY's screen in millimeters.
1168If the information is unavailable, value is nil."
1169 (and (memq (framep-on-display display) '(x w32 mac))
1170 (x-display-mm-width display)))
1171
1172(defun display-backing-store (&optional display)
1173 "Return the backing store capability of DISPLAY's screen.
1174The value may be `always', `when-mapped', `not-useful', or nil if
1175the question is inapplicable to a certain kind of display."
1176 (let ((frame-type (framep-on-display display)))
1177 (cond
1178 ((memq frame-type '(x w32 mac))
1179 (x-display-backing-store display))
1180 (t
1181 'not-useful))))
1182
1183(defun display-save-under (&optional display)
1184 "Return non-nil if DISPLAY's screen supports the SaveUnder feature."
1185 (let ((frame-type (framep-on-display display)))
1186 (cond
1187 ((memq frame-type '(x w32 mac))
1188 (x-display-save-under display))
1189 (t
1190 'not-useful))))
1191
1192(defun display-planes (&optional display)
1193 "Return the number of planes supported by DISPLAY."
1194 (let ((frame-type (framep-on-display display)))
1195 (cond
1196 ((memq frame-type '(x w32 mac))
1197 (x-display-planes display))
1198 ((eq frame-type 'pc)
1199 4)
1200 (t
1201 (truncate (log (length (tty-color-alist)) 2))))))
1202
1203(defun display-color-cells (&optional display)
1204 "Return the number of color cells supported by DISPLAY."
1205 (let ((frame-type (framep-on-display display)))
1206 (cond
1207 ((memq frame-type '(x w32 mac))
1208 (x-display-color-cells display))
1209 ((eq frame-type 'pc)
1210 16)
1211 (t
3224dac1 1212 (tty-display-color-cells display)))))
9911648b
EZ
1213
1214(defun display-visual-class (&optional display)
1215 "Returns the visual class of DISPLAY.
1216The value is one of the symbols `static-gray', `gray-scale',
1217`static-color', `pseudo-color', `true-color', or `direct-color'."
1218 (let ((frame-type (framep-on-display display)))
1219 (cond
1220 ((memq frame-type '(x w32 mac))
1221 (x-display-visual-class display))
1222 ((and (memq frame-type '(pc t))
1223 (tty-display-color-p display))
1224 'static-color)
1225 (t
1226 'static-gray))))
1227
1228\f
dc6d9681 1229;;;; Aliases for backward compatibility with Emacs 18.
84ed1560
JB
1230(define-obsolete-function-alias 'screen-height 'frame-height) ;before 19.15
1231(define-obsolete-function-alias 'screen-width 'frame-width) ;before 19.15
9e2b097b
JB
1232
1233(defun set-screen-width (cols &optional pretend)
84ed1560 1234 "Change the size of the screen to COLS columns.
40d34803
DL
1235Optional second arg non-nil means that redisplay should use COLS columns
1236but that the idea of the actual width of the frame should not be changed.
84ed1560 1237This function is provided only for compatibility with Emacs 18."
9e2b097b
JB
1238 (set-frame-width (selected-frame) cols pretend))
1239
1240(defun set-screen-height (lines &optional pretend)
84ed1560 1241 "Change the height of the screen to LINES lines.
40d34803
DL
1242Optional second arg non-nil means that redisplay should use LINES lines
1243but that the idea of the actual height of the screen should not be changed.
84ed1560 1244This function is provided only for compatibility with Emacs 18."
9e2b097b
JB
1245 (set-frame-height (selected-frame) lines pretend))
1246
154a757e
GM
1247(defun delete-other-frames (&optional frame)
1248 "Delete all frames except FRAME.
a2125918
GM
1249If FRAME uses another frame's minibuffer, the minibuffer frame is
1250left untouched. FRAME nil or omitted means use the selected frame."
154a757e
GM
1251 (interactive)
1252 (unless frame
1253 (setq frame (selected-frame)))
a2125918
GM
1254 (let* ((mini-frame (window-frame (minibuffer-window frame)))
1255 (frames (delq mini-frame (delq frame (frame-list)))))
1256 ;; Delete mon-minibuffer-only frames first, because `delete-frame'
1257 ;; signals an error when trying to delete a mini-frame that's
1258 ;; still in use by another frame.
1259 (dolist (frame frames)
1260 (unless (eq (frame-parameter frame 'minibuffer) 'only)
1261 (delete-frame frame)))
1262 ;; Delete minibuffer-only frames.
1263 (dolist (frame frames)
1264 (when (eq (frame-parameter frame 'minibuffer) 'only)
1265 (delete-frame frame)))))
154a757e 1266
2598a293
SM
1267(make-obsolete 'set-screen-width 'set-frame-width) ;before 19.15
1268(make-obsolete 'set-screen-height 'set-frame-height) ;before 19.15
dc6d9681 1269
da7829a3 1270;; miscellaneous obsolescence declarations
84ed1560
JB
1271(define-obsolete-variable-alias 'delete-frame-hook
1272 'delete-frame-functions "22.1")
da7829a3 1273
dc6d9681 1274\f
7e573c4a 1275;; Highlighting trailing whitespace.
81b99826
GM
1276
1277(make-variable-buffer-local 'show-trailing-whitespace)
1278
1279(defcustom show-trailing-whitespace nil
e6c45c29
LT
1280 "*Non-nil means highlight trailing whitespace.
1281This is done in the face `trailing-whitespace'."
81b99826 1282 :tag "Highlight trailing whitespace."
81b99826 1283 :type 'boolean
b4aefb19 1284 :group 'whitespace-faces)
81b99826
GM
1285
1286
1287\f
7e573c4a 1288;; Scrolling
79b14b94
GM
1289
1290(defgroup scrolling nil
1291 "Scrolling windows."
1292 :version "21.1"
1293 :group 'frames)
1294
968ecc28 1295(defcustom auto-hscroll-mode t
310e9a21 1296 "*Allow or disallow automatic scrolling windows horizontally.
9ea60c46 1297If non-nil, windows are automatically scrolled horizontally to make
79b14b94
GM
1298point visible."
1299 :version "21.1"
1300 :type 'boolean
1301 :group 'scrolling)
968ecc28 1302(defvaralias 'automatic-hscrolling 'auto-hscroll-mode)
79b14b94
GM
1303
1304\f
7e573c4a 1305;; Blinking cursor
81b99826
GM
1306
1307(defgroup cursor nil
ca693be8 1308 "Displaying text cursors."
40d34803 1309 :version "21.1"
81b99826
GM
1310 :group 'frames)
1311
1312(defcustom blink-cursor-delay 0.5
ca693be8 1313 "*Seconds of idle time after which cursor starts to blink."
81b99826
GM
1314 :tag "Delay in seconds."
1315 :type 'number
1316 :group 'cursor)
1317
1318(defcustom blink-cursor-interval 0.5
1319 "*Length of cursor blink interval in seconds."
1320 :tag "Blink interval in seconds."
1321 :type 'number
1322 :group 'cursor)
1323
1324(defvar blink-cursor-idle-timer nil
ca693be8
GM
1325 "Timer started after `blink-cursor-delay' seconds of Emacs idle time.
1326The function `blink-cursor-start' is called when the timer fires.")
81b99826
GM
1327
1328(defvar blink-cursor-timer nil
ca693be8 1329 "Timer started from `blink-cursor-start'.
a795e09a
LT
1330This timer calls `blink-cursor-timer-function' every
1331`blink-cursor-interval' seconds.")
1332
485464c4 1333(define-minor-mode blink-cursor-mode
81b99826 1334 "Toggle blinking cursor mode.
be6bbb55 1335With a numeric argument, turn blinking cursor mode on iff ARG is positive.
81b99826 1336When blinking cursor mode is enabled, the cursor of the selected
cacf2193
RS
1337window blinks.
1338
1339Note that this command is effective only when Emacs
1340displays through a window system, because then Emacs does its own
1341cursor display. On a text-only terminal, this is not implemented."
485464c4 1342 :init-value (not (or noninteractive
947d4ae8 1343 no-blinking-cursor
485464c4 1344 (eq system-type 'ms-dos)
e6b2f887 1345 (not (memq initial-window-system '(x w32)))))
947d4ae8 1346 :initialize 'custom-initialize-safe-default
ffa8d0ef 1347 :group 'cursor
485464c4
SM
1348 :global t
1349 (if blink-cursor-idle-timer (cancel-timer blink-cursor-idle-timer))
1350 (if blink-cursor-timer (cancel-timer blink-cursor-timer))
1351 (setq blink-cursor-idle-timer nil
1352 blink-cursor-timer nil)
1353 (if blink-cursor-mode
1354 (progn
1355 ;; Hide the cursor.
1356 ;;(internal-show-cursor nil nil)
1357 (setq blink-cursor-idle-timer
1358 (run-with-idle-timer blink-cursor-delay
1359 blink-cursor-delay
1360 'blink-cursor-start)))
1361 (internal-show-cursor nil t)))
1362
84ed1560 1363(define-obsolete-variable-alias 'blink-cursor 'blink-cursor-mode "22.1")
81b99826 1364
81b99826 1365(defun blink-cursor-start ()
ca693be8
GM
1366 "Timer function called from the timer `blink-cursor-idle-timer'.
1367This starts the timer `blink-cursor-timer', which makes the cursor blink
1368if appropriate. It also arranges to cancel that timer when the next
1369command starts, by installing a pre-command hook."
81b99826
GM
1370 (when (null blink-cursor-timer)
1371 (add-hook 'pre-command-hook 'blink-cursor-end)
9dbf2cd6 1372 (internal-show-cursor nil nil)
81b99826
GM
1373 (setq blink-cursor-timer
1374 (run-with-timer blink-cursor-interval blink-cursor-interval
0a5ebe4b
GM
1375 'blink-cursor-timer-function))))
1376
1377(defun blink-cursor-timer-function ()
1378 "Timer function of timer `blink-cursor-timer'."
1379 (internal-show-cursor nil (not (internal-show-cursor-p))))
81b99826
GM
1380
1381(defun blink-cursor-end ()
1382 "Stop cursor blinking.
ca693be8 1383This is installed as a pre-command hook by `blink-cursor-start'.
f39784dd 1384When run, it cancels the timer `blink-cursor-timer' and removes
ca693be8 1385itself as a pre-command hook."
81b99826 1386 (remove-hook 'pre-command-hook 'blink-cursor-end)
0a5ebe4b 1387 (internal-show-cursor nil t)
81b99826
GM
1388 (cancel-timer blink-cursor-timer)
1389 (setq blink-cursor-timer nil))
1390
1391
1392\f
7e573c4a 1393;; Hourglass pointer
81b99826 1394
a6c411ff
GM
1395(defcustom display-hourglass t
1396 "*Non-nil means show an hourglass pointer when running under a window system."
1397 :tag "Hourglass pointer"
81b99826 1398 :type 'boolean
a6c411ff 1399 :group 'cursor)
81b99826 1400
a6c411ff
GM
1401(defcustom hourglass-delay 1
1402 "*Seconds to wait before displaying an hourglass pointer."
1403 :tag "Hourglass delay"
0a86e779 1404 :type 'number
a6c411ff 1405 :group 'cursor)
1d0a3ef4 1406
5b2c5477 1407\f
c0eb3c10 1408(defcustom cursor-in-non-selected-windows t
84ed1560 1409 "*Non-nil means show a hollow box cursor in non-selected windows.
e053c60f 1410If nil, don't show a cursor except in the selected window.
f39784dd 1411Use Custom to set this variable to get the display updated."
5b2c5477
GM
1412 :tag "Cursor in non-selected windows"
1413 :type 'boolean
1414 :group 'cursor
5b2c5477
GM
1415 :set #'(lambda (symbol value)
1416 (set-default symbol value)
5b2c5477 1417 (force-mode-line-update t)))
f39784dd 1418
81b99826 1419\f
64c669bc 1420;;;; Key bindings
64c669bc 1421
6238bfaf 1422(define-key ctl-x-5-map "2" 'make-frame-command)
154a757e 1423(define-key ctl-x-5-map "1" 'delete-other-frames)
dc6d9681 1424(define-key ctl-x-5-map "0" 'delete-frame)
ceab6935 1425(define-key ctl-x-5-map "o" 'other-frame)
49116ac0 1426
0b0d3e0b
KL
1427(substitute-key-definition 'suspend-emacs 'suspend-frame global-map)
1428
4400e764
KL
1429
1430(defun terminal-id (terminal)
1431 "Return the numerical id of terminal TERMINAL.
1432
1433TERMINAL can be a terminal id, a frame, or nil (meaning the
1434selected frame's terminal)."
1435 (cond
1436 ((integerp terminal)
1437 terminal)
1438 ((or (null terminal) (framep terminal))
1439 (frame-display terminal))
1440 (t
1441 (error "Invalid argument %s in `terminal-id'" terminal))))
1442
1443(defvar terminal-parameter-alist nil
1444 "An alist of terminal parameter alists.")
1445
1446(defun terminal-parameters (&optional terminal)
1447 "Return the paramater-alist of terminal TERMINAL.
1448It is a list of elements of the form (PARM . VALUE), where PARM is a symbol.
1449
1450TERMINAL can be a terminal id, a frame, or nil (meaning the
1451selected frame's terminal)."
1452 (cdr (assq (terminal-id terminal) terminal-parameter-alist)))
1453
30a2fded
KL
1454(defun terminal-parameter-p (terminal parameter)
1455 "Return non-nil if PARAMETER is a terminal parameter on TERMINAL.
1456
1457The actual value returned in that case is a cell (PARAMETER . VALUE),
1458where VALUE is the current value of PARAMETER.
1459
1460TERMINAL can be a terminal id, a frame, or nil (meaning the
1461selected frame's terminal)."
1462 (assq parameter (cdr (assq (terminal-id terminal) terminal-parameter-alist))))
1463
4400e764
KL
1464(defun terminal-parameter (terminal parameter)
1465 "Return TERMINAL's value for parameter PARAMETER.
1466
1467TERMINAL can be a terminal id, a frame, or nil (meaning the
1468selected frame's terminal)."
30a2fded 1469 (cdr (terminal-parameter-p terminal parameter)))
4400e764
KL
1470
1471(defun set-terminal-parameter (terminal parameter value)
1472 "Set TERMINAL's value for parameter PARAMETER to VALUE.
1473Returns the previous value of PARAMETER.
1474
1475TERMINAL can be a terminal id, a frame, or nil (meaning the
1476selected frame's terminal)."
1477 (setq terminal (terminal-id terminal))
1478 (let* ((alist (assq terminal terminal-parameter-alist))
1479 (pair (assq parameter (cdr alist)))
1480 (result (cdr pair)))
1481 (cond
1482 (pair (setcdr pair value))
1483 (alist (setcdr alist (cons (cons parameter value) (cdr alist))))
1484 (t (setq terminal-parameter-alist
1485 (cons (cons terminal
1486 (cons (cons parameter value)
1487 nil))
1488 terminal-parameter-alist))))
1489 result))
1490
1491(defun terminal-handle-delete-frame (frame)
1492 "Clean up terminal parameters of FRAME, if it's the last frame on its terminal."
1493 ;; XXX We assume that the display is closed immediately after the
1494 ;; last frame is deleted on it. It would be better to create a hook
1495 ;; called `delete-display-functions', and use it instead.
e519a50b
KL
1496 (when (and (frame-live-p frame)
1497 (= 1 (length (frames-on-display-list (frame-display frame)))))
4400e764
KL
1498 (setq terminal-parameter-alist
1499 (assq-delete-all (frame-display frame) terminal-parameter-alist))))
1500
1501(add-hook 'delete-frame-functions 'terminal-handle-delete-frame)
1502
dc6d9681 1503(provide 'frame)
c88ab9ce 1504
485464c4 1505;; arch-tag: 82979c70-b8f2-4306-b2ad-ddbd6b328b56
dc6d9681 1506;;; frame.el ends here