17 external glx
: int -> unit = "ml_glx";;
18 external glxsync
: unit -> unit = "ml_glxsync";;
19 external swapb
: unit -> unit = "ml_swapb";;
21 let vlog fmt
= Format.kprintf ignore fmt
;;
26 method reshape _ _
= ()
27 method mouse _ _ _ _ _
= ()
28 method motion _ _
= ()
29 method pmotion _ _
= ()
33 method winstate _
= ()
40 method reshape
: int -> int -> unit
41 method mouse
: int -> bool -> int -> int -> int -> unit
42 method motion
: int -> int -> unit
43 method pmotion
: int -> int -> unit
44 method key
: int -> int -> unit
45 method enter
: int -> int -> unit
47 method winstate
: winstate list
-> unit
54 ; mutable keymap
: int array array
55 ; fifo
: (string -> unit) Queue.t
57 ; mutable protoatom
: int
58 ; mutable deleatom
: int
59 ; mutable nwmsatom
: int
60 ; mutable maxvatom
: int
61 ; mutable maxhatom
: int
62 ; mutable fulsatom
: int
63 ; mutable idbase
: int
64 ; mutable fullscreen
: (int -> unit)
65 ; mutable setwmname
: (string -> unit)
66 ; mutable actwin
: (unit -> unit)
67 ; mutable stringatom
: int
69 ; mutable sock
: Unix.file_descr
75 ; mutable curcurs
: cursor
76 ; mutable capslmask
: int
77 ; mutable numlmask
: int
78 ; mutable levl3mask
: int
79 ; mutable levl5mask
: int
83 | Fs
of (int * int * int * int)
90 ; fifo
= Queue.create
()
99 ; fullscreen
= (fun _
-> ())
100 ; setwmname
= (fun _
-> ())
101 ; actwin
= (fun _
-> ())
110 ; curcurs
= CURSOR_INHERIT
118 let w8 s pos i
= String.set s pos
(Char.chr
(i
land 0xff));;
122 w8 s
(pos
+1) (i
lsr 8);
127 w16 s
(pos
+2) (i
lsr 16);
131 let rb pos1
= Char.code
(String.get s
(pos
+ pos1
)) in
132 (rb 0) lor ((rb 1) lsl 8)
137 i - ((i land 0x8000) lsl 1);
140 let r8 s pos
= Char.code
(String.get s pos
);;
143 let rb pos1
= Char.code
(String.get s
(pos
+ pos1
)) in
144 let l = (rb 0) lor ((rb 1) lsl 8)
145 and u
= (rb 2) lor ((rb 3) lsl 8) in
150 let s = String.create n
in
152 let m = tempfailureretry
(Unix.read sock
s pos
) n
in
157 ignore
(tempfailureretry
(Unix.select
[sock
] [] []) 0.01);
158 loop (pos
+ m) (n
- m)
165 let sendstr1 s pos len sock
=
166 vlog "%d => %S" state.seq
s;
167 state.seq
<- state.seq
+ 1;
168 let n = tempfailureretry
(Unix.send sock
s pos len
) [] in
170 then error
"send %d returned %d" len
n;
173 let updkmap sock resp
=
174 let syms = r8 resp
1 in
175 let len = r32 resp
4 in
178 then readstr sock
(4*len)
181 let m = len / syms in
182 state.keymap
<- Array.make_matrix
183 (state.maxk
- state.mink
) syms 0xffffff;
184 let rec loop i = if i = m then () else
186 let rec loop2 k l = if l = syms then () else
187 let v = r32 data k in
188 state.keymap
.(i).(l) <- v;
197 let updmodmap sock resp
=
199 let len = r16 resp
4 in
202 then readstr sock
(len*4)
205 let modmap = Array.make_matrix
8 n 0xffffff in
206 let rec loop l = if l = 8 then () else
208 let rec loop1 m = if m = n then () else
210 let code = r8 data p in
211 modmap.(l).(m) <- code;
214 let ki = code - state.mink
in
217 let a = state.keymap
.(ki) in
218 let rec capsloop i = if i = Array.length
a || i > 3 then () else
221 then state.capslmask
<- 2
229 let ki = code - state.mink
in
232 let a = state.keymap
.(ki) in
233 let rec lloop i = if i = Array.length
a || i > 3 then () else
236 | 0xfe03 -> state.levl3mask
<- 1 lsl l
237 | 0xfe11 -> state.levl5mask
<- 1 lsl l
238 | 0xff7f -> state.numlmask
<- 1 lsl l
252 let sendwithrep sock
s f
=
253 Queue.push f
state.fifo
;
254 sendstr1 s 0 (String.length
s) sock
;
258 let b = Buffer.create
16 in
259 List.iter
(Buffer.add_string
b) ss
;
260 let bl = Buffer.length
b in
261 let pl = bl land 3 in
265 Buffer.add_substring
b pad 0 (4 - pl);
270 let padcat s1 s2
= padcatl [s1
; s2
];;
272 let internreq name onlyifexists
=
273 let s = "\016\000\000\000\000\000\000\000" in
274 let s = padcat s name
in
275 if onlyifexists
then w8 s 1 1;
276 w16 s 2 (String.length
s / 4);
277 w16 s 4 (String.length name
);
281 let sendintern sock
s onlyifexists f
=
282 let s = internreq s onlyifexists
in
283 sendwithrep sock
s f
;
286 let createwindowreq wid parent x y w h bw mask
=
287 let s = "\001\000\009\000wwwwppppxxyywwhhbwccvvvvmmmmeeee" in
297 w32 s 28 0x800; (* eventmask *)
302 let getgeometryreq wid
=
303 let s = "\014u\002\000dddd" in
309 let s = "\008u\002\000wwww" in
314 let getkeymapreq first count
=
315 let s = "\101u\002\000fcuu" in
321 let changepropreq wid prop typ format props
=
322 let s = "\018\000llwwwwppppttttfuuuLLLL" in
323 let s = padcat s props
in
324 w16 s 2 (String.length
s / 4);
329 let ful = String.length props
/ (match format
with
333 | n -> error
"no idea what %d means" n)
339 let getpropreq delete wid prop typ
=
340 let s = "\020\000\006\000wwwwppppttttooooLLLL" in
341 if delete
then w8 s 1 1;
350 let openfontreq fid name
=
351 let s = "\045ullffffnnuu" in
352 let s = padcat s name
in
353 w16 s 2 (String.length
s / 4);
355 w16 s 8 (String.length name
);
359 let createglyphcursorreq fid cid cindex
=
360 let s = "\094u\008\000ccccffffffffssmmrrggbbRRGGBB" in
375 let changewindowattributesreq wid mask attrs
=
376 let s = "\002ullwwwwmmmm" in
377 let s = padcat s attrs
in
378 w16 s 2 (String.length
s / 4);
384 let configurewindowreq wid mask values
=
385 let s = "\012ullwwwwmmuu" in
386 let s = padcat s values
in
387 w16 s 2 (String.length
s / 4);
399 let clientmessage format seq wid typ
data =
400 let s = "\033fsswwwwtttt" in
401 let s = padcat s data in
409 let sendeventreq propagate destwid mask
data =
410 let s = "\025p\011\000wwwwmmmm" in
411 let s = padcat s data in
418 let getmodifiermappingreq () =
419 let s = "\119u\001\000" in
423 let getkeysym code mask
=
424 let pkpk = state.keymap
.(code-state.mink
).(0) in
425 if (pkpk >= 0xff80 && pkpk <= 0xffbd)
426 || (pkpk >= 0x11000000 && pkpk <= 0x1100ffff)
428 if mask
land state.numlmask
!= 0
430 let keysym = state.keymap
.(code-state.mink
).(1) in
431 if keysym = 0 then pkpk else keysym
435 let shift = (mask
land 1) lxor ((mask
land state.capslmask
) lsr 1) in
437 let l3 = (mask
land state.levl3mask
) != 0 in
438 let l4 = (mask
land state.levl5mask
) != 0 in
440 if l3 then (if l4 then 8 else 4) else (if l4 then 6 else 0)
442 let keysym = state.keymap
.(code-state.mink
).(index) in
443 if index land 1 = 1 && keysym = 0
444 then state.keymap
.(code-state.mink
).(index - 1)
450 let resp = readstr sock
32 in
451 let opcode = r8 resp 0 in
452 match opcode land lnot
0x80 with
457 and resid
= r32 resp 4
460 error
"code=%d serial=%d resid=%#x min=%d maj=%d\n%S"
461 code serial resid min maj
resp;
463 | 1 -> (* response *)
464 let rep = Queue.pop
state.fifo
in
467 | 2 -> (* key press *)
468 if Array.length
state.keymap
> 0
470 let code = r8 resp 1 in
471 let mask = r16 resp 28 in
472 let keysym = getkeysym code mask in
473 vlog "keysym = %x %c mask %#x code %d"
474 keysym (Char.unsafe_chr
keysym) mask code;
475 state.t#key
keysym mask;
477 | 3 -> (* key release *)
478 if Array.length
state.keymap
> 0
480 let code = r8 resp 1 in
481 let mask = r16 resp 28 in
482 let keysym = getkeysym code mask in
483 vlog "release keysym = %x %c mask %#x code %#d"
484 keysym (Char.unsafe_chr
keysym) mask code
486 | 4 -> (* buttonpress *)
490 and m = r16 resp 28 in
491 state.t#mouse
n true x y
m;
494 | 5 -> (* buttonrelease *)
498 and m = r16 resp 28 in
499 state.t#mouse
n false x y
m;
500 vlog "release %d %d %d" n x y
503 let x = r16s resp 24 in
504 let y = r16s resp 26 in
505 let m = r16 resp 28 in
507 then state.t#pmotion
x y
508 else state.t#motion
x y;
509 vlog "move %dx%d => %d" x y m
513 and y = r16s resp 26 in
515 vlog "enter %d %d" x y
520 | 18 -> vlog "unmap";
525 | 12 -> (* exposure *)
529 | 15 -> (* visibility *)
530 let vis = r8 resp 8 in
531 if vis != 2 then state.t#expose
;
532 vlog "visibility %d" vis;
534 | 34 -> (* mapping *)
535 state.keymap
<- [||];
536 let s = getkeymapreq state.mink
(state.maxk
-state.mink
-1) in
537 sendwithrep sock
s (updkmap sock
);
538 state.capslmask
<- 0;
539 state.levl3mask
<- 0;
540 state.levl5mask
<- 0;
542 let s = getmodifiermappingreq () in
543 sendwithrep sock
s (updmodmap sock
);
546 | 33 -> (* clientmessage *)
547 let atom = r32 resp 8 in
548 if atom = state.protoatom
550 let atom = r32 resp 12 in
551 if atom = state.deleatom
556 | 21 -> (* reparent *)
559 | 22 -> (* configure *)
563 and h
= r16 resp 22 in
564 vlog "configure cur [%d %d %d %d] conf [%d %d %d %d]"
565 state.x state.y state.w
state.h
569 if w
!= state.w
|| h
!= state.h
580 let atom = r32 resp 8 in
581 if atom = state.nwmsatom
583 let s = getpropreq false state.idbase
atom 4 in
584 sendwithrep sock
s (fun resp ->
585 let len = r32 resp 4 in
586 let nitems = r32 resp 16 in
591 let s = readstr sock
(len*4) in
592 let rec loop wsl i = if i = nitems then wsl else
593 let atom = r32 s (i*4) in
595 if atom = state.maxhatom
598 if atom = state.maxvatom
601 if atom = state.fulsatom
603 state.fs
<- Fs
(state.x, state.y, state.w
, state.h
);
613 state.t#winstate
(List.sort compare
wsl)
617 dolog
"event %d %S" n resp
623 if hasdata sock
then loop ();
628 let sendstr s ?
(pos
=0) ?
(len=String.length
s) sock
=
629 sendstr1 s pos
len sock
;
630 if hasdata sock
then readresp sock
;
636 let s = "wwuuhhuu" in
639 let s = configurewindowreq state.idbase
0x000c s in
640 sendstr s state.sock
;
641 else state.fullscreen
state.idbase
648 let syncsendwithrep sock secstowait
s f
=
649 let completed = ref false in
650 sendwithrep sock
s (fun resp -> f
resp; completed := true);
651 let now = Unix.gettimeofday
in
652 let deadline = now () +. secstowait
in
653 let rec readtillcompletion () =
655 let timeout = deadline -. now () in
658 else Unix.select
[sock
] [] [] timeout
660 let r, _
, _
= tempfailureretry
sf deadline in
662 | [] -> error
"didn't get X response in %f seconds, aborting" secstowait
666 then readtillcompletion ()
668 readtillcompletion ();
671 let syncsendintern sock secstowait
s onlyifexists f
=
672 let s = internreq s onlyifexists
in
673 syncsendwithrep sock secstowait
s f
;
676 let setup sock screennum w h
=
677 let s = readstr sock
2 in
678 let n = String.length
s in
680 then error
"failed to read X connection setup response n=%d" n;
683 let reasonlen = r8 s 1 in
684 let s = readstr sock
6 in
689 let data = readstr sock
len in
690 let reason = String.sub
data 0 reasonlen in
691 error
"X connection failed maj=%d min=%d reason=%S"
694 | '
\002'
-> failwith
"X connection setup failed: authentication required";
697 let s = readstr sock
38 in
701 and idbase
= r32 s 10
702 and idmask
= r32 s 14
704 and screens
= r8 s 26
705 and formats
= r8 s 27
707 and maxkk
= r8 s 33 in
708 let data = readstr sock
(4*add
-32) in
709 let vendor = String.sub
data 0 vlen
in
710 let pos = ((vlen
+3) land lnot
3) + formats
*8 in
712 if screennum
>= screens
713 then error
"invalid screen %d, max %d" screennum
(screens
-1);
717 let rec findscreen n pos = if n = screennum
then pos else
719 let ndepths = r8 s (pos+39) in
720 let rec skipdepths n pos = if n = ndepths then pos else
722 let nvisiuals = r16 s (pos+2) in
723 pos + nvisiuals*24 + 8
727 skipdepths n (pos+40)
733 let root = r32 data pos in
734 let rootw = r16 data (pos+20)
735 and rooth
= r16 data (pos+22) in
738 state.idbase
<- idbase
;
739 vlog "vendor = %S, maj=%d min=%d" vendor maj min
;
740 vlog "screens = %d formats = %d" screens formats
;
741 vlog "minkk = %d maxkk = %d" minkk maxkk
;
742 vlog "idbase = %#x idmask = %#x" idbase idmask
;
743 vlog "root=%#x %dx%d" root rootw rooth
;
746 + 0x00000001 (* KeyPress *)
747 (* + 0x00000002 *) (* KeyRelease *)
748 + 0x00000004 (* ButtonPress *)
749 + 0x00000008 (* ButtonRelease *)
750 + 0x00000010 (* EnterWindow *)
751 + 0x00000020 (* LeaveWindow *)
752 + 0x00000040 (* PointerMotion *)
753 (* + 0x00000080 *) (* PointerMotionHint *)
754 (* + 0x00000100 *) (* Button1Motion *)
755 (* + 0x00000200 *) (* Button2Motion *)
756 (* + 0x00000400 *) (* Button3Motion *)
757 (* + 0x00000800 *) (* Button4Motion *)
758 (* + 0x00001000 *) (* Button5Motion *)
759 + 0x00002000 (* ButtonMotion *)
760 (* + 0x00004000 *) (* KeymapState *)
761 + 0x00008000 (* Exposure *)
762 + 0x00010000 (* VisibilityChange *)
763 + 0x00020000 (* StructureNotify *)
764 (* + 0x00040000 *) (* ResizeRedirect *)
765 (* + 0x00080000 *) (* SubstructureNotify *)
766 (* + 0x00100000 *) (* SubstructureRedirect *)
767 (* + 0x00200000 *) (* FocusChange *)
768 + 0x00400000 (* PropertyChange *)
769 (* + 0x00800000 *) (* ColormapChange *)
770 (* + 0x01000000 *) (* OwnerGrabButton *)
772 let wid = state.idbase
in
773 let s = createwindowreq wid root 0 0 w h
0 mask in
776 sendintern sock
"WM_PROTOCOLS" false (fun resp ->
777 state.protoatom
<- r32 resp 8;
778 sendintern sock
"WM_DELETE_WINDOW" false (fun resp ->
779 state.deleatom
<- r32 resp 8;
780 let s = s32 state.deleatom
in
781 let s = changepropreq wid state.protoatom
4 32 s in
786 sendintern sock
"WM_CLIENT_MACHINE" false (fun resp ->
787 let atom = r32 resp 8 in
790 try Unix.gethostname
()
792 dolog
"error getting host name: %s" (exntos exn
);
797 let s = changepropreq wid atom state.stringatom
8 hostname in
799 sendintern sock
"_NET_WM_PID" false (fun resp ->
800 let atom = r32 resp 8 in
801 let pid = Unix.getpid
() in
803 let s = changepropreq wid atom (* cardinal *)6 32 s in
808 state.actwin
<- (fun () ->
810 let s = configurewindowreq state.idbase
0x40 s in
811 sendstr s state.sock
;
812 let s = mapreq state.idbase
in
813 sendstr s state.sock
;
816 sendintern sock
"_NET_ACTIVE_WINDOW" true (fun resp ->
817 let atom = r32 resp 8 in
818 state.actwin
<- (fun () ->
819 let data = String.make
20 '
\000'
in
820 let cm = clientmessage 32 0 wid atom data in
821 let s = sendeventreq 0 root 0x180000 cm in
822 sendstr s state.sock
;
826 syncsendintern sock
2.0 "WM_CLASS" false (fun resp ->
827 let atom = r32 resp 8 in
828 let llpp = "llpp\000llpp\000" in
829 let s = changepropreq wid atom 31 8 llpp in
833 let s = mapreq wid in
836 let s = getkeymapreq state.mink
(state.maxk
-state.mink
) in
837 sendwithrep sock
s (updkmap sock
);
839 let s = getmodifiermappingreq () in
840 sendwithrep sock
s (updmodmap sock
);
842 let s = openfontreq (wid+1) "cursor" in
845 Array.iteri
(fun i glyphindex
->
846 let s = createglyphcursorreq (wid+1) (wid+2+i) glyphindex
in
848 ) [|34;48;50;58;128;152|];
850 sendintern sock
"UTF8_STRING" true (fun resp ->
851 let atom = r32 resp 8 in
853 then state.stringatom
<- atom;
857 let s = changepropreq state.idbase
39 state.stringatom
8 s in
858 sendstr s state.sock
;
860 state.setwmname <- setwmname;
861 sendintern sock
"_NET_WM_NAME" true (fun resp ->
862 let atom = r32 resp 8 in
864 then state.setwmname <- (fun s ->
866 let s = changepropreq state.idbase
atom state.stringatom
8 s in
867 sendstr s state.sock
;
871 state.fullscreen
<- (fun wid ->
872 let s = "xxuuyyuuwwuuhhuu" in
879 let s = configurewindowreq wid 0x000f s in
880 sendstr s state.sock
;
881 state.fs
<- Fs
(state.x, state.y, state.w
, state.h
);
888 let s = configurewindowreq wid 0x000f s in
889 sendstr s state.sock
;
893 sendintern sock
"_NET_WM_STATE" true (fun resp ->
894 state.nwmsatom
<- r32 resp 8;
895 if state.nwmsatom
!= 0
897 sendintern sock
"_NET_WM_STATE_MAXIMIZED_VERT" true (fun resp ->
898 state.maxvatom
<- r32 resp 8;
900 sendintern sock
"_NET_WM_STATE_MAXIMIZED_HORZ" true (fun resp ->
901 state.maxhatom
<- r32 resp 8;
903 sendintern sock
"_NET_WM_STATE_FULLSCREEN" true (fun resp ->
904 state.fulsatom
<- r32 resp 8;
905 if state.fulsatom
!= 0
909 let data = String.make
20 '
\000'
in
912 | NoFs
-> Fs
(-1, -1, -1, -1), 1
916 w32 data 4 state.fulsatom
;
918 let cm = clientmessage 32 0 wid state.nwmsatom
data in
919 let s = sendeventreq 0 root 0x180000 cm in
926 let s = getgeometryreq wid in
927 syncsendwithrep sock
2.0 s (fun resp ->
930 and h
= r16 resp 18 in
936 error
"unknown conection setup response %d" (Char.code c
)
939 let getauth haddr dnum
=
941 if haddr = "localhost" || String.length
haddr = 0
943 try Unix.gethostname
()
945 dolog
"failed to resolve `%S': %s" haddr (exntos exn
);
950 try Sys.getenv
"XAUTHORITY"
952 try Filename.concat
(Sys.getenv
"HOME") ".Xauthority"
956 let input_string ic
len =
957 let s = String.create
len in
958 really_input ic
s 0 len;
962 let rb pos = Char.code (String.get
s pos) in
963 (rb 1) lor ((rb 0) lsl 8)
967 let s = input_string ic
2 in
971 let family = input_string ic
2 in
975 try Some
(int_of_string
nums)
978 "display number(%S) is not an integer (corrupt %S?): %s"
979 nums path (exntos exn
);
985 vlog "family %S addr %S(%S) num %S(%d) name %S data %S"
986 family addr haddr nums dnum
name data;
988 | Some num
when addr = haddr && num
= dnum
->
995 | End_of_file
-> "", ""
997 dolog
"exception while reading X authority data (%S): %s"
1006 if String.length
path = 0
1008 else Some
(open_in_bin
path)
1010 if Sys.file_exists
path
1012 dolog
"failed to open X authority file `%S' : %s"
1018 | Some ic
-> readauth ic
1021 let init t
w h osx
=
1023 try Sys.getenv
"DISPLAY"
1025 error
"could not get DISPLAY evironment variable: %s"
1030 then error
"invalid DISPLAY(%s) %S" w d
1032 let s = String.sub
d b (e
- b) in
1035 error
"invalid DISPLAY %S can not parse %s(%S): %s"
1039 if pos = String.length
d
1040 then error
"invalid DISPLAY %S no display number specified" d
1044 let rec pdispnum pos1
=
1045 if pos1
= String.length
d
1046 then getnum "display number" (pos+1) pos1
, 0
1050 let dispnum = getnum "display number" (pos+1) pos1
in
1051 let rec pscreennum pos2
=
1052 if pos2
= String.length
d
1053 then getnum "screen number" (pos1
+1) pos2
1056 | '
0'
.. '
9'
-> pscreennum (pos2
+1)
1058 error
"invalid DISPLAY %S, cannot parse screen number" d
1060 dispnum, pscreennum (pos1
+1)
1061 | '
0'
.. '
9'
-> pdispnum (pos1
+1)
1063 error
"invalid DISPLAY %S, cannot parse display number" d
1065 String.sub
d 0 pos, pdispnum (pos+1)
1069 let host, (dispnum, screennum
) = phost 0 in
1070 let aname, adata
= getauth host dispnum in
1073 if osx
|| String.length
host = 0 || host = "unix"
1077 then Unix.ADDR_UNIX
d
1078 else Unix.ADDR_UNIX
("/tmp/.X11-unix/X" ^ string_of_int
dispnum)
1080 let fd = Unix.socket
Unix.PF_UNIX
Unix.SOCK_STREAM
0 in
1084 try Unix.gethostbyname
host
1086 error
"cannot resolve %S: %s" host (exntos exn
)
1088 let addr = h.Unix.h_addr_list
.(0) in
1089 let port = 6000 + dispnum in
1090 let fd = Unix.socket
Unix.PF_INET
Unix.SOCK_STREAM
0 in
1091 fd, (Unix.ADDR_INET
(addr, port))
1093 try Unix.connect
fd addr; fd
1095 error
"failed to connect to X: %s" (exntos exn
)
1098 let s = "luMMmmnndduu" in
1099 let s = padcat s aname in
1100 let s = padcat s adata
in
1103 w16 s 6 (String.length
aname);
1104 w16 s 8 (String.length adata
);
1105 sendstr1 s 0 (String.length
s) fd;
1107 setup fd screennum
w h;
1109 fd, state.w, state.h;
1116 let setcursor cursor
=
1117 if cursor
!= state.curcurs
1121 | CURSOR_INHERIT
-> -1
1124 | CURSOR_CROSSHAIR
-> 0
1127 let s = s32 (if n = -1 then 0 else state.idbase
+2+n) in
1128 let s = changewindowattributesreq state.idbase
(*cursor*)0x4000 s in
1129 sendstr s state.sock
;
1130 state.curcurs
<- cursor
;
1134 state.fullscreen state.idbase
;
1137 let metamask = 0x40;;
1142 let withalt mask = mask land altmask != 0;;
1143 let withctrl mask = mask land ctrlmask != 0;;
1144 let withshift mask = mask land shiftmask != 0;;
1145 let withmeta mask = mask land metamask != 0;;
1146 let withnone mask = mask land (altmask + ctrlmask + shiftmask + metamask) = 0;;
1149 let t = Hashtbl.create
20
1150 and f
= Hashtbl.create
20 in
1152 List.iter
(fun s -> Hashtbl.add t s k) (n::nl
);
1156 let s = String.create
1 in
1158 add s [] (Char.code c
)
1161 let an = Char.code a and bn
= Char.code b in
1162 for i = an to bn
do addc (Char.chr
i) done;
1167 String.iter
addc "`~!@#$%^&*()-_=+\\|[{]};:,./<>?";
1168 for i = 0 to 29 do add ("f" ^ string_of_int
(i+1)) [] (0xffbe + i) done;
1169 add "space" [] 0x20;
1170 add "ret" ["return"; "enter"] 0xff0d;
1171 add "tab" [] 0xff09;
1172 add "left" [] 0xff51;
1173 add "right" [] 0xff53;
1174 add "home" [] 0xff50;
1175 add "end" [] 0xff57;
1176 add "ins" ["insert"] 0xff63;
1177 add "del" ["delete"] 0xffff;
1178 add "esc" ["escape"] 0xff1b;
1179 add "pgup" ["pageup"] 0xff55;
1180 add "pgdown" ["pagedown"] 0xff56;
1181 add "backspace" [] 0xff08;
1183 add "down" [] 0xff54;
1188 try Hashtbl.find xlatf
k
1189 with Not_found
-> Printf.sprintf
"%#x" k;
1193 try Hashtbl.find xlatt name
1195 if String.length
name = 1
1196 then Char.code name.[0]
1197 else int_of_string
name;