(vip-custom-file-name): Use convert-standard-filename.
[bpt/emacs.git] / lisp / emulation / edt-mapper.el
CommitLineData
be010748 1;;; edt-mapper.el --- Create an EDT LK-201 Map File for X-Windows Emacs
c0e42a4d 2
732be465 3;; Copyright (C) 1994, 1995 Free Software Foundation, Inc.
c0e42a4d
KH
4
5;; Author: Kevin Gallagher <kgallagh@spd.dsccc.com>
6;; Maintainer: Kevin Gallagher <kgallagh@spd.dsccc.com>
7;; Keywords: emulations
8
e9f722ee 9;; This file is part of GNU Emacs.
c0e42a4d
KH
10
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 2, or (at your option)
14;; any later version.
15
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.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to
23;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
24
25;;; Commentary:
26
27;; This emacs lisp program can be used to create an emacs lisp file
28;; that defines the mapping of the user's keyboard under X-Windows to
29;; the LK-201 keyboard function keys and keypad keys (around which
30;; EDT has been designed). Please read the "Usage" AND "Known
31;; Problems" sections before attempting to run this program. (The
32;; design of this file, edt-mapper.el, was heavily influenced by
33;; tpu-mapper.el.)
34
35;;; Usage:
36
37;; Simply load this file into the X-Windows version of emacs (version 19)
38;; using the following command.
39
40;; emacs -q -l edt-mapper.el
41
42;; The "-q" option prevents loading of your .emacs file (commands therein
43;; might confuse this program).
44
45;; An instruction screen showing the typical LK-201 terminal functions keys
46;; will be displayed, and you will be prompted to press the keys on your
47;; keyboard which you want to emulate the corresponding LK-201 keys.
48
49;; Finally, you will be prompted for the name of the file to store
50;; the key definitions. If you chose the default, it will be found
51;; and loaded automatically when the EDT emulation is started. If
52;; you specify a different file name, you will need to set the
53;; variable "edt-xkeys-file" before starting the EDT emulation.
54;; Here's how you might go about doing that in your .emacs file.
55
56;; (setq edt-xkeys-file (expand-file-name "~/.my-emacs-x-keys"))
57
58;;; Known Problems:
59
60;; Sometimes, edt-mapper will ignore a key you press, and just continue to
61;; prompt for the same key. This can happen when your window manager sucks
62;; up the key and doesn't pass it on to emacs, or it could be an emacs bug.
63;; Either way, there's nothing that edt-mapper can do about it. You must
64;; press RETURN, to skip the current key and continue. Later, you and/or
65;; your local X guru can try to figure out why the key is being ignored.
66
67;; ====================================================================
68
c0e42a4d
KH
69;;;
70;;; Make sure we're running X-windows and Emacs version 19
71;;;
72(cond
73 ((not (and window-system (not (string-lessp emacs-version "19"))))
74 (insert "
75
76 Whoa! This isn't going to work...
77
78 You must run edt-mapper.el under X-windows and Emacs version 19.
79
80 Press any key to exit. ")
81 (sit-for 600)
82 (kill-emacs t)))
83
84
85;;;
86;;; Decide whether we're running GNU or Lucid emacs.
87;;;
88(defconst edt-lucid-emacs19-p (string-match "Lucid" emacs-version)
89 "Non-NIL if we are running Lucid Emacs version 19.")
90
91
92;;;
93;;; Key variables
94;;;
95(defvar edt-key nil)
96(defvar edt-enter nil)
97(defvar edt-return nil)
98(defvar edt-key-seq nil)
99(defvar edt-enter-seq nil)
100(defvar edt-return-seq nil)
101
102
103;;;
104;;; Make sure the window is big enough to display the instructions
105;;;
106(if edt-lucid-emacs19-p (set-screen-size nil 80 36)
107 (set-frame-size (selected-frame) 80 36))
108
109
110;;;
111;;; Create buffers - Directions and Keys
112;;;
113(if (not (get-buffer "Directions")) (generate-new-buffer "Directions"))
114(if (not (get-buffer "Keys")) (generate-new-buffer "Keys"))
115
116;;;
117;;; Put header in the Keys buffer
118;;;
119(set-buffer "Keys")
120(insert "\
121;;
122;; Key definitions for the EDT emulation within GNU Emacs
123;;
124
125(defconst *EDT-keys*
126 '(
127")
128
129;;;
130;;; Display directions
131;;;
132(switch-to-buffer "Directions")
133(insert "
134 EDT MAPPER
135
136 You will be asked to press keys to create a custom mapping (under
137 X-Windows) of your keypad keys and function keys so that they can emulate
138 the LK-201 keypad and function keys or the subset of keys found on a
139 VT-100 series terminal keyboard. (The LK-201 keyboard is the standard
140 keyboard attached to VT-200 series terminals, and above.)
141
142 Sometimes, edt-mapper will ignore a key you press, and just continue to
143 prompt for the same key. This can happen when your window manager sucks
144 up the key and doesn't pass it on to emacs, or it could be an emacs bug.
145 Either way, there's nothing that edt-mapper can do about it. You must
146 press RETURN, to skip the current key and continue. Later, you and/or
147 your local X guru can try to figure out why the key is being ignored.
148
149 Start by pressing the RETURN key, and continue by pressing the keys
150 specified in the mini-buffer. If you want to entirely omit a key,
151 because your keyboard does not have a corresponding key, for example,
152 just press RETURN at the prompt.
153
154")
155(delete-other-windows)
156
157;;;
158;;; Save <CR> for future reference
159;;;
160(cond
161 (edt-lucid-emacs19-p
162 (setq edt-return-seq (read-key-sequence "Hit carriage-return <CR> to continue "))
163 (setq edt-return (concat "[" (format "%s" (event-key (aref edt-return-seq 0))) "]")))
164 (t
165 (message "Hit carriage-return <CR> to continue ")
166 (setq edt-return-seq (read-event))
167 (setq edt-return (concat "[" (format "%s" edt-return-seq) "]"))))
168
169;;;
170;;; Display Keypad Diagram and Begin Prompting for Keys
171;;;
172(set-buffer "Directions")
173(delete-region (point-min) (point-max))
174(insert "
175
176
177
178 PRESS THE KEY SPECIFIED IN THE MINIBUFFER BELOW.
179
180
181
182
183 Here's a picture of the standard LK-201 keypad for reference:
184
185 _______________________ _______________________________
186 | HELP | DO | | F17 | F18 | F19 | F20 |
187 | | | | | | | |
188 |_______|_______________| |_______|_______|_______|_______|
189 _______________________ _______________________________
190 | FIND |INSERT |REMOVE | | PF1 | PF2 | PF3 | PF4 |
191 | | | | | | | | |
192 |_______|_______|_______| |_______|_______|_______|_______|
193 |SELECT |PREVIOU| NEXT | | KP7 | KP8 | KP9 | KP- |
194 | | | | | | | | |
195 |_______|_______|_______| |_______|_______|_______|_______|
196 | UP | | KP4 | KP5 | KP6 | KP, |
197 | | | | | | |
198 _______|_______|_______ |_______|_______|_______|_______|
199 | LEFT | DOWN | RIGHT | | KP1 | KP2 | KP3 | |
200 | | | | | | | | |
201 |_______|_______|_______| |_______|_______|_______| KPE |
202 | KP0 | KPP | |
203 | | | |
204 |_______________|_______|_______|
205
206")
207
208;;;
209;;; Key mapping functions
210;;;
211(defun edt-lucid-map-key (ident descrip func gold-func)
212 (interactive)
213 (setq edt-key-seq (read-key-sequence (format "Press %s%s: " ident descrip)))
214 (setq edt-key (concat "[" (format "%s" (event-key (aref edt-key-seq 0))) "]"))
215 (cond ((not (equal edt-key edt-return))
216 (set-buffer "Keys")
217 (insert (format " (\"%s\" . %s)\n" ident edt-key))
218 (set-buffer "Directions"))
219 ;; bogosity to get next prompt to come up, if the user hits <CR>!
220 ;; check periodically to see if this is still needed...
221 (t
222 (format "%s" edt-key)))
223 edt-key)
224
225(defun edt-gnu-map-key (ident descrip)
226 (interactive)
227 (message "Press %s%s: " ident descrip)
228 (setq edt-key-seq (read-event))
229 (setq edt-key (concat "[" (format "%s" edt-key-seq) "]"))
230 (cond ((not (equal edt-key edt-return))
231 (set-buffer "Keys")
232 (insert (format " (\"%s\" . %s)\n" ident edt-key))
233 (set-buffer "Directions"))
234 ;; bogosity to get next prompt to come up, if the user hits <CR>!
235 ;; check periodically to see if this is still needed...
236 (t
237 (set-buffer "Keys")
238 (insert (format " (\"%s\" . \"\" )\n" ident))
239 (set-buffer "Directions")))
240 edt-key)
241
242(fset 'edt-map-key (if edt-lucid-emacs19-p 'edt-lucid-map-key 'edt-gnu-map-key))
243(set-buffer "Keys")
244(insert "
245;;
246;; Arrows
247;;
248")
249(set-buffer "Directions")
250
251(edt-map-key "UP" " - The Up Arrow Key")
252(edt-map-key "DOWN" " - The Down Arrow Key")
253(edt-map-key "LEFT" " - The Left Arrow Key")
254(edt-map-key "RIGHT" " - The Right Arrow Key")
255
256
257(set-buffer "Keys")
258(insert "
259;;
260;; PF keys
261;;
262")
263(set-buffer "Directions")
264
265(edt-map-key "PF1" " - The PF1 (GOLD) Key")
266(edt-map-key "PF2" " - The Keypad PF2 Key")
267(edt-map-key "PF3" " - The Keypad PF3 Key")
268(edt-map-key "PF4" " - The Keypad PF4 Key")
269
270(set-buffer "Keys")
271(insert "
272;;
273;; KP0-9 KP- KP, KPP and KPE
274;;
275")
276(set-buffer "Directions")
277
278(edt-map-key "KP0" " - The Keypad 0 Key")
279(edt-map-key "KP1" " - The Keypad 1 Key")
280(edt-map-key "KP2" " - The Keypad 2 Key")
281(edt-map-key "KP3" " - The Keypad 3 Key")
282(edt-map-key "KP4" " - The Keypad 4 Key")
283(edt-map-key "KP5" " - The Keypad 5 Key")
284(edt-map-key "KP6" " - The Keypad 6 Key")
285(edt-map-key "KP7" " - The Keypad 7 Key")
286(edt-map-key "KP8" " - The Keypad 8 Key")
287(edt-map-key "KP9" " - The Keypad 9 Key")
288(edt-map-key "KP-" " - The Keypad - Key")
289(edt-map-key "KP," " - The Keypad , Key")
290(edt-map-key "KPP" " - The Keypad . Key")
291(edt-map-key "KPE" " - The Keypad Enter Key")
292;; Save the enter key
293(setq edt-enter edt-key)
294(setq edt-enter-seq edt-key-seq)
295
296
297(set-buffer "Keys")
298(insert "
299;;
300;; Editing keypad (FIND, INSERT, REMOVE)
301;; (SELECT, PREVIOUS, NEXT)
302;;
303")
304(set-buffer "Directions")
305
306(edt-map-key "FIND" " - The Find key on the editing keypad")
307(edt-map-key "INSERT" " - The Insert key on the editing keypad")
308(edt-map-key "REMOVE" " - The Remove key on the editing keypad")
309(edt-map-key "SELECT" " - The Select key on the editing keypad")
310(edt-map-key "PREVIOUS" " - The Prev Scr key on the editing keypad")
311(edt-map-key "NEXT" " - The Next Scr key on the editing keypad")
312
313(set-buffer "Keys")
314(insert "
315;;
316;; F1-14 Help Do F17-F20
317;;
318")
319(set-buffer "Directions")
320
321(edt-map-key "F1" " - F1 Function Key")
322(edt-map-key "F2" " - F2 Function Key")
323(edt-map-key "F3" " - F3 Function Key")
324(edt-map-key "F4" " - F4 Function Key")
325(edt-map-key "F5" " - F5 Function Key")
326(edt-map-key "F6" " - F6 Function Key")
327(edt-map-key "F7" " - F7 Function Key")
328(edt-map-key "F8" " - F8 Function Key")
329(edt-map-key "F9" " - F9 Function Key")
330(edt-map-key "F10" " - F10 Function Key")
331(edt-map-key "F11" " - F11 Function Key")
332(edt-map-key "F12" " - F12 Function Key")
333(edt-map-key "F13" " - F13 Function Key")
334(edt-map-key "F14" " - F14 Function Key")
335(edt-map-key "HELP" " - HELP Function Key")
336(edt-map-key "DO" " - DO Function Key")
337(edt-map-key "F17" " - F17 Function Key")
338(edt-map-key "F18" " - F18 Function Key")
339(edt-map-key "F19" " - F19 Function Key")
340(edt-map-key "F20" " - F20 Function Key")
341
342(set-buffer "Directions")
343(delete-region (point-min) (point-max))
344(insert "
345 ADDITIONAL FUNCTION KEYS
346
347 Your keyboard may have additional function keys which do not
348 correspond to any LK-201 keys. The EDT Emulation can be
349 configured to recognize those keys, since you may wish to add your
350 own key bindings to those keys.
351
352 For example, suppose your keyboard has a keycap marked \"Line Del\"
353 and you wish to add it to the list of keys which can be customized
354 by the EDT Emulation. First, assign a unique single-word name to
355 the key for use by the EDT Emulation, let's say \"linedel\", in this
356 example. Then, at the \"EDT Key Name:\" prompt, enter \"linedel\",
357 followed by a press of the RETURN key. Finally, when prompted,
358 press the \"Line Del\" key. You now will be able to bind functions
359 to \"linedel\" and \"Gold-linedel\" in edt-user.el in just the same way
360 you can customize bindings of the standard LK-201 keys.
361
362 When you have no additional function keys to specify, just press
363 RETURN at the \"EDT Key Name:\" prompt. (If you change your mind
364 AFTER you enter an EDT Key Name and before you press a key at the
365 \"Press\" prompt, you may omit the key by simply pressing RETURN at
366 the prompt.)
367")
368(switch-to-buffer "Directions")
369;;;
370;;; Add support for extras keys
371;;;
372(set-buffer "Keys")
373(insert "\
374;;
375;; Extra Keys
376;;
377")
378(setq EDT-key-name "")
379(while (not
380 (string-equal (setq EDT-key-name (read-string "EDT Key Name: ")) ""))
381 (edt-map-key EDT-key-name ""))
382
383;
384; No more keys to add, so wrap up.
385;
386(set-buffer "Keys")
387(insert "\
388 )
389 )
390")
391
392;;;
393;;; Save the key mapping program and blow this pop stand
394;;;
395(let ((file (if edt-lucid-emacs19-p "~/.edt-lucid-keys" "~/.edt-gnu-keys")))
396 (set-visited-file-name
397 (read-file-name (format "Save key mapping to file (default %s): " file) nil file)))
398(save-buffer)
399
400(message "That's it! Press any key to exit")
401(sit-for 600)
402(kill-emacs t)
403
404;;; edt-mapper.el ends here