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

/// Origin at top-left corner, unit `1px`
pub struct CssPx;

pub use euclid::point2 as point;
pub use euclid::rect;
pub type Length<U> = euclid::Length<f32, U>;
pub type Point<U> = euclid::TypedPoint2D<f32, U>;
pub type Size<U> = euclid::TypedSize2D<f32, U>;
pub type Rect<U> = euclid::TypedRect<f32, U>;
pub type SideOffsets<U> = euclid::TypedSideOffsets2D<f32, U>;
pub type Scale<Src, Dest> = euclid::TypedScale<f32, Src, Dest>;

#[derive(Copy, Clone, PartialEq)]
pub struct RGBA(pub f32, pub f32, pub f32, pub f32);

pub struct TextRun<'a> {
    pub segment: &'a text::ShapedSegment,
    pub font_size: Length<CssPx>,
    pub origin: Point<CssPx>,
}

impl From<cssparser::RGBA> for RGBA {
    fn from(c: cssparser::RGBA) -> Self {
        RGBA(c.red_f32(), c.green_f32(), c.blue_f32(), c.alpha_f32())
    }
}