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