LTerm_mouseMouse events
type t = {control : bool;Is the control key down ?
*)meta : bool;Is the meta key down ?
*)shift : bool;Is the shift key down ?
*)row : int;The row at which the mouse was when the button has been pressed.
*)col : int;The column at which the mouse was when the button has been pressed.
*)}Type of mouse click event.
val control : t -> boolval meta : t -> boolval row : t -> intval col : t -> intval coord : t -> LTerm_geom.coordval to_string : t -> stringReturns the string representation of the given mouse event.