(load-time-value): Update for the name-change `outbuffer' to
[emacs.git] / lisp / term / pc-win.el
blob332e151a86f88cdcc3003026c7caa92bdd33ea93
1 ;;; pc-win.el --- setup support for `PC windows' (whatever that is)
3 ;; Copyright (C) 1994, 1996, 1997, 1999, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
6 ;; Author: Morten Welinder <terra@diku.dk>
7 ;; Maintainer: FSF
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; This file is preloaded into Emacs by loadup.el. The functions in
27 ;; this file are then called during startup from startup.el. This
28 ;; means that just loading this file should not have any side effects
29 ;; besides defining functions and variables, and in particular should
30 ;; NOT initialize any window systems.
32 ;; The main entry points to this file's features are msdos-handle-args,
33 ;; msdos-create-frame-with-faces, msdos-initialize-window-system,
34 ;; terminal-init-internal. The last one is not supposed to be called,
35 ;; so it just errors out.
37 ;;; Code:
39 (if (not (fboundp 'msdos-remember-default-colors))
40 (error "%s: Loading pc-win.el but not compiled for MS-DOS"
41 (invocation-name)))
43 (load "term/internal" nil t)
45 (declare-function msdos-remember-default-colors "msdos.c")
46 (declare-function w16-set-clipboard-data "w16select.c")
47 (declare-function w16-get-clipboard-data "w16select.c")
48 (declare-function msdos-setup-keyboard "internal" (frame))
50 ;;; This was copied from etc/rgb.txt, except that some values were changed
51 ;;; a bit to make them consistent with DOS console colors, and the RGB
52 ;;; values were scaled up to 16 bits, as `tty-define-color' requires.
53 ;;;
54 ;;; The mapping between the 16 standard EGA/VGA colors and X color names
55 ;;; was done by running a Unix version of Emacs inside an X client and a
56 ;;; DJGPP-compiled Emacs on the same PC. The names of X colors used to
57 ;;; define the pixel values are shown as comments to each color below.
58 ;;;
59 ;;; If you want to change the RGB values, keep in mind that various pieces
60 ;;; of Emacs think that a color whose RGB values add up to less than 0.6 of
61 ;;; the values for WHITE (i.e. less than 117963) are ``dark'', otherwise the
62 ;;; color is ``light''; see `frame-set-background-mode' in lisp/faces.el for
63 ;;; an example.
64 (defvar msdos-color-values
65 '(("black" 0 0 0 0)
66 ("blue" 1 0 0 52480) ; MediumBlue
67 ("green" 2 8704 35584 8704) ; ForestGreen
68 ("cyan" 3 0 52736 53504) ; DarkTurquoise
69 ("red" 4 45568 8704 8704) ; FireBrick
70 ("magenta" 5 35584 0 35584) ; DarkMagenta
71 ("brown" 6 40960 20992 11520) ; Sienna
72 ("lightgray" 7 48640 48640 48640) ; Gray
73 ("darkgray" 8 26112 26112 26112) ; Gray40
74 ("lightblue" 9 0 0 65535) ; Blue
75 ("lightgreen" 10 0 65535 0) ; Green
76 ("lightcyan" 11 0 65535 65535) ; Cyan
77 ("lightred" 12 65535 0 0) ; Red
78 ("lightmagenta" 13 65535 0 65535) ; Magenta
79 ("yellow" 14 65535 65535 0) ; Yellow
80 ("white" 15 65535 65535 65535))
81 "A list of MS-DOS console colors, their indices and 16-bit RGB values.")
83 ;; ---------------------------------------------------------------------------
84 ;; We want to delay setting frame parameters until the faces are setup
85 (defvar default-frame-alist nil)
86 ;(modify-frame-parameters terminal-frame default-frame-alist)
88 (defun msdos-face-setup ()
89 "Initial setup of faces for the MS-DOS display."
90 (set-face-foreground 'bold "yellow")
91 (set-face-foreground 'italic "red")
92 (set-face-foreground 'bold-italic "lightred")
93 (set-face-foreground 'underline "white")
95 (make-face 'msdos-menu-active-face)
96 (make-face 'msdos-menu-passive-face)
97 (make-face 'msdos-menu-select-face)
98 (set-face-foreground 'msdos-menu-active-face "white")
99 (set-face-foreground 'msdos-menu-passive-face "lightgray")
100 (set-face-background 'msdos-menu-active-face "blue")
101 (set-face-background 'msdos-menu-passive-face "blue")
102 (set-face-background 'msdos-menu-select-face "red"))
104 (defun msdos-handle-reverse-video (frame parameters)
105 "Handle the reverse-video frame parameter on MS-DOS frames."
106 (when (cdr (or (assq 'reverse parameters)
107 (assq 'reverse default-frame-alist)))
108 (let* ((params (frame-parameters frame))
109 (fg (cdr (assq 'foreground-color params)))
110 (bg (cdr (assq 'background-color params))))
111 (if (equal fg (cdr (assq 'mouse-color params)))
112 (modify-frame-parameters frame
113 (list (cons 'mouse-color bg))))
114 (if (equal fg (cdr (assq 'cursor-color params)))
115 (modify-frame-parameters frame
116 (list (cons 'cursor-color bg)))))))
118 ;; This must run after all the default colors are inserted into
119 ;; tty-color-alist, since msdos-handle-reverse-video needs to know the
120 ;; actual frame colors.
121 (defun msdos-setup-initial-frame ()
122 (modify-frame-parameters terminal-frame default-frame-alist)
123 ;; This remembers the screen colors after applying default-frame-alist,
124 ;; so that all subsequent frames could begin with those colors.
125 (msdos-remember-default-colors terminal-frame)
126 (modify-frame-parameters terminal-frame initial-frame-alist)
127 (msdos-handle-reverse-video terminal-frame
128 (frame-parameters terminal-frame))
130 (frame-set-background-mode terminal-frame)
131 (face-set-after-frame-default terminal-frame))
133 ;; We create frames as if we were a terminal, but without invoking the
134 ;; terminal-initialization function. Also, our handling of reverse
135 ;; video is slightly different.
136 (defun msdos-create-frame-with-faces (&optional parameters)
137 "Create an frame on MS-DOS display.
138 Optional frame parameters PARAMETERS specify the frame parameters.
139 Parameters not specified by PARAMETERS are taken from
140 `default-frame-alist'. If either PARAMETERS or `default-frame-alist'
141 contains a `reverse' parameter, handle that. Value is the new frame
142 created."
143 (let ((frame (make-terminal-frame parameters))
144 success)
145 (unwind-protect
146 (with-selected-frame frame
147 (msdos-handle-reverse-video frame (frame-parameters frame))
148 (unless (terminal-parameter frame 'terminal-initted)
149 (set-terminal-parameter frame 'terminal-initted t))
150 (frame-set-background-mode frame)
151 (face-set-after-frame-default frame)
152 (setq success t))
153 (unless success (delete-frame frame)))
154 frame))
156 ;; ---------------------------------------------------------------------------
157 ;; More or less useful imitations of certain X-functions. A lot of the
158 ;; values returned are questionable, but usually only the form of the
159 ;; returned value matters. Also, by the way, recall that `ignore' is
160 ;; a useful function for returning 'nil regardless of argument.
162 ;; From src/xfns.c
163 (defun x-list-fonts (pattern &optional face frame maximum width)
164 (if (or (null width) (and (numberp width) (= width 1)))
165 (list "ms-dos")
166 (list "no-such-font")))
167 (defun x-display-pixel-width (&optional frame) (frame-width frame))
168 (defun x-display-pixel-height (&optional frame) (frame-height frame))
169 (defun x-display-planes (&optional frame) 4) ;bg switched to 16 colors as well
170 (defun x-display-color-cells (&optional frame) 16)
171 (defun x-server-max-request-size (&optional frame) 1000000) ; ???
172 (defun x-server-vendor (&optional frame) t "GNU")
173 (defun x-server-version (&optional frame) '(1 0 0))
174 (defun x-display-screens (&optional frame) 1)
175 (defun x-display-mm-height (&optional frame) 245) ; Guess the size of my
176 (defun x-display-mm-width (&optional frame) 322) ; monitor, EZ...
177 (defun x-display-backing-store (&optional frame) 'not-useful)
178 (defun x-display-visual-class (&optional frame) 'static-color)
179 (fset 'x-display-save-under 'ignore)
180 (fset 'x-get-resource 'ignore)
182 ;; From lisp/term/x-win.el
183 (defvar x-display-name "pc"
184 "The display name specifying the MS-DOS display and frame type.")
185 (defvar x-colors (mapcar 'car msdos-color-values)
186 "The list of colors available on a PC display under MS-DOS.")
188 ;; From lisp/term/w32-win.el
190 ;;;; Selections and cut buffers
192 ;;; We keep track of the last text selected here, so we can check the
193 ;;; current selection against it, and avoid passing back our own text
194 ;;; from x-cut-buffer-or-selection-value.
195 (defvar x-last-selected-text nil)
197 (defcustom x-select-enable-clipboard t
198 "Non-nil means cutting and pasting uses the clipboard.
199 This is the default on this system, since MS-Windows does not
200 support other types of selections."
201 :type 'boolean
202 :group 'killing)
204 (defun x-select-text (text &optional push)
205 (if x-select-enable-clipboard
206 (w16-set-clipboard-data text))
207 (setq x-last-selected-text text))
209 ;;; Return the value of the current selection.
210 ;;; Consult the selection, then the cut buffer. Treat empty strings
211 ;;; as if they were unset.
212 (defun x-get-selection-value ()
213 (if x-select-enable-clipboard
214 (let (text)
215 ;; Don't die if x-get-selection signals an error.
216 (condition-case c
217 (setq text (w16-get-clipboard-data))
218 (error (message "w16-get-clipboard-data:%s" c)))
219 (if (string= text "") (setq text nil))
220 (cond
221 ((not text) nil)
222 ((eq text x-last-selected-text) nil)
223 ((string= text x-last-selected-text)
224 ;; Record the newer string, so subsequent calls can use the 'eq' test.
225 (setq x-last-selected-text text)
226 nil)
228 (setq x-last-selected-text text))))))
230 ;; x-selection-owner-p is used in simple.el.
231 (defun x-selection-owner-p (&optional type)
232 "Whether the current Emacs process owns the given X Selection.
233 The arg should be the name of the selection in question, typically one of
234 the symbols `PRIMARY', `SECONDARY', or `CLIPBOARD'.
235 \(Those are literal upper-case symbol names, since that's what X expects.)
236 For convenience, the symbol nil is the same as `PRIMARY',
237 and t is the same as `SECONDARY'."
238 (if x-select-enable-clipboard
239 (let (text)
240 ;; Don't die if w16-get-clipboard-data signals an error.
241 (ignore-errors
242 (setq text (w16-get-clipboard-data)))
243 ;; We consider ourselves the owner of the selection if it does
244 ;; not exist, or exists and compares equal with the last text
245 ;; we've put into the Windows clipboard.
246 (cond
247 ((not text) t)
248 ((or (eq text x-last-selected-text)
249 (string= text x-last-selected-text))
250 text)
251 (t nil)))))
253 ;; x-own-selection-internal and x-disown-selection-internal are used
254 ;; in select.el:x-set-selection.
255 (defun x-own-selection-internal (type value)
256 "Assert an X selection of the given TYPE with the given VALUE.
257 TYPE is a symbol, typically `PRIMARY', `SECONDARY', or `CLIPBOARD'.
258 \(Those are literal upper-case symbol names, since that's what X expects.)
259 VALUE is typically a string, or a cons of two markers, but may be
260 anything that the functions on `selection-converter-alist' know about."
261 (ignore-errors
262 (x-select-text value))
263 value)
265 (defun x-disown-selection-internal (selection &optional time)
266 "If we own the selection SELECTION, disown it.
267 Disowning it means there is no such selection."
268 (if (x-selection-owner-p selection)
271 ;; From lisp/faces.el: we only have one font, so always return
272 ;; it, no matter which variety they've asked for.
273 (defun x-frob-font-slant (font which)
274 font)
275 (make-obsolete 'x-frob-font-slant 'make-face-... "21.1")
276 (defun x-frob-font-weight (font which)
277 font)
278 (make-obsolete 'x-frob-font-weight 'make-face-... "21.1")
280 ;; From src/fontset.c:
281 (fset 'query-fontset 'ignore)
283 ;; From lisp/term/x-win.el: make iconify-or-deiconify-frame a no-op.
284 (fset 'iconify-or-deiconify-frame 'ignore)
286 ;; From lisp/frame.el
287 (fset 'set-default-font 'ignore)
288 (fset 'set-mouse-color 'ignore) ; We cannot, I think.
289 (fset 'set-cursor-color 'ignore) ; Hardware determined by char under.
290 (fset 'set-border-color 'ignore) ; Not useful.
292 (defvar msdos-last-help-message nil
293 "The last help message received via `show-help-function'.
294 This is used by `msdos-show-help'.")
296 (defvar msdos-previous-message nil
297 "The content of the echo area before help echo was displayed.")
299 (defun msdos-show-help (help)
300 "Function installed as `show-help-function' on MS-DOS frames."
301 (when (and (not (window-minibuffer-p)) ;Don't overwrite minibuffer contents.
302 (not cursor-in-echo-area)) ;Don't overwrite a prompt.
303 (cond
304 ((stringp help)
305 (setq help (replace-regexp-in-string "\n" ", " help))
306 (unless (or msdos-previous-message
307 (string-equal help (current-message))
308 (and (stringp msdos-last-help-message)
309 (string-equal msdos-last-help-message
310 (current-message))))
311 (setq msdos-previous-message (current-message)))
312 (setq msdos-last-help-message help)
313 (let ((message-truncate-lines nil)
314 (message-log-max nil))
315 (message "%s" help)))
316 ((stringp msdos-previous-message)
317 (let ((message-log-max nil))
318 (message "%s" msdos-previous-message)
319 (setq msdos-previous-message nil)))
321 (message nil)))))
324 ;; Initialization.
325 ;; ---------------------------------------------------------------------------
326 ;; This function is run, by faces.el:tty-create-frame-with-faces, only
327 ;; for the initial frame (on each terminal, but we have only one).
328 ;; This works by setting the `terminal-initted' terminal parameter to
329 ;; this function, the first time `tty-create-frame-with-faces' is
330 ;; called on that terminal. `tty-create-frame-with-faces' is called
331 ;; directly from startup.el and also by `make-frame' through
332 ;; `frame-creation-function-alist'. `make-frame' will call this
333 ;; function if `msdos-create-frame-with-faces' (see below) is not
334 ;; found in `frame-creation-function-alist', which means something is
335 ;; _very_ wrong, because "internal" terminal emulator should not be
336 ;; turned on if our window-system is not `pc'. Therefore, the only
337 ;; Right Thing for us to do here is scream bloody murder.
338 (defun terminal-init-internal ()
339 "Terminal initialization function for the MS-DOS \"internal\" terminal.
340 Errors out because it is not supposed to be called, ever."
341 (error "terminal-init-internal called for window-system `%s'"
342 (window-system)))
344 (defun msdos-initialize-window-system ()
345 "Initialization function for the `pc' \"window system\"."
346 (or (eq (window-system) 'pc)
347 (error
348 "`msdos-initialize-window-system' called, but window-system is `%s'"
349 (window-system)))
350 ;; First, the keyboard.
351 (msdos-setup-keyboard terminal-frame) ; see internal.el
352 ;; Next, register the default colors.
353 (let* ((colors msdos-color-values)
354 (color (car colors)))
355 (tty-color-clear)
356 (while colors
357 (tty-color-define (car color) (cadr color) (cddr color))
358 (setq colors (cdr colors) color (car colors))))
359 ;; Modifying color mappings means realized faces don't
360 ;; use the right colors, so clear them.
361 (clear-face-cache)
362 ;; Now set up some additional faces.
363 (msdos-face-setup)
364 ;; Set up the initial frame.
365 (msdos-setup-initial-frame)
366 ;; Help echo is displayed in the echo area.
367 (setq show-help-function 'msdos-show-help)
368 ;; We want to delay the codepage-related setup until after user's
369 ;; .emacs is processed, because people might define their
370 ;; `dos-codepage-setup-hook' there.
371 (add-hook 'after-init-hook 'dos-codepage-setup)
372 ;; In multibyte mode, we want unibyte buffers to be displayed
373 ;; using the terminal coding system, so that they display
374 ;; correctly on the DOS terminal; in unibyte mode we want to see
375 ;; all 8-bit characters verbatim. In both cases, we want the
376 ;; entire range of 8-bit characters to arrive at our display code
377 ;; verbatim.
378 (standard-display-8bit 127 255)
379 ;; We are fast enough to make this optimization unnecessary.
380 (setq split-window-keep-point t)
381 ;; Arrange for the kill and yank functions to set and check the
382 ;; clipboard.
383 (setq interprogram-cut-function 'x-select-text)
384 (setq interprogram-paste-function 'x-get-selection-value)
385 (menu-bar-enable-clipboard)
386 (run-hooks 'terminal-init-msdos-hook))
388 ;; frame-creation-function-alist is examined by frame.el:make-frame.
389 (add-to-list 'frame-creation-function-alist
390 '(pc . msdos-create-frame-with-faces))
391 ;; window-system-initialization-alist is examined by startup.el:command-line.
392 (add-to-list 'window-system-initialization-alist
393 '(pc . msdos-initialize-window-system))
394 ;; We don't need anything beyond tty-handle-args for handling
395 ;; command-line argument; see startup.el.
396 (add-to-list 'handle-args-function-alist '(pc . tty-handle-args))
398 ;; ---------------------------------------------------------------------------
400 (provide 'pc-win)
402 ;; arch-tag: 5cbdb455-b495-427b-95d0-e417d77d00b4
403 ;;; pc-win.el ends here