]> code.delx.au - gnu-emacs/blob - lisp/frame.el
Merged in changes from CVS trunk.
[gnu-emacs] / lisp / frame.el
1 ;;; frame.el --- multi-frame management independent of window systems
2
3 ;; Copyright (C) 1993, 1994, 1996, 1997, 2000, 2001, 2003, 2004
4 ;; Free Software Foundation, Inc.
5
6 ;; Maintainer: FSF
7 ;; Keywords: internal
8
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.
25
26 ;;; Commentary:
27
28 ;;; Code:
29
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.
38 The window system startup file should add its frame creation
39 function to this list, which should take an alist of parameters
40 as its argument.")
41
42 (defvar window-system-default-frame-alist nil
43 "Alist of window-system dependent default frame parameters.
44 These 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
51 Also see `default-frame-alist'.")
52
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.
56 (defcustom initial-frame-alist nil
57 "*Alist of frame parameters for creating the initial X window frame.
58 You can set this in your `.emacs' file; for example,
59 (setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
60 Parameters specified here supersede the values given in `default-frame-alist'.
61
62 If the value calls for a frame without a minibuffer, and you have not created
63 a minibuffer frame on your own, one is created according to
64 `minibuffer-frame-alist'.
65
66 You can specify geometry-related options for just the initial frame
67 by setting this variable in your `.emacs' file; however, they won't
68 take effect until Emacs reads `.emacs', which happens after first creating
69 the frame. If you want the frame to have the proper geometry as soon
70 as 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,
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)
80
81 (defcustom minibuffer-frame-alist '((width . 80) (height . 2))
82 "*Alist of frame parameters for initially creating a minibuffer frame.
83 You can set this in your `.emacs' file; for example,
84 (setq minibuffer-frame-alist
85 '((top . 1) (left . 1) (width . 80) (height . 2)))
86 Parameters specified here supersede the values given in
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)
92
93 (defcustom pop-up-frame-alist nil
94 "*Alist of frame parameters used when creating pop-up frames.
95 Pop-up frames are used for completions, help, and the like.
96 This variable can be set in your init file, like this:
97 (setq pop-up-frame-alist '((width . 80) (height . 20)))
98 These supersede the values given in `default-frame-alist',
99 for pop-up frames."
100 :type '(repeat (cons :format "%v"
101 (symbol :tag "Parameter")
102 (sexp :tag "Value")))
103 :group 'frames)
104
105 (setq pop-up-frame-function
106 ;; Using `function' here caused some sort of problem.
107 '(lambda ()
108 (make-frame pop-up-frame-alist)))
109
110 (defcustom special-display-frame-alist
111 '((height . 14) (width . 80) (unsplittable . t))
112 "*Alist of frame parameters used when creating special frames.
113 Special frames are used for buffers whose names are in
114 `special-display-buffer-names' and for buffers whose names match
115 one of the regular expressions in `special-display-regexps'.
116 This variable can be set in your init file, like this:
117 (setq special-display-frame-alist '((width . 80) (height . 20)))
118 These 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)
123
124 (defun special-display-popup-frame (buffer &optional args)
125 "Display BUFFER in its own frame, reusing an existing window if any.
126 Return the window chosen.
127 Currently we do not insist on selecting the window within its frame.
128 If ARGS is an alist, use it as a list of frame parameter specs.
129 If ARGS is a list whose car is a symbol,
130 use (car ARGS) as a function to do the work.
131 Pass it BUFFER as first arg, and (cdr ARGS) gives the rest of the args."
132 (if (and args (symbolp (car args)))
133 (apply (car args) buffer (cdr args))
134 (let ((window (get-buffer-window buffer 0)))
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)))
152 ;; Only do it if this is a new window:
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))))))
160
161 (defun handle-delete-frame (event)
162 "Handle delete-frame events from the X server."
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)
174 ;; Gildea@x.org says it is ok to ask questions before terminating.
175 (save-buffers-kill-emacs))))
176 \f
177 ;;;; Arrangement of frames at startup
178
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.
187
188 ;; These are now called explicitly at the proper times,
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)
193
194 ;; If we create the initial frame, this is it.
195 (defvar frame-initial-frame nil)
196
197 ;; Record the parameters used in frame-initialize to make the initial frame.
198 (defvar frame-initial-frame-alist)
199
200 (defvar frame-initial-geometry-arguments nil)
201
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.
205 (defun frame-initialize ()
206 "Create an initial frame if necessary."
207 ;; Are we actually running under a window system at all?
208 (if (and initial-window-system
209 (not noninteractive)
210 (not (eq initial-window-system 'pc)))
211 (progn
212 ;; Turn on special-display processing only if there's a window system.
213 (setq special-display-function 'special-display-popup-frame)
214
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))
220 (progn
221 (setq frame-initial-frame-alist
222 (append initial-frame-alist default-frame-alist nil))
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)))
227 (setq frame-initial-frame-alist
228 (cons (cons 'window-system initial-window-system)
229 frame-initial-frame-alist))
230 (setq default-minibuffer-frame
231 (setq frame-initial-frame
232 (make-frame frame-initial-frame-alist)))
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.
237 (setq initial-frame-alist
238 (frame-remove-geometry-params initial-frame-alist))))
239 ;; At this point, we know that we have a frame open, so we
240 ;; can delete the terminal frame.
241 (delete-frame terminal-frame)
242 (setq terminal-frame nil))))
243
244 (defvar frame-notice-user-settings t
245 "Non-nil means function `frame-notice-user-settings' wasn't run yet.")
246
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.
250 (defun frame-notice-user-settings ()
251 "Act on user's init file settings of frame parameters.
252 React to settings of `default-frame-alist', `initial-frame-alist' there."
253 ;; Make menu-bar-mode and default-frame-alist consistent.
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)))))
261
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
265 ;; what we want.
266 (when (and (boundp 'tool-bar-mode)
267 (not noninteractive))
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)))))
274
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
282 (when (and frame-notice-user-settings
283 (null frame-initial-frame))
284 ;; This case happens when we don't have a window system, and
285 ;; also for MS-DOS frames.
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
292 (if (null initial-window-system)
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))
301 (if (null initial-window-system) ;; MS-DOS does this differently in pc-win.el
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))))))
313
314 ;; If the initial frame is still around, apply initial-frame-alist
315 ;; and default-frame-alist to it.
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.
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))))
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))))
328 (let* ((char-height (frame-char-height frame-initial-frame))
329 (image-height tool-bar-images-pixel-height)
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))
341 (lines (/ (+ image-height
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))))
348 (initial-top (cdr (assq 'top
349 frame-initial-geometry-arguments)))
350 (top (frame-parameter frame-initial-frame 'top)))
351 (when (and (consp initial-top) (eq '- (car initial-top)))
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))))
368 (modify-frame-parameters frame-initial-frame newparms)
369 (tool-bar-mode -1)))))
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.
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))
396
397 ;; Get rid of `name' unless it was specified explicitly before.
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))
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
493 ;; the init file. For those parms whose values we already knew
494 ;; (such as those spec'd by command line options)
495 ;; it is undesirable to specify the parm again
496 ;; once the user has seen the frame and been able to alter it
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)))))
517
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.
522 ;; Make sure frame-notice-user-settings does nothing if called twice.
523 (setq frame-notice-user-settings nil)
524 (setq frame-initial-frame nil)))
525
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
532 ;;;; Creation of additional frames, and other frame miscellanea
533
534 (defun modify-all-frames-parameters (alist)
535 "modify all current and future frames parameters according to ALIST.
536 This changes `default-frame-alist' and possibly `initial-frame-alist'.
537 See 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
554 (defun get-other-frame ()
555 "Return some frame other than the current frame.
556 Create one if necessary. Note that the minibuffer frame, if separate,
557 is not considered (see `next-frame')."
558 (let ((s (if (equal (next-frame (selected-frame)) (selected-frame))
559 (make-frame)
560 (next-frame (selected-frame)))))
561 s))
562
563 (defun next-multiframe-window ()
564 "Select the next window, regardless of which frame it is on."
565 (interactive)
566 (select-window (next-window (selected-window)
567 (> (minibuffer-depth) 0)
568 0))
569 (select-frame-set-input-focus (selected-frame)))
570
571 (defun previous-multiframe-window ()
572 "Select the previous window, regardless of which frame it is on."
573 (interactive)
574 (select-window (previous-window (selected-window)
575 (> (minibuffer-depth) 0)
576 0))
577 (select-frame-set-input-focus (selected-frame)))
578
579 (defun make-frame-on-display (display &optional parameters)
580 "Make a frame on X display DISPLAY.
581 The optional second argument PARAMETERS specifies additional frame parameters."
582 (interactive "sMake frame on display: ")
583 (or (string-match "\\`[^:]*:[0-9]+\\(\\.[0-9]+\\)?\\'" display)
584 (error "Invalid display, not HOST:SERVER or HOST:SERVER.SCREEN"))
585 (unless x-initialized
586 (setq x-display-name display)
587 (x-initialize-window-system))
588 (make-frame `((window-system . x) (display . ,display) . ,parameters)))
589
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\").
592 The optional third argument PARAMETERS specifies additional frame parameters."
593 (interactive "fOpen frame on tty device: \nsTerminal type of %s: ")
594 (unless device
595 (error "Invalid terminal device"))
596 (unless type
597 (error "Invalid terminal type"))
598 (make-frame `((window-system . nil) (tty . ,device) (tty-type . ,type) . ,parameters)))
599
600 (defun make-frame-command ()
601 "Make a new frame, and select it if the terminal displays only one frame."
602 (interactive)
603 (if (and window-system (not (eq window-system 'pc)))
604 (make-frame)
605 (select-frame (make-frame))))
606
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.
612 The functions are run with one arg, the newly created frame.")
613
614 (defvar after-setting-font-hook nil
615 "Functions to run after a frame's font has been changed.")
616
617 ;; Alias, kept temporarily.
618 (defalias 'new-frame 'make-frame)
619 (make-obsolete 'new-frame 'make-frame "21.4")
620
621 (defun make-frame (&optional parameters)
622 "Return a newly created frame displaying the current buffer.
623 Optional argument PARAMETERS is an alist of parameters for the new frame.
624 Each element of PARAMETERS should have the form (NAME . VALUE), for example:
625
626 (name . STRING) The frame should be named STRING.
627
628 (width . NUMBER) The frame should be NUMBER characters in width.
629 (height . NUMBER) The frame should be NUMBER text lines high.
630
631 You cannot specify either `width' or `height', you must use neither or both.
632
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.
637
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
641 (display-id . ID) The frame should use the display identified by ID.
642
643 Before the frame is created (via `frame-creation-function-alist'), functions on the
644 hook `before-make-frame-hook' are run. After the frame is created, functions
645 on `after-make-frame-functions' are run with one arg, the newly created frame."
646 (interactive)
647 (let* ((w (cond
648 ((assq 'display-id parameters)
649 (let ((type (display-live-p (cdr (assq 'display-id parameters)))))
650 (cond
651 ((eq type t) nil)
652 ((eq type nil) (error "Display %s does not exist" (cdr (assq 'display-id parameters))))
653 (t type))))
654 ((assq 'window-system parameters)
655 (cdr (assq 'window-system parameters)))
656 (t window-system)))
657 (frame-creation-function (cdr (assq w frame-creation-function-alist)))
658 frame)
659 (unless frame-creation-function
660 (error "Don't know how to create a frame on window system %s" w))
661 (run-hooks 'before-make-frame-hook)
662 (setq frame (funcall frame-creation-function parameters))
663 (modify-frame-parameters frame
664 (cdr (assq w window-system-default-frame-alist)))
665 (run-hook-with-args 'after-make-frame-functions frame)
666 frame))
667
668 (defun filtered-frame-list (predicate)
669 "Return a list of all live frames which satisfy PREDICATE."
670 (let* ((frames (frame-list))
671 (list frames))
672 (while (consp frames)
673 (unless (funcall predicate (car frames))
674 (setcar frames nil))
675 (setq frames (cdr frames)))
676 (delq nil list)))
677
678 (defun minibuffer-frame-list ()
679 "Return a list of all frames with their own minibuffers."
680 (filtered-frame-list
681 (function (lambda (frame)
682 (eq frame (window-frame (minibuffer-window frame)))))))
683
684 (defun frames-on-display-list (&optional display)
685 "Return a list of all frames on DISPLAY.
686
687 DISPLAY should be a display identifier (an integer), but it may
688 also be a name of a display, a string of the form HOST:SERVER.SCREEN.
689
690 If DISPLAY is omitted or nil, it defaults to the selected frame's display."
691 (let* ((display (or display (frame-display)))
692 (func #'(lambda (frame)
693 (or (eq (frame-display frame) display)
694 (equal (frame-parameter frame 'display) display)))))
695 (filtered-frame-list func)))
696
697 (defun framep-on-display (&optional display)
698 "Return the type of frames on DISPLAY.
699 DISPLAY may be a display id, a display name or a frame. If it is
700 a frame, its type is returned.
701 If DISPLAY is omitted or nil, it defaults to the selected frame's display.
702 All frames on a given display are of the same type."
703 (or (display-live-p display)
704 (framep display)
705 (framep (car (frames-on-display-list display)))))
706
707 (defun frame-remove-geometry-params (param-list)
708 "Return the parameter list PARAM-LIST, but with geometry specs removed.
709 This deletes all bindings in PARAM-LIST for `top', `left', `width',
710 `height', `user-size' and `user-position' parameters.
711 Emacs uses this to avoid overriding explicit moves and resizings from
712 the user during startup."
713 (setq param-list (cons nil param-list))
714 (let ((tail param-list))
715 (while (consp (cdr tail))
716 (if (and (consp (car (cdr tail)))
717 (memq (car (car (cdr tail)))
718 '(height width top left user-position user-size)))
719 (progn
720 (setq frame-initial-geometry-arguments
721 (cons (car (cdr tail)) frame-initial-geometry-arguments))
722 (setcdr tail (cdr (cdr tail))))
723 (setq tail (cdr tail)))))
724 (setq frame-initial-geometry-arguments
725 (nreverse frame-initial-geometry-arguments))
726 (cdr param-list))
727
728 (defcustom focus-follows-mouse t
729 "*Non-nil if window system changes focus when you move the mouse.
730 You should set this variable to tell Emacs how your window manager
731 handles focus, since there is no way in general for Emacs to find out
732 automatically."
733 :type 'boolean
734 :group 'frames
735 :version "20.3")
736
737 (defun select-frame-set-input-focus (frame)
738 "Select FRAME, raise it, and set input focus, if possible."
739 (select-frame frame)
740 (raise-frame frame)
741 ;; Ensure, if possible, that frame gets input focus.
742 (cond ((eq (window-system frame) 'x)
743 (x-focus-frame frame))
744 ((eq (window-system frame) 'w32)
745 (w32-focus-frame frame)))
746 (cond (focus-follows-mouse
747 (set-mouse-position (selected-frame) (1- (frame-width)) 0))))
748
749 (defun other-frame (arg)
750 "Select the ARG'th different visible frame on current display, and raise it.
751 All frames are arranged in a cyclic order.
752 This command selects the frame ARG steps away in that order.
753 A negative ARG moves in the opposite order.
754
755 To make this command work properly, you must tell Emacs
756 how the system (or the window manager) generally handles
757 focus-switching between windows. If moving the mouse onto a window
758 selects it (gives it focus), set `focus-follows-mouse' to t.
759 Otherwise, that variable should be nil."
760 (interactive "p")
761 (let ((frame (selected-frame)))
762 (while (> arg 0)
763 (setq frame (next-frame frame))
764 (while (not (eq (frame-visible-p frame) t))
765 (setq frame (next-frame frame)))
766 (setq arg (1- arg)))
767 (while (< arg 0)
768 (setq frame (previous-frame frame))
769 (while (not (eq (frame-visible-p frame) t))
770 (setq frame (previous-frame frame)))
771 (setq arg (1+ arg)))
772 (select-frame-set-input-focus frame)))
773
774 (defun iconify-or-deiconify-frame ()
775 "Iconify the selected frame, or deiconify if it's currently an icon."
776 (interactive)
777 (if (eq (cdr (assq 'visibility (frame-parameters))) t)
778 (iconify-frame)
779 (make-frame-visible)))
780
781 (defun suspend-frame ()
782 "Do whatever is right to suspend the current frame.
783 Calls `suspend-emacs' if invoked from the controlling terminal,
784 `suspend-tty' from a secondary terminal, and
785 `iconify-or-deiconify-frame' from an X frame."
786 (interactive)
787 (let ((type (framep (selected-frame))))
788 (cond
789 ((eq type 'x) (iconify-or-deiconify-frame))
790 ((eq type t)
791 (if (display-controlling-tty-p)
792 (suspend-emacs)
793 (suspend-tty)))
794 (t (suspend-emacs)))))
795
796
797 (defun make-frame-names-alist ()
798 (let* ((current-frame (selected-frame))
799 (falist
800 (cons
801 (cons (frame-parameter current-frame 'name) current-frame) nil))
802 (frame (next-frame nil t)))
803 (while (not (eq frame current-frame))
804 (progn
805 (setq falist (cons (cons (frame-parameter frame 'name) frame) falist))
806 (setq frame (next-frame frame t))))
807 falist))
808
809 (defvar frame-name-history nil)
810 (defun select-frame-by-name (name)
811 "Select the frame on the current terminal whose name is NAME and raise it.
812 If there is no frame by that name, signal an error."
813 (interactive
814 (let* ((frame-names-alist (make-frame-names-alist))
815 (default (car (car frame-names-alist)))
816 (input (completing-read
817 (format "Select Frame (default %s): " default)
818 frame-names-alist nil t nil 'frame-name-history)))
819 (if (= (length input) 0)
820 (list default)
821 (list input))))
822 (let* ((frame-names-alist (make-frame-names-alist))
823 (frame (cdr (assoc name frame-names-alist))))
824 (or frame
825 (error "There is no frame named `%s'" name))
826 (make-frame-visible frame)
827 (raise-frame frame)
828 (select-frame frame)
829 ;; Ensure, if possible, that frame gets input focus.
830 (cond ((eq (window-system frame) 'x)
831 (x-focus-frame frame))
832 ((eq (window-system frame) 'w32)
833 (w32-focus-frame frame)))
834 (when focus-follows-mouse
835 (set-mouse-position frame (1- (frame-width frame)) 0))))
836 \f
837 ;;;; Frame configurations
838
839 (defun current-frame-configuration ()
840 "Return a list describing the positions and states of all frames.
841 Its car is `frame-configuration'.
842 Each element of the cdr is a list of the form (FRAME ALIST WINDOW-CONFIG),
843 where
844 FRAME is a frame object,
845 ALIST is an association list specifying some of FRAME's parameters, and
846 WINDOW-CONFIG is a window configuration object for FRAME."
847 (cons 'frame-configuration
848 (mapcar (function
849 (lambda (frame)
850 (list frame
851 (frame-parameters frame)
852 (current-window-configuration frame))))
853 (frame-list))))
854
855 (defun set-frame-configuration (configuration &optional nodelete)
856 "Restore the frames to the state described by CONFIGURATION.
857 Each frame listed in CONFIGURATION has its position, size, window
858 configuration, and other parameters set as specified in CONFIGURATION.
859 Ordinarily, this function deletes all existing frames not
860 listed in CONFIGURATION. But if optional second argument NODELETE
861 is given and non-nil, the unwanted frames are iconified instead."
862 (or (frame-configuration-p configuration)
863 (signal 'wrong-type-argument
864 (list 'frame-configuration-p configuration)))
865 (let ((config-alist (cdr configuration))
866 frames-to-delete)
867 (mapcar (function
868 (lambda (frame)
869 (let ((parameters (assq frame config-alist)))
870 (if parameters
871 (progn
872 (modify-frame-parameters
873 frame
874 ;; Since we can't set a frame's minibuffer status,
875 ;; we might as well omit the parameter altogether.
876 (let* ((parms (nth 1 parameters))
877 (mini (assq 'minibuffer parms)))
878 (if mini (setq parms (delq mini parms)))
879 parms))
880 (set-window-configuration (nth 2 parameters)))
881 (setq frames-to-delete (cons frame frames-to-delete))))))
882 (frame-list))
883 (if nodelete
884 ;; Note: making frames invisible here was tried
885 ;; but led to some strange behavior--each time the frame
886 ;; was made visible again, the window manager asked afresh
887 ;; for where to put it.
888 (mapcar 'iconify-frame frames-to-delete)
889 (mapcar 'delete-frame frames-to-delete))))
890 \f
891 ;;;; Convenience functions for accessing and interactively changing
892 ;;;; frame parameters.
893
894 (defun frame-height (&optional frame)
895 "Return number of lines available for display on FRAME.
896 If FRAME is omitted, describe the currently selected frame."
897 (cdr (assq 'height (frame-parameters frame))))
898
899 (defun frame-width (&optional frame)
900 "Return number of columns available for display on FRAME.
901 If FRAME is omitted, describe the currently selected frame."
902 (cdr (assq 'width (frame-parameters frame))))
903
904 (defalias 'set-default-font 'set-frame-font)
905 (defun set-frame-font (font-name &optional keep-size)
906 "Set the font of the selected frame to FONT-NAME.
907 When called interactively, prompt for the name of the font to use.
908 To get the frame's current default font, use `frame-parameters'.
909
910 The default behavior is to keep the numbers of lines and columns in
911 the frame, thus may change its pixel size. If optional KEEP-SIZE is
912 non-nil (interactively, prefix argument) the current frame size (in
913 pixels) is kept by adjusting the numbers of the lines and columns."
914 (interactive
915 (let* ((completion-ignore-case t)
916 (font (completing-read "Font name: "
917 (mapcar #'list
918 ;; x-list-fonts will fail with an error
919 ;; if this frame doesn't support fonts.
920 (x-list-fonts "*" nil (selected-frame)))
921 nil nil nil nil
922 (frame-parameter nil 'font))))
923 (list font current-prefix-arg)))
924 (let (fht fwd)
925 (if keep-size
926 (setq fht (* (frame-parameter nil 'height) (frame-char-height))
927 fwd (* (frame-parameter nil 'width) (frame-char-width))))
928 (modify-frame-parameters (selected-frame)
929 (list (cons 'font font-name)))
930 (if keep-size
931 (modify-frame-parameters
932 (selected-frame)
933 (list (cons 'height (round fht (frame-char-height)))
934 (cons 'width (round fwd (frame-char-width)))))))
935 (run-hooks 'after-setting-font-hook 'after-setting-font-hooks))
936
937 (defun set-frame-parameter (frame parameter value)
938 (modify-frame-parameters frame (list (cons parameter value))))
939
940 (defun set-background-color (color-name)
941 "Set the background color of the selected frame to COLOR-NAME.
942 When called interactively, prompt for the name of the color to use.
943 To get the frame's current background color, use `frame-parameters'."
944 (interactive (list (facemenu-read-color)))
945 (modify-frame-parameters (selected-frame)
946 (list (cons 'background-color color-name)))
947 (or window-system
948 (face-set-after-frame-default (selected-frame))))
949
950 (defun set-foreground-color (color-name)
951 "Set the foreground color of the selected frame to COLOR-NAME.
952 When called interactively, prompt for the name of the color to use.
953 To get the frame's current foreground color, use `frame-parameters'."
954 (interactive (list (facemenu-read-color)))
955 (modify-frame-parameters (selected-frame)
956 (list (cons 'foreground-color color-name)))
957 (or window-system
958 (face-set-after-frame-default (selected-frame))))
959
960 (defun set-cursor-color (color-name)
961 "Set the text cursor color of the selected frame to COLOR-NAME.
962 When called interactively, prompt for the name of the color to use.
963 To get the frame's current cursor color, use `frame-parameters'."
964 (interactive (list (facemenu-read-color)))
965 (modify-frame-parameters (selected-frame)
966 (list (cons 'cursor-color color-name))))
967
968 (defun set-mouse-color (color-name)
969 "Set the color of the mouse pointer of the selected frame to COLOR-NAME.
970 When called interactively, prompt for the name of the color to use.
971 To get the frame's current mouse color, use `frame-parameters'."
972 (interactive (list (facemenu-read-color)))
973 (modify-frame-parameters (selected-frame)
974 (list (cons 'mouse-color
975 (or color-name
976 (cdr (assq 'mouse-color
977 (frame-parameters))))))))
978
979 (defun set-border-color (color-name)
980 "Set the color of the border of the selected frame to COLOR-NAME.
981 When called interactively, prompt for the name of the color to use.
982 To get the frame's current border color, use `frame-parameters'."
983 (interactive (list (facemenu-read-color)))
984 (modify-frame-parameters (selected-frame)
985 (list (cons 'border-color color-name))))
986
987 (defun auto-raise-mode (arg)
988 "Toggle whether or not the selected frame should auto-raise.
989 With arg, turn auto-raise mode on if and only if arg is positive.
990 Note that this controls Emacs's own auto-raise feature.
991 Some window managers allow you to enable auto-raise for certain windows.
992 You can use that for Emacs windows if you wish, but if you do,
993 that is beyond the control of Emacs and this command has no effect on it."
994 (interactive "P")
995 (if (null arg)
996 (setq arg
997 (if (cdr (assq 'auto-raise (frame-parameters (selected-frame))))
998 -1 1)))
999 (if (> arg 0)
1000 (raise-frame (selected-frame)))
1001 (modify-frame-parameters (selected-frame)
1002 (list (cons 'auto-raise (> arg 0)))))
1003
1004 (defun auto-lower-mode (arg)
1005 "Toggle whether or not the selected frame should auto-lower.
1006 With arg, turn auto-lower mode on if and only if arg is positive.
1007 Note that this controls Emacs's own auto-lower feature.
1008 Some window managers allow you to enable auto-lower for certain windows.
1009 You can use that for Emacs windows if you wish, but if you do,
1010 that is beyond the control of Emacs and this command has no effect on it."
1011 (interactive "P")
1012 (if (null arg)
1013 (setq arg
1014 (if (cdr (assq 'auto-lower (frame-parameters (selected-frame))))
1015 -1 1)))
1016 (modify-frame-parameters (selected-frame)
1017 (list (cons 'auto-lower (> arg 0)))))
1018 (defun set-frame-name (name)
1019 "Set the name of the selected frame to NAME.
1020 When called interactively, prompt for the name of the frame.
1021 The frame name is displayed on the modeline if the terminal displays only
1022 one frame, otherwise the name is displayed on the frame's caption bar."
1023 (interactive "sFrame name: ")
1024 (modify-frame-parameters (selected-frame)
1025 (list (cons 'name name))))
1026
1027 (defun frame-current-scroll-bars (&optional frame)
1028 "Return the current scroll-bar settings in frame FRAME.
1029 Value is a cons (VERTICAL . HORISONTAL) where VERTICAL specifies the
1030 current location of the vertical scroll-bars (left, right, or nil),
1031 and HORISONTAL specifies the current location of the horisontal scroll
1032 bars (top, bottom, or nil)."
1033 (let ((vert (frame-parameter frame 'vertical-scroll-bars))
1034 (hor nil))
1035 (unless (memq vert '(left right nil))
1036 (setq vert default-frame-scroll-bars))
1037 (cons vert hor)))
1038 \f
1039 ;;;; Frame/display capabilities.
1040 (defun selected-display ()
1041 "Return the display that is now selected."
1042 (frame-display (selected-frame)))
1043
1044 (defun display-mouse-p (&optional display)
1045 "Return non-nil if DISPLAY has a mouse available.
1046 DISPLAY can be a display name, a frame, or nil (meaning the selected
1047 frame's display)."
1048 (let ((frame-type (framep-on-display display)))
1049 (cond
1050 ((eq frame-type 'pc)
1051 (msdos-mouse-p))
1052 ((eq system-type 'windows-nt)
1053 (> w32-num-mouse-buttons 0))
1054 ((memq frame-type '(x mac))
1055 t) ;; We assume X and Mac *always* have a pointing device
1056 (t
1057 (or (and (featurep 'xt-mouse)
1058 xterm-mouse-mode)
1059 ;; t-mouse is distributed with the GPM package. It doesn't have
1060 ;; a toggle.
1061 (featurep 't-mouse))))))
1062
1063 (defun display-popup-menus-p (&optional display)
1064 "Return non-nil if popup menus are supported on DISPLAY.
1065 DISPLAY can be a display name, a frame, or nil (meaning the selected
1066 frame's display).
1067 Support for popup menus requires that the mouse be available."
1068 (and
1069 (let ((frame-type (framep-on-display display)))
1070 (memq frame-type '(x w32 pc mac)))
1071 (display-mouse-p display)))
1072
1073 (defun display-graphic-p (&optional display)
1074 "Return non-nil if DISPLAY is a graphic display.
1075 Graphical displays are those which are capable of displaying several
1076 frames and several different fonts at once. This is true for displays
1077 that use a window system such as X, and false for text-only terminals.
1078 DISPLAY can be a display name, a frame, or nil (meaning the selected
1079 frame's display)."
1080 (not (null (memq (framep-on-display display) '(x w32 mac)))))
1081
1082 (defun display-images-p (&optional display)
1083 "Return non-nil if DISPLAY can display images.
1084
1085 DISPLAY can be a display name, a frame, or nil (meaning the selected
1086 frame's display)."
1087 (and (display-graphic-p display)
1088 (fboundp 'image-mask-p)
1089 (fboundp 'image-size)))
1090
1091 (defalias 'display-multi-frame-p 'display-graphic-p)
1092 (defalias 'display-multi-font-p 'display-graphic-p)
1093
1094 (defun display-selections-p (&optional display)
1095 "Return non-nil if DISPLAY supports selections.
1096 A selection is a way to transfer text or other data between programs
1097 via special system buffers called `selection' or `cut buffer' or
1098 `clipboard'.
1099 DISPLAY can be a display name, a frame, or nil (meaning the selected
1100 frame's display)."
1101 (let ((frame-type (framep-on-display display)))
1102 (cond
1103 ((eq frame-type 'pc)
1104 ;; MS-DOG frames support selections when Emacs runs inside
1105 ;; the Windows' DOS Box.
1106 (not (null dos-windows-version)))
1107 ((memq frame-type '(x w32 mac))
1108 t) ;; FIXME?
1109 (t
1110 nil))))
1111
1112 (defun display-screens (&optional display)
1113 "Return the number of screens associated with DISPLAY."
1114 (let ((frame-type (framep-on-display display)))
1115 (cond
1116 ((memq frame-type '(x w32))
1117 (x-display-screens display))
1118 (t ;; FIXME: is this correct for the Mac?
1119 1))))
1120
1121 (defun display-pixel-height (&optional display)
1122 "Return the height of DISPLAY's screen in pixels.
1123 For character terminals, each character counts as a single pixel."
1124 (let ((frame-type (framep-on-display display)))
1125 (cond
1126 ((memq frame-type '(x w32 mac))
1127 (x-display-pixel-height display))
1128 (t
1129 (frame-height (if (framep display) display (selected-frame)))))))
1130
1131 (defun display-pixel-width (&optional display)
1132 "Return the width of DISPLAY's screen in pixels.
1133 For character terminals, each character counts as a single pixel."
1134 (let ((frame-type (framep-on-display display)))
1135 (cond
1136 ((memq frame-type '(x w32 mac))
1137 (x-display-pixel-width display))
1138 (t
1139 (frame-width (if (framep display) display (selected-frame)))))))
1140
1141 (defun display-mm-height (&optional display)
1142 "Return the height of DISPLAY's screen in millimeters.
1143 If the information is unavailable, value is nil."
1144 (and (memq (framep-on-display display) '(x w32 mac))
1145 (x-display-mm-height display)))
1146
1147 (defun display-mm-width (&optional display)
1148 "Return the width of DISPLAY's screen in millimeters.
1149 If the information is unavailable, value is nil."
1150 (and (memq (framep-on-display display) '(x w32 mac))
1151 (x-display-mm-width display)))
1152
1153 (defun display-backing-store (&optional display)
1154 "Return the backing store capability of DISPLAY's screen.
1155 The value may be `always', `when-mapped', `not-useful', or nil if
1156 the question is inapplicable to a certain kind of display."
1157 (let ((frame-type (framep-on-display display)))
1158 (cond
1159 ((memq frame-type '(x w32 mac))
1160 (x-display-backing-store display))
1161 (t
1162 'not-useful))))
1163
1164 (defun display-save-under (&optional display)
1165 "Return non-nil if DISPLAY's screen supports the SaveUnder feature."
1166 (let ((frame-type (framep-on-display display)))
1167 (cond
1168 ((memq frame-type '(x w32 mac))
1169 (x-display-save-under display))
1170 (t
1171 'not-useful))))
1172
1173 (defun display-planes (&optional display)
1174 "Return the number of planes supported by DISPLAY."
1175 (let ((frame-type (framep-on-display display)))
1176 (cond
1177 ((memq frame-type '(x w32 mac))
1178 (x-display-planes display))
1179 ((eq frame-type 'pc)
1180 4)
1181 (t
1182 (truncate (log (length (tty-color-alist)) 2))))))
1183
1184 (defun display-color-cells (&optional display)
1185 "Return the number of color cells supported by DISPLAY."
1186 (let ((frame-type (framep-on-display display)))
1187 (cond
1188 ((memq frame-type '(x w32 mac))
1189 (x-display-color-cells display))
1190 ((eq frame-type 'pc)
1191 16)
1192 (t
1193 (tty-display-color-cells display)))))
1194
1195 (defun display-visual-class (&optional display)
1196 "Returns the visual class of DISPLAY.
1197 The value is one of the symbols `static-gray', `gray-scale',
1198 `static-color', `pseudo-color', `true-color', or `direct-color'."
1199 (let ((frame-type (framep-on-display display)))
1200 (cond
1201 ((memq frame-type '(x w32 mac))
1202 (x-display-visual-class display))
1203 ((and (memq frame-type '(pc t))
1204 (tty-display-color-p display))
1205 'static-color)
1206 (t
1207 'static-gray))))
1208
1209 \f
1210 ;;;; Aliases for backward compatibility with Emacs 18.
1211 (defalias 'screen-height 'frame-height)
1212 (defalias 'screen-width 'frame-width)
1213
1214 (defun set-screen-width (cols &optional pretend)
1215 "Obsolete function to change the size of the screen to COLS columns.
1216 Optional second arg non-nil means that redisplay should use COLS columns
1217 but that the idea of the actual width of the frame should not be changed.
1218 This function is provided only for compatibility with Emacs 18; new code
1219 should use `set-frame-width instead'."
1220 (set-frame-width (selected-frame) cols pretend))
1221
1222 (defun set-screen-height (lines &optional pretend)
1223 "Obsolete function to change the height of the screen to LINES lines.
1224 Optional second arg non-nil means that redisplay should use LINES lines
1225 but that the idea of the actual height of the screen should not be changed.
1226 This function is provided only for compatibility with Emacs 18; new code
1227 should use `set-frame-height' instead."
1228 (set-frame-height (selected-frame) lines pretend))
1229
1230 (defun delete-other-frames (&optional frame)
1231 "Delete all frames except FRAME.
1232 If FRAME uses another frame's minibuffer, the minibuffer frame is
1233 left untouched. FRAME nil or omitted means use the selected frame."
1234 (interactive)
1235 (unless frame
1236 (setq frame (selected-frame)))
1237 (let* ((mini-frame (window-frame (minibuffer-window frame)))
1238 (frames (delq mini-frame (delq frame (frame-list)))))
1239 ;; Delete mon-minibuffer-only frames first, because `delete-frame'
1240 ;; signals an error when trying to delete a mini-frame that's
1241 ;; still in use by another frame.
1242 (dolist (frame frames)
1243 (unless (eq (frame-parameter frame 'minibuffer) 'only)
1244 (delete-frame frame)))
1245 ;; Delete minibuffer-only frames.
1246 (dolist (frame frames)
1247 (when (eq (frame-parameter frame 'minibuffer) 'only)
1248 (delete-frame frame)))))
1249
1250 (make-obsolete 'screen-height 'frame-height) ;before 19.15
1251 (make-obsolete 'screen-width 'frame-width) ;before 19.15
1252 (make-obsolete 'set-screen-width 'set-frame-width) ;before 19.15
1253 (make-obsolete 'set-screen-height 'set-frame-height) ;before 19.15
1254
1255 ;; miscellaneous obsolescence declarations
1256 (defvaralias 'delete-frame-hook 'delete-frame-functions)
1257 (make-obsolete-variable 'delete-frame-hook 'delete-frame-functions "21.4")
1258
1259 \f
1260 ;; Highlighting trailing whitespace.
1261
1262 (make-variable-buffer-local 'show-trailing-whitespace)
1263
1264 (defcustom show-trailing-whitespace nil
1265 "*Non-nil means highlight trailing whitespace.
1266 This is done in the face `trailing-whitespace'."
1267 :tag "Highlight trailing whitespace."
1268 :type 'boolean
1269 :group 'font-lock)
1270
1271
1272 \f
1273 ;; Scrolling
1274
1275 (defgroup scrolling nil
1276 "Scrolling windows."
1277 :version "21.1"
1278 :group 'frames)
1279
1280 (defcustom auto-hscroll-mode t
1281 "*Allow or disallow automatic scrolling windows horizontally.
1282 If non-nil, windows are automatically scrolled horizontally to make
1283 point visible."
1284 :version "21.1"
1285 :type 'boolean
1286 :group 'scrolling)
1287 (defvaralias 'automatic-hscrolling 'auto-hscroll-mode)
1288
1289 \f
1290 ;; Blinking cursor
1291
1292 (defgroup cursor nil
1293 "Displaying text cursors."
1294 :version "21.1"
1295 :group 'frames)
1296
1297 (defcustom blink-cursor-delay 0.5
1298 "*Seconds of idle time after which cursor starts to blink."
1299 :tag "Delay in seconds."
1300 :type 'number
1301 :group 'cursor)
1302
1303 (defcustom blink-cursor-interval 0.5
1304 "*Length of cursor blink interval in seconds."
1305 :tag "Blink interval in seconds."
1306 :type 'number
1307 :group 'cursor)
1308
1309 (defvar blink-cursor-idle-timer nil
1310 "Timer started after `blink-cursor-delay' seconds of Emacs idle time.
1311 The function `blink-cursor-start' is called when the timer fires.")
1312
1313 (defvar blink-cursor-timer nil
1314 "Timer started from `blink-cursor-start'.
1315 This timer calls `blink-cursor' every `blink-cursor-interval' seconds.")
1316
1317 (defvar blink-cursor-mode nil
1318 "Non-nil means blinking cursor is active.")
1319
1320 (defun blink-cursor-mode (arg)
1321 "Toggle blinking cursor mode.
1322 With a numeric argument, turn blinking cursor mode on iff ARG is positive.
1323 When blinking cursor mode is enabled, the cursor of the selected
1324 window blinks.
1325
1326 Note that this command is effective only when Emacs
1327 displays through a window system, because then Emacs does its own
1328 cursor display. On a text-only terminal, this is not implemented."
1329 (interactive "P")
1330 (let ((on-p (if (null arg)
1331 (not blink-cursor-mode)
1332 (> (prefix-numeric-value arg) 0))))
1333 (if blink-cursor-idle-timer
1334 (cancel-timer blink-cursor-idle-timer))
1335 (if blink-cursor-timer
1336 (cancel-timer blink-cursor-timer))
1337 (setq blink-cursor-idle-timer nil
1338 blink-cursor-timer nil
1339 blink-cursor-mode nil)
1340 (if on-p
1341 (progn
1342 ;; Hide the cursor.
1343 ;(internal-show-cursor nil nil)
1344 (setq blink-cursor-idle-timer
1345 (run-with-idle-timer blink-cursor-delay
1346 blink-cursor-delay
1347 'blink-cursor-start))
1348 (setq blink-cursor-mode t))
1349 (internal-show-cursor nil t))))
1350
1351 ;; Note that this is really initialized from startup.el before
1352 ;; the init-file is read.
1353
1354 (defcustom blink-cursor nil
1355 "*Non-nil means blinking cursor mode is active."
1356 :group 'cursor
1357 :tag "Blinking cursor"
1358 :type 'boolean
1359 :set #'(lambda (symbol value)
1360 (set-default symbol value)
1361 (blink-cursor-mode (or value 0))))
1362
1363 (defun blink-cursor-start ()
1364 "Timer function called from the timer `blink-cursor-idle-timer'.
1365 This starts the timer `blink-cursor-timer', which makes the cursor blink
1366 if appropriate. It also arranges to cancel that timer when the next
1367 command starts, by installing a pre-command hook."
1368 (when (null blink-cursor-timer)
1369 (add-hook 'pre-command-hook 'blink-cursor-end)
1370 (internal-show-cursor nil nil)
1371 (setq blink-cursor-timer
1372 (run-with-timer blink-cursor-interval blink-cursor-interval
1373 'blink-cursor-timer-function))))
1374
1375 (defun blink-cursor-timer-function ()
1376 "Timer function of timer `blink-cursor-timer'."
1377 (internal-show-cursor nil (not (internal-show-cursor-p))))
1378
1379 (defun blink-cursor-end ()
1380 "Stop cursor blinking.
1381 This is installed as a pre-command hook by `blink-cursor-start'.
1382 When run, it cancels the timer `blink-cursor-timer' and removes
1383 itself as a pre-command hook."
1384 (remove-hook 'pre-command-hook 'blink-cursor-end)
1385 (internal-show-cursor nil t)
1386 (cancel-timer blink-cursor-timer)
1387 (setq blink-cursor-timer nil))
1388
1389
1390 \f
1391 ;; Hourglass pointer
1392
1393 (defcustom display-hourglass t
1394 "*Non-nil means show an hourglass pointer when running under a window system."
1395 :tag "Hourglass pointer"
1396 :type 'boolean
1397 :group 'cursor)
1398
1399 (defcustom hourglass-delay 1
1400 "*Seconds to wait before displaying an hourglass pointer."
1401 :tag "Hourglass delay"
1402 :type 'number
1403 :group 'cursor)
1404
1405 \f
1406 (defcustom cursor-in-non-selected-windows t
1407 "*Non-nil means show a hollow box cursor in non-selected-windows.
1408 If nil, don't show a cursor except in the selected window.
1409 Use Custom to set this variable to get the display updated."
1410 :tag "Cursor in non-selected windows"
1411 :type 'boolean
1412 :group 'cursor
1413 :set #'(lambda (symbol value)
1414 (set-default symbol value)
1415 (force-mode-line-update t)))
1416
1417 \f
1418 ;;;; Key bindings
1419
1420 (define-key ctl-x-5-map "2" 'make-frame-command)
1421 (define-key ctl-x-5-map "1" 'delete-other-frames)
1422 (define-key ctl-x-5-map "0" 'delete-frame)
1423 (define-key ctl-x-5-map "o" 'other-frame)
1424
1425 (substitute-key-definition 'suspend-emacs 'suspend-frame global-map)
1426
1427 (provide 'frame)
1428
1429 ;;; arch-tag: 82979c70-b8f2-4306-b2ad-ddbd6b328b56
1430 ;;; frame.el ends here