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