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