blob: 07248e02de951de7ea85ed099e039ff7dca3881a (
plain) (
blame)
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
|
use super::*;
/// A node that represents a rectangular box.
#[derive(Debug, Clone, PartialEq)]
pub struct NodeBackground {
/// The background fill.
pub fill: Fill,
/// The child node to be filled in.
pub child: Node,
}
impl Layout for NodeBackground {
fn layout(&self, ctx: &mut LayoutContext, areas: &Areas) -> Layouted {
let mut layouted = self.child.layout(ctx, areas);
if let Some(first) = layouted.frames_mut().first_mut() {
first.elements.insert(
0,
(
Point::ZERO,
Element::Geometry(Geometry {
shape: Shape::Rect(first.size),
fill: self.fill.clone(),
}),
),
)
}
layouted
}
}
impl From<NodeBackground> for NodeAny {
fn from(background: NodeBackground) -> Self {
Self::new(background)
}
}
|