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
use crate::Value;

/// Used to align a widget vertical or horizontal.
#[derive(Copy, Clone, PartialEq, Debug)]
pub enum Alignment {
    Start,
    Center,
    End,
    Stretch,
}

impl Default for Alignment {
    fn default() -> Self {
        Alignment::Stretch
    }
}

impl Alignment {
    /// Calculates and returns an aligned position.
    ///
    /// The returned measure value represents a placement value
    /// (either a `x` or `y` coordinate). You may use this alignment
    /// value, so the given widget can consume the maximum available
    /// size inside the render, while respecting its `alignment
    /// specification` as well as its `margins` bounds.
    pub fn align_position(
        self,
        available_measure: f64,
        measure: f64,
        margin_start: f64,
        margin_end: f64,
    ) -> f64 {
        match self {
            Alignment::End => available_measure - measure - margin_end,
            Alignment::Center => (available_measure - measure) / 2.0,
            _ => margin_start,
        }
    }

    /// Calculates and returns a measure.
    ///
    /// The returned measure value represents a placement value
    /// (either a `x` or `y` coordinate). You may use this alignment
    /// value, so the given widget can consume the maximum
    /// available size inside the render, while respecting its `margin`
    /// bounds.
    pub fn align_measure(
        self,
        available_measure: f64,
        measure: f64,
        margin_start: f64,
        margin_end: f64,
    ) -> f64 {
        match self {
            Alignment::Stretch => available_measure - margin_start - margin_end,
            _ => measure,
        }
    }
}

impl From<&str> for Alignment {
    fn from(t: &str) -> Self {
        match t {
            "End" | "end" => Alignment::End,
            "Center" | "center" => Alignment::Center,
            "Start" | "start" => Alignment::Start,
            _ => Alignment::Stretch,
        }
    }
}

impl From<String> for Alignment {
    fn from(s: String) -> Alignment {
        Self::from(&s[..])
    }
}

impl From<Value> for Alignment {
    fn from(v: Value) -> Self {
        let value = v.get::<String>();
        Alignment::from(value)
    }
}

#[cfg(test)]
mod tests {
    use crate::prelude::*;

    #[test]
    fn test_align_position() {
        let available_measure = 100.0;
        let measure = 50.0;

        let alignment = Alignment::Stretch;
        assert!(crate::f64_cmp(
            alignment.align_position(available_measure, measure, 0.0, 0.0),
            0.0,
        ));

        let alignment = Alignment::Center;
        assert!(crate::f64_cmp(
            alignment.align_position(available_measure, measure, 0.0, 0.0),
            25.0,
        ));

        let alignment = Alignment::Start;
        assert!(crate::f64_cmp(
            alignment.align_position(available_measure, measure, 0.0, 0.0),
            0.0,
        ));

        let alignment = Alignment::End;
        assert!(crate::f64_cmp(
            alignment.align_position(available_measure, measure, 0.0, 0.0),
            50.0,
        ));
    }

    #[test]
    fn test_align_measure() {
        let available_measure = 100.0;
        let measure = 50.0;

        let alignment = Alignment::Stretch;
        assert!(crate::f64_cmp(
            alignment.align_measure(available_measure, measure, 0.0, 0.0),
            available_measure,
        ));

        let alignment = Alignment::Center;
        assert!(crate::f64_cmp(
            alignment.align_measure(available_measure, measure, 0.0, 0.0),
            measure,
        ));

        let alignment = Alignment::Start;
        assert!(crate::f64_cmp(
            alignment.align_measure(available_measure, measure, 0.0, 0.0),
            measure,
        ));

        let alignment = Alignment::End;
        assert!(crate::f64_cmp(
            alignment.align_measure(available_measure, measure, 0.0, 0.0),
            measure,
        ));
    }

    macro_rules! value {
        ( $e:expr ) => {
            Value(ron::Value::String(($e).to_string()))
        };
    }

    #[test]
    fn test_into() {
        let alignment: Alignment = "Start".into();
        assert_eq!(alignment, Alignment::Start);

        let alignment: Alignment = "start".into();
        assert_eq!(alignment, Alignment::Start);

        let alignment: Alignment = "Center".into();
        assert_eq!(alignment, Alignment::Center);

        let alignment: Alignment = "center".into();
        assert_eq!(alignment, Alignment::Center);

        let alignment: Alignment = "End".into();
        assert_eq!(alignment, Alignment::End);

        let alignment: Alignment = "end".into();
        assert_eq!(alignment, Alignment::End);

        let alignment: Alignment = "Stretch".into();
        assert_eq!(alignment, Alignment::Stretch);

        let alignment: Alignment = "stretch".into();
        assert_eq!(alignment, Alignment::Stretch);

        let alignment: Alignment = "other".into();
        assert_eq!(alignment, Alignment::Stretch);

        let alignment: Alignment = value!("Start").into();
        assert_eq!(alignment, Alignment::Start);

        let alignment: Alignment = value!("start").into();
        assert_eq!(alignment, Alignment::Start);

        let alignment: Alignment = value!("Center").into();
        assert_eq!(alignment, Alignment::Center);

        let alignment: Alignment = value!("center").into();
        assert_eq!(alignment, Alignment::Center);

        let alignment: Alignment = value!("End").into();
        assert_eq!(alignment, Alignment::End);

        let alignment: Alignment = value!("end").into();
        assert_eq!(alignment, Alignment::End);

        let alignment: Alignment = value!("Stretch").into();
        assert_eq!(alignment, Alignment::Stretch);

        let alignment: Alignment = value!("stretch").into();
        assert_eq!(alignment, Alignment::Stretch);

        let alignment: Alignment = value!("other").into();
        assert_eq!(alignment, Alignment::Stretch);
    }
}