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