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
use {
    CharacterCache,
    Color,
    Colorable,
    Dimensions,
    Frameable,
    Scalar,
    Sizeable,
    Theme,
    Widget,
};
use widget;


/// A filled rectangle widget that may or may not have some frame.
#[derive(Copy, Clone, Debug)]
pub struct FramedRectangle {
    /// Data necessary and common for all widget builder types.
    pub common: widget::CommonBuilder,
    /// Unique styling for the **FramedRectangle**.
    pub style: Style,
}


/// Unique styling for the **FramedRectangle** widget.
#[derive(Copy, Clone, Debug, PartialEq)]
pub struct Style {
    /// Shape styling for the inner rectangle.
    pub maybe_color: Option<Color>,
    /// The thickness of the frame.
    pub maybe_frame: Option<Scalar>,
    /// The color of the frame.
    pub maybe_frame_color: Option<Color>,
}

/// Unique kind for the Widget.
pub const KIND: widget::Kind = "FramedRectangle";

impl FramedRectangle {

    /// Build a new **FramedRectangle**.
    pub fn new(dim: Dimensions) -> Self {
        FramedRectangle {
            common: widget::CommonBuilder::new(),
            style: Style::new(),
        }.wh(dim)
    }

    /// Build the **FramedRectangle** with the given styling.
    pub fn with_style(mut self, style: Style) -> Self {
        self.style = style;
        self
    }

}


impl Widget for FramedRectangle {
    type State = ();
    type Style = Style;

    fn common(&self) -> &widget::CommonBuilder {
        &self.common
    }

    fn common_mut(&mut self) -> &mut widget::CommonBuilder {
        &mut self.common
    }

    fn unique_kind(&self) -> &'static str {
        KIND
    }

    fn init_state(&self) -> () {
        ()
    }

    fn style(&self) -> Style {
        self.style.clone()
    }

    /// Update the state of the Rectangle.
    fn update<C: CharacterCache>(self, _args: widget::UpdateArgs<Self, C>) {
        // Nothing to update here!
    }

}


impl Style {

    /// Construct the default Style.
    pub fn new() -> Style {
        Style {
            maybe_color: None,
            maybe_frame: None,
            maybe_frame_color: None,
        }
    }

    /// Get the Color for an Element.
    pub fn get_color(&self, theme: &Theme) -> Color {
        self.maybe_color.unwrap_or_else(|| theme.shape_color)
    }

    /// Get the frame for an Element.
    pub fn get_frame(&self, theme: &Theme) -> f64 {
        self.maybe_frame.unwrap_or_else(|| theme.frame_width)
    }

    /// Get the frame Color for an Element.
    pub fn get_frame_color(&self, theme: &Theme) -> Color {
        self.maybe_frame_color.unwrap_or_else(|| theme.frame_color)
    }

}




impl Colorable for FramedRectangle {
    fn color(mut self, color: Color) -> Self {
        self.style.maybe_color = Some(color);
        self
    }
}


impl Frameable for FramedRectangle {
    fn frame(mut self, width: Scalar) -> Self {
        self.style.maybe_frame = Some(width);
        self
    }
    fn frame_color(mut self, color: Color) -> Self {
        self.style.maybe_frame_color = Some(color);
        self
    }
}