Do not special case ascii
[llpp.git] / wsi.mli
bloba29e7d851b91ac2dfec8871ec2439674458dd5ba
1 type cursor =
2 | CURSOR_INHERIT
3 | CURSOR_INFO
4 | CURSOR_CYCLE
5 | CURSOR_CROSSHAIR
6 | CURSOR_TEXT
7 ;;
9 class type t = object
10 method display : unit
11 method reshape : int -> int -> unit
12 method mouse : int -> bool -> int -> int -> int -> unit
13 method motion : int -> int -> unit
14 method pmotion : int -> int -> unit
15 method key : int -> int -> unit
16 method enter : int -> int -> unit
17 method leave : unit
18 end;;
20 val setcursor : cursor -> unit;;
21 val settitle : string -> unit;;
22 val swapb : unit -> unit;;
23 val readresp : Unix.file_descr -> unit;;
24 val init : t -> int -> int -> Unix.file_descr;;
25 val fullscreen : unit -> unit;;
26 val reshape : int -> int -> unit;;
27 val withalt : int -> bool;;
28 val withctrl : int -> bool;;
29 val withshift : int -> bool;;
30 val withmeta : int -> bool;;
31 val withnone : int -> bool;;
32 val toutf8 : int -> string;;
33 val metamask : int;;
34 val altmask : int;;
35 val shiftmask : int;;
36 val ctrlmask : int;;
37 val keyname : int -> string;;
38 val namekey : string -> int;;
40 exception Quit;;