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
use crate::{
draw_target::DrawTarget,
geometry::{Dimensions, Point},
pixelcolor::PixelColor,
primitives::OffsetOutline,
primitives::{PrimitiveStyle, Rectangle},
transform::Transform,
Drawable,
};
#[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Debug, Default)]
pub struct Styled<T, S> {
pub primitive: T,
pub style: S,
}
impl<T, S> Styled<T, S> {
pub fn new(primitive: T, style: S) -> Self {
Self { primitive, style }
}
}
impl<T: OffsetOutline, C: PixelColor> Styled<T, PrimitiveStyle<C>> {
pub fn fill_area(&self) -> T {
self.style.fill_area(&self.primitive)
}
pub fn stroke_area(&self) -> T {
self.style.stroke_area(&self.primitive)
}
}
impl<T: StyledPixels<S>, S> Styled<T, S> {
pub fn pixels(&self) -> T::Iter {
self.primitive.pixels(&self.style)
}
}
impl<T: StyledDimensions<S>, S> Dimensions for Styled<T, S> {
fn bounding_box(&self) -> Rectangle {
self.primitive.styled_bounding_box(&self.style)
}
}
impl<T: StyledDrawable<S>, S> Drawable for Styled<T, S> {
type Color = T::Color;
type Output = T::Output;
fn draw<D>(&self, target: &mut D) -> Result<Self::Output, D::Error>
where
D: DrawTarget<Color = Self::Color>,
{
self.primitive.draw_styled(&self.style, target)
}
}
impl<T: Transform, S: Clone> Transform for Styled<T, S> {
fn translate(&self, by: Point) -> Self {
Self {
primitive: self.primitive.translate(by),
style: self.style.clone(),
}
}
fn translate_mut(&mut self, by: Point) -> &mut Self {
self.primitive.translate_mut(by);
self
}
}
pub trait StyledDrawable<S> {
type Color: PixelColor;
type Output;
fn draw_styled<D>(&self, style: &S, target: &mut D) -> Result<Self::Output, D::Error>
where
D: DrawTarget<Color = Self::Color>;
}
pub trait StyledDimensions<S> {
fn styled_bounding_box(&self, style: &S) -> Rectangle;
}
pub trait StyledPixels<S> {
type Iter;
fn pixels(&self, style: &S) -> Self::Iter;
}