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