[][src]Struct azul_core::ui_solver::TextLayoutOptions

pub struct TextLayoutOptions {
    pub font_size_px: PixelValue,
    pub line_height: Option<f32>,
    pub letter_spacing: Option<PixelValue>,
    pub word_spacing: Option<PixelValue>,
    pub tab_width: Option<f32>,
    pub max_horizontal_width: Option<f32>,
    pub leading: Option<f32>,
    pub holes: Vec<LayoutRect>,
}

Layout options that can impact the flow of word positions

Fields

font_size_px: PixelValue

Font size (in pixels) that this text has been laid out with

line_height: Option<f32>

Multiplier for the line height, default to 1.0

letter_spacing: Option<PixelValue>

Additional spacing between glyphs (in pixels)

word_spacing: Option<PixelValue>

Additional spacing between words (in pixels)

tab_width: Option<f32>

How many spaces should a tab character emulate (multiplying value, i.e. 4.0 = one tab = 4 spaces)?

max_horizontal_width: Option<f32>

Maximum width of the text (in pixels) - if the text is set to overflow:visible, set this to None.

leading: Option<f32>

How many pixels of leading does the first line have? Note that this added onto to the holes, so for effects like :first-letter, use a hole instead of a leading.

holes: Vec<LayoutRect>

This is more important for inline text layout where items can punch "holes" into the text flow, for example an image that floats to the right.

TODO: Currently unused!

Trait Implementations

impl Clone for TextLayoutOptions[src]

impl Debug for TextLayoutOptions[src]

impl Default for TextLayoutOptions[src]

impl PartialEq<TextLayoutOptions> for TextLayoutOptions[src]

impl PartialOrd<TextLayoutOptions> for TextLayoutOptions[src]

impl StructuralPartialEq for TextLayoutOptions[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.