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
use crate::{Bind, Context, Event, Id, IdPath, IdentifyExt, Node, View, DEFAULT_SPACING};

/// A view that lays out its children horizontally.
#[derive(Debug, Clone, PartialEq)]
pub struct HStack<T> {
    spacing: f64,
    wrapped: T,
}

impl<T> HStack<T> {
    pub fn new(wrapped: T) -> Self {
        Self {
            spacing: DEFAULT_SPACING,
            wrapped,
        }
    }

    pub fn with_spacing(spacing: impl Into<f64>, wrapped: T) -> Self {
        Self {
            spacing: spacing.into(),
            wrapped,
        }
    }
}

impl<T> Bind for HStack<T> where T: Bind {}

impl<T> View for HStack<T> where T: View {
    fn fire(&self, event: &Event, id_path: &IdPath) {
        if let Some(head) = id_path.head() {
            match head {
                Id::Index(0) => self.wrapped.fire(event, &id_path.tail()),
                i => panic!("Cannot fire event for child id {} on HStack which only has one child", i)
            }
        }
    }

    fn render(&self, context: &Context) -> Node {
        Node::HStack {
            spacing: self.spacing,
            wrapped: Box::new(self.wrapped.render(&context.child(0)).identify(0)),
        }
    }
}