1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
use crate::;
/// Detailed information about a mouse event.
///
/// Mouse events are captured only if the terminal emulator supports them and
/// mouse capture is enabled (can be done using
/// [`crate::term::enable_mouse_capture`]).
///
/// # Example:
///
/// This is how MouseEvent can be used in combination of the
/// [`crate::term::Application`] trait:
///
/// ```rust
/// use termint::prelude::*;
/// use termint::term::backend::{MouseButton, MouseEvent, MouseEventKind};
///
/// struct MyApp;
///
/// impl Application for MyApp {
/// type Message = ();
///
/// fn view(&self, _frame: &Frame) -> Element<Self::Message> {
/// "Your UI here".into()
/// }
///
/// fn event(&mut self, event: Event) -> Action {
/// if let Event::Mouse(mouse) = event {
/// match mouse.kind {
/// MouseEventKind::Down(MouseButton::Left) => {
/// // Handle the click at mouse.x, mouse.y
/// }
/// _ => {}
/// }
/// }
/// Action::NONE
/// }
/// }
/// The type of the mouse action
/// Represents the mouse buttons