[][src]Struct egui::paint::fonts::FontDefinitions

pub struct FontDefinitions {
    pub pixels_per_point: f32,
    pub font_data: BTreeMap<String, FontData>,
    pub fonts_for_family: BTreeMap<FontFamily, Vec<String>>,
    pub family_and_size: BTreeMap<TextStyle, (FontFamily, f32)>,
}

This is how you tell Egui which fonts and font sizes to use.

Fields

pixels_per_point: f32

The dpi scale factor. Needed to get pixel perfect fonts.

font_data: BTreeMap<String, FontData>

List of font names and their definitions. The definition must be the contents of either a .ttf or .otf font file.

Egui has built-in-default for these, but you can override them if you like.

fonts_for_family: BTreeMap<FontFamily, Vec<String>>

Which fonts (names) to use for each FontFamily.

The list should be a list of keys into font_data. When looking for a character glyph Egui will start with the first font and then move to the second, and so on. So the first font is the primary, and then comes a list of fallbacks in order of priority.

family_and_size: BTreeMap<TextStyle, (FontFamily, f32)>

The FontFaily and size you want to use for a specific TextStyle.

Implementations

impl FontDefinitions[src]

pub fn ui(&mut self, ui: &mut Ui)[src]

impl FontDefinitions[src]

pub fn default_with_pixels_per_point(pixels_per_point: f32) -> Self[src]

Default values for the fonts

Trait Implementations

impl Clone for FontDefinitions[src]

impl Debug for FontDefinitions[src]

impl Default for FontDefinitions[src]

impl PartialEq<FontDefinitions> for FontDefinitions[src]

impl StructuralPartialEq for FontDefinitions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.