pub struct FontsImpl {
pixels_per_point: f32,
max_texture_side: usize,
definitions: FontDefinitions,
atlas: Arc<Mutex<TextureAtlas>>,
font_impl_cache: FontImplCache,
sized_family: HashMap<(OrderedFloat<f32>, FontFamily), Font>,
}
Expand description
The collection of fonts used by epaint
.
Required in order to paint text.
Fields§
§pixels_per_point: f32
§max_texture_side: usize
§definitions: FontDefinitions
§atlas: Arc<Mutex<TextureAtlas>>
§font_impl_cache: FontImplCache
§sized_family: HashMap<(OrderedFloat<f32>, FontFamily), Font>
Implementations§
source§impl FontsImpl
impl FontsImpl
sourcepub fn new(
pixels_per_point: f32,
max_texture_side: usize,
definitions: FontDefinitions,
) -> Self
pub fn new( pixels_per_point: f32, max_texture_side: usize, definitions: FontDefinitions, ) -> Self
pub fn pixels_per_point(&self) -> f32
pub fn definitions(&self) -> &FontDefinitions
sourcepub fn font(&mut self, font_id: &FontId) -> &mut Font
pub fn font(&mut self, font_id: &FontId) -> &mut Font
Get the right font implementation from size and FontFamily
.
sourcefn glyph_width(&mut self, font_id: &FontId, c: char) -> f32
fn glyph_width(&mut self, font_id: &FontId, c: char) -> f32
Width of this character in points.
sourcepub fn has_glyphs(&mut self, font_id: &FontId, s: &str) -> bool
pub fn has_glyphs(&mut self, font_id: &FontId, s: &str) -> bool
Can we display all the glyphs in this text?
sourcefn row_height(&mut self, font_id: &FontId) -> f32
fn row_height(&mut self, font_id: &FontId) -> f32
Height of one row of text in points.
Auto Trait Implementations§
impl Freeze for FontsImpl
impl !RefUnwindSafe for FontsImpl
impl Send for FontsImpl
impl Sync for FontsImpl
impl Unpin for FontsImpl
impl !UnwindSafe for FontsImpl
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more