module LTerm_mouse:sig
..end
=
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
type
t = {
|
control : |
(* |
Is the control key down ?
| *) |
|
meta : |
(* |
Is the meta key down ?
| *) |
|
shift : |
(* |
Is the shift key down ?
| *) |
|
: |
(* |
Which button have been pressed ?
| *) |
|
row : |
(* |
The row at which the mouse was when the button has been
pressed.
| *) |
|
col : |
(* |
The column at which the mouse was when the button has been
pressed.
| *) |
val compare : t -> t -> int
Pervasives.compare
.val control : t -> bool
val meta : t -> bool
t -> button
: val row : t -> int
val col : t -> int
val to_string : t -> string