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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
#[macro_use]
mod core;
mod raw;
pub use self::core::{Core, Scroller};
use crate::event::{Event, EventResult};
use crate::{Printer, Rect, Vec2};
#[derive(Debug)]
pub enum ScrollStrategy {
KeepRow,
StickToTop,
StickToBottom,
}
impl Default for ScrollStrategy {
fn default() -> Self {
ScrollStrategy::KeepRow
}
}
pub fn on_event<T, OnEvent, ImportantArea>(
scroller: &mut T,
event: Event,
on_event: OnEvent,
important_area: ImportantArea,
) -> EventResult
where
T: Scroller,
OnEvent: FnMut(&mut T, Event) -> EventResult,
ImportantArea: FnMut(&T, Vec2) -> Rect,
{
raw::on_event(
event,
scroller,
Scroller::get_scroller_mut,
on_event,
important_area,
)
}
pub fn important_area<T, ImportantArea>(
scroller: &T,
size: Vec2,
mut important_area: ImportantArea,
) -> Rect
where
T: Scroller,
ImportantArea: FnMut(&T, Vec2) -> Rect,
{
let viewport = scroller.get_scroller().content_viewport();
let area = important_area(scroller, size);
let top_left = area.top_left().saturating_sub(viewport.top_left());
let bot_right = area
.bottom_right()
.saturating_sub(viewport.top_left())
.or_min(viewport.bottom_right());
Rect::from_corners(top_left, bot_right)
}
pub fn layout<T, Layout, RequiredSize>(
scroller: &mut T,
size: Vec2,
needs_relayout: bool,
layout: Layout,
required_size: RequiredSize,
) where
T: Scroller,
Layout: FnMut(&mut T, Vec2),
RequiredSize: FnMut(&mut T, Vec2) -> Vec2,
{
raw::layout(
size,
needs_relayout,
scroller,
Scroller::get_scroller_mut,
required_size,
layout,
);
}
pub fn required_size<T, RequiredSize>(
scroller: &mut T,
size: Vec2,
needs_relayout: bool,
required_size: RequiredSize,
) -> Vec2
where
T: Scroller,
RequiredSize: FnMut(&mut T, Vec2) -> Vec2,
{
raw::required_size(
size,
needs_relayout,
scroller,
Scroller::get_scroller_mut,
required_size,
)
}
pub fn draw<T, Draw>(scroller: &T, printer: &Printer, draw: Draw)
where
T: Scroller,
Draw: FnOnce(&T, &Printer),
{
raw::draw(printer, scroller, Scroller::get_scroller, draw);
}
pub fn draw_lines<T, LineDrawer>(
scroller: &T,
printer: &Printer,
mut line_drawer: LineDrawer,
) where
T: Scroller,
LineDrawer: FnMut(&T, &Printer, usize),
{
draw(scroller, printer, |s, printer| {
let start = printer.content_offset.y;
let end = start + printer.output_size.y;
for y in start..end {
let printer = printer.offset((0, y)).cropped((printer.size.x, 1));
line_drawer(s, &printer, y);
}
});
}
pub fn draw_frame<T, LeftBorder, TopBorder, RightBorder, BottomBorder>(
scroller: &T,
printer: &Printer,
mut left_border: LeftBorder,
mut top_border: TopBorder,
mut right_border: RightBorder,
mut bottom_border: BottomBorder,
) where
T: Scroller,
LeftBorder: FnMut(&T, &Printer, usize),
TopBorder: FnMut(&T, &Printer, usize),
RightBorder: FnMut(&T, &Printer, usize),
BottomBorder: FnMut(&T, &Printer, usize),
{
let viewport = scroller.get_scroller().content_viewport();
let size = printer.size.saturating_sub((1, 1));
for (i, x) in (viewport.left()..=viewport.right()).enumerate() {
top_border(scroller, &printer.offset((i + 1, 0)), x);
bottom_border(scroller, &printer.offset((i + 1, size.y)), x);
}
let scrollbar_size = scroller.get_scroller().scrollbar_size();
printer.print_hline((viewport.right() + 2, 0), scrollbar_size.x, "─");
printer.print_hline((viewport.right() + 2, size.y), scrollbar_size.x, "─");
printer.print_vline((0, viewport.bottom() + 2), scrollbar_size.y, "│");
printer.print_vline(
(size.x, viewport.bottom() + 2),
scrollbar_size.y,
"│",
);
for (i, y) in (viewport.top()..=viewport.bottom()).enumerate() {
left_border(scroller, &printer.offset((0, i + 1)), y);
right_border(scroller, &printer.offset((size.x, i + 1)), y);
}
printer.print((0, 0), "┌");
printer.print(size.keep_y(), "└");
printer.print(size.keep_x(), "┐");
printer.print(size, "┘");
}
pub fn draw_box_frame<T, IsHDelim, IsVDelim>(
scroller: &T,
printer: &Printer,
is_h_delim: IsHDelim,
is_v_delim: IsVDelim,
) where
T: Scroller,
IsHDelim: Fn(&T, usize) -> bool,
IsVDelim: Fn(&T, usize) -> bool,
{
draw_frame(
scroller,
printer,
|s, printer, y| {
if is_h_delim(s, y) {
printer.print((0, 0), "├");
} else {
printer.print((0, 0), "│");
}
},
|s, printer, x| {
if is_v_delim(s, x) {
printer.print((0, 0), "┬");
} else {
printer.print((0, 0), "─");
}
},
|s, printer, y| {
if is_h_delim(s, y) {
printer.print((0, 0), "┤");
} else {
printer.print((0, 0), "│");
}
},
|s, printer, x| {
if is_v_delim(s, x) {
printer.print((0, 0), "┴");
} else {
printer.print((0, 0), "─");
}
},
);
}