ori::core::text

Trait Fonts

Source
pub trait Fonts: Any {
    // Required methods
    fn load(&mut self, source: FontSource<'_>, name: Option<&str>);
    fn layout(
        &mut self,
        paragraph: &Paragraph,
        width: f32,
    ) -> Vec<TextLayoutLine>;
    fn measure(&mut self, paragraph: &Paragraph, width: f32) -> Size;
}
Expand description

A trait for managing fonts and text layout.

Required Methods§

Source

fn load(&mut self, source: FontSource<'_>, name: Option<&str>)

Load the given font source.

If name is provided, the fonts will be registered under that name instead of the default name provided by the source.

Source

fn layout(&mut self, paragraph: &Paragraph, width: f32) -> Vec<TextLayoutLine>

Layout the given paragraph with the given max width.

Source

fn measure(&mut self, paragraph: &Paragraph, width: f32) -> Size

Measure the given paragraph with the given max width.

Implementations§

Source§

impl dyn Fonts

Source

pub fn downcast_ref<T>(&self) -> Option<&T>
where T: Fonts,

Attempt to downcast a reference to a concrete type.

Source

pub fn downcast_mut<T>(&mut self) -> Option<&mut T>
where T: Fonts,

Attempt to downcast a mutable reference to a concrete type.

Implementors§