Mercurial > hg > xemacs-beta
annotate lisp/x-win-sun.el @ 5481:5008a40f7460
Added tag r21-5-31 for changeset f5a0b32f4687
author | Stephen J. Turnbull <stephen@xemacs.org> |
---|---|
date | Fri, 29 Apr 2011 22:57:14 +0900 |
parents | 91b3aa59f49b |
children | 8861440b1aa4 |
rev | line source |
---|---|
428 | 1 ;;; x-win-sun.el --- runtime initialization for Sun X servers and keyboards |
2 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc. | |
3 | |
4 ;; Authors: jwz, ben, martin | |
5 ;; Keywords: terminals | |
6 | |
7 ;; This file is part of XEmacs. | |
8 | |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
9 ;; XEmacs is free software: you can redistribute it and/or modify it |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
10 ;; under the terms of the GNU General Public License as published by the |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
11 ;; Free Software Foundation, either version 3 of the License, or (at your |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
12 ;; option) any later version. |
428 | 13 |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
14 ;; XEmacs is distributed in the hope that it will be useful, but WITHOUT |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
15 ;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
16 ;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
17 ;; for more details. |
428 | 18 |
19 ;; You should have received a copy of the GNU General Public License | |
5404
91b3aa59f49b
Convert lisp/ to GPLv3.
Mike Sperber <sperber@deinprogramm.de>
parents:
4482
diff
changeset
|
20 ;; along with XEmacs. If not, see <http://www.gnu.org/licenses/>. |
428 | 21 |
22 ;;; Commentary: | |
23 | |
24 ;; This file is loaded by x-win.el at run-time when we are sure that XEmacs | |
25 ;; is running on the display of a Sun. | |
26 | |
27 ;; The Sun X server (both the MIT and OpenWindows varieties) have extremely | |
28 ;; stupid names for their keypad and function keys. For example, the key | |
29 ;; labeled 3 / PgDn, with R15 written on the front, is actually called F35. | |
30 | |
31 ;; There are 3 methods of dealing with the Sun key brokenness: | |
32 ;; | |
33 ;; - Use xmodmap to give all keys more sensible names for all apps: | |
34 ;; I use this shell script: | |
35 ;; | |
36 ;; for i in 0 1 2 3 4 5 6 7 8 9 Add Subtract Multiply Divide Decimal ; do | |
37 ;; echo "keysym KP-$i = KP-$i" | |
38 ;; done | xmodmap | |
39 ;; | |
40 ;; Clearly, as a good X11 citizen, we can't do this. | |
41 ;; | |
42 ;; - Use keyboard-translate-table to remap the keybindings at a low level. | |
43 ;; This approach is taken in the function `sun-x11-keyboard-translate'. | |
44 ;; This is like running xmodmap within XEmacs only. | |
45 ;; This is not the default, however, so that legacy keybindings in users' | |
46 ;; .emacs files like (global-set-key [(f35)] 'foo) continue to work | |
47 ;; | |
48 ;; - Use keyboard macros to provide indirection for keybindings. | |
49 ;; If we do (global-set-key [(f35)] [(kp-3)]), then the user's keybindings | |
50 ;; work whether he uses `f35' or `kp-3'. | |
51 ;; This is also compatible with FSF Emacs and other X11 apps. | |
52 ;; Although this has the disadvantage that these remappings | |
53 ;; only work with the global key map, we use this as the default. | |
54 ;; | |
55 ;; - The Right Way to do this remains to be written... | |
56 | |
57 ;; OK, here's another try at doing things the right way. | |
58 | |
59 ;; We use function-key-map, which honors explicit key-bindings for the | |
60 ;; stupid Sun names, but also allows indirection if no explicit | |
61 ;; key-binding exists. | |
62 | |
63 ;;; Code: | |
64 | |
502 | 65 (globally-declare-fboundp |
66 '(x-keysym-on-keyboard-sans-modifiers-p)) | |
67 | |
428 | 68 ;;;###autoload |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
69 (defun x-win-init-sun (device) |
428 | 70 |
71 ;; help is ok | |
72 ;; num_lock is ok | |
73 ;; up is ok | |
74 ;; left is ok | |
75 ;; right is ok | |
76 ;; kp-add is ok | |
77 ;; down is ok | |
78 ;; insert is ok | |
79 ;; delete is ok | |
80 ;; kp-enter is ok | |
81 ;; Sun Function keys | |
82 (loop for (from-key to-key) in | |
83 `((f21 pause) | |
84 (f22 print) | |
85 (f23 scroll_lock) | |
86 | |
87 ;; X11 R6 mappings | |
88 (SunProps props) | |
89 (SunFront front) | |
90 (SunOpen open) | |
91 (SunFind find) | |
92 (cancel stop) | |
93 (Undo undo) | |
94 (SunCopy copy) | |
95 (SunPaste paste) | |
96 (SunCut cut) | |
97 | |
98 (f13 props) | |
99 (f14 undo) | |
100 (f15 front) | |
101 (f16 copy) | |
102 (f17 open) | |
103 (f18 paste) | |
104 (f19 find) | |
105 (f20 cut) | |
106 | |
107 (f25 kp-divide) | |
108 (f26 kp-multiply) | |
109 (f31 kp-5) | |
110 | |
111 ;; Map f33 and r13 to end or kp-end | |
112 ,@(cond | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
113 ((not (x-keysym-on-keyboard-sans-modifiers-p 'end device)) |
428 | 114 '((f33 end) |
115 (r13 end))) | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
116 ((not (x-keysym-on-keyboard-sans-modifiers-p 'kp-end device)) |
428 | 117 '((f33 kp-end) |
118 (r13 kp-end)))) | |
119 | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
120 ,@(when (x-keysym-on-keyboard-sans-modifiers-p 'f36 device) |
428 | 121 '((f36 stop) |
122 (f37 again))) | |
123 | |
124 ;; Type 4 keyboards have a real kp-subtract and a f24 labelled `=' | |
125 ;; Type 5 keyboards have no key labelled `=' and a f24 labelled `-' | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
126 ,@(when (x-keysym-on-keyboard-sans-modifiers-p 'f24 device) |
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
127 `((f24 ,(if (x-keysym-on-keyboard-sans-modifiers-p 'kp-subtract device) |
428 | 128 'kp-equal |
129 'kp-subtract)))) | |
130 | |
131 ;; Map f27 to home or kp-home, as appropriate | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
132 ,@(cond ((not (x-keysym-on-keyboard-sans-modifiers-p 'home device)) |
428 | 133 '((f27 home))) |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
134 ((not (x-keysym-on-keyboard-sans-modifiers-p 'kp-home device)) |
428 | 135 '((f27 kp-home)))) |
136 | |
137 ;; Map f29 to prior or kp-prior, as appropriate | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
138 ,@(cond ((not (x-keysym-on-keyboard-sans-modifiers-p 'prior device)) |
428 | 139 '((f29 prior))) |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
140 ((not (x-keysym-on-keyboard-sans-modifiers-p 'kp-prior device)) |
428 | 141 '((f29 kp-prior)))) |
142 | |
143 ;; Map f35 to next or kp-next, as appropriate | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
144 ,@(cond ((not (x-keysym-on-keyboard-sans-modifiers-p 'next device)) |
428 | 145 '((f35 next))) |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
146 ((not (x-keysym-on-keyboard-sans-modifiers-p 'kp-next device)) |
428 | 147 '((f35 kp-next)))) |
148 | |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
149 ,@(cond ((x-keysym-on-keyboard-sans-modifiers-p 'apRead device) ; SunOS 4.1.1 |
428 | 150 '((apRead f11) (apEdit f12))) |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
151 ((x-keysym-on-keyboard-sans-modifiers-p 'SunF36 device) ; SunOS 5 |
428 | 152 '((SunF36 f11) |
153 (SunF37 f12) | |
154 (f11 stop) | |
155 (f12 again)))) | |
156 ) | |
4482
e3ef34f57070
Bind function-key-map correctly in device-specific startup code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4477
diff
changeset
|
157 ;; Get the correct value for function-key-map |
e3ef34f57070
Bind function-key-map correctly in device-specific startup code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4477
diff
changeset
|
158 with function-key-map = (symbol-value-in-console 'function-key-map |
e3ef34f57070
Bind function-key-map correctly in device-specific startup code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4477
diff
changeset
|
159 (device-console device) |
e3ef34f57070
Bind function-key-map correctly in device-specific startup code.
Aidan Kehoe <kehoea@parhasard.net>
parents:
4477
diff
changeset
|
160 function-key-map) |
4477
e34711681f30
Don't determine whether to call general device-type code at startup,
Aidan Kehoe <kehoea@parhasard.net>
parents:
3171
diff
changeset
|
161 do (when (x-keysym-on-keyboard-sans-modifiers-p from-key device) |
428 | 162 (dolist (prefix '(() (shift) (control) (meta) (alt) |
163 (shift control) (shift alt) (shift meta) | |
164 (control alt) (control meta) (alt meta) | |
165 (shift control alt) (shift control meta) | |
166 (shift alt meta) (control alt meta) | |
167 (shift control alt meta))) | |
168 (define-key function-key-map | |
169 (append prefix (list from-key)) | |
170 (vector (append prefix (list to-key))))))) | |
171 | |
172 ;; for each element in the left column of the above table, alias it | |
173 ;; to the thing in the right column. Then do the same for many, but | |
174 ;; not all, modifier combinations. | |
175 ;; | |
176 ;; (Well, we omit hyper and super. #### Handle this some other way!) | |
177 ;; (while mapping | |
178 ;; (let ((mods '(() (shift) (control) (meta) (alt)))) | |
179 ;; (while mods | |
180 ;; (let ((k1 (vector (append (car mods) (list (car (car mapping)))))) | |
181 ;; (k2 (vector (append (car mods) (list (cdr (car mapping))))))) | |
182 ;; (define-key global-map k1 k2)) | |
183 ;; (setq mods (cdr mods)))) | |
184 ;; (setq mapping (cdr mapping)))) | |
185 | |
186 ;;; I've extended keyboard-translate-table to work over keysyms. | |
187 ;;; [FSF Emacs has something called `system-key-alist' that is | |
188 ;;; supposed to accomplish approximately the same thing. Unfortunately, | |
189 ;;; it's brain-dead in the typically FSF way, and associates *numbers* | |
190 ;;; (who knows where the hell they come from?) with symbols.] --ben | |
191 | |
192 ;;; And I've made it into a function which is NOT called by default --martin | |
193 | |
194 (defun sun-x11-keyboard-translate () | |
195 "Remap Sun's X11 keyboard. | |
196 Keys with names like `f35' are remapped, at a low level, | |
197 to more mnemonic ones,like `kp-3'." | |
198 (interactive) | |
199 | |
200 (keyboard-translate | |
201 'f11 'stop ; the type4 keyboard Sun/MIT name | |
202 'f36 'stop ; the type5 keyboard Sun name | |
203 'cancel 'stop ; R6 binding | |
204 'f12 'again ; the type4 keyboard Sun/MIT name | |
205 'f37 'again ; the type5 keyboard Sun name | |
206 'f13 'props ; | |
207 'SunProps 'props ; R6 binding | |
208 'f14 'undo ; | |
209 'f15 'front ; | |
210 'SunFront 'front ; R6 binding | |
211 'f16 'copy ; | |
212 'SunCopy 'copy ; R6 binding | |
213 'f17 'open ; | |
214 'SunOpen 'open ; R6 binding | |
215 'f18 'paste ; | |
216 'SunPaste 'paste ; R6 binding | |
217 'f19 'find ; | |
218 'f20 'cut ; | |
219 'SunCut 'cut ; R6 binding | |
220 ;; help is ok | |
221 'f21 'pause | |
222 'f22 'prsc | |
223 'f23 'scroll | |
224 ;; num_lock is ok | |
225 ;;'f24 'kp-equal) ; type4 only! | |
226 'f25 'kp-divide ; | |
227 'f26 'kp-multiply ; | |
228 'f24 'kp-subtract ; type5 only! | |
229 'f27 'kp-7 ; | |
230 ;; up is ok | |
231 'f29 'kp-9 | |
232 ;; left is ok | |
233 'f31 'kp-5 | |
234 ;; right is ok | |
235 ;; kp-add is ok | |
236 'f33 'kp-1 ; the Sun name | |
237 'r13 'end ; the MIT name | |
238 ;; down is ok | |
239 'f35 'kp-3 | |
240 ;; insert is ok | |
241 ;; delete is ok | |
242 ;; kp-enter is ok | |
243 'SunF36 'f11 ; Type 5 keyboards | |
244 'SunF37 'f12 ; Used to be Stop & Again | |
245 )) | |
246 | |
3171 | 247 ;; Initialise the information needed for processing of function keys on |
248 ;; keyboards without Roman-alpabet characters available. This keyboard | |
249 ;; description was taken from gkb-new/xmodmap.sun/xmodmap.us in the | |
250 ;; gnome-applets 2.12.0 distribution. | |
251 (setq x-us-keymap-first-keycode 37 | |
252 x-us-keymap-description | |
253 [[?1 ?!] [?2 ?@] [?3 ?\#] [?4 ?$] [?5 ?%] [?6 ?^] [?7 ?&] [?8 ?*] | |
254 [?9 ?\(] [?0 ?\)] [?- ?_] [?= ?+] [?\` ?~] nil nil nil ?/ ?* nil | |
255 nil ?\. nil nil ?\t [?q ?Q] [?w ?W] [?e ?E] [?r ?R] [?t ?T] [?y ?Y] | |
256 [?u ?U] [?i ?I] [?o ?O] [?p ?P] [?\[ ?{] [?\] ?}] nil nil ?7 ?8 ?9 | |
257 ?- nil nil nil nil nil [?a ?A] [?s ?S] [?d ?D] [?f ?F] [?g ?G] | |
258 [?h ?H] [?j ?J] [?k ?K] [?l ?L] [?\; ?:] [?\' ?\"] [?\\ ?|] nil nil | |
259 ?4 ?5 ?6 ?0 nil nil nil nil nil [?z ?Z] [?x ?X] [?c ?C] [?v ?V] | |
260 [?b ?B] [?n ?N] [?m ?M] [?\, ?<] [?\. ?>] [?/ ?\?] nil nil ?1 ?2 | |
261 ?3 nil nil nil nil nil nil ?\ nil nil nil ?+]) | |
428 | 262 |
263 ;;; OpenWindows-like "find" processing. | |
264 ;;; As far as I know, the `find' key is a Sunism, so we do that binding | |
265 ;;; here. This is the only Sun-specific keybinding. (The functions | |
266 ;;; themselves are in x-win.el in case someone wants to use them when | |
267 ;;; not running on a Sun display.) | |
268 | |
269 (or (lookup-key global-map 'find) | |
270 (define-key global-map 'find 'ow-find)) | |
271 (or (lookup-key global-map '(shift find)) | |
272 (define-key global-map '(shift find) 'ow-find-backward)) | |
273 | |
274 ) | |
275 | |
276 ;;; x-win-sun.el ends here |