pub struct FontFeaturesMix<P>(/* private fields */);
Expand description
m
Advanced font config, features, kerning, variations and more.
All properties in this mixin affects Text!
nodes inside the widget where they are set.
Properties§
Sourcepub font_variations(variations: impl IntoVar<FontVariations>);
pub font_variations(variations: impl IntoVar<FontVariations>);
Sets font variations.
Note: This property fully replaces the font variations for the widget and descendants, use with_font_variation
to create a property that sets a variation but retains others from the context.
Sourcepub font_features(features: impl IntoVar<FontFeatures>);
pub font_features(features: impl IntoVar<FontFeatures>);
Sets font features.
Note: This property fully replaces the font variations for the widget and descendants, use with_font_variation
to create a property that sets a variation but retains others from the context.
Sourcepub font_kerning(state: impl IntoVar<FontFeatureState>);
pub font_kerning(state: impl IntoVar<FontFeatureState>);
Sets the font kerning feature.
Sourcepub font_common_lig(state: impl IntoVar<FontFeatureState>);
pub font_common_lig(state: impl IntoVar<FontFeatureState>);
Sets the font common ligatures features.
Sourcepub font_discretionary_lig(state: impl IntoVar<FontFeatureState>);
pub font_discretionary_lig(state: impl IntoVar<FontFeatureState>);
Sets the font discretionary ligatures feature.
Sourcepub font_historical_lig(state: impl IntoVar<FontFeatureState>);
pub font_historical_lig(state: impl IntoVar<FontFeatureState>);
Sets the font historical ligatures feature.
Sourcepub font_contextual_alt(state: impl IntoVar<FontFeatureState>);
pub font_contextual_alt(state: impl IntoVar<FontFeatureState>);
Sets the font contextual alternatives feature.
Sourcepub font_caps(state: impl IntoVar<CapsVariant>);
pub font_caps(state: impl IntoVar<CapsVariant>);
Sets the font capital variant features.
Sourcepub font_numeric(state: impl IntoVar<NumVariant>);
pub font_numeric(state: impl IntoVar<NumVariant>);
Sets the font numeric variant features.
Sourcepub font_num_spacing(state: impl IntoVar<NumSpacing>);
pub font_num_spacing(state: impl IntoVar<NumSpacing>);
Sets the font numeric spacing features.
Sourcepub font_num_fraction(state: impl IntoVar<NumFraction>);
pub font_num_fraction(state: impl IntoVar<NumFraction>);
Sets the font numeric fraction features.
Sourcepub font_swash(state: impl IntoVar<FontFeatureState>);
pub font_swash(state: impl IntoVar<FontFeatureState>);
Sets the font swash features.
Sourcepub font_stylistic(state: impl IntoVar<FontFeatureState>);
pub font_stylistic(state: impl IntoVar<FontFeatureState>);
Sets the font stylistic alternative feature.
Sourcepub font_historical_forms(state: impl IntoVar<FontFeatureState>);
pub font_historical_forms(state: impl IntoVar<FontFeatureState>);
Sets the font historical forms alternative feature.
Sourcepub font_ornaments(state: impl IntoVar<FontFeatureState>);
pub font_ornaments(state: impl IntoVar<FontFeatureState>);
Sets the font ornaments alternative feature.
Sourcepub font_annotation(state: impl IntoVar<FontFeatureState>);
pub font_annotation(state: impl IntoVar<FontFeatureState>);
Sets the font annotation alternative feature.
Sourcepub font_style_set(state: impl IntoVar<FontStyleSet>);
pub font_style_set(state: impl IntoVar<FontStyleSet>);
Sets the font stylistic set alternative feature.
Sourcepub font_char_variant(state: impl IntoVar<CharVariant>);
pub font_char_variant(state: impl IntoVar<CharVariant>);
Sets the font character variant alternative feature.
Sourcepub font_position(state: impl IntoVar<FontPosition>);
pub font_position(state: impl IntoVar<FontPosition>);
Sets the font sub/super script position alternative feature.
Sourcepub font_jp_variant(state: impl IntoVar<JpVariant>);
pub font_jp_variant(state: impl IntoVar<JpVariant>);
Sets the Japanese logographic set.
Sourcepub font_cn_variant(state: impl IntoVar<CnVariant>);
pub font_cn_variant(state: impl IntoVar<CnVariant>);
Sets the Chinese logographic set.
Sourcepub font_ea_width(state: impl IntoVar<EastAsianWidth>);
pub font_ea_width(state: impl IntoVar<EastAsianWidth>);
Sets the East Asian figure width.
Implementations§
Source§impl FontFeaturesMix<()>
impl FontFeaturesMix<()>
Sourcepub fn context_vars_set(set: &mut ContextValueSet)
pub fn context_vars_set(set: &mut ContextValueSet)
Insert context variables used by properties in this mix-in.
Trait Implementations§
Source§impl<P> Deref for FontFeaturesMix<P>
impl<P> Deref for FontFeaturesMix<P>
Auto Trait Implementations§
impl<P> Freeze for FontFeaturesMix<P>where
P: Freeze,
impl<P> RefUnwindSafe for FontFeaturesMix<P>where
P: RefUnwindSafe,
impl<P> Send for FontFeaturesMix<P>where
P: Send,
impl<P> Sync for FontFeaturesMix<P>where
P: Sync,
impl<P> Unpin for FontFeaturesMix<P>where
P: Unpin,
impl<P> UnwindSafe for FontFeaturesMix<P>where
P: UnwindSafe,
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more