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