1992-07-15 00:32:19 +00:00
|
|
|
|
;;; frame.el --- multi-frame management independent of window systems.
|
1992-05-30 21:11:25 +00:00
|
|
|
|
|
1994-05-03 23:47:06 +00:00
|
|
|
|
;;;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
|
1992-07-22 04:22:42 +00:00
|
|
|
|
|
1992-07-16 07:28:05 +00:00
|
|
|
|
;; Maintainer: FSF
|
1992-07-17 08:15:29 +00:00
|
|
|
|
;; Keywords: internal
|
1992-07-16 07:28:05 +00:00
|
|
|
|
|
1991-08-15 21:29:06 +00:00
|
|
|
|
;;; This file is part of GNU Emacs.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Emacs is free software; you can redistribute it and/or modify
|
|
|
|
|
;;; it under the terms of the GNU General Public License as published by
|
1992-07-16 21:47:30 +00:00
|
|
|
|
;;; the Free Software Foundation; either version 2, or (at your option)
|
1991-08-15 21:29:06 +00:00
|
|
|
|
;;; any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Emacs; see the file COPYING. If not, write to
|
|
|
|
|
;;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
|
1992-07-16 07:28:05 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(defvar frame-creation-function nil
|
|
|
|
|
"Window-system dependent function to call to create a new frame.
|
|
|
|
|
The window system startup file should set this to its frame creation
|
1991-08-15 21:29:06 +00:00
|
|
|
|
function, which should take an alist of parameters as its argument.")
|
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;;; The initial value given here for this must ask for a minibuffer.
|
|
|
|
|
;;; There must always exist a frame with a minibuffer, and after we
|
|
|
|
|
;;; delete the terminal frame, this will be the only frame.
|
1992-08-12 12:57:12 +00:00
|
|
|
|
(defvar initial-frame-alist '((minibuffer . t))
|
1993-03-02 07:06:47 +00:00
|
|
|
|
"Alist of frame parameters for creating the initial X window frame.
|
|
|
|
|
You can set this in your `.emacs' file; for example,
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq initial-frame-alist '((top . 1) (left . 1) (width . 80) (height . 55)))
|
1993-03-02 07:06:47 +00:00
|
|
|
|
If the value calls for a frame without a minibuffer, and you do not create a
|
|
|
|
|
minibuffer frame on your own, one is created according to
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
`minibuffer-frame-alist'.
|
1993-03-02 07:06:47 +00:00
|
|
|
|
Parameters specified here supersede the values given in
|
|
|
|
|
`default-frame-alist'.")
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(defvar minibuffer-frame-alist '((width . 80) (height . 2))
|
1993-03-02 07:06:47 +00:00
|
|
|
|
"Alist of frame parameters for initially creating a minibuffer frame.
|
|
|
|
|
You can set this in your `.emacs' file; for example,
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq minibuffer-frame-alist
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
'((top . 1) (left . 1) (width . 80) (height . 2)))
|
1993-03-02 07:06:47 +00:00
|
|
|
|
Parameters specified here supersede the values given in
|
|
|
|
|
`default-frame-alist'.")
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(defvar pop-up-frame-alist nil
|
1993-03-02 07:06:47 +00:00
|
|
|
|
"Alist of frame parameters used when creating pop-up frames.
|
1992-07-15 00:32:19 +00:00
|
|
|
|
Pop-up frames are used for completions, help, and the like.
|
1991-08-15 21:29:06 +00:00
|
|
|
|
This variable can be set in your init file, like this:
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq pop-up-frame-alist '((width . 80) (height . 20)))
|
1993-06-09 11:59:12 +00:00
|
|
|
|
These supersede the values given in `default-frame-alist'.")
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq pop-up-frame-function
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(function (lambda ()
|
1994-05-04 22:41:02 +00:00
|
|
|
|
(make-frame pop-up-frame-alist))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1994-04-23 21:38:16 +00:00
|
|
|
|
(defvar special-display-frame-alist
|
|
|
|
|
'((height . 14) (width . 80) (unsplittable . t))
|
|
|
|
|
"*Alist of frame parameters used when creating special frames.
|
|
|
|
|
Special frames are used for buffers whose names are in
|
|
|
|
|
`special-display-buffer-names' and for buffers whose names match
|
|
|
|
|
one of the regular expressions in `special-display-regexps'.
|
|
|
|
|
This variable can be set in your init file, like this:
|
|
|
|
|
(setq special-display-frame-alist '((width . 80) (height . 20)))
|
|
|
|
|
These supersede the values given in `default-frame-alist'.")
|
|
|
|
|
|
|
|
|
|
;; Display BUFFER in its own frame, reusing an existing window if any.
|
|
|
|
|
;; Return the window chosen.
|
|
|
|
|
;; Currently we do not insist on selecting the window within its frame.
|
|
|
|
|
(defun special-display-popup-frame (buffer)
|
|
|
|
|
(let ((window (get-buffer-window buffer t)))
|
|
|
|
|
(if window
|
|
|
|
|
;; If we have a window already, make it visible.
|
|
|
|
|
(let ((frame (window-frame window)))
|
|
|
|
|
(make-frame-visible frame)
|
|
|
|
|
(raise-frame frame)
|
|
|
|
|
window)
|
|
|
|
|
;; If no window yet, make one in a new frame.
|
1994-05-04 22:41:02 +00:00
|
|
|
|
(let ((frame (make-frame special-display-frame-alist)))
|
1994-04-23 21:38:16 +00:00
|
|
|
|
(set-window-buffer (frame-selected-window frame) buffer)
|
|
|
|
|
(set-window-dedicated-p (frame-selected-window frame) t)
|
|
|
|
|
(frame-selected-window frame)))))
|
|
|
|
|
|
|
|
|
|
(setq special-display-function 'special-display-popup-frame)
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;;; Arrangement of frames at startup
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
;;; 1) Load the window system startup file from the lisp library and read the
|
|
|
|
|
;;; high-priority arguments (-q and the like). The window system startup
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;; file should create any frames specified in the window system defaults.
|
1991-08-15 21:29:06 +00:00
|
|
|
|
;;;
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;; 2) If no frames have been opened, we open an initial text frame.
|
1991-08-15 21:29:06 +00:00
|
|
|
|
;;;
|
|
|
|
|
;;; 3) Once the init file is done, we apply any newly set parameters
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;; in initial-frame-alist to the frame.
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1993-05-13 03:23:40 +00:00
|
|
|
|
;; These are now called explicitly at the proper times,
|
|
|
|
|
;; since that is easier to understand.
|
|
|
|
|
;; Actually using hooks within Emacs is bad for future maintenance. --rms.
|
|
|
|
|
;; (add-hook 'before-init-hook 'frame-initialize)
|
|
|
|
|
;; (add-hook 'window-setup-hook 'frame-notice-user-settings)
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;; If we create the initial frame, this is it.
|
|
|
|
|
(defvar frame-initial-frame nil)
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1993-07-27 08:34:34 +00:00
|
|
|
|
;; Record the parameters used in frame-initialize to make the initial frame.
|
|
|
|
|
(defvar frame-initial-frame-alist)
|
|
|
|
|
|
1994-05-05 22:37:47 +00:00
|
|
|
|
(defvar frame-initial-geometry-arguments nil)
|
|
|
|
|
|
1991-08-15 21:29:06 +00:00
|
|
|
|
;;; startup.el calls this function before loading the user's init
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;; file - if there is no frame with a minibuffer open now, create
|
1991-08-15 21:29:06 +00:00
|
|
|
|
;;; one to display messages while loading the init file.
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(defun frame-initialize ()
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
;; Are we actually running under a window system at all?
|
|
|
|
|
(if (and window-system (not noninteractive))
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(progn
|
|
|
|
|
;; If there is no frame with a minibuffer besides the terminal
|
|
|
|
|
;; frame, then we need to create the opening frame. Make sure
|
|
|
|
|
;; it has a minibuffer, but let initial-frame-alist omit the
|
|
|
|
|
;; minibuffer spec.
|
|
|
|
|
(or (delq terminal-frame (minibuffer-frame-list))
|
1993-05-25 02:28:39 +00:00
|
|
|
|
(progn
|
1993-07-27 08:34:34 +00:00
|
|
|
|
(setq frame-initial-frame-alist
|
|
|
|
|
(append initial-frame-alist default-frame-alist))
|
1994-05-23 09:19:28 +00:00
|
|
|
|
;; Record these with their default values
|
|
|
|
|
;; if they don't have any values explicitly.
|
|
|
|
|
(or (assq 'vertical-scroll-bars frame-initial-frame-alist)
|
|
|
|
|
(setq frame-initial-frame-alist
|
|
|
|
|
(cons '(vertical-scroll-bars . t)
|
|
|
|
|
frame-initial-frame-alist)))
|
|
|
|
|
(or (assq 'horizontal-scroll-bars frame-initial-frame-alist)
|
|
|
|
|
(setq frame-initial-frame-alist
|
|
|
|
|
(cons '(horizontal-scroll-bars . t)
|
|
|
|
|
frame-initial-frame-alist)))
|
1993-05-25 02:28:39 +00:00
|
|
|
|
(setq default-minibuffer-frame
|
|
|
|
|
(setq frame-initial-frame
|
1994-05-04 22:41:02 +00:00
|
|
|
|
(make-frame initial-frame-alist)))
|
1993-06-02 19:10:31 +00:00
|
|
|
|
;; Delete any specifications for window geometry parameters
|
|
|
|
|
;; so that we won't reapply them in frame-notice-user-settings.
|
|
|
|
|
;; It would be wrong to reapply them then,
|
|
|
|
|
;; because that would override explicit user resizing.
|
1993-07-04 02:20:59 +00:00
|
|
|
|
(setq initial-frame-alist
|
1994-05-04 04:27:18 +00:00
|
|
|
|
(frame-remove-geometry-params initial-frame-alist))))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;; At this point, we know that we have a frame open, so we
|
|
|
|
|
;; can delete the terminal frame.
|
|
|
|
|
(delete-frame terminal-frame)
|
|
|
|
|
(setq terminal-frame nil))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
;; No, we're not running a window system. Arrange to cause errors.
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq frame-creation-function
|
1991-08-20 20:21:23 +00:00
|
|
|
|
(function
|
|
|
|
|
(lambda (parameters)
|
|
|
|
|
(error
|
1993-02-16 06:36:30 +00:00
|
|
|
|
"Can't create multiple frames without a window system"))))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;;; startup.el calls this function after loading the user's init
|
|
|
|
|
;;; file. Now default-frame-alist and initial-frame-alist contain
|
|
|
|
|
;;; information to which we must react; do what needs to be done.
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(defun frame-notice-user-settings ()
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
|
1994-06-25 18:20:55 +00:00
|
|
|
|
;; Make menu-bar-mode and default-frame-alist consistent.
|
|
|
|
|
(let ((default (assq 'menu-bar-lines default-frame-alist)))
|
|
|
|
|
(if default
|
|
|
|
|
(setq menu-bar-mode (not (eq (cdr default) 0)))
|
|
|
|
|
(setq default-frame-alist
|
|
|
|
|
(cons (cons 'menu-bar-lines (if menu-bar-mode 1 0))
|
|
|
|
|
default-frame-alist))))
|
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;; Creating and deleting frames may shift the selected frame around,
|
|
|
|
|
;; and thus the current buffer. Protect against that. We don't
|
|
|
|
|
;; want to use save-excursion here, because that may also try to set
|
|
|
|
|
;; the buffer of the selected window, which fails when the selected
|
|
|
|
|
;; window is the minibuffer.
|
|
|
|
|
(let ((old-buffer (current-buffer)))
|
|
|
|
|
|
|
|
|
|
;; If the initial frame is still around, apply initial-frame-alist
|
|
|
|
|
;; and default-frame-alist to it.
|
|
|
|
|
(if (frame-live-p frame-initial-frame)
|
|
|
|
|
|
|
|
|
|
;; The initial frame we create above always has a minibuffer.
|
|
|
|
|
;; If the user wants to remove it, or make it a minibuffer-only
|
|
|
|
|
;; frame, then we'll have to delete the current frame and make a
|
|
|
|
|
;; new one; you can't remove or add a root window to/from an
|
|
|
|
|
;; existing frame.
|
|
|
|
|
;;
|
1992-09-13 11:44:06 +00:00
|
|
|
|
;; NOTE: default-frame-alist was nil when we created the
|
|
|
|
|
;; existing frame. We need to explicitly include
|
|
|
|
|
;; default-frame-alist in the parameters of the screen we
|
|
|
|
|
;; create here, so that its new value, gleaned from the user's
|
|
|
|
|
;; .emacs file, will be applied to the existing screen.
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(if (not (eq (cdr (or (assq 'minibuffer initial-frame-alist)
|
|
|
|
|
(assq 'minibuffer default-frame-alist)
|
|
|
|
|
'(minibuffer . t)))
|
|
|
|
|
t))
|
|
|
|
|
;; Create the new frame.
|
1994-05-06 09:17:06 +00:00
|
|
|
|
(let (parms new)
|
|
|
|
|
;; If the frame isn't visible yet, wait till it is.
|
|
|
|
|
;; If the user has to position the window,
|
|
|
|
|
;; Emacs doesn't know its real position until
|
|
|
|
|
;; the frame is seen to be visible.
|
|
|
|
|
(while (not (cdr (assq 'visibility
|
|
|
|
|
(frame-parameters frame-initial-frame))))
|
|
|
|
|
(sleep-for 1))
|
|
|
|
|
(setq parms (append initial-frame-alist
|
1994-05-04 22:41:02 +00:00
|
|
|
|
default-frame-alist
|
|
|
|
|
(frame-parameters frame-initial-frame)
|
|
|
|
|
nil))
|
1994-05-06 00:32:58 +00:00
|
|
|
|
;; Get rid of `reverse', because that was handled
|
|
|
|
|
;; when we first made the frame.
|
|
|
|
|
(setq parms (cons '(reverse) (delq (assq 'reverse parms) parms)))
|
|
|
|
|
(if (assq 'height frame-initial-geometry-arguments)
|
|
|
|
|
(setq parms (delq (assq 'height parms) parms)))
|
|
|
|
|
(if (assq 'width frame-initial-geometry-arguments)
|
|
|
|
|
(setq parms (delq (assq 'width parms) parms)))
|
|
|
|
|
(if (assq 'left frame-initial-geometry-arguments)
|
|
|
|
|
(setq parms (delq (assq 'left parms) parms)))
|
|
|
|
|
(if (assq 'top frame-initial-geometry-arguments)
|
|
|
|
|
(setq parms (delq (assq 'top parms) parms)))
|
|
|
|
|
(setq new
|
|
|
|
|
(make-frame
|
|
|
|
|
;; Use the geometry args that created the existing
|
|
|
|
|
;; frame, rather than the parms we get for it.
|
|
|
|
|
(append frame-initial-geometry-arguments parms)))
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;; The initial frame, which we are about to delete, may be
|
|
|
|
|
;; the only frame with a minibuffer. If it is, create a
|
|
|
|
|
;; new one.
|
|
|
|
|
(or (delq frame-initial-frame (minibuffer-frame-list))
|
1994-05-04 22:41:02 +00:00
|
|
|
|
(make-frame (append minibuffer-frame-alist
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
'((minibuffer . only)))))
|
|
|
|
|
|
|
|
|
|
;; If the initial frame is serving as a surrogate
|
|
|
|
|
;; minibuffer frame for any frames, we need to wean them
|
|
|
|
|
;; onto a new frame. The default-minibuffer-frame
|
|
|
|
|
;; variable must be handled similarly.
|
|
|
|
|
(let ((users-of-initial
|
|
|
|
|
(filtered-frame-list
|
|
|
|
|
(function (lambda (frame)
|
|
|
|
|
(and (not (eq frame frame-initial-frame))
|
|
|
|
|
(eq (window-frame
|
|
|
|
|
(minibuffer-window frame))
|
|
|
|
|
frame-initial-frame)))))))
|
|
|
|
|
(if (or users-of-initial
|
|
|
|
|
(eq default-minibuffer-frame frame-initial-frame))
|
|
|
|
|
|
|
|
|
|
;; Choose an appropriate frame. Prefer frames which
|
|
|
|
|
;; are only minibuffers.
|
|
|
|
|
(let* ((new-surrogate
|
|
|
|
|
(car
|
|
|
|
|
(or (filtered-frame-list
|
|
|
|
|
(function
|
|
|
|
|
(lambda (frame)
|
|
|
|
|
(eq (cdr (assq 'minibuffer
|
|
|
|
|
(frame-parameters frame)))
|
|
|
|
|
'only))))
|
|
|
|
|
(minibuffer-frame-list))))
|
|
|
|
|
(new-minibuffer (minibuffer-window new-surrogate)))
|
|
|
|
|
|
|
|
|
|
(if (eq default-minibuffer-frame frame-initial-frame)
|
|
|
|
|
(setq default-minibuffer-frame new-surrogate))
|
|
|
|
|
|
|
|
|
|
;; Wean the frames using frame-initial-frame as
|
|
|
|
|
;; their minibuffer frame.
|
|
|
|
|
(mapcar
|
|
|
|
|
(function
|
|
|
|
|
(lambda (frame)
|
|
|
|
|
(modify-frame-parameters
|
|
|
|
|
frame (list (cons 'minibuffer new-minibuffer)))))
|
|
|
|
|
users-of-initial))))
|
1992-09-13 11:44:06 +00:00
|
|
|
|
|
|
|
|
|
;; Redirect events enqueued at this frame to the new frame.
|
|
|
|
|
;; Is this a good idea?
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(redirect-frame-focus frame-initial-frame new)
|
1992-09-13 11:44:06 +00:00
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;; Finally, get rid of the old frame.
|
1993-07-31 00:21:33 +00:00
|
|
|
|
(delete-frame frame-initial-frame t))
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
|
|
|
|
|
;; Otherwise, we don't need all that rigamarole; just apply
|
|
|
|
|
;; the new parameters.
|
1993-07-27 08:34:34 +00:00
|
|
|
|
(let (newparms allparms tail)
|
|
|
|
|
(setq allparms (append initial-frame-alist
|
|
|
|
|
default-frame-alist))
|
|
|
|
|
(setq tail allparms)
|
|
|
|
|
;; Find just the parms that have changed since we first
|
|
|
|
|
;; made this frame. Those are the ones actually set by
|
|
|
|
|
;; the init file. For those parms whose values we already knew
|
|
|
|
|
;; (such as those spec'd by command line options)
|
|
|
|
|
;; it is undesirable to specify the parm again
|
|
|
|
|
;; once the user has seen the frame and been able to alter it
|
|
|
|
|
;; manually.
|
|
|
|
|
(while tail
|
|
|
|
|
(let (newval oldval)
|
|
|
|
|
(setq oldval (cdr (assq (car (car tail))
|
|
|
|
|
frame-initial-frame-alist)))
|
|
|
|
|
(setq newval (cdr (assq (car (car tail)) allparms)))
|
|
|
|
|
(or (eq oldval newval)
|
|
|
|
|
(setq newparms
|
|
|
|
|
(cons (cons (car (car tail)) newval) newparms))))
|
|
|
|
|
(setq tail (cdr tail)))
|
|
|
|
|
(modify-frame-parameters frame-initial-frame
|
|
|
|
|
(nreverse newparms)))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;; Restore the original buffer.
|
|
|
|
|
(set-buffer old-buffer)
|
|
|
|
|
|
|
|
|
|
;; Make sure the initial frame can be GC'd if it is ever deleted.
|
1993-05-18 22:40:43 +00:00
|
|
|
|
;; Make sure frame-notice-user-settings does nothing if called twice.
|
|
|
|
|
(setq frame-initial-frame nil)))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;;;; Creation of additional frames, and other frame miscellanea
|
1992-07-15 00:32:19 +00:00
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;;; Return some frame other than the current frame, creating one if
|
1993-06-09 11:59:12 +00:00
|
|
|
|
;;; necessary. Note that the minibuffer frame, if separate, is not
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
;;; considered (see next-frame).
|
1992-07-21 06:30:52 +00:00
|
|
|
|
(defun get-other-frame ()
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(let ((s (if (equal (next-frame (selected-frame)) (selected-frame))
|
1994-05-04 22:41:02 +00:00
|
|
|
|
(make-frame)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(next-frame (selected-frame)))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
s))
|
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(defun next-multiframe-window ()
|
|
|
|
|
"Select the next window, regardless of which frame it is on."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(select-window (next-window (selected-window)
|
|
|
|
|
(> (minibuffer-depth) 0)
|
|
|
|
|
t)))
|
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(defun previous-multiframe-window ()
|
|
|
|
|
"Select the previous window, regardless of which frame it is on."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive)
|
|
|
|
|
(select-window (previous-window (selected-window)
|
|
|
|
|
(> (minibuffer-depth) 0)
|
|
|
|
|
t)))
|
|
|
|
|
|
1993-03-18 19:22:48 +00:00
|
|
|
|
;; Alias, kept temporarily.
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'new-frame 'make-frame)
|
1993-03-18 19:22:48 +00:00
|
|
|
|
(defun make-frame (&optional parameters)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
"Create a new frame, displaying the current buffer.
|
1992-02-06 02:09:14 +00:00
|
|
|
|
|
1992-02-10 05:20:54 +00:00
|
|
|
|
Optional argument PARAMETERS is an alist of parameters for the new
|
1992-07-15 00:32:19 +00:00
|
|
|
|
frame. Specifically, PARAMETERS is a list of pairs, each having one
|
1992-02-10 05:20:54 +00:00
|
|
|
|
of the following forms:
|
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
\(name . STRING) - The frame should be named STRING.
|
1992-02-10 05:20:54 +00:00
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
\(height . NUMBER) - The frame should be NUMBER text lines high. If
|
1992-02-10 05:20:54 +00:00
|
|
|
|
this parameter is present, the width parameter must also be
|
|
|
|
|
given.
|
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
\(width . NUMBER) - The frame should be NUMBER characters in width.
|
1992-02-10 05:20:54 +00:00
|
|
|
|
If this parameter is present, the height parameter must also
|
|
|
|
|
be given.
|
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
\(minibuffer . t) - the frame should have a minibuffer
|
1993-03-02 07:25:44 +00:00
|
|
|
|
\(minibuffer . nil) - the frame should have no minibuffer
|
1993-03-02 07:06:47 +00:00
|
|
|
|
\(minibuffer . only) - the frame should contain only a minibuffer
|
1994-05-28 04:14:22 +00:00
|
|
|
|
\(minibuffer . WINDOW) - the frame should use WINDOW as its minibuffer window."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive)
|
1993-10-24 03:18:18 +00:00
|
|
|
|
(let ((nframe))
|
|
|
|
|
(run-hooks 'before-make-frame-hook)
|
|
|
|
|
(setq nframe (funcall frame-creation-function parameters))
|
|
|
|
|
(run-hooks 'after-make-frame-hook)
|
|
|
|
|
nframe))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(defun filtered-frame-list (predicate)
|
|
|
|
|
"Return a list of all live frames which satisfy PREDICATE."
|
|
|
|
|
(let ((frames (frame-list))
|
|
|
|
|
good-frames)
|
|
|
|
|
(while (consp frames)
|
|
|
|
|
(if (funcall predicate (car frames))
|
|
|
|
|
(setq good-frames (cons (car frames) good-frames)))
|
|
|
|
|
(setq frames (cdr frames)))
|
|
|
|
|
good-frames))
|
|
|
|
|
|
|
|
|
|
(defun minibuffer-frame-list ()
|
|
|
|
|
"Return a list of all frames with their own minibuffers."
|
|
|
|
|
(filtered-frame-list
|
|
|
|
|
(function (lambda (frame)
|
|
|
|
|
(eq frame (window-frame (minibuffer-window frame)))))))
|
|
|
|
|
|
1993-07-04 02:20:59 +00:00
|
|
|
|
(defun frame-remove-geometry-params (param-list)
|
|
|
|
|
"Return the parameter list PARAM-LIST, but with geometry specs removed.
|
|
|
|
|
This deletes all bindings in PARAM-LIST for `top', `left', `width',
|
1994-05-05 22:37:47 +00:00
|
|
|
|
`height', `user-size' and `user-position' parameters.
|
1993-07-04 02:20:59 +00:00
|
|
|
|
Emacs uses this to avoid overriding explicit moves and resizings from
|
|
|
|
|
the user during startup."
|
|
|
|
|
(setq param-list (cons nil param-list))
|
|
|
|
|
(let ((tail param-list))
|
|
|
|
|
(while (consp (cdr tail))
|
|
|
|
|
(if (and (consp (car (cdr tail)))
|
1994-05-05 22:37:47 +00:00
|
|
|
|
(memq (car (car (cdr tail)))
|
|
|
|
|
'(height width top left user-position user-size)))
|
|
|
|
|
(progn
|
|
|
|
|
(setq frame-initial-geometry-arguments
|
|
|
|
|
(cons (car (cdr tail)) frame-initial-geometry-arguments))
|
|
|
|
|
(setcdr tail (cdr (cdr tail))))
|
1993-07-04 02:20:59 +00:00
|
|
|
|
(setq tail (cdr tail)))))
|
1994-05-10 07:55:00 +00:00
|
|
|
|
(setq frame-initial-geometry-arguments
|
|
|
|
|
(nreverse frame-initial-geometry-arguments))
|
1993-07-04 02:20:59 +00:00
|
|
|
|
(cdr param-list))
|
|
|
|
|
|
|
|
|
|
|
1993-08-02 22:18:34 +00:00
|
|
|
|
(defun other-frame (arg)
|
1993-08-03 03:33:14 +00:00
|
|
|
|
"Select the ARG'th different visible frame, and raise it.
|
1993-08-02 22:18:34 +00:00
|
|
|
|
All frames are arranged in a cyclic order.
|
|
|
|
|
This command selects the frame ARG steps away in that order.
|
|
|
|
|
A negative ARG moves in the opposite order."
|
|
|
|
|
(interactive "p")
|
|
|
|
|
(let ((frame (selected-frame)))
|
|
|
|
|
(while (> arg 0)
|
1993-08-03 03:33:14 +00:00
|
|
|
|
(setq frame (next-frame frame))
|
|
|
|
|
(while (not (eq (frame-visible-p frame) t))
|
|
|
|
|
(setq frame (next-frame frame)))
|
|
|
|
|
(setq arg (1- arg)))
|
1993-08-02 22:18:34 +00:00
|
|
|
|
(while (< arg 0)
|
1993-08-03 03:33:14 +00:00
|
|
|
|
(setq frame (previous-frame frame))
|
|
|
|
|
(while (not (eq (frame-visible-p frame) t))
|
|
|
|
|
(setq frame (previous-frame frame)))
|
1993-08-11 06:02:05 +00:00
|
|
|
|
(setq arg (1+ arg)))
|
1993-08-02 22:18:34 +00:00
|
|
|
|
(raise-frame frame)
|
1993-09-24 04:10:11 +00:00
|
|
|
|
(select-frame frame)
|
1993-11-03 20:56:29 +00:00
|
|
|
|
(set-mouse-position (selected-frame) (1- (frame-width)) 0)
|
1993-09-24 04:10:11 +00:00
|
|
|
|
(unfocus-frame)))
|
1992-07-10 02:33:41 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;;; Frame configurations
|
|
|
|
|
|
|
|
|
|
(defun current-frame-configuration ()
|
|
|
|
|
"Return a list describing the positions and states of all frames.
|
1993-03-15 08:51:02 +00:00
|
|
|
|
Its car is `frame-configuration'.
|
|
|
|
|
Each element of the cdr is a list of the form (FRAME ALIST WINDOW-CONFIG),
|
|
|
|
|
where
|
|
|
|
|
FRAME is a frame object,
|
|
|
|
|
ALIST is an association list specifying some of FRAME's parameters, and
|
|
|
|
|
WINDOW-CONFIG is a window configuration object for FRAME."
|
|
|
|
|
(cons 'frame-configuration
|
|
|
|
|
(mapcar (function
|
|
|
|
|
(lambda (frame)
|
|
|
|
|
(list frame
|
|
|
|
|
(frame-parameters frame)
|
|
|
|
|
(current-window-configuration frame))))
|
|
|
|
|
(frame-list))))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
|
1993-09-07 00:53:48 +00:00
|
|
|
|
(defun set-frame-configuration (configuration &optional nodelete)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
"Restore the frames to the state described by CONFIGURATION.
|
|
|
|
|
Each frame listed in CONFIGURATION has its position, size, window
|
1993-09-07 00:53:48 +00:00
|
|
|
|
configuration, and other parameters set as specified in CONFIGURATION.
|
1993-11-07 08:10:46 +00:00
|
|
|
|
Ordinarily, this function deletes all existing frames not
|
|
|
|
|
listed in CONFIGURATION. But if optional second argument NODELETE
|
1993-11-08 13:14:05 +00:00
|
|
|
|
is given and non-nil, the unwanted frames are iconified instead."
|
1993-03-15 08:51:02 +00:00
|
|
|
|
(or (frame-configuration-p configuration)
|
|
|
|
|
(signal 'wrong-type-argument
|
|
|
|
|
(list 'frame-configuration-p configuration)))
|
|
|
|
|
(let ((config-alist (cdr configuration))
|
|
|
|
|
frames-to-delete)
|
1992-07-10 02:33:41 +00:00
|
|
|
|
(mapcar (function
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(lambda (frame)
|
1993-03-15 08:51:02 +00:00
|
|
|
|
(let ((parameters (assq frame config-alist)))
|
1992-07-10 02:33:41 +00:00
|
|
|
|
(if parameters
|
|
|
|
|
(progn
|
1993-06-16 21:24:11 +00:00
|
|
|
|
(modify-frame-parameters
|
|
|
|
|
frame
|
|
|
|
|
;; Since we can't set a frame's minibuffer status,
|
|
|
|
|
;; we might as well omit the parameter altogether.
|
|
|
|
|
(let* ((parms (nth 1 parameters))
|
|
|
|
|
(mini (assq 'minibuffer parms)))
|
|
|
|
|
(if mini (setq parms (delq mini parms)))
|
|
|
|
|
parms))
|
1992-07-10 02:33:41 +00:00
|
|
|
|
(set-window-configuration (nth 2 parameters)))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq frames-to-delete (cons frame frames-to-delete))))))
|
|
|
|
|
(frame-list))
|
1993-11-07 08:10:46 +00:00
|
|
|
|
(if nodelete
|
1993-11-08 13:14:05 +00:00
|
|
|
|
;; Note: making frames invisible here was tried
|
|
|
|
|
;; but led to some strange behavior--each time the frame
|
|
|
|
|
;; was made visible again, the window manager asked afresh
|
|
|
|
|
;; for where to put it.
|
|
|
|
|
(mapcar 'iconify-frame frames-to-delete)
|
1993-11-07 08:10:46 +00:00
|
|
|
|
(mapcar 'delete-frame frames-to-delete))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1993-03-15 08:51:02 +00:00
|
|
|
|
(defun frame-configuration-p (object)
|
|
|
|
|
"Return non-nil if OBJECT seems to be a frame configuration.
|
|
|
|
|
Any list whose car is `frame-configuration' is assumed to be a frame
|
|
|
|
|
configuration."
|
|
|
|
|
(and (consp object)
|
|
|
|
|
(eq (car object) 'frame-configuration)))
|
|
|
|
|
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;;; Convenience functions for accessing and interactively changing
|
|
|
|
|
;;;; frame parameters.
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-21 04:09:28 +00:00
|
|
|
|
(defun frame-height (&optional frame)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
"Return number of lines available for display on FRAME.
|
|
|
|
|
If FRAME is omitted, describe the currently selected frame."
|
1992-07-21 04:09:28 +00:00
|
|
|
|
(cdr (assq 'height (frame-parameters frame))))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
|
|
|
|
|
(defun frame-width (&optional frame)
|
|
|
|
|
"Return number of columns available for display on FRAME.
|
|
|
|
|
If FRAME is omitted, describe the currently selected frame."
|
1992-07-21 04:09:28 +00:00
|
|
|
|
(cdr (assq 'width (frame-parameters frame))))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(defun set-default-font (font-name)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Set the font of the selected frame to FONT.
|
|
|
|
|
When called interactively, prompt for the name of the font to use."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive "sFont name: ")
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
1994-04-22 08:49:30 +00:00
|
|
|
|
(list (cons 'font font-name)))
|
|
|
|
|
;; Update faces that want a bold or italic version of the default font.
|
|
|
|
|
(frame-update-faces (selected-frame)))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1993-02-16 06:36:30 +00:00
|
|
|
|
(defun set-background-color (color-name)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Set the background color of the selected frame to COLOR.
|
|
|
|
|
When called interactively, prompt for the name of the color to use."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive "sColor: ")
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(list (cons 'background-color color-name))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1993-02-16 06:36:30 +00:00
|
|
|
|
(defun set-foreground-color (color-name)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Set the foreground color of the selected frame to COLOR.
|
|
|
|
|
When called interactively, prompt for the name of the color to use."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive "sColor: ")
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(list (cons 'foreground-color color-name))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
(defun set-cursor-color (color-name)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Set the text cursor color of the selected frame to COLOR.
|
|
|
|
|
When called interactively, prompt for the name of the color to use."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive "sColor: ")
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(list (cons 'cursor-color color-name))))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
(defun set-mouse-color (color-name)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Set the color of the mouse pointer of the selected frame to COLOR.
|
|
|
|
|
When called interactively, prompt for the name of the color to use."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive "sColor: ")
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(list (cons 'mouse-color color-name))))
|
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
(defun set-border-color (color-name)
|
|
|
|
|
"Set the color of the border of the selected frame to COLOR.
|
|
|
|
|
When called interactively, prompt for the name of the color to use."
|
|
|
|
|
(interactive "sColor: ")
|
|
|
|
|
(modify-frame-parameters (selected-frame)
|
|
|
|
|
(list (cons 'border-color color-name))))
|
|
|
|
|
|
|
|
|
|
(defun auto-raise-mode (arg)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Toggle whether or not the selected frame should auto-raise.
|
1994-06-28 05:15:44 +00:00
|
|
|
|
With arg, turn auto-raise mode on if and only if arg is positive.
|
|
|
|
|
Note that this controls Emacs's own auto-raise feature.
|
|
|
|
|
Some window managers allow you to enable auto-raise for certain windows.
|
|
|
|
|
You can use that for Emacs windows if you wish, but if you do,
|
|
|
|
|
that is beyond the control of Emacs and this command has no effect on it."
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(if (null arg)
|
|
|
|
|
(setq arg
|
|
|
|
|
(if (cdr (assq 'auto-raise (frame-parameters (selected-frame))))
|
|
|
|
|
-1 1)))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(list (cons 'auto-raise (> arg 0)))))
|
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
(defun auto-lower-mode (arg)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
"Toggle whether or not the selected frame should auto-lower.
|
1994-06-28 05:15:44 +00:00
|
|
|
|
With arg, turn auto-lower mode on if and only if arg is positive.
|
|
|
|
|
Note that this controls Emacs's own auto-lower feature.
|
|
|
|
|
Some window managers allow you to enable auto-lower for certain windows.
|
|
|
|
|
You can use that for Emacs windows if you wish, but if you do,
|
|
|
|
|
that is beyond the control of Emacs and this command has no effect on it."
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(if (null arg)
|
|
|
|
|
(setq arg
|
|
|
|
|
(if (cdr (assq 'auto-lower (frame-parameters (selected-frame))))
|
|
|
|
|
-1 1)))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(list (cons 'auto-lower (> arg 0)))))
|
|
|
|
|
|
1993-05-17 04:37:22 +00:00
|
|
|
|
(defun toggle-scroll-bar (arg)
|
1993-03-02 07:25:44 +00:00
|
|
|
|
"Toggle whether or not the selected frame has vertical scroll bars.
|
|
|
|
|
With arg, turn vertical scroll bars on if and only if arg is positive."
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(interactive "P")
|
|
|
|
|
(if (null arg)
|
|
|
|
|
(setq arg
|
1993-03-02 07:25:44 +00:00
|
|
|
|
(if (cdr (assq 'vertical-scroll-bars
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(frame-parameters (selected-frame))))
|
|
|
|
|
-1 1)))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters (selected-frame)
|
1993-03-02 07:25:44 +00:00
|
|
|
|
(list (cons 'vertical-scroll-bars (> arg 0)))))
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
|
1993-02-16 06:36:30 +00:00
|
|
|
|
(defun toggle-horizontal-scroll-bar (arg)
|
1993-03-02 07:25:44 +00:00
|
|
|
|
"Toggle whether or not the selected frame has horizontal scroll bars.
|
|
|
|
|
With arg, turn horizontal scroll bars on if and only if arg is positive.
|
|
|
|
|
Horizontal scroll bars aren't implemented yet."
|
* frame.el: Clean up initialization code.
(initial-frame-alist): Doc fix.
(minibuffer-frame-alist): New default value, with a reasonable height.
(filtered-frame-list, minibuffer-frame-list): New functions.
(frame-initialize): Use minibuffer-frame-list, instead of writing
it out.
(frame-notice-user-settings): Thoroughly rearranged.
Notice changes to default-frame-alist as well as initial-frame-alist.
Properly handle requests to make the initial frame into a
minibufferless or minibuffer-only frame.
Create a minibuffer-only frame if the initial frame should lack a
minibuffer and there are no other minibuffer frames created by the
user's initialization file.
Fix any frames using the initial frame as a surrogate minibuffer
frame.
Restore the current buffer after creating and deleting all these
frames.
* frame.el (set-default-font, set-frame-background,
set-frame-foreground, set-cursor-color, set-pointer-color,
set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Give these docstrings.
(set-auto-raise, set-auto-lower, set-vertical-bar,
set-horizontal-bar): Make these toggle or look at the prefix
argument, like minor modes.
* frame.el (set-vertical-bar): Use the proper parameter symbol.
(set-horizontal-bar): Signal an error indicating that horizontal
scrollbars are not implemented.
1993-02-14 14:29:30 +00:00
|
|
|
|
(interactive "P")
|
1993-02-16 06:36:30 +00:00
|
|
|
|
(error "Horizontal scroll bars aren't implemented yet"))
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
|
|
|
|
|
;;;; Aliases for backward compatibility with Emacs 18.
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'screen-height 'frame-height)
|
|
|
|
|
(defalias 'screen-width 'frame-width)
|
1992-08-12 12:57:12 +00:00
|
|
|
|
|
|
|
|
|
(defun set-screen-width (cols &optional pretend)
|
|
|
|
|
"Obsolete function to change the size of the screen to COLS columns.\n\
|
|
|
|
|
Optional second arg non-nil means that redisplay should use COLS columns\n\
|
|
|
|
|
but that the idea of the actual width of the frame should not be changed.\n\
|
|
|
|
|
This function is provided only for compatibility with Emacs 18; new code\n\
|
1992-10-25 19:44:06 +00:00
|
|
|
|
should use `set-frame-width instead'."
|
1992-08-12 12:57:12 +00:00
|
|
|
|
(set-frame-width (selected-frame) cols pretend))
|
|
|
|
|
|
|
|
|
|
(defun set-screen-height (lines &optional pretend)
|
|
|
|
|
"Obsolete function to change the height of the screen to LINES lines.\n\
|
|
|
|
|
Optional second arg non-nil means that redisplay should use LINES lines\n\
|
|
|
|
|
but that the idea of the actual height of the screen should not be changed.\n\
|
|
|
|
|
This function is provided only for compatibility with Emacs 18; new code\n\
|
1992-10-25 19:44:06 +00:00
|
|
|
|
should use `set-frame-width' instead."
|
1992-08-12 12:57:12 +00:00
|
|
|
|
(set-frame-height (selected-frame) lines pretend))
|
|
|
|
|
|
|
|
|
|
(make-obsolete 'screen-height 'frame-height)
|
|
|
|
|
(make-obsolete 'screen-width 'frame-width)
|
|
|
|
|
(make-obsolete 'set-screen-width 'set-frame-width)
|
|
|
|
|
(make-obsolete 'set-screen-height 'set-frame-height)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
|
|
|
|
;;;; Key bindings
|
1992-06-24 05:09:26 +00:00
|
|
|
|
(defvar ctl-x-5-map (make-sparse-keymap)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
"Keymap for frame commands.")
|
1993-04-23 06:51:44 +00:00
|
|
|
|
(defalias 'ctl-x-5-prefix ctl-x-5-map)
|
1992-06-24 05:09:26 +00:00
|
|
|
|
(define-key ctl-x-map "5" 'ctl-x-5-prefix)
|
1991-08-15 21:29:06 +00:00
|
|
|
|
|
1994-05-04 22:41:02 +00:00
|
|
|
|
(define-key ctl-x-5-map "2" 'make-frame)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(define-key ctl-x-5-map "0" 'delete-frame)
|
1993-08-02 22:18:34 +00:00
|
|
|
|
(define-key ctl-x-5-map "o" 'other-frame)
|
1992-03-16 20:39:07 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(provide 'frame)
|
1992-05-30 21:11:25 +00:00
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
;;; frame.el ends here
|