mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-10 09:12:15 +00:00
f795f63364
* term/pc-win.el (msdos-setup-initial-frame): New function, run by term-setup-hook. Call msdos-remember-default-colors and msdos-handle-reverse-video. (msdos-face-setup): Parts of code moved to msdos-setup-initial-frame. (msdos-handle-reverse-video): New function, modeled after x-handle-reverse-video. (make-msdos-frame): Don't use initial-frame-alist and default-frame-alist. Call msdos-handle-reverse-video. (msdos-color-aliases): Remove. (msdos-color-translate, msdos-approximate-color): Remove. (msdos-color-values): Use 16-bit RGB values. RGB values updated for better approximation of X colors. (msdos-face-setup): Call tty-color-clear. Remove code that sets up tty-color-alist (it is now on startup.el). (x-display-color-p, x-color-defined-p, x-color-values, x-defined-colors, face-color-supported-p, face-color-gray-p): Remove. * facemenu.el (facemenu-read-color, list-colors-display): Use defined-colors for all frame types. (facemenu-color-equal): Use color-values for all frame types. * faces.el (read-face-attribute): For :foreground and :background attributes and frames on character terminals, translate the color to the closest supported one before looking it up in the list of valid values. (face-valid-attribute-values): Call defined-colors for all types of frames. (defined-colors, color-defined-p, color-values, display-color-p): New finctions. (x-defined-colors, x-color-defined-p, x-color-values, x-display-color-p): Aliases for the above. * startup.el (command-line): Register terminal colors for frame types other than x and w32, but only if the terminal supports colors. Call tty-color-define instead of face-register-tty-color. * term/x-win.el (xw-defined-colors): Renamed from x-defined-colors. * term/w32-win.el (xw-defined-colors): Likewise. * term/tty-colors.el: New file. * loadup.el: Load term/tty-colors.
308 lines
12 KiB
EmacsLisp
308 lines
12 KiB
EmacsLisp
;;; pc-win.el --- setup support for `PC windows' (whatever that is).
|
|
|
|
;; Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
|
|
|
|
;; Author: Morten Welinder <terra@diku.dk>
|
|
;; Maintainer: FSF
|
|
|
|
;; 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
|
|
;; the Free Software Foundation; either version 2, or (at your option)
|
|
;; 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, Inc., 59 Temple Place - Suite 330,
|
|
;; Boston, MA 02111-1307, USA.
|
|
|
|
;;; Code:
|
|
|
|
(load "term/internal" nil t)
|
|
|
|
;;; This is copied from etc/rgb.txt, except that some values were changed
|
|
;;; a bit to make them consistent with DOS console colors, and the RGB
|
|
;;; values were scaled up to 16 bits, as `tty-define-color' requires.
|
|
;;;
|
|
;;; The mapping between the 16 standard EGA/VGA colors and X color names
|
|
;;; was done by running a Unix version of Emacs inside an X client and a
|
|
;;; DJGPP-compiled Emacs on the same PC. The names of X colors used to
|
|
;;; define the pixel values are shown as comments to each color below.
|
|
;;;
|
|
;;; If you want to change the RGB values, keep in mind that various pieces
|
|
;;; of Emacs think that a color whose RGB values add up to less than 0.6 of
|
|
;;; the values for WHITE (i.e. less than 117963) are ``dark'', otherwise the
|
|
;;; color is ``light''; see `frame-set-background-mode' in lisp/faces.el for
|
|
;;; an example.
|
|
(defvar msdos-color-values
|
|
'(("white" 15 65535 65535 65535)
|
|
("yellow" 14 65535 65535 0) ; Yellow
|
|
("lightmagenta" 13 65535 0 65535) ; Magenta
|
|
("lightred" 12 65535 0 0) ; Red
|
|
("lightcyan" 11 0 65535 65535) ; Cyan
|
|
("lightgreen" 10 0 65535 0) ; Green
|
|
("lightblue" 9 0 0 65535) ; Blue
|
|
("darkgray" 8 26112 26112 26112) ; Gray40
|
|
("lightgray" 7 48640 48640 48640) ; Gray
|
|
("brown" 6 40960 20992 11520) ; Sienna
|
|
("magenta" 5 35584 0 35584) ; DarkMagenta
|
|
("red" 4 45568 8704 8704) ; FireBrick
|
|
("cyan" 3 0 52736 53504) ; DarkTurquoise
|
|
("green" 2 8704 35584 8704) ; ForestGreen
|
|
("blue" 1 0 0 52480) ; MediumBlue
|
|
("black" 0 0 0 0))
|
|
"A list of MS-DOS console colors, their indices and 16-bit RGB values.")
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
;; We want to delay setting frame parameters until the faces are setup
|
|
(defvar default-frame-alist nil)
|
|
(modify-frame-parameters terminal-frame default-frame-alist)
|
|
(tty-color-clear)
|
|
|
|
(defun msdos-face-setup ()
|
|
(set-face-foreground 'bold "yellow" terminal-frame)
|
|
(set-face-foreground 'italic "red" terminal-frame)
|
|
(set-face-foreground 'bold-italic "lightred" terminal-frame)
|
|
(set-face-foreground 'underline "white" terminal-frame)
|
|
|
|
(make-face 'msdos-menu-active-face)
|
|
(make-face 'msdos-menu-passive-face)
|
|
(make-face 'msdos-menu-select-face)
|
|
(set-face-foreground 'msdos-menu-active-face "white" terminal-frame)
|
|
(set-face-foreground 'msdos-menu-passive-face "lightgray" terminal-frame)
|
|
(set-face-background 'msdos-menu-active-face "blue" terminal-frame)
|
|
(set-face-background 'msdos-menu-passive-face "blue" terminal-frame)
|
|
(set-face-background 'msdos-menu-select-face "red" terminal-frame))
|
|
|
|
(add-hook 'before-init-hook 'msdos-face-setup)
|
|
|
|
(defun msdos-handle-reverse-video (frame parameters)
|
|
"Handle the reverse-video frame parameter on MS-DOS frames."
|
|
(when (cdr (assq 'reverse parameters))
|
|
(let* ((params (frame-parameters frame))
|
|
(bg (cdr (assq 'foreground-color params)))
|
|
(fg (cdr (assq 'background-color params))))
|
|
(modify-frame-parameters frame '((reverse . nil)))
|
|
(if (equal bg (cdr (assq 'mouse-color params)))
|
|
(modify-frame-parameters frame
|
|
(list (cons 'mouse-color fg))))
|
|
(if (equal bg (cdr (assq 'cursor-color params)))
|
|
(modify-frame-parameters frame
|
|
(list (cons 'cursor-color fg)))))))
|
|
|
|
;; This must run after all the default colors are inserted into
|
|
;; tty-color-alist, since msdos-handle-reverse-video needs to know the
|
|
;; actual frame colors. tty-color-alist is set up by startup.el, but
|
|
;; only after it runs before-init-hook and after-init-hook.
|
|
(defun msdos-setup-initial-frame ()
|
|
(modify-frame-parameters terminal-frame default-frame-alist)
|
|
;; This remembers the screen colors after applying default-frame-alist,
|
|
;; so that all subsequent frames could begin with those colors.
|
|
(msdos-remember-default-colors terminal-frame)
|
|
(modify-frame-parameters terminal-frame initial-frame-alist)
|
|
(msdos-handle-reverse-video terminal-frame
|
|
(frame-parameters terminal-frame))
|
|
|
|
(frame-set-background-mode terminal-frame)
|
|
(face-set-after-frame-default terminal-frame))
|
|
|
|
(add-hook 'term-setup-hook 'msdos-setup-initial-frame)
|
|
|
|
;; We create frames as if we were a terminal, but with a twist.
|
|
(defun make-msdos-frame (&optional parameters)
|
|
(let ((frame (make-terminal-frame parameters))
|
|
success)
|
|
(unwind-protect
|
|
(progn
|
|
(msdos-handle-reverse-video frame (frame-parameters frame))
|
|
(frame-set-background-mode frame)
|
|
(face-set-after-frame-default frame)
|
|
(setq success t))
|
|
(unless success (delete-frame frame)))
|
|
frame))
|
|
|
|
(setq frame-creation-function 'make-msdos-frame)
|
|
|
|
;; ---------------------------------------------------------------------------
|
|
;; More or less useful imitations of certain X-functions. A lot of the
|
|
;; values returned are questionable, but usually only the form of the
|
|
;; returned value matters. Also, by the way, recall that `ignore' is
|
|
;; a useful function for returning 'nil regardless of argument.
|
|
|
|
;; From src/xfns.c
|
|
(defun x-list-fonts (pattern &optional face frame maximum width)
|
|
(if (or (null width) (and (numberp width) (= width 1)))
|
|
(list "ms-dos")
|
|
(list "no-such-font")))
|
|
(defun x-display-pixel-width (&optional frame) (frame-width frame))
|
|
(defun x-display-pixel-height (&optional frame) (frame-height frame))
|
|
(defun x-display-planes (&optional frame) 4) ;bg switched to 16 colors as well
|
|
(defun x-display-color-cells (&optional frame) 16)
|
|
(defun x-server-max-request-size (&optional frame) 1000000) ; ???
|
|
(defun x-server-vendor (&optional frame) t "GNU")
|
|
(defun x-server-version (&optional frame) '(1 0 0))
|
|
(defun x-display-screens (&optional frame) 1)
|
|
(defun x-display-mm-height (&optional frame) 245) ; Guess the size of my
|
|
(defun x-display-mm-width (&optional frame) 322) ; monitor, EZ...
|
|
(defun x-display-backing-store (&optional frame) 'not-useful)
|
|
(defun x-display-visual-class (&optional frame) 'static-color)
|
|
(fset 'x-display-save-under 'ignore)
|
|
(fset 'x-get-resource 'ignore)
|
|
|
|
;; From lisp/term/x-win.el
|
|
(defvar x-display-name "pc"
|
|
"The display name specifying the MS-DOS display and frame type.")
|
|
(setq split-window-keep-point t)
|
|
(defvar x-colors (mapcar 'car msdos-color-values)
|
|
"The list of colors available on a PC display under MS-DOS.")
|
|
|
|
;; From lisp/term/w32-win.el
|
|
;
|
|
;;;; Selections and cut buffers
|
|
;
|
|
;;; We keep track of the last text selected here, so we can check the
|
|
;;; current selection against it, and avoid passing back our own text
|
|
;;; from x-cut-buffer-or-selection-value.
|
|
(defvar x-last-selected-text nil)
|
|
|
|
(defvar x-select-enable-clipboard t
|
|
"Non-nil means cutting and pasting uses the clipboard.")
|
|
|
|
(defun x-select-text (text &optional push)
|
|
(if x-select-enable-clipboard
|
|
(w16-set-clipboard-data text))
|
|
(setq x-last-selected-text text))
|
|
|
|
;;; Return the value of the current selection.
|
|
;;; Consult the selection, then the cut buffer. Treat empty strings
|
|
;;; as if they were unset.
|
|
(defun x-get-selection-value ()
|
|
(if x-select-enable-clipboard
|
|
(let (text)
|
|
;; Don't die if x-get-selection signals an error.
|
|
(condition-case c
|
|
(setq text (w16-get-clipboard-data))
|
|
(error (message "w16-get-clipboard-data:%s" c)))
|
|
(if (string= text "") (setq text nil))
|
|
(cond
|
|
((not text) nil)
|
|
((eq text x-last-selected-text) nil)
|
|
((string= text x-last-selected-text)
|
|
;; Record the newer string, so subsequent calls can use the 'eq' test.
|
|
(setq x-last-selected-text text)
|
|
nil)
|
|
(t
|
|
(setq x-last-selected-text text))))))
|
|
|
|
;;; Arrange for the kill and yank functions to set and check the clipboard.
|
|
(setq interprogram-cut-function 'x-select-text)
|
|
(setq interprogram-paste-function 'x-get-selection-value)
|
|
|
|
;; From lisp/faces.el: we only have one font, so always return
|
|
;; it, no matter which variety they've asked for.
|
|
(defun x-frob-font-slant (font which)
|
|
font)
|
|
(defun x-frob-font-weight (font which)
|
|
font)
|
|
(defun x-font-family-list ()
|
|
"Return a list of available font families on FRAME.\n\
|
|
If FRAME is omitted or nil, use the selected frame.\n\
|
|
Value is a list of conses (FAMILY . FIXED-P) where FAMILY\n\
|
|
is a font family, and FIXED-P is non-nil if fonts of that family\n\
|
|
are fixed-pitch."
|
|
'(("default" . t)))
|
|
|
|
;; From src/fontset.c:
|
|
(fset 'query-fontset 'ignore)
|
|
|
|
;; From lisp/term/x-win.el: make iconify-or-deiconify-frame a no-op.
|
|
(fset 'iconify-or-deiconify-frame 'ignore)
|
|
|
|
;; From lisp/frame.el
|
|
(fset 'set-default-font 'ignore)
|
|
(fset 'set-mouse-color 'ignore) ; We cannot, I think.
|
|
(fset 'set-cursor-color 'ignore) ; Hardware determined by char under.
|
|
(fset 'set-border-color 'ignore) ; Not useful.
|
|
|
|
;; From lisp/term/x-win.el:
|
|
(defconst x-long-option-alist
|
|
'(("--name" . "-name")
|
|
("--title" . "-T")
|
|
("--reverse-video" . "-reverse")
|
|
("--foreground-color" . "-fg")
|
|
("--background-color" . "-bg")))
|
|
;; ---------------------------------------------------------------------------
|
|
;; Handle the X-like command line parameters "-fg", "-bg", "-name", etc.
|
|
(defun msdos-handle-args (args)
|
|
(let ((rest nil))
|
|
(message "%s" args)
|
|
(while args
|
|
(let* ((this (car args))
|
|
(orig-this this)
|
|
completion argval)
|
|
(setq args (cdr args))
|
|
;; Check for long options with attached arguments
|
|
;; and separate out the attached option argument into argval.
|
|
(if (string-match "^--[^=]*=" this)
|
|
(setq argval (substring this (match-end 0))
|
|
this (substring this 0 (1- (match-end 0)))))
|
|
(setq completion (try-completion this x-long-option-alist))
|
|
(if (eq completion t)
|
|
;; Exact match for long option.
|
|
(setq this (cdr (assoc this x-long-option-alist)))
|
|
(if (stringp completion)
|
|
(let ((elt (assoc completion x-long-option-alist)))
|
|
;; Check for abbreviated long option.
|
|
(or elt
|
|
(error "Option `%s' is ambiguous" this))
|
|
(setq this (cdr elt)))
|
|
;; Check for a short option.
|
|
(setq argval nil this orig-this)))
|
|
(cond ((or (string= this "-fg") (string= this "-foreground"))
|
|
(or argval (setq argval (car args) args (cdr args)))
|
|
(setq default-frame-alist
|
|
(cons (cons 'foreground-color argval)
|
|
default-frame-alist)))
|
|
((or (string= this "-bg") (string= this "-background"))
|
|
(or argval (setq argval (car args) args (cdr args)))
|
|
(setq default-frame-alist
|
|
(cons (cons 'background-color argval)
|
|
default-frame-alist)))
|
|
((or (string= this "-T") (string= this "-name"))
|
|
(or argval (setq argval (car args) args (cdr args)))
|
|
(setq default-frame-alist
|
|
(cons
|
|
(cons 'title
|
|
(if (stringp argval)
|
|
argval
|
|
(let ((case-fold-search t)
|
|
i)
|
|
(setq argval (invocation-name))
|
|
|
|
;; Change any . or * characters in name to
|
|
;; hyphens, so as to emulate behavior on X.
|
|
(while
|
|
(setq i (string-match "[.*]" argval))
|
|
(aset argval i ?-))
|
|
argval)))
|
|
default-frame-alist)))
|
|
((or (string= this "-r")
|
|
(string= this "-rv")
|
|
(string= this "-reverse"))
|
|
(setq default-frame-alist
|
|
(cons '(reverse . t)
|
|
default-frame-alist)))
|
|
(t (setq rest (cons this rest))))))
|
|
(nreverse rest)))
|
|
|
|
(setq command-line-args (msdos-handle-args command-line-args))
|
|
;; ---------------------------------------------------------------------------
|
|
|
|
;;; pc-win.el ends here
|