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
|
|
|
|
|
1993-03-08 08:08:51 +00:00
|
|
|
|
;;;; Copyright (C) 1993 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-03-02 07:06:47 +00:00
|
|
|
|
These supercede 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 ()
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(new-frame pop-up-frame-alist))))
|
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
|
|
|
|
|
|
|
|
|
;;; 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))
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(setq default-minibuffer-frame
|
|
|
|
|
(setq frame-initial-frame
|
|
|
|
|
(new-frame initial-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
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
;; 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.
|
|
|
|
|
(let ((new
|
|
|
|
|
(new-frame
|
|
|
|
|
(append initial-frame-alist
|
|
|
|
|
default-frame-alist
|
|
|
|
|
(frame-parameters frame-initial-frame)))))
|
|
|
|
|
|
|
|
|
|
;; 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))
|
|
|
|
|
(new-frame (append minibuffer-frame-alist
|
|
|
|
|
'((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.
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(delete-frame frame-initial-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
|
|
|
|
|
|
|
|
|
;; Otherwise, we don't need all that rigamarole; just apply
|
|
|
|
|
;; the new parameters.
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters frame-initial-frame
|
1992-09-13 11:44:06 +00:00
|
|
|
|
(append initial-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
|
|
|
|
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
|
|
|
|
;; Restore the original buffer.
|
|
|
|
|
(set-buffer old-buffer)
|
|
|
|
|
|
|
|
|
|
;; Make sure the initial frame can be GC'd if it is ever deleted.
|
|
|
|
|
(makunbound 'frame-initial-frame)))
|
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
|
|
|
|
|
;;; neccessary. Note that the minibuffer frame, if separate, is not
|
|
|
|
|
;;; 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))
|
|
|
|
|
(new-frame)
|
|
|
|
|
(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
|
|
|
|
|
\(minibuffer . WINDOW) - the frame should use WINDOW as its minibuffer window.
|
1992-02-10 05:20:54 +00:00
|
|
|
|
|
1993-03-02 07:06:47 +00:00
|
|
|
|
The documentation for the function `x-create-frame' describes
|
|
|
|
|
additional frame parameters that Emacs recognizes for X window frames."
|
1991-08-15 21:29:06 +00:00
|
|
|
|
(interactive)
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(funcall frame-creation-function parameters))
|
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)))))))
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
(defun set-frame-configuration (configuration)
|
|
|
|
|
"Restore the frames to the state described by CONFIGURATION.
|
|
|
|
|
Each frame listed in CONFIGURATION has its position, size, window
|
1992-07-10 02:33:41 +00:00
|
|
|
|
configuration, and other parameters set as specified in CONFIGURATION."
|
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
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(modify-frame-parameters frame (nth 1 parameters))
|
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))
|
|
|
|
|
(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)
|
* 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 'font font-name))))
|
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.
|
|
|
|
|
With arg, turn auto-raise mode on if and only if arg is positive."
|
|
|
|
|
(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.
|
|
|
|
|
With arg, turn auto-lower mode on if and only if arg is positive."
|
|
|
|
|
(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
|
|
|
|
|
1992-07-15 00:32:19 +00:00
|
|
|
|
(define-key ctl-x-5-map "2" 'new-frame)
|
|
|
|
|
(define-key ctl-x-5-map "0" 'delete-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
|