* eshell/esh-util.el (eshell-sublist): Remove unused local variable.
[bpt/emacs.git] / lisp / frame.el
CommitLineData
55535639 1;;; frame.el --- multi-frame management independent of window systems
c88ab9ce 2
ab422c4d
PE
3;; Copyright (C) 1993-1994, 1996-1997, 2000-2013 Free Software
4;; Foundation, Inc.
3a801d0c 5
fc68affa 6;; Maintainer: FSF
fd7fa35a 7;; Keywords: internal
bd78fa1d 8;; Package: emacs
fc68affa 9
b578f267
EN
10;; This file is part of GNU Emacs.
11
eb3fa2cf 12;; GNU Emacs is free software: you can redistribute it and/or modify
b578f267 13;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
b578f267
EN
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
eb3fa2cf 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
64c669bc 24
55535639
PJ
25;;; Commentary:
26
fc68affa 27;;; Code:
efc3dd3c
DC
28(eval-when-compile (require 'cl-lib))
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
06b60517 34 (lambda (_parameters)
371fed4e 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 41(defvar window-system-default-frame-alist nil
5b95ee8a
CY
42 "Window-system dependent default frame parameters.
43The value should be an alist of elements (WINDOW-SYSTEM . ALIST),
44where WINDOW-SYSTEM is a window system symbol (see `window-system')
45and ALIST is a frame parameter alist like `default-frame-alist'.
46Then, for frames on WINDOW-SYSTEM, any parameters specified in
47ALIST supersede the corresponding parameters specified in
dca6c418 48`default-frame-alist'.")
bf1ba39f 49
efc3dd3c
DC
50(defvar display-format-alist nil
51 "Alist of patterns to decode display names.
52The car of each entry is a regular expression matching a display
53name string. The cdr is a symbol giving the window-system that
54handles the corresponding kind of display.")
55
7e573c4a
SM
56;; The initial value given here used to ask for a minibuffer.
57;; But that's not necessary, because the default is to have one.
58;; By not specifying it here, we let an X resource specify it.
fac580eb 59(defcustom initial-frame-alist nil
dca6c418
MR
60 "Alist of parameters for the initial X window frame.
61You can set this in your init file; for example,
62
63 (setq initial-frame-alist
64 '((top . 1) (left . 1) (width . 80) (height . 55)))
65
66Parameters specified here supersede the values given in
67`default-frame-alist'.
68
69If the value calls for a frame without a minibuffer, and you have
70not created a minibuffer frame on your own, a minibuffer frame is
71created according to `minibuffer-frame-alist'.
72
73You can specify geometry-related options for just the initial
74frame by setting this variable in your init file; however, they
75won't take effect until Emacs reads your init file, which happens
76after creating the initial frame. If you want the initial frame
77to have the proper geometry as soon as it appears, you need to
78use this three-step process:
de17da15
RS
79* Specify X resources to give the geometry you want.
80* Set `default-frame-alist' to override these options so that they
81 don't affect subsequent frames.
82* Set `initial-frame-alist' in a way that matches the X resources,
0c966f88
RS
83 to override what you put in `default-frame-alist'."
84 :type '(repeat (cons :format "%v"
85 (symbol :tag "Parameter")
86 (sexp :tag "Value")))
87 :group 'frames)
64c669bc 88
0b9d32af 89(defcustom minibuffer-frame-alist '((width . 80) (height . 2))
92e02072
CY
90 "Alist of parameters for the initial minibuffer frame.
91This is the minibuffer frame created if `initial-frame-alist'
92calls for a frame without a minibuffer. The parameters specified
93here supersede those given in `default-frame-alist', for the
94initial minibuffer frame.
95
dca6c418
MR
96You can set this in your init file; for example,
97
dc6d9681 98 (setq minibuffer-frame-alist
dca6c418
MR
99 '((top . 1) (left . 1) (width . 80) (height . 2)))
100
92e02072
CY
101It is not necessary to include (minibuffer . only); that is
102appended when the minibuffer frame is created."
0b9d32af
RS
103 :type '(repeat (cons :format "%v"
104 (symbol :tag "Parameter")
105 (sexp :tag "Value")))
106 :group 'frames)
64c669bc 107
924be53a 108(defun handle-delete-frame (event)
40d34803 109 "Handle delete-frame events from the X server."
924be53a
RS
110 (interactive "e")
111 (let ((frame (posn-window (event-start event)))
112 (i 0)
113 (tail (frame-list)))
114 (while tail
115 (and (frame-visible-p (car tail))
116 (not (eq (car tail) frame))
117 (setq i (1+ i)))
118 (setq tail (cdr tail)))
119 (if (> i 0)
120 (delete-frame frame t)
a9562d19
RS
121 ;; Gildea@x.org says it is ok to ask questions before terminating.
122 (save-buffers-kill-emacs))))
64c669bc 123\f
dc6d9681 124;;;; Arrangement of frames at startup
64c669bc 125
7e573c4a
SM
126;; 1) Load the window system startup file from the lisp library and read the
127;; high-priority arguments (-q and the like). The window system startup
128;; file should create any frames specified in the window system defaults.
129;;
130;; 2) If no frames have been opened, we open an initial text frame.
131;;
132;; 3) Once the init file is done, we apply any newly set parameters
133;; in initial-frame-alist to the frame.
64c669bc 134
85557d7e 135;; These are now called explicitly at the proper times,
fc4d4afb
RS
136;; since that is easier to understand.
137;; Actually using hooks within Emacs is bad for future maintenance. --rms.
138;; (add-hook 'before-init-hook 'frame-initialize)
139;; (add-hook 'window-setup-hook 'frame-notice-user-settings)
64c669bc 140
7e573c4a 141;; If we create the initial frame, this is it.
dc6d9681 142(defvar frame-initial-frame nil)
64c669bc 143
3f2f8c83
RS
144;; Record the parameters used in frame-initialize to make the initial frame.
145(defvar frame-initial-frame-alist)
146
791e09d8
RS
147(defvar frame-initial-geometry-arguments nil)
148
7e573c4a
SM
149;; startup.el calls this function before loading the user's init
150;; file - if there is no frame with a minibuffer open now, create
151;; one to display messages while loading the init file.
dc6d9681 152(defun frame-initialize ()
ff2a1c79 153 "Create an initial frame if necessary."
64c669bc 154 ;; Are we actually running under a window system at all?
2246281f
KL
155 (if (and initial-window-system
156 (not noninteractive)
157 (not (eq initial-window-system 'pc)))
7eadab74
JB
158 (progn
159 ;; If there is no frame with a minibuffer besides the terminal
160 ;; frame, then we need to create the opening frame. Make sure
161 ;; it has a minibuffer, but let initial-frame-alist omit the
162 ;; minibuffer spec.
163 (or (delq terminal-frame (minibuffer-frame-list))
36fc9c9f 164 (progn
3f2f8c83 165 (setq frame-initial-frame-alist
9688894d 166 (append initial-frame-alist default-frame-alist nil))
a8bb5882
RS
167 (or (assq 'horizontal-scroll-bars frame-initial-frame-alist)
168 (setq frame-initial-frame-alist
169 (cons '(horizontal-scroll-bars . t)
170 frame-initial-frame-alist)))
2246281f
KL
171 (setq frame-initial-frame-alist
172 (cons (cons 'window-system initial-window-system)
173 frame-initial-frame-alist))
36fc9c9f
RS
174 (setq default-minibuffer-frame
175 (setq frame-initial-frame
96a84970 176 (make-frame frame-initial-frame-alist)))
11281034
RS
177 ;; Delete any specifications for window geometry parameters
178 ;; so that we won't reapply them in frame-notice-user-settings.
179 ;; It would be wrong to reapply them then,
180 ;; because that would override explicit user resizing.
58bf6042 181 (setq initial-frame-alist
c2079f0a 182 (frame-remove-geometry-params initial-frame-alist))))
a13f8f50
KL
183 ;; Copy the environment of the Emacs process into the new frame.
184 (set-frame-parameter frame-initial-frame 'environment
185 (frame-parameter terminal-frame 'environment))
85557d7e 186 ;; At this point, we know that we have a frame open, so we
dc6d9681
JB
187 ;; can delete the terminal frame.
188 (delete-frame terminal-frame)
2246281f 189 (setq terminal-frame nil))))
85557d7e 190
8f2a992b
GM
191(defvar frame-notice-user-settings t
192 "Non-nil means function `frame-notice-user-settings' wasn't run yet.")
193
aa360da1
GM
194(declare-function tool-bar-mode "tool-bar" (&optional arg))
195
7e573c4a
SM
196;; startup.el calls this function after loading the user's init
197;; file. Now default-frame-alist and initial-frame-alist contain
198;; information to which we must react; do what needs to be done.
dc6d9681 199(defun frame-notice-user-settings ()
40d34803 200 "Act on user's init file settings of frame parameters.
0e1bfc78
KL
201React to settings of `initial-frame-alist',
202`window-system-default-frame-alist' and `default-frame-alist'
203there (in decreasing order of priority)."
7eadab74
JB
204 ;; Creating and deleting frames may shift the selected frame around,
205 ;; and thus the current buffer. Protect against that. We don't
206 ;; want to use save-excursion here, because that may also try to set
207 ;; the buffer of the selected window, which fails when the selected
208 ;; window is the minibuffer.
0e1bfc78 209 (let ((old-buffer (current-buffer))
cb01ce3f
SM
210 (window-system-frame-alist
211 (cdr (assq initial-window-system
212 window-system-default-frame-alist))))
7eadab74 213
8f2a992b
GM
214 (when (and frame-notice-user-settings
215 (null frame-initial-frame))
42002db5
EZ
216 ;; This case happens when we don't have a window system, and
217 ;; also for MS-DOS frames.
0216b738 218 (let ((parms (frame-parameters)))
8f2a992b
GM
219 ;; Don't change the frame names.
220 (setq parms (delq (assq 'name parms) parms))
221 ;; Can't modify the minibuffer parameter, so don't try.
222 (setq parms (delq (assq 'minibuffer parms) parms))
0216b738
CY
223 (modify-frame-parameters
224 nil
225 (if initial-window-system
226 parms
227 ;; initial-frame-alist and default-frame-alist were already
228 ;; applied in pc-win.el.
229 (append initial-frame-alist window-system-frame-alist
230 default-frame-alist parms nil)))
2246281f 231 (if (null initial-window-system) ;; MS-DOS does this differently in pc-win.el
42002db5
EZ
232 (let ((newparms (frame-parameters))
233 (frame (selected-frame)))
234 (tty-handle-reverse-video frame newparms)
235 ;; If we changed the background color, we need to update
236 ;; the background-mode parameter, and maybe some faces,
237 ;; too.
238 (when (assq 'background-color newparms)
239 (unless (or (assq 'background-mode initial-frame-alist)
240 (assq 'background-mode default-frame-alist))
241 (frame-set-background-mode frame))
242 (face-set-after-frame-default frame))))))
8f2a992b 243
7eadab74
JB
244 ;; If the initial frame is still around, apply initial-frame-alist
245 ;; and default-frame-alist to it.
9688894d
GM
246 (when (frame-live-p frame-initial-frame)
247
248 ;; When tool-bar has been switched off, correct the frame size
249 ;; by the lines added in x-create-frame for the tool-bar and
250 ;; switch `tool-bar-mode' off.
085ef9b3
GM
251 (when (display-graphic-p)
252 (let ((tool-bar-lines (or (assq 'tool-bar-lines initial-frame-alist)
0e1bfc78 253 (assq 'tool-bar-lines window-system-frame-alist)
085ef9b3 254 (assq 'tool-bar-lines default-frame-alist))))
5c39a60f
JR
255 (when (and tool-bar-originally-present
256 (or (null tool-bar-lines)
257 (null (cdr tool-bar-lines))
258 (eq 0 (cdr tool-bar-lines))))
085ef9b3 259 (let* ((char-height (frame-char-height frame-initial-frame))
5c39a60f 260 (image-height tool-bar-images-pixel-height)
085ef9b3
GM
261 (margin (cond ((and (consp tool-bar-button-margin)
262 (integerp (cdr tool-bar-button-margin))
263 (> tool-bar-button-margin 0))
264 (cdr tool-bar-button-margin))
265 ((and (integerp tool-bar-button-margin)
266 (> tool-bar-button-margin 0))
267 tool-bar-button-margin)
268 (t 0)))
269 (relief (if (and (integerp tool-bar-button-relief)
270 (> tool-bar-button-relief 0))
271 tool-bar-button-relief 3))
f39784dd 272 (lines (/ (+ image-height
085ef9b3
GM
273 (* 2 margin)
274 (* 2 relief)
275 (1- char-height))
276 char-height))
277 (height (frame-parameter frame-initial-frame 'height))
278 (newparms (list (cons 'height (- height lines))))
f39784dd 279 (initial-top (cdr (assq 'top
085ef9b3
GM
280 frame-initial-geometry-arguments)))
281 (top (frame-parameter frame-initial-frame 'top)))
282 (when (and (consp initial-top) (eq '- (car initial-top)))
7f18ce22
RS
283 (let ((adjusted-top
284 (cond ((and (consp top)
285 (eq '+ (car top)))
286 (list '+
287 (+ (cadr top)
288 (* lines char-height))))
289 ((and (consp top)
290 (eq '- (car top)))
291 (list '-
292 (- (cadr top)
293 (* lines char-height))))
294 (t (+ top (* lines char-height))))))
295 (setq newparms
296 (append newparms
297 `((top . ,adjusted-top))
298 nil))))
085ef9b3
GM
299 (modify-frame-parameters frame-initial-frame newparms)
300 (tool-bar-mode -1)))))
9688894d
GM
301
302 ;; The initial frame we create above always has a minibuffer.
303 ;; If the user wants to remove it, or make it a minibuffer-only
304 ;; frame, then we'll have to delete the current frame and make a
305 ;; new one; you can't remove or add a root window to/from an
306 ;; existing frame.
307 ;;
308 ;; NOTE: default-frame-alist was nil when we created the
309 ;; existing frame. We need to explicitly include
310 ;; default-frame-alist in the parameters of the screen we
311 ;; create here, so that its new value, gleaned from the user's
865fe16f 312 ;; init file, will be applied to the existing screen.
de2f5dbe 313 (if (not (eq (cdr (or (assq 'minibuffer initial-frame-alist)
0e1bfc78 314 (assq 'minibuffer window-system-frame-alist)
de2f5dbe
GM
315 (assq 'minibuffer default-frame-alist)
316 '(minibuffer . t)))
317 t))
318 ;; Create the new frame.
319 (let (parms new)
35a89bdd
EZ
320 ;; MS-Windows needs this to avoid inflooping below.
321 (if (eq system-type 'windows-nt)
322 (sit-for 0 t))
de2f5dbe
GM
323 ;; If the frame isn't visible yet, wait till it is.
324 ;; If the user has to position the window,
325 ;; Emacs doesn't know its real position until
326 ;; the frame is seen to be visible.
327 (while (not (cdr (assq 'visibility
328 (frame-parameters frame-initial-frame))))
329 (sleep-for 1))
330 (setq parms (frame-parameters frame-initial-frame))
9688894d 331
f39784dd 332 ;; Get rid of `name' unless it was specified explicitly before.
de2f5dbe
GM
333 (or (assq 'name frame-initial-frame-alist)
334 (setq parms (delq (assq 'name parms) parms)))
2f5bb432
SM
335 ;; An explicit parent-id is a request to XEmbed the frame.
336 (or (assq 'parent-id frame-initial-frame-alist)
337 (setq parms (delq (assq 'parent-id parms) parms)))
de2f5dbe
GM
338
339 (setq parms (append initial-frame-alist
0e1bfc78 340 window-system-frame-alist
de2f5dbe
GM
341 default-frame-alist
342 parms
343 nil))
344
345 ;; Get rid of `reverse', because that was handled
346 ;; when we first made the frame.
347 (setq parms (cons '(reverse) (delq (assq 'reverse parms) parms)))
348
349 (if (assq 'height frame-initial-geometry-arguments)
350 (setq parms (assq-delete-all 'height parms)))
351 (if (assq 'width frame-initial-geometry-arguments)
352 (setq parms (assq-delete-all 'width parms)))
353 (if (assq 'left frame-initial-geometry-arguments)
354 (setq parms (assq-delete-all 'left parms)))
355 (if (assq 'top frame-initial-geometry-arguments)
356 (setq parms (assq-delete-all 'top parms)))
357 (setq new
358 (make-frame
359 ;; Use the geometry args that created the existing
360 ;; frame, rather than the parms we get for it.
361 (append frame-initial-geometry-arguments
362 '((user-size . t) (user-position . t))
363 parms)))
364 ;; The initial frame, which we are about to delete, may be
365 ;; the only frame with a minibuffer. If it is, create a
366 ;; new one.
367 (or (delq frame-initial-frame (minibuffer-frame-list))
368 (make-initial-minibuffer-frame nil))
369
370 ;; If the initial frame is serving as a surrogate
371 ;; minibuffer frame for any frames, we need to wean them
372 ;; onto a new frame. The default-minibuffer-frame
373 ;; variable must be handled similarly.
374 (let ((users-of-initial
375 (filtered-frame-list
b7de6024
SM
376 (lambda (frame)
377 (and (not (eq frame frame-initial-frame))
378 (eq (window-frame
379 (minibuffer-window frame))
380 frame-initial-frame))))))
381 (if (or users-of-initial
de2f5dbe
GM
382 (eq default-minibuffer-frame frame-initial-frame))
383
384 ;; Choose an appropriate frame. Prefer frames which
385 ;; are only minibuffers.
386 (let* ((new-surrogate
387 (car
388 (or (filtered-frame-list
b7de6024
SM
389 (lambda (frame)
390 (eq (cdr (assq 'minibuffer
391 (frame-parameters frame)))
392 'only)))
de2f5dbe
GM
393 (minibuffer-frame-list))))
394 (new-minibuffer (minibuffer-window new-surrogate)))
395
396 (if (eq default-minibuffer-frame frame-initial-frame)
397 (setq default-minibuffer-frame new-surrogate))
398
399 ;; Wean the frames using frame-initial-frame as
400 ;; their minibuffer frame.
b7de6024
SM
401 (dolist (frame users-of-initial)
402 (modify-frame-parameters
403 frame (list (cons 'minibuffer new-minibuffer)))))))
404
405 ;; Redirect events enqueued at this frame to the new frame.
de2f5dbe
GM
406 ;; Is this a good idea?
407 (redirect-frame-focus frame-initial-frame new)
408
409 ;; Finally, get rid of the old frame.
410 (delete-frame frame-initial-frame t))
9688894d 411
9858f6c3 412 ;; Otherwise, we don't need all that rigmarole; just apply
9688894d
GM
413 ;; the new parameters.
414 (let (newparms allparms tail)
415 (setq allparms (append initial-frame-alist
0e1bfc78 416 window-system-frame-alist
9688894d
GM
417 default-frame-alist nil))
418 (if (assq 'height frame-initial-geometry-arguments)
419 (setq allparms (assq-delete-all 'height allparms)))
420 (if (assq 'width frame-initial-geometry-arguments)
421 (setq allparms (assq-delete-all 'width allparms)))
422 (if (assq 'left frame-initial-geometry-arguments)
423 (setq allparms (assq-delete-all 'left allparms)))
424 (if (assq 'top frame-initial-geometry-arguments)
425 (setq allparms (assq-delete-all 'top allparms)))
426 (setq tail allparms)
427 ;; Find just the parms that have changed since we first
428 ;; made this frame. Those are the ones actually set by
f39784dd 429 ;; the init file. For those parms whose values we already knew
9688894d
GM
430 ;; (such as those spec'd by command line options)
431 ;; it is undesirable to specify the parm again
f39784dd 432 ;; once the user has seen the frame and been able to alter it
9688894d 433 ;; manually.
0216b738
CY
434 (let (newval oldval)
435 (dolist (entry tail)
436 (setq oldval (assq (car entry) frame-initial-frame-alist))
437 (setq newval (cdr (assq (car entry) allparms)))
9688894d
GM
438 (or (and oldval (eq (cdr oldval) newval))
439 (setq newparms
0216b738 440 (cons (cons (car entry) newval) newparms)))))
9688894d 441 (setq newparms (nreverse newparms))
0216b738
CY
442
443 (let ((new-bg (assq 'background-color newparms)))
444 ;; If the `background-color' parameter is changed, apply
445 ;; it first, then make sure that the `background-mode'
446 ;; parameter and other faces are updated, before applying
447 ;; the other parameters.
448 (when new-bg
449 (modify-frame-parameters frame-initial-frame
450 (list new-bg))
451 (unless (assq 'background-mode newparms)
452 (frame-set-background-mode frame-initial-frame))
453 (face-set-after-frame-default frame-initial-frame)
454 (setq newparms (delq new-bg newparms)))
455 (modify-frame-parameters frame-initial-frame newparms)))))
64c669bc 456
7eadab74
JB
457 ;; Restore the original buffer.
458 (set-buffer old-buffer)
459
460 ;; Make sure the initial frame can be GC'd if it is ever deleted.
d202f1f2 461 ;; Make sure frame-notice-user-settings does nothing if called twice.
8f2a992b 462 (setq frame-notice-user-settings nil)
d202f1f2 463 (setq frame-initial-frame nil)))
64c669bc 464
746bd265
KH
465(defun make-initial-minibuffer-frame (display)
466 (let ((parms (append minibuffer-frame-alist '((minibuffer . only)))))
467 (if display
468 (make-frame-on-display display parms)
469 (make-frame parms))))
470
7eadab74 471;;;; Creation of additional frames, and other frame miscellanea
dc6d9681 472
63019bad 473(defun modify-all-frames-parameters (alist)
d398de43 474 "Modify all current and future frames' parameters according to ALIST.
63019bad 475This changes `default-frame-alist' and possibly `initial-frame-alist'.
095fe281
KL
476Furthermore, this function removes all parameters in ALIST from
477`window-system-default-frame-alist'.
63019bad 478See help of `modify-frame-parameters' for more information."
095fe281
KL
479 (dolist (frame (frame-list))
480 (modify-frame-parameters frame alist))
481
482 (dolist (pair alist) ;; conses to add/replace
483 ;; initial-frame-alist needs setting only when
484 ;; frame-notice-user-settings is true.
485 (and frame-notice-user-settings
486 (setq initial-frame-alist
487 (assq-delete-all (car pair) initial-frame-alist)))
488 (setq default-frame-alist
489 (assq-delete-all (car pair) default-frame-alist))
490 ;; Remove any similar settings from the window-system specific
491 ;; parameters---they would override default-frame-alist.
492 (dolist (w window-system-default-frame-alist)
493 (setcdr w (assq-delete-all (car pair) (cdr w)))))
494
63019bad
JB
495 (and frame-notice-user-settings
496 (setq initial-frame-alist (append initial-frame-alist alist)))
497 (setq default-frame-alist (append default-frame-alist alist)))
498
7253d8e0 499(defun get-other-frame ()
40d34803
DL
500 "Return some frame other than the current frame.
501Create one if necessary. Note that the minibuffer frame, if separate,
502is not considered (see `next-frame')."
c8c2aca8 503 (if (equal (next-frame) (selected-frame)) (make-frame) (next-frame)))
64c669bc 504
dc6d9681
JB
505(defun next-multiframe-window ()
506 "Select the next window, regardless of which frame it is on."
64c669bc
JB
507 (interactive)
508 (select-window (next-window (selected-window)
509 (> (minibuffer-depth) 0)
bb2c34b1 510 0))
030f4537 511 (select-frame-set-input-focus (selected-frame)))
64c669bc 512
dc6d9681
JB
513(defun previous-multiframe-window ()
514 "Select the previous window, regardless of which frame it is on."
64c669bc
JB
515 (interactive)
516 (select-window (previous-window (selected-window)
517 (> (minibuffer-depth) 0)
bb2c34b1 518 0))
030f4537 519 (select-frame-set-input-focus (selected-frame)))
64c669bc 520
efc3dd3c
DC
521(defun window-system-for-display (display)
522 "Return the window system for DISPLAY.
523Return nil if we don't know how to interpret DISPLAY."
524 (cl-loop for descriptor in display-format-alist
525 for pattern = (car descriptor)
526 for system = (cdr descriptor)
527 when (string-match-p pattern display) return system))
bbf6ef44 528
6d73e337 529(defun make-frame-on-display (display &optional parameters)
c5a8bc01
CY
530 "Make a frame on display DISPLAY.
531The optional argument PARAMETERS specifies additional frame parameters."
6d73e337 532 (interactive "sMake frame on display: ")
efc3dd3c 533 (make-frame (cons (cons 'display display) parameters)))
6d73e337 534
aa360da1
GM
535(declare-function x-close-connection "xfns.c" (terminal))
536
b7de6024
SM
537(defun close-display-connection (display)
538 "Close the connection to a display, deleting all its associated frames.
539For DISPLAY, specify either a frame or a display name (a string).
540If DISPLAY is nil, that stands for the selected frame's display."
541 (interactive
542 (list
543 (let* ((default (frame-parameter nil 'display))
544 (display (completing-read
545 (format "Close display (default %s): " default)
546 (delete-dups
547 (mapcar (lambda (frame)
548 (frame-parameter frame 'display))
549 (frame-list)))
550 nil t nil nil
551 default)))
552 (if (zerop (length display)) default display))))
553 (let ((frames (delq nil
554 (mapcar (lambda (frame)
555 (if (equal display
556 (frame-parameter frame 'display))
557 frame))
558 (frame-list)))))
559 (if (and (consp frames)
560 (not (y-or-n-p (if (cdr frames)
561 (format "Delete %s frames? " (length frames))
562 (format "Delete %s ? " (car frames))))))
563 (error "Abort!")
564 (mapc 'delete-frame frames)
565 (x-close-connection display))))
566
6238bfaf 567(defun make-frame-command ()
e9e6aee8
CY
568 "Make a new frame, on the same terminal as the selected frame.
569If the terminal is a text-only terminal, this also selects the
570new frame."
6238bfaf 571 (interactive)
e9e6aee8 572 (if (display-graphic-p)
6238bfaf
RS
573 (make-frame)
574 (select-frame (make-frame))))
575
45c4fdeb
SM
576(defvar before-make-frame-hook nil
577 "Functions to run before a frame is created.")
578
579(defvar after-make-frame-functions nil
580 "Functions to run after a frame is created.
581The functions are run with one arg, the newly created frame.")
582
72bf1a8b 583(defvar after-setting-font-hook nil
81b99826
GM
584 "Functions to run after a frame's font has been changed.")
585
92e443b1 586;; Alias, kept temporarily.
84ed1560 587(define-obsolete-function-alias 'new-frame 'make-frame "22.1")
bc93c097 588
9e483377 589(defvar frame-inherited-parameters '()
ab6198b2
SM
590 ;; FIXME: Shouldn't we add `font' here as well?
591 "Parameters `make-frame' copies from the `selected-frame' to the new frame.")
592
45c4fdeb
SM
593(defun make-frame (&optional parameters)
594 "Return a newly created frame displaying the current buffer.
c1ef4455
CY
595Optional argument PARAMETERS is an alist of frame parameters for
596the new frame. Each element of PARAMETERS should have the
597form (NAME . VALUE), for example:
a105105a 598
45c4fdeb 599 (name . STRING) The frame should be named STRING.
43a2e52c 600
45c4fdeb
SM
601 (width . NUMBER) The frame should be NUMBER characters in width.
602 (height . NUMBER) The frame should be NUMBER text lines high.
43a2e52c 603
c1ef4455
CY
604You cannot specify either `width' or `height', you must specify
605neither or both.
43a2e52c 606
45c4fdeb
SM
607 (minibuffer . t) The frame should have a minibuffer.
608 (minibuffer . nil) The frame should have no minibuffer.
609 (minibuffer . only) The frame should contain only a minibuffer.
610 (minibuffer . WINDOW) The frame should use WINDOW as its minibuffer window.
43a2e52c 611
2246281f
KL
612 (window-system . nil) The frame should be displayed on a terminal device.
613 (window-system . x) The frame should be displayed in an X window.
614
efc3dd3c
DC
615 (display . \":0\") The frame should appear on display :0.
616
d51f6378 617 (terminal . TERMINAL) The frame should use the terminal object TERMINAL.
b6660415 618
c1ef4455
CY
619In addition, any parameter specified in `default-frame-alist',
620but not present in PARAMETERS, is applied.
8de9d3f6 621
c1ef4455
CY
622Before creating the frame (via `frame-creation-function-alist'),
623this function runs the hook `before-make-frame-hook'. After
624creating the frame, it runs the hook `after-make-frame-functions'
625with one arg, the newly created frame.
626
efc3dd3c
DC
627If a display parameter is supplied and a window-system is not,
628guess the window-system from the display.
629
c1ef4455
CY
630On graphical displays, this function does not itself make the new
631frame the selected frame. However, the window system may select
632the new frame according to its own rules."
64c669bc 633 (interactive)
efc3dd3c
DC
634 (let* ((display (cdr (assq 'display parameters)))
635 (w (cond
6ed8eeff
KL
636 ((assq 'terminal parameters)
637 (let ((type (terminal-live-p (cdr (assq 'terminal parameters)))))
b6660415
KL
638 (cond
639 ((eq type t) nil)
cb01ce3f
SM
640 ((eq type nil) (error "Terminal %s does not exist"
641 (cdr (assq 'terminal parameters))))
b6660415
KL
642 (t type))))
643 ((assq 'window-system parameters)
644 (cdr (assq 'window-system parameters)))
efc3dd3c
DC
645 (display
646 (or (window-system-for-display display)
647 (error "Don't know how to interpret display \"%S\""
648 display)))
b6660415 649 (t window-system)))
2246281f 650 (frame-creation-function (cdr (assq w frame-creation-function-alist)))
da8e8fc1 651 (oldframe (selected-frame))
c1ef4455 652 (params parameters)
2246281f
KL
653 frame)
654 (unless frame-creation-function
655 (error "Don't know how to create a frame on window system %s" w))
efc3dd3c
DC
656
657 (unless (get w 'window-system-initialized)
ebb19708
DA
658 (funcall (cdr (assq w window-system-initialization-alist)) display)
659 (setq x-display-name display)
efc3dd3c
DC
660 (put w 'window-system-initialized t))
661
c1ef4455
CY
662 ;; Add parameters from `window-system-default-frame-alist'.
663 (dolist (p (cdr (assq w window-system-default-frame-alist)))
21bd02a6 664 (unless (assq (car p) params)
c1ef4455
CY
665 (push p params)))
666 ;; Add parameters from `default-frame-alist'.
667 (dolist (p default-frame-alist)
21bd02a6 668 (unless (assq (car p) params)
c1ef4455
CY
669 (push p params)))
670 ;; Now make the frame.
2246281f 671 (run-hooks 'before-make-frame-hook)
c1ef4455 672 (setq frame (funcall frame-creation-function params))
30a2fded 673 (normal-erase-is-backspace-setup-frame frame)
ab6198b2
SM
674 ;; Inherit the original frame's parameters.
675 (dolist (param frame-inherited-parameters)
676 (unless (assq param parameters) ;Overridden by explicit parameters.
677 (let ((val (frame-parameter oldframe param)))
678 (when val (set-frame-parameter frame param val)))))
45c4fdeb
SM
679 (run-hook-with-args 'after-make-frame-functions frame)
680 frame))
64c669bc 681
7eadab74
JB
682(defun filtered-frame-list (predicate)
683 "Return a list of all live frames which satisfy PREDICATE."
047bc928
GM
684 (let* ((frames (frame-list))
685 (list frames))
7eadab74 686 (while (consp frames)
047bc928
GM
687 (unless (funcall predicate (car frames))
688 (setcar frames nil))
7eadab74 689 (setq frames (cdr frames)))
047bc928 690 (delq nil list)))
7eadab74
JB
691
692(defun minibuffer-frame-list ()
693 "Return a list of all frames with their own minibuffers."
694 (filtered-frame-list
b7de6024
SM
695 (lambda (frame)
696 (eq frame (window-frame (minibuffer-window frame))))))
7eadab74 697
371fed4e
SM
698;; Used to be called `terminal-id' in termdev.el.
699(defun get-device-terminal (device)
700 "Return the terminal corresponding to DEVICE.
701DEVICE can be a terminal, a frame, nil (meaning the selected frame's terminal),
702the name of an X display device (HOST.SERVER.SCREEN) or a tty device file."
703 (cond
704 ((or (null device) (framep device))
705 (frame-terminal device))
706 ((stringp device)
707 (let ((f (car (filtered-frame-list
708 (lambda (frame)
709 (or (equal (frame-parameter frame 'display) device)
710 (equal (frame-parameter frame 'tty) device)))))))
711 (or f (error "Display %s does not exist" device))
712 (frame-terminal f)))
713 ((terminal-live-p device) device)
714 (t
715 (error "Invalid argument %s in `get-device-terminal'" device))))
716
717(defun frames-on-display-list (&optional device)
718 "Return a list of all frames on DEVICE.
719
720DEVICE should be a terminal, a frame,
721or a name of an X display or tty (a string of the form
9684e4c9 722HOST:SERVER.SCREEN).
b6660415 723
371fed4e 724If DEVICE is omitted or nil, it defaults to the selected
9684e4c9 725frame's terminal device."
371fed4e 726 (let* ((terminal (get-device-terminal device))
047bc928 727 (func #'(lambda (frame)
6ed8eeff 728 (eq (frame-terminal frame) terminal))))
9911648b
EZ
729 (filtered-frame-list func)))
730
f35ca2fe
KL
731(defun framep-on-display (&optional terminal)
732 "Return the type of frames on TERMINAL.
733TERMINAL may be a terminal id, a display name or a frame. If it
734is a frame, its type is returned. If TERMINAL is omitted or nil,
735it defaults to the selected frame's terminal device. All frames
736on a given display are of the same type."
6ed8eeff 737 (or (terminal-live-p terminal)
f35ca2fe
KL
738 (framep terminal)
739 (framep (car (frames-on-display-list terminal)))))
9911648b 740
58bf6042
JB
741(defun frame-remove-geometry-params (param-list)
742 "Return the parameter list PARAM-LIST, but with geometry specs removed.
743This deletes all bindings in PARAM-LIST for `top', `left', `width',
791e09d8 744`height', `user-size' and `user-position' parameters.
58bf6042
JB
745Emacs uses this to avoid overriding explicit moves and resizings from
746the user during startup."
747 (setq param-list (cons nil param-list))
748 (let ((tail param-list))
749 (while (consp (cdr tail))
750 (if (and (consp (car (cdr tail)))
791e09d8
RS
751 (memq (car (car (cdr tail)))
752 '(height width top left user-position user-size)))
753 (progn
754 (setq frame-initial-geometry-arguments
755 (cons (car (cdr tail)) frame-initial-geometry-arguments))
756 (setcdr tail (cdr (cdr tail))))
58bf6042 757 (setq tail (cdr tail)))))
e11c3dc2
KH
758 (setq frame-initial-geometry-arguments
759 (nreverse frame-initial-geometry-arguments))
58bf6042
JB
760 (cdr param-list))
761
fcd42c11 762(declare-function x-focus-frame "frame.c" (frame))
aa360da1 763
be39b8cc 764(defun select-frame-set-input-focus (frame &optional norecord)
bbca16d8 765 "Select FRAME, raise it, and set input focus, if possible.
e343066f 766If `mouse-autoselect-window' is non-nil, also move mouse pointer
bbca16d8 767to FRAME's selected window. Otherwise, if `focus-follows-mouse'
be39b8cc
MR
768is non-nil, move mouse cursor to FRAME.
769
770Optional argument NORECORD means to neither change the order of
771recently selected windows nor the buffer list."
772 (select-frame frame norecord)
b0c7121c 773 (raise-frame frame)
bbca16d8 774 ;; Ensure, if possible, that FRAME gets input focus.
b0c7121c
MR
775 (when (memq (window-system frame) '(x w32 ns))
776 (x-focus-frame frame))
bbca16d8
MR
777 ;; Move mouse cursor if necessary.
778 (cond
779 (mouse-autoselect-window
780 (let ((edges (window-inside-edges (frame-selected-window frame))))
781 ;; Move mouse cursor into FRAME's selected window to avoid that
782 ;; Emacs mouse-autoselects another window.
783 (set-mouse-position frame (nth 2 edges) (nth 1 edges))))
784 (focus-follows-mouse
785 ;; Move mouse cursor into FRAME to avoid that another frame gets
786 ;; selected by the window manager.
787 (set-mouse-position frame (1- (frame-width frame)) 0))))
030f4537 788
ceab6935 789(defun other-frame (arg)
c2c93894 790 "Select the ARGth different visible frame on current display, and raise it.
ceab6935
RM
791All frames are arranged in a cyclic order.
792This command selects the frame ARG steps away in that order.
bb578a72
RS
793A negative ARG moves in the opposite order.
794
795To make this command work properly, you must tell Emacs
796how the system (or the window manager) generally handles
797focus-switching between windows. If moving the mouse onto a window
798selects it (gives it focus), set `focus-follows-mouse' to t.
799Otherwise, that variable should be nil."
ceab6935
RM
800 (interactive "p")
801 (let ((frame (selected-frame)))
802 (while (> arg 0)
a569dbc3
RM
803 (setq frame (next-frame frame))
804 (while (not (eq (frame-visible-p frame) t))
805 (setq frame (next-frame frame)))
806 (setq arg (1- arg)))
ceab6935 807 (while (< arg 0)
a569dbc3
RM
808 (setq frame (previous-frame frame))
809 (while (not (eq (frame-visible-p frame) t))
810 (setq frame (previous-frame frame)))
915cfd1f 811 (setq arg (1+ arg)))
030f4537 812 (select-frame-set-input-focus frame)))
845cde06 813
3db7df06
SM
814(defun iconify-or-deiconify-frame ()
815 "Iconify the selected frame, or deiconify if it's currently an icon."
816 (interactive)
817 (if (eq (cdr (assq 'visibility (frame-parameters))) t)
818 (iconify-frame)
819 (make-frame-visible)))
820
0b0d3e0b
KL
821(defun suspend-frame ()
822 "Do whatever is right to suspend the current frame.
f35ca2fe
KL
823Calls `suspend-emacs' if invoked from the controlling tty device,
824`suspend-tty' from a secondary tty device, and
0b0d3e0b
KL
825`iconify-or-deiconify-frame' from an X frame."
826 (interactive)
827 (let ((type (framep (selected-frame))))
828 (cond
edfda783 829 ((memq type '(x ns w32)) (iconify-or-deiconify-frame))
0b0d3e0b 830 ((eq type t)
6ed8eeff 831 (if (controlling-tty-p)
4a933ef8
KL
832 (suspend-emacs)
833 (suspend-tty)))
0b0d3e0b
KL
834 (t (suspend-emacs)))))
835
845cde06 836(defun make-frame-names-alist ()
e2c3f530 837 ;; Only consider the frames on the same display.
845cde06
EZ
838 (let* ((current-frame (selected-frame))
839 (falist
840 (cons
841 (cons (frame-parameter current-frame 'name) current-frame) nil))
e2c3f530 842 (frame (next-frame nil 0)))
845cde06
EZ
843 (while (not (eq frame current-frame))
844 (progn
e2c3f530
SM
845 (push (cons (frame-parameter frame 'name) frame) falist)
846 (setq frame (next-frame frame 0))))
845cde06
EZ
847 falist))
848
849(defvar frame-name-history nil)
845cde06 850(defun select-frame-by-name (name)
563283b1 851 "Select the frame on the current terminal whose name is NAME and raise it.
845cde06
EZ
852If there is no frame by that name, signal an error."
853 (interactive
716ff1c9
RS
854 (let* ((frame-names-alist (make-frame-names-alist))
855 (default (car (car frame-names-alist)))
856 (input (completing-read
857 (format "Select Frame (default %s): " default)
858 frame-names-alist nil t nil 'frame-name-history)))
845cde06
EZ
859 (if (= (length input) 0)
860 (list default)
861 (list input))))
716ff1c9
RS
862 (let* ((frame-names-alist (make-frame-names-alist))
863 (frame (cdr (assoc name frame-names-alist))))
bbca16d8
MR
864 (if frame
865 (select-frame-set-input-focus frame)
866 (error "There is no frame named `%s'" name))))
1485f4c0
CY
867
868\f
869;;;; Background mode.
870
871(defcustom frame-background-mode nil
872 "The brightness of the background.
873Set this to the symbol `dark' if your background color is dark,
874`light' if your background is light, or nil (automatic by default)
e73c3a0d
GM
875if you want Emacs to examine the brightness for you.
876
79a15a36 877If you change this without using customize, you should use
2e4a0a90
GM
878`frame-set-background-mode' to update existing frames;
879e.g. (mapc 'frame-set-background-mode (frame-list))."
1485f4c0
CY
880 :group 'faces
881 :set #'(lambda (var value)
882 (set-default var value)
883 (mapc 'frame-set-background-mode (frame-list)))
884 :initialize 'custom-initialize-changed
885 :type '(choice (const dark)
886 (const light)
887 (const :tag "automatic" nil)))
888
889(declare-function x-get-resource "frame.c"
890 (attribute class &optional component subclass))
891
892(defvar inhibit-frame-set-background-mode nil)
893
894(defun frame-set-background-mode (frame &optional keep-face-specs)
895 "Set up display-dependent faces on FRAME.
896Display-dependent faces are those which have different definitions
897according to the `background-mode' and `display-type' frame parameters.
898
899If optional arg KEEP-FACE-SPECS is non-nil, don't recalculate
900face specs for the new background mode."
901 (unless inhibit-frame-set-background-mode
902 (let* ((frame-default-bg-mode (frame-terminal-default-bg-mode frame))
903 (bg-color (frame-parameter frame 'background-color))
904 (tty-type (tty-type frame))
905 (default-bg-mode
906 (if (or (window-system frame)
907 (and tty-type
908 (string-match "^\\(xterm\\|\\rxvt\\|dtterm\\|eterm\\)"
909 tty-type)))
910 'light
911 'dark))
912 (non-default-bg-mode (if (eq default-bg-mode 'light) 'dark 'light))
913 (bg-mode
914 (cond (frame-default-bg-mode)
915 ((equal bg-color "unspecified-fg") ; inverted colors
916 non-default-bg-mode)
917 ((not (color-values bg-color frame))
918 default-bg-mode)
919 ((>= (apply '+ (color-values bg-color frame))
920 ;; Just looking at the screen, colors whose
921 ;; values add up to .6 of the white total
922 ;; still look dark to me.
923 (* (apply '+ (color-values "white" frame)) .6))
924 'light)
925 (t 'dark)))
926 (display-type
927 (cond ((null (window-system frame))
928 (if (tty-display-color-p frame) 'color 'mono))
929 ((display-color-p frame)
930 'color)
931 ((x-display-grayscale-p frame)
932 'grayscale)
933 (t 'mono)))
934 (old-bg-mode
935 (frame-parameter frame 'background-mode))
936 (old-display-type
937 (frame-parameter frame 'display-type)))
938
939 (unless (and (eq bg-mode old-bg-mode) (eq display-type old-display-type))
940 (let ((locally-modified-faces nil)
941 ;; Prevent face-spec-recalc from calling this function
942 ;; again, resulting in a loop (bug#911).
943 (inhibit-frame-set-background-mode t)
944 (params (list (cons 'background-mode bg-mode)
945 (cons 'display-type display-type))))
946 (if keep-face-specs
947 (modify-frame-parameters frame params)
948 ;; If we are recomputing face specs, first collect a list
949 ;; of faces that don't match their face-specs. These are
950 ;; the faces modified on FRAME, and we avoid changing them
951 ;; below. Use a negative list to avoid consing (we assume
952 ;; most faces are unmodified).
953 (dolist (face (face-list))
954 (and (not (get face 'face-override-spec))
955 (not (face-spec-match-p face
956 (face-user-default-spec face)
957 (selected-frame)))
958 (push face locally-modified-faces)))
959 ;; Now change to the new frame parameters
960 (modify-frame-parameters frame params)
961 ;; For all unmodified named faces, choose face specs
962 ;; matching the new frame parameters.
963 (dolist (face (face-list))
964 (unless (memq face locally-modified-faces)
965 (face-spec-recalc face frame)))))))))
966
967(defun frame-terminal-default-bg-mode (frame)
968 "Return the default background mode of FRAME.
969This checks the `frame-background-mode' variable, the X resource
970named \"backgroundMode\" (if FRAME is an X frame), and finally
971the `background-mode' terminal parameter."
972 (or frame-background-mode
973 (let ((bg-resource
974 (and (window-system frame)
975 (x-get-resource "backgroundMode" "BackgroundMode"))))
976 (if bg-resource
977 (intern (downcase bg-resource))))
978 (terminal-parameter frame 'background-mode)))
979
64c669bc 980\f
dc6d9681
JB
981;;;; Frame configurations
982
983(defun current-frame-configuration ()
984 "Return a list describing the positions and states of all frames.
376a7584
JB
985Its car is `frame-configuration'.
986Each element of the cdr is a list of the form (FRAME ALIST WINDOW-CONFIG),
987where
988 FRAME is a frame object,
989 ALIST is an association list specifying some of FRAME's parameters, and
990 WINDOW-CONFIG is a window configuration object for FRAME."
991 (cons 'frame-configuration
b7de6024
SM
992 (mapcar (lambda (frame)
993 (list frame
994 (frame-parameters frame)
995 (current-window-configuration frame)))
376a7584 996 (frame-list))))
dc6d9681 997
68cd265f 998(defun set-frame-configuration (configuration &optional nodelete)
dc6d9681
JB
999 "Restore the frames to the state described by CONFIGURATION.
1000Each frame listed in CONFIGURATION has its position, size, window
68cd265f 1001configuration, and other parameters set as specified in CONFIGURATION.
d398de43
LT
1002However, this function does not restore deleted frames.
1003
a78db71c
RS
1004Ordinarily, this function deletes all existing frames not
1005listed in CONFIGURATION. But if optional second argument NODELETE
5da841d2 1006is given and non-nil, the unwanted frames are iconified instead."
376a7584
JB
1007 (or (frame-configuration-p configuration)
1008 (signal 'wrong-type-argument
1009 (list 'frame-configuration-p configuration)))
1010 (let ((config-alist (cdr configuration))
1011 frames-to-delete)
b7de6024
SM
1012 (dolist (frame (frame-list))
1013 (let ((parameters (assq frame config-alist)))
1014 (if parameters
1015 (progn
1016 (modify-frame-parameters
1017 frame
1018 ;; Since we can't set a frame's minibuffer status,
1019 ;; we might as well omit the parameter altogether.
1020 (let* ((parms (nth 1 parameters))
b2529d56
MB
1021 (mini (assq 'minibuffer parms))
1022 (name (assq 'name parms))
1023 (explicit-name (cdr (assq 'explicit-name parms))))
1024 (when mini (setq parms (delq mini parms)))
1025 ;; Leave name in iff it was set explicitly.
1026 ;; This should fix the behavior reported in
1027 ;; http://lists.gnu.org/archive/html/emacs-devel/2007-08/msg01632.html
1028 (when (and name (not explicit-name))
1029 (setq parms (delq name parms)))
b7de6024
SM
1030 parms))
1031 (set-window-configuration (nth 2 parameters)))
1032 (setq frames-to-delete (cons frame frames-to-delete)))))
1033 (mapc (if nodelete
1034 ;; Note: making frames invisible here was tried
1035 ;; but led to some strange behavior--each time the frame
1036 ;; was made visible again, the window manager asked afresh
1037 ;; for where to put it.
1038 'iconify-frame
1039 'delete-frame)
1040 frames-to-delete)))
64c669bc 1041\f
dc6d9681
JB
1042;;;; Convenience functions for accessing and interactively changing
1043;;;; frame parameters.
64c669bc 1044
151bdc83 1045(defun frame-height (&optional frame)
dc6d9681 1046 "Return number of lines available for display on FRAME.
4619ff5e
GM
1047If FRAME is omitted, describe the currently selected frame.
1048Exactly what is included in the return value depends on the
1049window-system and toolkit in use - see `frame-pixel-height' for
1050more details. The lines are in units of the default font height.
1051
1052The result is roughly related to the frame pixel height via
1053height in pixels = height in lines * `frame-char-height'.
1054However, this is only approximate, and is complicated e.g. by the
1055fact that individual window lines and menu bar lines can have
1056differing font heights."
151bdc83 1057 (cdr (assq 'height (frame-parameters frame))))
dc6d9681
JB
1058
1059(defun frame-width (&optional frame)
1060 "Return number of columns available for display on FRAME.
1061If FRAME is omitted, describe the currently selected frame."
151bdc83 1062 (cdr (assq 'width (frame-parameters frame))))
dc6d9681 1063
aa360da1
GM
1064(declare-function x-list-fonts "xfaces.c"
1065 (pattern &optional face frame maximum width))
1066
52ef9375 1067(define-obsolete-function-alias 'set-default-font 'set-frame-font "23.1")
fce3fdeb 1068
f2045622
CY
1069(defun set-frame-font (font &optional keep-size frames)
1070 "Set the default font to FONT.
fce3fdeb 1071When called interactively, prompt for the name of a font, and use
f2045622
CY
1072that font on the selected frame. When called from Lisp, FONT
1073should be a font name (a string), a font object, font entity, or
1074font spec.
fce3fdeb
CY
1075
1076If KEEP-SIZE is nil, keep the number of frame lines and columns
1077fixed. If KEEP-SIZE is non-nil (or with a prefix argument), try
1078to keep the current frame size fixed (in pixels) by adjusting the
1079number of lines and columns.
1080
9f562668
CY
1081If FRAMES is nil, apply the font to the selected frame only.
1082If FRAMES is non-nil, it should be a list of frames to act upon,
1083or t meaning all graphical frames. Also, if FRAME is non-nil,
1084alter the user's Customization settings as though the
fce3fdeb
CY
1085font-related attributes of the `default' face had been \"set in
1086this session\", so that the font is applied to future frames."
f39784dd 1087 (interactive
1cef6541
JB
1088 (let* ((completion-ignore-case t)
1089 (font (completing-read "Font name: "
1cef6541
JB
1090 ;; x-list-fonts will fail with an error
1091 ;; if this frame doesn't support fonts.
b7de6024
SM
1092 (x-list-fonts "*" nil (selected-frame))
1093 nil nil nil nil
1094 (frame-parameter nil 'font))))
fce3fdeb 1095 (list font current-prefix-arg nil)))
f2045622 1096 (when (or (stringp font) (fontp font))
fce3fdeb 1097 (let* ((this-frame (selected-frame))
9f562668
CY
1098 ;; FRAMES nil means affect the selected frame.
1099 (frame-list (cond ((null frames)
1100 (list this-frame))
1101 ((eq frames t)
1102 (frame-list))
1103 (t frames)))
fce3fdeb 1104 height width)
9f562668 1105 (dolist (f frame-list)
fce3fdeb
CY
1106 (when (display-multi-font-p f)
1107 (if keep-size
1108 (setq height (* (frame-parameter f 'height)
1109 (frame-char-height f))
1110 width (* (frame-parameter f 'width)
1111 (frame-char-width f))))
1112 ;; When set-face-attribute is called for :font, Emacs
1113 ;; guesses the best font according to other face attributes
1114 ;; (:width, :weight, etc.) so reset them too (Bug#2476).
1115 (set-face-attribute 'default f
1116 :width 'normal :weight 'normal
f2045622 1117 :slant 'normal :font font)
fce3fdeb
CY
1118 (if keep-size
1119 (modify-frame-parameters
1120 f
1121 (list (cons 'height (round height (frame-char-height f)))
1122 (cons 'width (round width (frame-char-width f))))))))
9f562668 1123 (when frames
fce3fdeb
CY
1124 ;; Alter the user's Custom setting of the `default' face, but
1125 ;; only for font-related attributes.
1126 (let ((specs (cadr (assq 'user (get 'default 'theme-face))))
1127 (attrs '(:family :foundry :slant :weight :height :width))
1128 (new-specs nil))
1129 (if (null specs) (setq specs '((t nil))))
1130 (dolist (spec specs)
1131 ;; Each SPEC has the form (DISPLAY ATTRIBUTE-PLIST)
1132 (let ((display (nth 0 spec))
1133 (plist (copy-tree (nth 1 spec))))
1134 ;; Alter only DISPLAY conditions matching this frame.
1135 (when (or (memq display '(t default))
1136 (face-spec-set-match-display display this-frame))
1137 (dolist (attr attrs)
1138 (setq plist (plist-put plist attr
1139 (face-attribute 'default attr)))))
1140 (push (list display plist) new-specs)))
1141 (setq new-specs (nreverse new-specs))
1142 (put 'default 'customized-face new-specs)
1143 (custom-push-theme 'theme-face 'default 'user 'set new-specs)
1144 (put 'default 'face-modified nil))))
1145 (run-hooks 'after-setting-font-hook 'after-setting-font-hooks)))
64c669bc 1146
7e573c4a 1147(defun set-frame-parameter (frame parameter value)
0dac35b8
KL
1148 "Set frame parameter PARAMETER to VALUE on FRAME.
1149If FRAME is nil, it defaults to the selected frame.
c2c93894 1150See `modify-frame-parameters'."
7e573c4a
SM
1151 (modify-frame-parameters frame (list (cons parameter value))))
1152
8290babd 1153(defun set-background-color (color-name)
40d34803 1154 "Set the background color of the selected frame to COLOR-NAME.
61298010
RS
1155When called interactively, prompt for the name of the color to use.
1156To get the frame's current background color, use `frame-parameters'."
9317e499 1157 (interactive (list (read-color "Background color: ")))
dc6d9681 1158 (modify-frame-parameters (selected-frame)
528e1416
EZ
1159 (list (cons 'background-color color-name)))
1160 (or window-system
1161 (face-set-after-frame-default (selected-frame))))
64c669bc 1162
8290babd 1163(defun set-foreground-color (color-name)
40d34803 1164 "Set the foreground color of the selected frame to COLOR-NAME.
61298010
RS
1165When called interactively, prompt for the name of the color to use.
1166To get the frame's current foreground color, use `frame-parameters'."
9317e499 1167 (interactive (list (read-color "Foreground color: ")))
dc6d9681 1168 (modify-frame-parameters (selected-frame)
528e1416
EZ
1169 (list (cons 'foreground-color color-name)))
1170 (or window-system
1171 (face-set-after-frame-default (selected-frame))))
64c669bc
JB
1172
1173(defun set-cursor-color (color-name)
40d34803 1174 "Set the text cursor color of the selected frame to COLOR-NAME.
61298010 1175When called interactively, prompt for the name of the color to use.
2680c309
CY
1176This works by setting the `cursor-color' frame parameter on the
1177selected frame.
1178
1179You can also set the text cursor color, for all frames, by
1180customizing the `cursor' face."
9317e499 1181 (interactive (list (read-color "Cursor color: ")))
dc6d9681 1182 (modify-frame-parameters (selected-frame)
7eadab74 1183 (list (cons 'cursor-color color-name))))
64c669bc 1184
eaa974e1 1185(defun set-mouse-color (color-name)
40d34803 1186 "Set the color of the mouse pointer of the selected frame to COLOR-NAME.
61298010
RS
1187When called interactively, prompt for the name of the color to use.
1188To get the frame's current mouse color, use `frame-parameters'."
9317e499 1189 (interactive (list (read-color "Mouse color: ")))
dc6d9681 1190 (modify-frame-parameters (selected-frame)
ec6d4463
KH
1191 (list (cons 'mouse-color
1192 (or color-name
1193 (cdr (assq 'mouse-color
1194 (frame-parameters))))))))
7eadab74 1195
eaa974e1 1196(defun set-border-color (color-name)
40d34803 1197 "Set the color of the border of the selected frame to COLOR-NAME.
61298010
RS
1198When called interactively, prompt for the name of the color to use.
1199To get the frame's current border color, use `frame-parameters'."
9317e499 1200 (interactive (list (read-color "Border color: ")))
eaa974e1
JB
1201 (modify-frame-parameters (selected-frame)
1202 (list (cons 'border-color color-name))))
1203
f44379e7 1204(define-minor-mode auto-raise-mode
ed472be9 1205 "Toggle whether or not selected frames should auto-raise.
06e21633
CY
1206With a prefix argument ARG, enable Auto Raise mode if ARG is
1207positive, and disable it otherwise. If called from Lisp, enable
1208the mode if ARG is omitted or nil.
1209
ed472be9
CY
1210Auto Raise mode does nothing under most window managers, which
1211switch focus on mouse clicks. It only has an effect if your
1212window manager switches focus on mouse movement (in which case
1213you should also change `focus-follows-mouse' to t). Then,
1214enabling Auto Raise mode causes any graphical Emacs frame which
1215acquires focus to be automatically raised.
1216
1217Note that this minor mode controls Emacs's own auto-raise
1218feature. Window managers that switch focus on mouse movement
1219often have their own auto-raise feature."
f44379e7
SM
1220 :variable (frame-parameter nil 'auto-raise)
1221 (if (frame-parameter nil 'auto-raise)
1222 (raise-frame)))
7eadab74 1223
f44379e7 1224(define-minor-mode auto-lower-mode
7eadab74 1225 "Toggle whether or not the selected frame should auto-lower.
06e21633
CY
1226With a prefix argument ARG, enable Auto Lower mode if ARG is
1227positive, and disable it otherwise. If called from Lisp, enable
1228the mode if ARG is omitted or nil.
1229
ed472be9
CY
1230Auto Lower mode does nothing under most window managers, which
1231switch focus on mouse clicks. It only has an effect if your
1232window manager switches focus on mouse movement (in which case
1233you should also change `focus-follows-mouse' to t). Then,
1234enabling Auto Lower Mode causes any graphical Emacs frame which
1235loses focus to be automatically lowered.
1236
1237Note that this minor mode controls Emacs's own auto-lower
1238feature. Window managers that switch focus on mouse movement
1239often have their own features for raising or lowering frames."
f44379e7
SM
1240 :variable (frame-parameter nil 'auto-lower))
1241
7777d03b
EZ
1242(defun set-frame-name (name)
1243 "Set the name of the selected frame to NAME.
1244When called interactively, prompt for the name of the frame.
37269466
CY
1245On text terminals, the frame name is displayed on the mode line.
1246On graphical displays, it is displayed on the frame's title bar."
7777d03b
EZ
1247 (interactive "sFrame name: ")
1248 (modify-frame-parameters (selected-frame)
1249 (list (cons 'name name))))
56cfea72
KS
1250
1251(defun frame-current-scroll-bars (&optional frame)
1252 "Return the current scroll-bar settings in frame FRAME.
1cecf04d 1253Value is a cons (VERTICAL . HORIZ0NTAL) where VERTICAL specifies the
56cfea72 1254current location of the vertical scroll-bars (left, right, or nil),
1cecf04d 1255and HORIZONTAL specifies the current location of the horizontal scroll
56cfea72
KS
1256bars (top, bottom, or nil)."
1257 (let ((vert (frame-parameter frame 'vertical-scroll-bars))
1258 (hor nil))
1259 (unless (memq vert '(left right nil))
1260 (setq vert default-frame-scroll-bars))
1261 (cons vert hor)))
4e3f9230
YM
1262
1263(defun frame-monitor-attributes (&optional frame)
1264 "Return the attributes of the physical monitor dominating FRAME.
1265If FRAME is omitted, describe the currently selected frame.
1266
1267A frame is dominated by a physical monitor when either the
1268largest area of the frame resides in the monitor, or the monitor
1269is the closest to the frame if the frame does not intersect any
1270physical monitors.
1271
1272See `display-monitor-attributes-list' for the list of attribute
1273keys and their meanings."
1274 (or frame (setq frame (selected-frame)))
1275 (cl-loop for attributes in (display-monitor-attributes-list frame)
1276 for frames = (cdr (assq 'frames attributes))
1277 if (memq frame frames) return attributes))
1278
64c669bc 1279\f
9911648b 1280;;;; Frame/display capabilities.
b6660415 1281
73e6adaa
DN
1282(declare-function msdos-mouse-p "dosfns.c")
1283
9911648b
EZ
1284(defun display-mouse-p (&optional display)
1285 "Return non-nil if DISPLAY has a mouse available.
1286DISPLAY can be a display name, a frame, or nil (meaning the selected
1287frame's display)."
1288 (let ((frame-type (framep-on-display display)))
1289 (cond
1290 ((eq frame-type 'pc)
1291 (msdos-mouse-p))
0fda9b75 1292 ((eq frame-type 'w32)
9fa5bb32
RS
1293 (with-no-warnings
1294 (> w32-num-mouse-buttons 0)))
9e2a2647
DN
1295 ((memq frame-type '(x ns))
1296 t) ;; We assume X and NeXTstep *always* have a pointing device
9911648b 1297 (t
7565ee93
DL
1298 (or (and (featurep 'xt-mouse)
1299 xterm-mouse-mode)
1300 ;; t-mouse is distributed with the GPM package. It doesn't have
1301 ;; a toggle.
1302 (featurep 't-mouse))))))
9911648b
EZ
1303
1304(defun display-popup-menus-p (&optional display)
1305 "Return non-nil if popup menus are supported on DISPLAY.
1306DISPLAY can be a display name, a frame, or nil (meaning the selected
1307frame's display).
1308Support for popup menus requires that the mouse be available."
1309 (and
1310 (let ((frame-type (framep-on-display display)))
9e2a2647 1311 (memq frame-type '(x w32 pc ns)))
9911648b
EZ
1312 (display-mouse-p display)))
1313
1314(defun display-graphic-p (&optional display)
1315 "Return non-nil if DISPLAY is a graphic display.
1316Graphical displays are those which are capable of displaying several
1317frames and several different fonts at once. This is true for displays
1318that use a window system such as X, and false for text-only terminals.
1319DISPLAY can be a display name, a frame, or nil (meaning the selected
1320frame's display)."
9e2a2647 1321 (not (null (memq (framep-on-display display) '(x w32 ns)))))
9911648b 1322
ddc456e4
EZ
1323(defun display-images-p (&optional display)
1324 "Return non-nil if DISPLAY can display images.
1325
1326DISPLAY can be a display name, a frame, or nil (meaning the selected
1327frame's display)."
1328 (and (display-graphic-p display)
1329 (fboundp 'image-mask-p)
fcc6f5cc 1330 (fboundp 'image-size)))
ddc456e4 1331
6693b279
EZ
1332(defalias 'display-multi-frame-p 'display-graphic-p)
1333(defalias 'display-multi-font-p 'display-graphic-p)
1334
9911648b
EZ
1335(defun display-selections-p (&optional display)
1336 "Return non-nil if DISPLAY supports selections.
1337A selection is a way to transfer text or other data between programs
45240125 1338via special system buffers called `selection' or `clipboard'.
9911648b
EZ
1339DISPLAY can be a display name, a frame, or nil (meaning the selected
1340frame's display)."
1341 (let ((frame-type (framep-on-display display)))
1342 (cond
1343 ((eq frame-type 'pc)
1344 ;; MS-DOG frames support selections when Emacs runs inside
1345 ;; the Windows' DOS Box.
9fa5bb32
RS
1346 (with-no-warnings
1347 (not (null dos-windows-version))))
9e2a2647 1348 ((memq frame-type '(x w32 ns))
9911648b
EZ
1349 t) ;; FIXME?
1350 (t
1351 nil))))
1352
aa360da1
GM
1353(declare-function x-display-screens "xfns.c" (&optional terminal))
1354
9911648b
EZ
1355(defun display-screens (&optional display)
1356 "Return the number of screens associated with DISPLAY."
1357 (let ((frame-type (framep-on-display display)))
1358 (cond
9e2a2647 1359 ((memq frame-type '(x w32 ns))
9911648b 1360 (x-display-screens display))
bb9404d6 1361 (t
9911648b
EZ
1362 1))))
1363
aa360da1
GM
1364(declare-function x-display-pixel-height "xfns.c" (&optional terminal))
1365
9911648b
EZ
1366(defun display-pixel-height (&optional display)
1367 "Return the height of DISPLAY's screen in pixels.
cf13177e
YM
1368For character terminals, each character counts as a single pixel.
1369For graphical terminals, note that on \"multi-monitor\" setups this
1370refers to the pixel height for all physical monitors associated
1371with DISPLAY. To get information for each physical monitor, use
1372`display-monitor-attributes-list'."
9911648b
EZ
1373 (let ((frame-type (framep-on-display display)))
1374 (cond
9e2a2647 1375 ((memq frame-type '(x w32 ns))
9911648b
EZ
1376 (x-display-pixel-height display))
1377 (t
1378 (frame-height (if (framep display) display (selected-frame)))))))
1379
aa360da1
GM
1380(declare-function x-display-pixel-width "xfns.c" (&optional terminal))
1381
9911648b
EZ
1382(defun display-pixel-width (&optional display)
1383 "Return the width of DISPLAY's screen in pixels.
cf13177e
YM
1384For character terminals, each character counts as a single pixel.
1385For graphical terminals, note that on \"multi-monitor\" setups this
1386refers to the pixel width for all physical monitors associated
1387with DISPLAY. To get information for each physical monitor, use
1388`display-monitor-attributes-list'."
9911648b
EZ
1389 (let ((frame-type (framep-on-display display)))
1390 (cond
9e2a2647 1391 ((memq frame-type '(x w32 ns))
9911648b
EZ
1392 (x-display-pixel-width display))
1393 (t
1394 (frame-width (if (framep display) display (selected-frame)))))))
1395
51e39dfc
KS
1396(defcustom display-mm-dimensions-alist nil
1397 "Alist for specifying screen dimensions in millimeters.
1398The dimensions will be used for `display-mm-height' and
1399`display-mm-width' if defined for the respective display.
1400
1401Each element of the alist has the form (display . (width . height)),
1402e.g. (\":0.0\" . (287 . 215)).
1403
1404If `display' equals t, it specifies dimensions for all graphical
c7015153 1405displays not explicitly specified."
51e39dfc
KS
1406 :version "22.1"
1407 :type '(alist :key-type (choice (string :tag "Display name")
1408 (const :tag "Default" t))
1409 :value-type (cons :tag "Dimensions"
1410 (integer :tag "Width")
1411 (integer :tag "Height")))
1412 :group 'frames)
1413
aa360da1
GM
1414(declare-function x-display-mm-height "xfns.c" (&optional terminal))
1415
9911648b
EZ
1416(defun display-mm-height (&optional display)
1417 "Return the height of DISPLAY's screen in millimeters.
d7cd2d8b 1418System values can be overridden by `display-mm-dimensions-alist'.
cf13177e
YM
1419If the information is unavailable, value is nil.
1420For graphical terminals, note that on \"multi-monitor\" setups this
1421refers to the height in millimeters for all physical monitors
1422associated with DISPLAY. To get information for each physical
1423monitor, use `display-monitor-attributes-list'."
9e2a2647 1424 (and (memq (framep-on-display display) '(x w32 ns))
51e39dfc
KS
1425 (or (cddr (assoc (or display (frame-parameter nil 'display))
1426 display-mm-dimensions-alist))
1427 (cddr (assoc t display-mm-dimensions-alist))
1428 (x-display-mm-height display))))
9911648b 1429
aa360da1
GM
1430(declare-function x-display-mm-width "xfns.c" (&optional terminal))
1431
9911648b
EZ
1432(defun display-mm-width (&optional display)
1433 "Return the width of DISPLAY's screen in millimeters.
d7cd2d8b 1434System values can be overridden by `display-mm-dimensions-alist'.
cf13177e
YM
1435If the information is unavailable, value is nil.
1436For graphical terminals, note that on \"multi-monitor\" setups this
1437refers to the width in millimeters for all physical monitors
1438associated with DISPLAY. To get information for each physical
1439monitor, use `display-monitor-attributes-list'."
9e2a2647 1440 (and (memq (framep-on-display display) '(x w32 ns))
51e39dfc
KS
1441 (or (cadr (assoc (or display (frame-parameter nil 'display))
1442 display-mm-dimensions-alist))
1443 (cadr (assoc t display-mm-dimensions-alist))
1444 (x-display-mm-width display))))
9911648b 1445
aa360da1
GM
1446(declare-function x-display-backing-store "xfns.c" (&optional terminal))
1447
916119ec
XF
1448;; In NS port, the return value may be `buffered', `retained', or
1449;; `non-retained'. See src/nsfns.m.
9911648b
EZ
1450(defun display-backing-store (&optional display)
1451 "Return the backing store capability of DISPLAY's screen.
1452The value may be `always', `when-mapped', `not-useful', or nil if
1453the question is inapplicable to a certain kind of display."
1454 (let ((frame-type (framep-on-display display)))
1455 (cond
9e2a2647 1456 ((memq frame-type '(x w32 ns))
9911648b
EZ
1457 (x-display-backing-store display))
1458 (t
1459 'not-useful))))
1460
aa360da1
GM
1461(declare-function x-display-save-under "xfns.c" (&optional terminal))
1462
9911648b
EZ
1463(defun display-save-under (&optional display)
1464 "Return non-nil if DISPLAY's screen supports the SaveUnder feature."
1465 (let ((frame-type (framep-on-display display)))
1466 (cond
9e2a2647 1467 ((memq frame-type '(x w32 ns))
9911648b
EZ
1468 (x-display-save-under display))
1469 (t
1470 'not-useful))))
1471
aa360da1
GM
1472(declare-function x-display-planes "xfns.c" (&optional terminal))
1473
9911648b
EZ
1474(defun display-planes (&optional display)
1475 "Return the number of planes supported by DISPLAY."
1476 (let ((frame-type (framep-on-display display)))
1477 (cond
9e2a2647 1478 ((memq frame-type '(x w32 ns))
9911648b
EZ
1479 (x-display-planes display))
1480 ((eq frame-type 'pc)
1481 4)
1482 (t
1483 (truncate (log (length (tty-color-alist)) 2))))))
1484
aa360da1
GM
1485(declare-function x-display-color-cells "xfns.c" (&optional terminal))
1486
9911648b
EZ
1487(defun display-color-cells (&optional display)
1488 "Return the number of color cells supported by DISPLAY."
1489 (let ((frame-type (framep-on-display display)))
1490 (cond
9e2a2647 1491 ((memq frame-type '(x w32 ns))
9911648b
EZ
1492 (x-display-color-cells display))
1493 ((eq frame-type 'pc)
1494 16)
1495 (t
3224dac1 1496 (tty-display-color-cells display)))))
9911648b 1497
aa360da1
GM
1498(declare-function x-display-visual-class "xfns.c" (&optional terminal))
1499
9911648b 1500(defun display-visual-class (&optional display)
6cda144f 1501 "Return the visual class of DISPLAY.
9911648b
EZ
1502The value is one of the symbols `static-gray', `gray-scale',
1503`static-color', `pseudo-color', `true-color', or `direct-color'."
1504 (let ((frame-type (framep-on-display display)))
1505 (cond
9e2a2647 1506 ((memq frame-type '(x w32 ns))
9911648b
EZ
1507 (x-display-visual-class display))
1508 ((and (memq frame-type '(pc t))
1509 (tty-display-color-p display))
1510 'static-color)
1511 (t
1512 'static-gray))))
1513
4e3f9230
YM
1514(declare-function x-display-monitor-attributes-list "xfns.c"
1515 (&optional terminal))
cf13177e
YM
1516(declare-function w32-display-monitor-attributes-list "w32fns.c"
1517 (&optional display))
f20def1f 1518(declare-function ns-display-monitor-attributes-list "nsfns.m"
4465bfb4 1519 (&optional terminal))
4e3f9230
YM
1520
1521(defun display-monitor-attributes-list (&optional display)
1522 "Return a list of physical monitor attributes on DISPLAY.
1523Each element of the list represents the attributes of each
1524physical monitor. The first element corresponds to the primary
1525monitor.
1526
1527Attributes for a physical monitor is represented as an alist of
1528attribute keys and values as follows:
1529
1530 geometry -- Position and size in pixels in the form of
1531 (X Y WIDTH HEIGHT)
1532 workarea -- Position and size of the workarea in pixels in the
1533 form of (X Y WIDTH HEIGHT)
1534 mm-size -- Width and height in millimeters in the form of
1535 (WIDTH HEIGHT)
1536 frames -- List of frames dominated by the physical monitor
1537 name (*) -- Name of the physical monitor as a string
1538
1539where X, Y, WIDTH, and HEIGHT are integers. Keys labeled
1540with (*) are optional.
1541
1542A frame is dominated by a physical monitor when either the
1543largest area of the frame resides in the monitor, or the monitor
1544is the closest to the frame if the frame does not intersect any
1545physical monitors. Every non-tip frame (including invisible one)
1546in a graphical display is dominated by exactly one physical
1547monitor at a time, though it can span multiple (or no) physical
1548monitors."
1549 (let ((frame-type (framep-on-display display)))
1550 (cond
1551 ((eq frame-type 'x)
1552 (x-display-monitor-attributes-list display))
cf13177e
YM
1553 ((eq frame-type 'w32)
1554 (w32-display-monitor-attributes-list display))
4465bfb4
JD
1555 ((eq frame-type 'ns)
1556 (ns-display-monitor-attributes-list display))
4e3f9230
YM
1557 (t
1558 (let ((geometry (list 0 0 (display-pixel-width display)
1559 (display-pixel-height display))))
1560 `(((geometry . ,geometry)
1561 (workarea . ,geometry)
1562 (mm-size . (,(display-mm-width display)
1563 ,(display-mm-height display)))
1564 (frames . ,(frames-on-display-list display)))))))))
1565
9911648b 1566\f
a32c1804
RS
1567;;;; Frame geometry values
1568
1569(defun frame-geom-value-cons (type value &optional frame)
1570 "Return equivalent geometry value for FRAME as a cons with car `+'.
1571A geometry value equivalent to VALUE for FRAME is returned,
1572where the value is a cons with car `+', not numeric.
1573TYPE is the car of the original geometry spec (TYPE . VALUE).
1574 It is `top' or `left', depending on which edge VALUE is related to.
1575VALUE is the cdr of a frame geometry spec: (left/top . VALUE).
1576If VALUE is a number, then it is converted to a cons value, perhaps
1577 relative to the opposite frame edge from that in the original spec.
1578FRAME defaults to the selected frame.
1579
1580Examples (measures in pixels) -
1581 Assuming display height/width=1024, frame height/width=600:
1582 300 inside display edge: 300 => (+ 300)
1583 (+ 300) => (+ 300)
1584 300 inside opposite display edge: (- 300) => (+ 124)
1585 -300 => (+ 124)
1586 300 beyond display edge
1587 (= 724 inside opposite display edge): (+ -300) => (+ -300)
1588 300 beyond display edge
1589 (= 724 inside opposite display edge): (- -300) => (+ 724)
1590
1591In the 3rd, 4th, and 6th examples, the returned value is relative to
1592the opposite frame edge from the edge indicated in the input spec."
1593 (cond ((and (consp value) (eq '+ (car value))) ; e.g. (+ 300), (+ -300)
1594 value)
1595 ((natnump value) (list '+ value)) ; e.g. 300 => (+ 300)
1596 (t ; e.g. -300, (- 300), (- -300)
1597 (list '+ (- (if (eq 'left type) ; => (+ 124), (+ 124), (+ 724)
1598 (x-display-pixel-width)
1599 (x-display-pixel-height))
1600 (if (integerp value) (- value) (cadr value))
1601 (if (eq 'left type)
1602 (frame-pixel-width frame)
1603 (frame-pixel-height frame)))))))
1604
1605(defun frame-geom-spec-cons (spec &optional frame)
1606 "Return equivalent geometry spec for FRAME as a cons with car `+'.
1607A geometry specification equivalent to SPEC for FRAME is returned,
1608where the value is a cons with car `+', not numeric.
1609SPEC is a frame geometry spec: (left . VALUE) or (top . VALUE).
1610If VALUE is a number, then it is converted to a cons value, perhaps
1611 relative to the opposite frame edge from that in the original spec.
1612FRAME defaults to the selected frame.
1613
1614Examples (measures in pixels) -
1615 Assuming display height=1024, frame height=600:
1616 top 300 below display top: (top . 300) => (top + 300)
1617 (top + 300) => (top + 300)
1618 bottom 300 above display bottom: (top - 300) => (top + 124)
1619 (top . -300) => (top + 124)
1620 top 300 above display top
1621 (= bottom 724 above display bottom): (top + -300) => (top + -300)
1622 bottom 300 below display bottom
1623 (= top 724 below display top): (top - -300) => (top + 724)
1624
1625In the 3rd, 4th, and 6th examples, the returned value is relative to
1626the opposite frame edge from the edge indicated in the input spec."
06b60517 1627 (cons (car spec) (frame-geom-value-cons (car spec) (cdr spec) frame)))
a32c1804 1628\f
9e2b097b 1629
154a757e 1630(defun delete-other-frames (&optional frame)
4a592f66 1631 "Delete all frames on the current terminal, except FRAME.
a2125918
GM
1632If FRAME uses another frame's minibuffer, the minibuffer frame is
1633left untouched. FRAME nil or omitted means use the selected frame."
154a757e
GM
1634 (interactive)
1635 (unless frame
1636 (setq frame (selected-frame)))
a2125918
GM
1637 (let* ((mini-frame (window-frame (minibuffer-window frame)))
1638 (frames (delq mini-frame (delq frame (frame-list)))))
5e5ae184
SM
1639 ;; Only consider frames on the same terminal.
1640 (dolist (frame (prog1 frames (setq frames nil)))
1641 (if (eq (frame-terminal) (frame-terminal frame))
1642 (push frame frames)))
a2125918
GM
1643 ;; Delete mon-minibuffer-only frames first, because `delete-frame'
1644 ;; signals an error when trying to delete a mini-frame that's
1645 ;; still in use by another frame.
1646 (dolist (frame frames)
1647 (unless (eq (frame-parameter frame 'minibuffer) 'only)
1648 (delete-frame frame)))
1649 ;; Delete minibuffer-only frames.
1650 (dolist (frame frames)
1651 (when (eq (frame-parameter frame 'minibuffer) 'only)
1652 (delete-frame frame)))))
154a757e 1653
da7829a3 1654;; miscellaneous obsolescence declarations
84ed1560
JB
1655(define-obsolete-variable-alias 'delete-frame-hook
1656 'delete-frame-functions "22.1")
da7829a3 1657
dc6d9681 1658\f
7e573c4a 1659;; Blinking cursor
81b99826
GM
1660
1661(defgroup cursor nil
ca693be8 1662 "Displaying text cursors."
40d34803 1663 :version "21.1"
81b99826
GM
1664 :group 'frames)
1665
1666(defcustom blink-cursor-delay 0.5
6cda144f 1667 "Seconds of idle time after which cursor starts to blink."
81b99826
GM
1668 :type 'number
1669 :group 'cursor)
1670
1671(defcustom blink-cursor-interval 0.5
6cda144f 1672 "Length of cursor blink interval in seconds."
81b99826
GM
1673 :type 'number
1674 :group 'cursor)
1675
18c26d81
JD
1676(defcustom blink-cursor-blinks 10
1677 "How many times to blink before using a solid cursor on NS and X.
1678Use 0 or negative value to blink forever."
1679 :version "24.4"
1680 :type 'integer
1681 :group 'cursor)
1682
1683(defvar blink-cursor-blinks-done 1
1684 "Number of blinks done since we started blinking on NS and X")
1685
81b99826 1686(defvar blink-cursor-idle-timer nil
ca693be8
GM
1687 "Timer started after `blink-cursor-delay' seconds of Emacs idle time.
1688The function `blink-cursor-start' is called when the timer fires.")
81b99826
GM
1689
1690(defvar blink-cursor-timer nil
ca693be8 1691 "Timer started from `blink-cursor-start'.
a795e09a
LT
1692This timer calls `blink-cursor-timer-function' every
1693`blink-cursor-interval' seconds.")
1694
81b99826 1695(defun blink-cursor-start ()
ca693be8
GM
1696 "Timer function called from the timer `blink-cursor-idle-timer'.
1697This starts the timer `blink-cursor-timer', which makes the cursor blink
1698if appropriate. It also arranges to cancel that timer when the next
1699command starts, by installing a pre-command hook."
81b99826 1700 (when (null blink-cursor-timer)
f9ac92c5
CY
1701 ;; Set up the timer first, so that if this signals an error,
1702 ;; blink-cursor-end is not added to pre-command-hook.
18c26d81 1703 (setq blink-cursor-blinks-done 1)
81b99826
GM
1704 (setq blink-cursor-timer
1705 (run-with-timer blink-cursor-interval blink-cursor-interval
f9ac92c5
CY
1706 'blink-cursor-timer-function))
1707 (add-hook 'pre-command-hook 'blink-cursor-end)
1708 (internal-show-cursor nil nil)))
0a5ebe4b
GM
1709
1710(defun blink-cursor-timer-function ()
1711 "Timer function of timer `blink-cursor-timer'."
18c26d81
JD
1712 (internal-show-cursor nil (not (internal-show-cursor-p)))
1713 ;; Each blink is two calls to this function.
945c5bb1 1714 (when (memq window-system '(x ns w32))
18c26d81
JD
1715 (setq blink-cursor-blinks-done (1+ blink-cursor-blinks-done))
1716 (when (and (> blink-cursor-blinks 0)
1717 (<= (* 2 blink-cursor-blinks) blink-cursor-blinks-done))
1718 (blink-cursor-suspend)
1719 (add-hook 'post-command-hook 'blink-cursor-check))))
1720
81b99826
GM
1721
1722(defun blink-cursor-end ()
1723 "Stop cursor blinking.
ca693be8 1724This is installed as a pre-command hook by `blink-cursor-start'.
f39784dd 1725When run, it cancels the timer `blink-cursor-timer' and removes
ca693be8 1726itself as a pre-command hook."
81b99826 1727 (remove-hook 'pre-command-hook 'blink-cursor-end)
0a5ebe4b 1728 (internal-show-cursor nil t)
8ec94c16
SM
1729 (when blink-cursor-timer
1730 (cancel-timer blink-cursor-timer)
1731 (setq blink-cursor-timer nil)))
81b99826 1732
18c26d81 1733(defun blink-cursor-suspend ()
945c5bb1 1734 "Suspend cursor blinking on NS, X and W32.
18c26d81
JD
1735This is called when no frame has focus and timers can be suspended.
1736Timers are restarted by `blink-cursor-check', which is called when a
1737frame receives focus."
945c5bb1 1738 (when (memq window-system '(x ns w32))
18c26d81
JD
1739 (blink-cursor-end)
1740 (when blink-cursor-idle-timer
1741 (cancel-timer blink-cursor-idle-timer)
1742 (setq blink-cursor-idle-timer nil))))
1743
1744(defun blink-cursor-check ()
02c66599 1745 "Check if cursor blinking shall be restarted.
18c26d81
JD
1746This is done when a frame gets focus. Blink timers may be stopped by
1747`blink-cursor-suspend'."
1748 (when (and blink-cursor-mode
1749 (not blink-cursor-idle-timer))
1750 (remove-hook 'post-command-hook 'blink-cursor-check)
1751 (setq blink-cursor-idle-timer
1752 (run-with-idle-timer blink-cursor-delay
1753 blink-cursor-delay
1754 'blink-cursor-start))))
1755
e5bd0a28
SM
1756(define-obsolete-variable-alias 'blink-cursor 'blink-cursor-mode "22.1")
1757
8ec94c16 1758(define-minor-mode blink-cursor-mode
06e21633
CY
1759 "Toggle cursor blinking (Blink Cursor mode).
1760With a prefix argument ARG, enable Blink Cursor mode if ARG is
1761positive, and disable it otherwise. If called from Lisp, enable
1762the mode if ARG is omitted or nil.
1763
1764This command is effective only on graphical frames. On text-only
1765terminals, cursor blinking is controlled by the terminal."
8ec94c16
SM
1766 :init-value (not (or noninteractive
1767 no-blinking-cursor
1768 (eq system-type 'ms-dos)
0afb6242 1769 (not (memq window-system '(x w32 ns)))))
adba8116 1770 :initialize 'custom-initialize-delay
8ec94c16
SM
1771 :group 'cursor
1772 :global t
1773 (if blink-cursor-idle-timer (cancel-timer blink-cursor-idle-timer))
1774 (setq blink-cursor-idle-timer nil)
1775 (blink-cursor-end)
1776 (when blink-cursor-mode
1777 ;; Hide the cursor.
1778 ;;(internal-show-cursor nil nil)
1779 (setq blink-cursor-idle-timer
1780 (run-with-idle-timer blink-cursor-delay
1781 blink-cursor-delay
1782 'blink-cursor-start))))
81b99826 1783
81b99826 1784\f
a45b7647 1785;; Frame maximization/fullscreen
37f38bca
SS
1786
1787(defun toggle-frame-maximized ()
a45b7647
JL
1788 "Toggle maximization state of the selected frame.
1789Maximize the selected frame or un-maximize if it is already maximized.
1790Respect window manager screen decorations.
1791If the frame is in fullscreen mode, don't change its mode,
1792just toggle the temporary frame parameter `maximized',
1793so the frame will go to the right maximization state
1794after disabling fullscreen mode.
1795See also `toggle-frame-fullscreen'."
37f38bca 1796 (interactive)
64ced394 1797 (if (memq (frame-parameter nil 'fullscreen) '(fullscreen fullboth))
a45b7647
JL
1798 (modify-frame-parameters
1799 nil
1800 `((maximized
1801 . ,(unless (eq (frame-parameter nil 'maximized) 'maximized)
1802 'maximized))))
1803 (modify-frame-parameters
1804 nil
1805 `((fullscreen
1806 . ,(unless (eq (frame-parameter nil 'fullscreen) 'maximized)
1807 'maximized))))))
1808
1809(defun toggle-frame-fullscreen ()
1810 "Toggle fullscreen mode of the selected frame.
1811Enable fullscreen mode of the selected frame or disable if it is
1812already fullscreen. Ignore window manager screen decorations.
1813When turning on fullscreen mode, remember the previous value of the
1814maximization state in the temporary frame parameter `maximized'.
1815Restore the maximization state when turning off fullscreen mode.
37f38bca
SS
1816See also `toggle-frame-maximized'."
1817 (interactive)
1818 (modify-frame-parameters
a45b7647
JL
1819 nil
1820 `((maximized
64ced394 1821 . ,(unless (memq (frame-parameter nil 'fullscreen) '(fullscreen fullboth))
a45b7647
JL
1822 (frame-parameter nil 'fullscreen)))
1823 (fullscreen
64ced394 1824 . ,(if (memq (frame-parameter nil 'fullscreen) '(fullscreen fullboth))
a45b7647
JL
1825 (if (eq (frame-parameter nil 'maximized) 'maximized)
1826 'maximized)
1827 'fullscreen)))))
37f38bca
SS
1828
1829\f
64c669bc 1830;;;; Key bindings
64c669bc 1831
6238bfaf 1832(define-key ctl-x-5-map "2" 'make-frame-command)
154a757e 1833(define-key ctl-x-5-map "1" 'delete-other-frames)
dc6d9681 1834(define-key ctl-x-5-map "0" 'delete-frame)
ceab6935 1835(define-key ctl-x-5-map "o" 'other-frame)
a45b7647
JL
1836(define-key global-map [f11] 'toggle-frame-fullscreen)
1837(define-key global-map [(meta f10)] 'toggle-frame-maximized)
c84b0881 1838(define-key esc-map [f10] 'toggle-frame-maximized)
49116ac0 1839
7a76850c
CY
1840\f
1841;; Misc.
1842
2a1e2476 1843;; Only marked as obsolete in 24.3.
e5bd0a28
SM
1844(define-obsolete-variable-alias 'automatic-hscrolling
1845 'auto-hscroll-mode "22.1")
7a76850c
CY
1846
1847(make-variable-buffer-local 'show-trailing-whitespace)
1848
3424a4f6
CY
1849;; Defined in dispnew.c.
1850(make-obsolete-variable
1851 'window-system-version "it does not give useful information." "24.3")
1852
dc6d9681 1853(provide 'frame)
c88ab9ce 1854
dc6d9681 1855;;; frame.el ends here