1use teksilo_canvas::{Canvas, Point, Rect, SizeProposal};
19
20use crate::accessibility::AccessNodeBuilder;
21use crate::build_context::BuildContext;
22use crate::widget::{
23 LayoutContext, PaintContext, PendingChild, Widget, WidgetPlacement, WidgetTreeView,
24};
25use crate::widget_builder::HandlerSet;
26use crate::widget_id::WidgetId;
27
28macro_rules! impl_widget_for_branch {
47 ($branch:ident, $($arm:ident),+) => {
48 #[deny(clippy::missing_trait_methods)]
49 impl<$($arm: Widget),+> Widget for $branch<$($arm),+> {
50 fn type_name(&self) -> &'static str {
51 match self { $($branch::$arm(w) => w.type_name()),+ }
52 }
53
54 fn build(&mut self, ctx: &mut BuildContext) -> Vec<WidgetId> {
55 match self { $($branch::$arm(w) => w.build(ctx)),+ }
56 }
57
58 fn layout_response(
59 &self,
60 proposal: SizeProposal,
61 ctx: &LayoutContext,
62 ) -> crate::widget::LayoutResponse {
63 match self { $($branch::$arm(w) => w.layout_response(proposal, ctx)),+ }
64 }
65
66 fn cacheable_layout(&self) -> bool {
67 match self { $($branch::$arm(w) => w.cacheable_layout()),+ }
68 }
69
70 fn place_children(
71 &self,
72 bounds: Rect,
73 proposal: SizeProposal,
74 children: &mut [WidgetPlacement],
75 ctx: &LayoutContext,
76 ) {
77 match self {
78 $($branch::$arm(w) => w.place_children(bounds, proposal, children, ctx)),+
79 }
80 }
81
82 fn paint(&self, bounds: Rect, canvas: &mut Canvas, ctx: &PaintContext) {
83 match self { $($branch::$arm(w) => w.paint(bounds, canvas, ctx)),+ }
84 }
85
86 fn wants_after_paint(&self) -> bool {
87 match self { $($branch::$arm(w) => w.wants_after_paint()),+ }
88 }
89
90 fn after_paint(&self, view: &WidgetTreeView<'_>, ctx: &PaintContext) {
91 match self { $($branch::$arm(w) => w.after_paint(view, ctx)),+ }
92 }
93
94 fn wants_post_paint(&self) -> bool {
95 match self { $($branch::$arm(w) => w.wants_post_paint()),+ }
96 }
97
98 fn post_paint(&self, bounds: Rect, canvas: &mut Canvas, ctx: &PaintContext) {
99 match self { $($branch::$arm(w) => w.post_paint(bounds, canvas, ctx)),+ }
100 }
101
102 fn accessibility(&self, builder: &mut AccessNodeBuilder) {
103 match self { $($branch::$arm(w) => w.accessibility(builder)),+ }
104 }
105
106 fn culls_children(&self) -> bool {
107 match self { $($branch::$arm(w) => w.culls_children()),+ }
108 }
109
110 fn wants_descendant_redirects(&self) -> bool {
111 match self { $($branch::$arm(w) => w.wants_descendant_redirects()),+ }
112 }
113
114 fn a11y_redirect_descendant(
115 &self,
116 self_id: WidgetId,
117 descendant: WidgetId,
118 ) -> Option<accesskit::NodeId> {
119 match self {
120 $($branch::$arm(w) => w.a11y_redirect_descendant(self_id, descendant)),+
121 }
122 }
123
124 fn accessible_title_hint(&self) -> Option<String> {
125 match self { $($branch::$arm(w) => w.accessible_title_hint()),+ }
126 }
127
128 fn accessible_title_node(&self) -> Option<crate::widget_id::WidgetId> {
129 match self { $($branch::$arm(w) => w.accessible_title_node()),+ }
130 }
131
132 fn initial_focus_hint(&self) -> Option<WidgetId> {
133 match self { $($branch::$arm(w) => w.initial_focus_hint()),+ }
134 }
135
136 fn context_menu_key_target(&self) -> Option<WidgetId> {
137 match self { $($branch::$arm(w) => w.context_menu_key_target()),+ }
138 }
139
140 fn children(&self) -> Vec<WidgetId> {
141 match self { $($branch::$arm(w) => w.children()),+ }
142 }
143
144 fn accessibility_children(&self) -> Option<Vec<WidgetId>> {
145 match self { $($branch::$arm(w) => w.accessibility_children()),+ }
146 }
147
148 fn as_any(&self) -> Option<&dyn std::any::Any> {
149 match self { $($branch::$arm(w) => w.as_any()),+ }
150 }
151
152 fn as_any_mut(&mut self) -> Option<&mut dyn std::any::Any> {
153 match self { $($branch::$arm(w) => w.as_any_mut()),+ }
154 }
155
156 fn clips_children(&self) -> bool {
157 match self { $($branch::$arm(w) => w.clips_children()),+ }
158 }
159
160 fn focus_reveal_rect(&self, bounds: Rect) -> Option<Rect> {
161 match self { $($branch::$arm(w) => w.focus_reveal_rect(bounds)),+ }
162 }
163
164 fn hit_shape(&self, local_point: Point, bounds: Rect) -> bool {
165 match self { $($branch::$arm(w) => w.hit_shape(local_point, bounds)),+ }
166 }
167
168 fn accepts_child_hit(&self, child: WidgetId, point: Point) -> bool {
169 match self { $($branch::$arm(w) => w.accepts_child_hit(child, point)),+ }
170 }
171
172 fn hit_outset(
173 &self,
174 kind: teksilo_tokens::PointerKind,
175 tokens: &teksilo_tokens::InputTokens,
176 ) -> teksilo_canvas::EdgeInsets {
177 match self { $($branch::$arm(w) => w.hit_outset(kind, tokens)),+ }
178 }
179
180 fn hit_slop(
181 &self,
182 kind: teksilo_tokens::PointerKind,
183 tokens: &teksilo_tokens::InputTokens,
184 ) -> Option<crate::pointer::hit_slop::HitSlop> {
185 match self { $($branch::$arm(w) => Widget::hit_slop(w, kind, tokens)),+ }
189 }
190
191 fn hit_distance(&self, local_point: Point, bounds: Rect) -> Option<f32> {
192 match self { $($branch::$arm(w) => w.hit_distance(local_point, bounds)),+ }
193 }
194
195 fn target_regions(&self, bounds: Rect) -> Vec<crate::partition::TargetRegion> {
196 match self { $($branch::$arm(w) => w.target_regions(bounds)),+ }
197 }
198
199 fn preserves_children_on_rebuild(&self) -> bool {
200 match self { $($branch::$arm(w) => w.preserves_children_on_rebuild()),+ }
201 }
202
203 fn tooltip_has_content(&self) -> bool {
204 match self { $($branch::$arm(w) => w.tooltip_has_content()),+ }
205 }
206
207 fn declare_shortcuts(&self) -> Vec<crate::shortcut::Shortcut> {
208 match self { $($branch::$arm(w) => w.declare_shortcuts()),+ }
209 }
210
211 fn take_handler_set(&mut self) -> Option<HandlerSet> {
212 match self { $($branch::$arm(w) => w.take_handler_set()),+ }
213 }
214 }
215 };
216}
217
218#[derive(Debug)]
223pub enum TeksiBranch<L: Widget, R: Widget> {
224 L(L),
225 R(R),
226}
227
228impl_widget_for_branch!(TeksiBranch, L, R);
229
230#[derive(Debug)]
235pub enum TeksiBranch3<A: Widget, B: Widget, C: Widget> {
236 A(A),
237 B(B),
238 C(C),
239}
240
241impl_widget_for_branch!(TeksiBranch3, A, B, C);
242
243#[derive(Debug)]
248pub enum TeksiBranch4<A: Widget, B: Widget, C: Widget, D: Widget> {
249 A(A),
250 B(B),
251 C(C),
252 D(D),
253}
254
255impl_widget_for_branch!(TeksiBranch4, A, B, C, D);
256
257pub trait IntoTeksiChild {
266 fn into_pending(self) -> PendingChild;
267}
268
269impl<W: Widget + 'static> IntoTeksiChild for W {
270 fn into_pending(self) -> PendingChild {
271 PendingChild::Deferred(Box::new(self))
272 }
273}
274
275impl IntoTeksiChild for WidgetId {
276 fn into_pending(self) -> PendingChild {
277 PendingChild::Id(self)
278 }
279}
280
281pub trait IntoTeksiCondition {
308 fn teksilo_into_conditional_child<W: crate::widget::Widget + 'static>(
309 self,
310 child: W,
311 ctx: &mut crate::build_context::BuildContext,
312 ) -> Option<WidgetId>;
313}
314
315impl IntoTeksiCondition for bool {
316 fn teksilo_into_conditional_child<W: crate::widget::Widget + 'static>(
317 self,
318 child: W,
319 ctx: &mut crate::build_context::BuildContext,
320 ) -> Option<WidgetId> {
321 if self { Some(ctx.add(child)) } else { None }
322 }
323}
324
325impl IntoTeksiCondition for crate::signal::Signal<bool> {
326 fn teksilo_into_conditional_child<W: crate::widget::Widget + 'static>(
327 self,
328 child: W,
329 ctx: &mut crate::build_context::BuildContext,
330 ) -> Option<WidgetId> {
331 let id = ctx.add(child);
332 ctx.visible_when(id, self);
333 Some(id)
334 }
335}
336
337impl IntoTeksiCondition for crate::signal::Prop<bool> {
338 fn teksilo_into_conditional_child<W: crate::widget::Widget + 'static>(
339 self,
340 child: W,
341 ctx: &mut crate::build_context::BuildContext,
342 ) -> Option<WidgetId> {
343 let id = ctx.add(child);
344 ctx.visible_when(id, self);
345 Some(id)
346 }
347}
348
349#[cfg(test)]
350mod tests {
351 use super::*;
352 use crate::test_widgets::FillWidget;
353 use crate::widget_tree::WidgetTree;
354 use teksilo_canvas::SizeProposal;
355 use teksilo_tokens::Color;
356
357 #[test]
358 fn teksilo_branch_dispatches_to_active_variant() {
359 let mut tree_l = WidgetTree::new();
362 let id_l = tree_l.add(TeksiBranch::<FillWidget, FillWidget>::L(
363 FillWidget::new().background(Color::RED),
364 ));
365 tree_l.layout(SizeProposal::exact(100.0, 50.0));
366 assert!((tree_l.bounds(id_l).width - 100.0).abs() < 0.01);
367
368 let mut tree_r = WidgetTree::new();
369 let id_r = tree_r.add(TeksiBranch::<FillWidget, FillWidget>::R(
370 FillWidget::new().background(Color::BLUE),
371 ));
372 tree_r.layout(SizeProposal::exact(80.0, 40.0));
373 assert!((tree_r.bounds(id_r).width - 80.0).abs() < 0.01);
374 }
375
376 #[test]
377 fn teksilo_branch3_dispatches_to_active_variant() {
378 let mut tree = WidgetTree::new();
379 let id = tree.add(TeksiBranch3::<FillWidget, FillWidget, FillWidget>::B(
380 FillWidget::new(),
381 ));
382 tree.layout(SizeProposal::exact(120.0, 60.0));
383 assert!((tree.bounds(id).width - 120.0).abs() < 0.01);
384 }
385
386 #[test]
387 fn into_teksilo_child_routes_widget_to_deferred() {
388 let pending = FillWidget::new().into_pending();
389 assert!(matches!(pending, PendingChild::Deferred(_)));
390 }
391
392 #[test]
393 fn into_teksilo_child_routes_widget_id_to_id() {
394 let mut tree = WidgetTree::new();
395 let leaf = tree.add(FillWidget::new());
396 let pending = leaf.into_pending();
397 match pending {
398 PendingChild::Id(id) => assert_eq!(id, leaf),
399 _ => panic!("expected PendingChild::Id"),
400 }
401 }
402}