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