[−][src]Struct azul_core::ui_solver::TextLayoutOptions
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]
fn clone(&self) -> TextLayoutOptions
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for TextLayoutOptions
[src]
impl Default for TextLayoutOptions
[src]
fn default() -> TextLayoutOptions
[src]
impl PartialEq<TextLayoutOptions> for TextLayoutOptions
[src]
fn eq(&self, other: &TextLayoutOptions) -> bool
[src]
fn ne(&self, other: &TextLayoutOptions) -> bool
[src]
impl PartialOrd<TextLayoutOptions> for TextLayoutOptions
[src]
fn partial_cmp(&self, other: &TextLayoutOptions) -> Option<Ordering>
[src]
fn lt(&self, other: &TextLayoutOptions) -> bool
[src]
fn le(&self, other: &TextLayoutOptions) -> bool
[src]
fn gt(&self, other: &TextLayoutOptions) -> bool
[src]
fn ge(&self, other: &TextLayoutOptions) -> bool
[src]
impl StructuralPartialEq for TextLayoutOptions
[src]
Auto Trait Implementations
impl RefUnwindSafe for TextLayoutOptions
impl Send for TextLayoutOptions
impl Sync for TextLayoutOptions
impl Unpin for TextLayoutOptions
impl UnwindSafe for TextLayoutOptions
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,