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
//! Tools to control view alignment

/// Specifies the alignment along both horizontal and vertical directions.
pub struct Align {
    pub h: HAlign,
    pub v: VAlign,
}

impl Align {
    /// Creates a new Align object from the given horizontal and vertical alignments.
    pub fn new(h: HAlign, v: VAlign) -> Self {
        Align { h: h, v: v }
    }

    /// Creates a top-left alignment.
    pub fn top_left() -> Self {
        Align::new(HAlign::Left, VAlign::Top)
    }

    /// Creates a top-right alignment.
    pub fn top_right() -> Self {
        Align::new(HAlign::Right, VAlign::Top)
    }

    /// Creates a bottom-left alignment.
    pub fn bot_left() -> Self {
        Align::new(HAlign::Left, VAlign::Bottom)
    }

    /// Creates a bottom-right alignment.
    pub fn bot_right() -> Self {
        Align::new(HAlign::Right, VAlign::Top)
    }

    /// Creates an alignment centered both horizontally and vertically.
    pub fn center() -> Self {
        Align::new(HAlign::Center, VAlign::Center)
    }
}

/// Horizontal alignment
pub enum HAlign {
    Left,
    Center,
    Right,
}

/// Vertical alignment
pub enum VAlign {
    Top,
    Center,
    Bottom,
}

impl HAlign {
    /// To draw a view with size `content` in a printer with size `container`, this returns the
    /// offset to start printing the view at.
    pub fn get_offset(&self, content: usize, container: usize) -> usize {
        match *self {
            HAlign::Left => 0,
            HAlign::Center => (container - content) / 2,
            HAlign::Right => (container - content),
        }
    }
}

impl VAlign {
    /// To draw a view with size `content` in a printer with size `container`, this returns the
    /// offset to start printing the view at.
    pub fn get_offset(&self, content: usize, container: usize) -> usize {
        match *self {
            VAlign::Top => 0,
            VAlign::Center => (container - content) / 2,
            VAlign::Bottom => (container - content),
        }
    }
}