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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#[derive(Clone, Default)]
pub struct Input {
chars: Vec<char>,
pub cursor_index: usize,
}
impl Input {
pub fn reset(&mut self) {
self.chars.clear();
self.cursor_index = 0;
}
pub fn cursor_start(&mut self) {
self.cursor_index = 0;
}
pub fn len(&self) -> usize {
self.chars.len()
}
pub fn is_empty(&self) -> bool {
self.chars.is_empty()
}
pub fn cursor_end(&mut self) {
self.cursor_index = self.len();
}
pub fn cursor_left(&mut self) {
if self.cursor_index > 0 {
self.cursor_index -= 1
}
}
pub fn cursor_right(&mut self) {
if self.cursor_index < self.len() {
self.cursor_index += 1
}
}
pub fn delete_char_left(&mut self) {
if self.cursor_index > 0 && !self.chars.is_empty() {
self.chars.remove(self.cursor_index - 1);
self.cursor_index -= 1;
}
}
pub fn delete_chars_right(&mut self) {
self.chars = self.chars.iter().copied().take(self.cursor_index).collect();
}
pub fn string(&self) -> String {
self.chars.iter().collect()
}
pub fn insert(&mut self, c: char) {
self.chars.insert(self.cursor_index, c);
self.cursor_index += 1
}
pub fn clear(&mut self) {
self.chars.clear();
self.cursor_index = 0;
}
pub fn replace(&mut self, content: &str) {
self.chars = content.chars().collect();
self.cursor_index = self.len()
}
}