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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
use daggy::Walker;
use position::{Point, Rect};
use fnv;
use super::{EdgeIndex, Graph};
use theme::Theme;
use widget;
#[derive(Clone)]
#[allow(missing_copy_implementations)]
pub struct PickWidgets {
xy: Point,
idx: usize,
}
#[derive(Clone)]
#[allow(missing_copy_implementations)]
pub struct PickScrollableWidgets {
pick_widgets: PickWidgets,
}
impl PickWidgets {
pub fn next_including_graphics_children(
&mut self,
graph: &Graph,
depth_order: &[widget::Id],
theme: &Theme,
) -> Option<widget::Id> {
while self.idx > 0 {
self.idx -= 1;
let idx = match depth_order.get(self.idx) {
None => break,
Some(&idx) => idx,
};
let visible_rect = match cropped_area_of_widget(graph, idx) {
None => continue,
Some(rect) => rect,
};
if !visible_rect.is_over(self.xy) {
continue;
}
let mut id = idx;
loop {
let container = match graph.widget(id) {
None => break,
Some(container) => container,
};
match (container.is_over.0)(&container, self.xy, theme) {
widget::IsOver::Bool(false) => break,
widget::IsOver::Bool(true) => return Some(id),
widget::IsOver::Widget(w_id) => {
assert!(id != w_id, "the specified IsOver::Widget \
would cause an infinite loop");
id = w_id;
},
}
}
}
None
}
pub fn next(
&mut self,
graph: &Graph,
depth_order: &[widget::Id],
theme: &Theme,
) -> Option<widget::Id> {
self.next_including_graphics_children(graph, depth_order, theme)
.map(|idx| {
graph.graphic_parent_recursion(idx)
.last_node(graph)
.unwrap_or(idx)
})
}
}
impl PickScrollableWidgets {
pub fn next(
&mut self,
graph: &Graph,
depth_order: &[widget::Id],
theme: &Theme,
) -> Option<widget::Id> {
while let Some(idx) = self.pick_widgets.next_including_graphics_children(graph, depth_order, theme) {
if let Some(ref container) = graph.widget(idx) {
if container.maybe_x_scroll_state.is_some()
|| container.maybe_y_scroll_state.is_some() {
return Some(idx)
}
}
}
None
}
}
pub fn pick_widgets(depth_order: &[widget::Id], xy: Point) -> PickWidgets {
PickWidgets {
xy: xy,
idx: depth_order.len(),
}
}
pub fn pick_scrollable_widgets(depth_order: &[widget::Id], xy: Point) -> PickScrollableWidgets {
PickScrollableWidgets {
pick_widgets: pick_widgets(depth_order, xy),
}
}
pub fn cropped_area_of_widget(graph: &Graph, idx: widget::Id) -> Option<Rect> {
cropped_area_of_widget_maybe_within_depth(graph, idx, None)
}
pub fn cropped_area_of_widget_within_depth(graph: &Graph,
idx: widget::Id,
deepest_parent_idx: widget::Id) -> Option<Rect>
{
cropped_area_of_widget_maybe_within_depth(graph, idx, Some(deepest_parent_idx))
}
fn cropped_area_of_widget_maybe_within_depth(graph: &Graph,
mut id: widget::Id,
deepest_id: Option<widget::Id>) -> Option<Rect>
{
graph.widget(id).and_then(|widget| {
let mut overlapping_rect = widget.rect;
let mut depth_parents = graph.depth_parent_recursion(id);
while let Some(depth_parent) = depth_parents.next_node(graph) {
if Some(depth_parent) == deepest_id {
break;
}
if let Some(depth_parent_widget) = graph.widget(depth_parent) {
if depth_parent_widget.maybe_x_scroll_state.is_some()
|| depth_parent_widget.maybe_y_scroll_state.is_some() {
if !graph.does_graphic_edge_exist(depth_parent, id) {
match overlapping_rect.overlap(depth_parent_widget.kid_area.rect) {
Some(overlap) => overlapping_rect = overlap,
None => return None,
}
}
}
}
id = depth_parent;
}
Some(overlapping_rect)
})
}
pub fn kids_bounding_box(graph: &Graph,
prev_updated: &fnv::FnvHashSet<widget::Id>,
idx: widget::Id) -> Option<Rect>
{
let kid_filter = &|g: &Graph, _e, n| -> bool {
let is_not_graphic_kid = !g.graphic_parent(n).is_some();
let is_set = prev_updated.contains(&n);
is_not_graphic_kid && is_set
};
fn kids_dfs<F>(graph: &Graph,
idx: widget::Id,
deepest_parent_idx: widget::Id,
kid_filter: &F) -> Option<Rect>
where F: Fn(&Graph, EdgeIndex, widget::Id) -> bool,
{
cropped_area_of_widget_within_depth(graph, idx, deepest_parent_idx).map(|rect| {
let kids_bounds = graph.depth_children(idx).filter(kid_filter).iter(graph).nodes()
.filter_map(|n| kids_dfs(graph, n, deepest_parent_idx, kid_filter));
kids_bounds.fold(rect, |max, next| max.max(next))
})
}
graph.widget(idx).and_then(|_| {
let mut kids_bounds = graph.depth_children(idx).filter(kid_filter).iter(graph).nodes()
.filter_map(|n| kids_dfs(graph, n, idx, kid_filter));
kids_bounds.next().map(|first| {
kids_bounds.fold(first, |max, next| max.max(next))
})
})
}
pub fn scroll_offset(graph: &Graph, idx: widget::Id) -> Point {
const NO_OFFSET: Point = [0.0, 0.0];
if let Some(depth_parent) = graph.depth_parent(idx) {
if let Some(depth_parent_widget) = graph.widget(depth_parent) {
if depth_parent_widget.maybe_x_scroll_state.is_some()
|| depth_parent_widget.maybe_y_scroll_state.is_some() {
if graph.graphic_parent_recursion(idx)
.any(graph, |_g, _e, n| n == depth_parent)
{
return NO_OFFSET;
}
let is_already_offset = |mut position_parents: super::RecursiveWalk<_>| {
while let Some(position_parent) = position_parents.next_node(graph) {
if graph.depth_parent_recursion(position_parent)
.any(graph, |_g, _e, n| n == depth_parent)
{
return true;
}
}
false
};
let x_offset = depth_parent_widget.maybe_x_scroll_state.map(|scroll| {
let position_parents = graph.x_position_parent_recursion(idx);
if is_already_offset(position_parents) { 0.0 } else { scroll.offset }
}).unwrap_or(0.0);
let y_offset = depth_parent_widget.maybe_y_scroll_state.map(|scroll| {
let position_parents = graph.y_position_parent_recursion(idx);
if is_already_offset(position_parents) { 0.0 } else { scroll.offset }
}).unwrap_or(0.0);
return [x_offset, y_offset];
}
}
}
NO_OFFSET
}