Add standard library headers.
[emacs.git] / lisp / term / vt100.el
blob658ab4820f99d25297f8c78ee9d3f8c2e0fa909b
1 ;;; vt100.el --- define VT100 function key sequences in function-key-map
3 ;; Author: FSF
4 ;; Keywords: terminals
6 ;; Copyright (C) 1989 Free Software Foundation, Inc.
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is distributed in the hope that it will be useful,
11 ;; but WITHOUT ANY WARRANTY. No author or distributor
12 ;; accepts responsibility to anyone for the consequences of using it
13 ;; or for whether it serves any particular purpose or works at all,
14 ;; unless he says so in writing. Refer to the GNU Emacs General Public
15 ;; License for full details.
17 ;; Everyone is granted permission to copy, modify and redistribute
18 ;; GNU Emacs, but only under the conditions described in the
19 ;; GNU Emacs General Public License. A copy of this license is
20 ;; supposed to have been given to you along with GNU Emacs so you
21 ;; can know your rights and responsibilities. It should be in a
22 ;; file named COPYING. Among other things, the copyright notice
23 ;; and this notice must be preserved on all copies.
25 ;;; Commentary:
27 ;; Uses the Emacs 19 terminal initialization features --- won't work with 18.
29 ;; Handles all VT100 clones, including the Apollo terminal. Also handles
30 ;; the VT200 --- its PF- and arrow- keys are different, but all those
31 ;; are really set up by the terminal initialization code, which mines them
32 ;; out of termcap. This package is here to define the keypad comma, dash
33 ;; and period (which aren't in termcap's repertoire) and the function for
34 ;; changing from 80 to 132 columns & vv.
36 ;;; Code:
38 ;; CSI sequences - those that start with "\e[".
39 ;; Termcap or terminfo should set these up automatically
40 ;; (if (boundp 'vt100-CSI-prefix)
41 ;; nil
42 ;; (define-prefix-command 'vt100-CSI-prefix)
43 ;; (define-key function-key-map "\e[" 'vt100-CSI-prefix)
44 ;;
45 ;; (define-key vt100-CSI-prefix "A" [up])
46 ;; (define-key vt100-CSI-prefix "B" [down])
47 ;; (define-key vt100-CSI-prefix "C" [right])
48 ;; (define-key vt100-CSI-prefix "D" [left])
49 ;; )
51 ;; SS3 sequences - those that start with "\eO".
52 (if (boundp 'vt100-SS3-prefix)
53 nil
54 (define-prefix-command 'vt100-SS3-prefix)
55 (define-key function-key-map "\eO" 'vt100-SS3-prefix)
57 ;; These will typically be set up automatically by termcap or terminfo
58 ;; (define-key vt100-SS3-prefix "A" [up]) ; up-arrow
59 ;; (define-key vt100-SS3-prefix "B" [down]) ; down-arrow
60 ;; (define-key vt100-SS3-prefix "C" [right]) ; right-arrow
61 ;; (define-key vt100-SS3-prefix "D" [left]) ; left-arrow
62 ;; (define-key vt100-SS3-prefix "M" [kp-enter]) ; Enter
63 ;; (define-key vt100-SS3-prefix "P" [kp-f1]) ; PF1
64 ;; (define-key vt100-SS3-prefix "Q" [kp-f2]) ; PF2
65 ;; (define-key vt100-SS3-prefix "R" [kp-f3]) ; PF3
66 ;; (define-key vt100-SS3-prefix "S" [kp-f4]) ; PF4
67 ;; (define-key vt100-SS3-prefix "p" [kp-0]) ; 0
68 ;; (define-key vt100-SS3-prefix "q" [kp-1]) ; 1
69 ;; (define-key vt100-SS3-prefix "r" [kp-2]) ; 2
70 ;; (define-key vt100-SS3-prefix "s" [kp-3]) ; 3
71 ;; (define-key vt100-SS3-prefix "t" [kp-4]) ; 4
72 ;; (define-key vt100-SS3-prefix "u" [kp-5]) ; 5
73 ;; (define-key vt100-SS3-prefix "v" [kp-6]) ; 6
74 ;; (define-key vt100-SS3-prefix "w" [kp-7]) ; 7
75 ;; (define-key vt100-SS3-prefix "x" [kp-8]) ; 8
76 ;; (define-key vt100-SS3-prefix "y" [kp-9]) ; 9
78 ;; Neither termcap nor terminfo will set these
79 (define-key vt100-SS3-prefix "l" [kp-separator]) ; ,
80 (define-key vt100-SS3-prefix "m" [kp-subtract]) ; -
81 (define-key vt100-SS3-prefix "n" [kp-period]) ; .
84 ;;; Controlling the screen width.
85 (defconst vt100-wide-mode (= (frame-width) 132)
86 "t if vt100 is in 132-column mode.")
88 (defun vt100-wide-mode (&optional arg)
89 "Toggle 132/80 column mode for vt100s."
90 (interactive "P")
91 (setq vt100-wide-mode
92 (if (null arg) (not vt100-wide-mode)
93 (> (prefix-numeric-value arg) 0)))
94 (send-string-to-terminal (if vt100-wide-mode "\e[?3h" "\e[?3l"))
95 (set-frame-width (if vt100-wide-mode 132 80)))
97 ;;; vt100.el ends here