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