123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- (if (not (fboundp 'msdos-remember-default-colors))
- (error "%s: Loading pc-win.el but not compiled for MS-DOS"
- (invocation-name)))
- (load "term/internal" nil t)
- (declare-function msdos-remember-default-colors "msdos.c")
- (declare-function w16-set-clipboard-data "w16select.c")
- (declare-function w16-get-clipboard-data "w16select.c")
- (declare-function msdos-setup-keyboard "internal" (frame))
- (defvar msdos-color-values
- '(("black" 0 0 0 0)
- ("blue" 1 0 0 52480) ; MediumBlue
- ("green" 2 8704 35584 8704) ; ForestGreen
- ("cyan" 3 0 52736 53504) ; DarkTurquoise
- ("red" 4 45568 8704 8704) ; FireBrick
- ("magenta" 5 35584 0 35584) ; DarkMagenta
- ("brown" 6 40960 20992 11520) ; Sienna
- ("lightgray" 7 48640 48640 48640) ; Gray
- ("darkgray" 8 26112 26112 26112) ; Gray40
- ("lightblue" 9 0 0 65535) ; Blue
- ("lightgreen" 10 0 65535 0) ; Green
- ("lightcyan" 11 0 65535 65535) ; Cyan
- ("lightred" 12 65535 0 0) ; Red
- ("lightmagenta" 13 65535 0 65535) ; Magenta
- ("yellow" 14 65535 65535 0) ; Yellow
- ("white" 15 65535 65535 65535))
- "A list of MS-DOS console colors, their indices and 16-bit RGB values.")
- (defvar default-frame-alist nil)
- (defun msdos-face-setup ()
- "Initial setup of faces for the MS-DOS display."
- (set-face-foreground 'bold "yellow")
- (set-face-foreground 'italic "red")
- (set-face-foreground 'bold-italic "lightred")
- (set-face-foreground 'underline "white")
- (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")
- (set-face-foreground 'msdos-menu-passive-face "lightgray")
- (set-face-background 'msdos-menu-active-face "blue")
- (set-face-background 'msdos-menu-passive-face "blue")
- (set-face-background 'msdos-menu-select-face "red"))
- (defun msdos-handle-reverse-video (frame parameters)
- "Handle the reverse-video frame parameter on MS-DOS frames."
- (when (cdr (or (assq 'reverse parameters)
- (assq 'reverse default-frame-alist)))
- (let* ((params (frame-parameters frame))
- (fg (cdr (assq 'foreground-color params)))
- (bg (cdr (assq 'background-color params))))
- (if (equal fg (cdr (assq 'mouse-color params)))
- (modify-frame-parameters frame
- (list (cons 'mouse-color bg))))
- (if (equal fg (cdr (assq 'cursor-color params)))
- (modify-frame-parameters frame
- (list (cons 'cursor-color bg)))))))
- (defun msdos-setup-initial-frame ()
- (modify-frame-parameters terminal-frame default-frame-alist)
-
-
- (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))
- (defun msdos-create-frame-with-faces (&optional parameters)
- "Create a frame on MS-DOS display.
- Optional frame parameters PARAMETERS specify the frame parameters.
- Parameters not specified by PARAMETERS are taken from
- `default-frame-alist'. If either PARAMETERS or `default-frame-alist'
- contains a `reverse' parameter, handle that. Value is the new frame
- created."
- (let ((frame (make-terminal-frame parameters))
- success)
- (unwind-protect
- (with-selected-frame frame
- (msdos-handle-reverse-video frame (frame-parameters frame))
- (unless (terminal-parameter frame 'terminal-initted)
- (set-terminal-parameter frame 'terminal-initted t))
- (frame-set-background-mode frame)
- (face-set-after-frame-default frame)
- (setq success t))
- (unless success (delete-frame frame)))
- frame))
- (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)
- (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)
- (defun x-display-mm-width (&optional frame) 322)
- (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)
- (defvar x-display-name "pc"
- "The name of the window display on which Emacs was started.
- On X, the display name of individual X frames is recorded in the
- `display' frame parameter.")
- (defvar x-colors (mapcar 'car msdos-color-values)
- "List of basic colors available on color displays.
- For X, the list comes from the `rgb.txt' file,v 10.41 94/02/20.
- For Nextstep, this is a list of non-PANTONE colors returned by
- the operating system.")
- (defvar x-last-selected-text nil)
- (defcustom x-select-enable-clipboard t
- "Non-nil means cutting and pasting uses the clipboard.
- This is in addition to, but in preference to, the primary selection.
- Note that MS-Windows does not support selection types other than the
- clipboard. (The primary selection that is set by Emacs is not
- accessible to other programs on MS-Windows.)
- This variable is not used by the Nextstep port."
- :type 'boolean
- :group 'killing)
- (defun x-select-text (text)
- "Select TEXT, a string, according to the window system.
- On X, if `x-select-enable-clipboard' is non-nil, copy TEXT to the
- clipboard. If `x-select-enable-primary' is non-nil, put TEXT in
- the primary selection.
- On MS-Windows, make TEXT the current selection. If
- `x-select-enable-clipboard' is non-nil, copy the text to the
- clipboard as well.
- On Nextstep, put TEXT in the pasteboard (`x-select-enable-clipboard'
- is not used)."
- (if x-select-enable-clipboard
- (w16-set-clipboard-data text))
- (setq x-last-selected-text text))
- (defun x-get-selection-value ()
- (if x-select-enable-clipboard
- (let (text)
-
- (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)
-
- (setq x-last-selected-text text)
- nil)
- (t
- (setq x-last-selected-text text))))))
- (defun x-selection-owner-p (&optional selection terminal)
- "Whether the current Emacs process owns the given X Selection.
- The arg should be the name of the selection in question, typically one of
- the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
- \(Those are literal upper-case symbol names, since that's what X expects.)
- For convenience, the symbol nil is the same as `PRIMARY',
- and t is the same as `SECONDARY'.
- TERMINAL should be a terminal object or a frame specifying the X
- server to query. If omitted or nil, that stands for the selected
- frame's display, or the first available X display.
- On Nextstep, TERMINAL is unused.
- \(fn &optional SELECTION TERMINAL)"
- (if x-select-enable-clipboard
- (let (text)
-
- (ignore-errors
- (setq text (w16-get-clipboard-data)))
-
-
-
- (cond
- ((not text) t)
- ((or (eq text x-last-selected-text)
- (string= text x-last-selected-text))
- text)
- (t nil)))))
- (defun x-own-selection-internal (selection value &optional frame)
- "Assert an X selection of the type SELECTION with and value VALUE.
- SELECTION is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
- \(Those are literal upper-case symbol names, since that's what X expects.)
- VALUE is typically a string, or a cons of two markers, but may be
- anything that the functions on `selection-converter-alist' know about.
- FRAME should be a frame that should own the selection. If omitted or
- nil, it defaults to the selected frame.
- On Nextstep, FRAME is unused.
- \(fn SELECTION VALUE &optional FRAME)"
- (ignore-errors
- (x-select-text value))
- value)
- (defun x-disown-selection-internal (selection &optional time-object terminal)
- "If we own the selection SELECTION, disown it.
- Disowning it means there is no such selection.
- Sets the last-change time for the selection to TIME-OBJECT (by default
- the time of the last event).
- TERMINAL should be a terminal object or a frame specifying the X
- server to query. If omitted or nil, that stands for the selected
- frame's display, or the first available X display.
- On Nextstep, the TIME-OBJECT and TERMINAL arguments are unused.
- On MS-DOS, all this does is return non-nil if we own the selection.
- \(fn SELECTION &optional TIME-OBJECT TERMINAL)"
- (if (x-selection-owner-p selection)
- t))
- (defun x-get-selection-internal (selection-symbol target-type &optional time-stamp terminal)
- "Return text selected from some X window.
- SELECTION-SYMBOL is typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
- \(Those are literal upper-case symbol names, since that's what X expects.)
- TARGET-TYPE is the type of data desired, typically `STRING'.
- TIME-STAMP is the time to use in the XConvertSelection call for foreign
- selections. If omitted, defaults to the time for the last event.
- TERMINAL should be a terminal object or a frame specifying the X
- server to query. If omitted or nil, that stands for the selected
- frame's display, or the first available X display.
- On Nextstep, TIME-STAMP and TERMINAL are unused.
- \(fn SELECTION-SYMBOL TARGET-TYPE &optional TIME-STAMP TERMINAL)"
- (x-get-selection-value))
- (fset 'query-fontset 'ignore)
- (fset 'iconify-or-deiconify-frame 'ignore)
- (fset 'set-default-font 'ignore)
- (fset 'set-mouse-color 'ignore)
- (fset 'set-cursor-color 'ignore)
- (fset 'set-border-color 'ignore)
- (defvar msdos-last-help-message nil
- "The last help message received via `show-help-function'.
- This is used by `msdos-show-help'.")
- (defvar msdos-previous-message nil
- "The content of the echo area before help echo was displayed.")
- (defun msdos-show-help (help)
- "Function installed as `show-help-function' on MS-DOS frames."
- (when (and (not (window-minibuffer-p))
- (not cursor-in-echo-area))
- (cond
- ((stringp help)
- (setq help (replace-regexp-in-string "\n" ", " help))
- (unless (or msdos-previous-message
- (string-equal help (current-message))
- (and (stringp msdos-last-help-message)
- (string-equal msdos-last-help-message
- (current-message))))
- (setq msdos-previous-message (current-message)))
- (setq msdos-last-help-message help)
- (let ((message-truncate-lines nil)
- (message-log-max nil))
- (message "%s" help)))
- ((stringp msdos-previous-message)
- (let ((message-log-max nil))
- (message "%s" msdos-previous-message)
- (setq msdos-previous-message nil)))
- (t
- (message nil)))))
- (defun terminal-init-internal ()
- "Terminal initialization function for the MS-DOS \"internal\" terminal.
- Errors out because it is not supposed to be called, ever."
- (error "terminal-init-internal called for window-system `%s'"
- (window-system)))
- (defun msdos-initialize-window-system ()
- "Initialization function for the `pc' \"window system\"."
- (or (eq (window-system) 'pc)
- (error
- "`msdos-initialize-window-system' called, but window-system is `%s'"
- (window-system)))
-
- (msdos-setup-keyboard terminal-frame)
-
- (let* ((colors msdos-color-values)
- (color (car colors)))
- (tty-color-clear)
- (while colors
- (tty-color-define (car color) (cadr color) (cddr color))
- (setq colors (cdr colors) color (car colors))))
-
-
- (clear-face-cache)
-
- (msdos-face-setup)
-
- (msdos-setup-initial-frame)
-
- (setq show-help-function 'msdos-show-help)
-
-
-
- (add-hook 'after-init-hook 'dos-codepage-setup)
-
-
-
-
-
-
- (standard-display-8bit 127 255)
-
- (setq split-window-keep-point t)
-
-
- (setq interprogram-cut-function 'x-select-text)
- (setq interprogram-paste-function 'x-get-selection-value)
- (menu-bar-enable-clipboard)
- (run-hooks 'terminal-init-msdos-hook))
- (add-to-list 'frame-creation-function-alist
- '(pc . msdos-create-frame-with-faces))
- (add-to-list 'window-system-initialization-alist
- '(pc . msdos-initialize-window-system))
- (add-to-list 'handle-args-function-alist '(pc . tty-handle-args))
- (provide 'pc-win)
|