zng_wgt_text

Struct FontFeaturesMix

Source
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§

Source

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.

Source

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.

Source

pub font_kerning(state: impl IntoVar<FontFeatureState>);

Sets the font kerning feature.

Source

pub font_common_lig(state: impl IntoVar<FontFeatureState>);

Sets the font common ligatures features.

Source

pub font_discretionary_lig(state: impl IntoVar<FontFeatureState>);

Sets the font discretionary ligatures feature.

Source

pub font_historical_lig(state: impl IntoVar<FontFeatureState>);

Sets the font historical ligatures feature.

Source

pub font_contextual_alt(state: impl IntoVar<FontFeatureState>);

Sets the font contextual alternatives feature.

Source

pub font_caps(state: impl IntoVar<CapsVariant>);

Sets the font capital variant features.

Source

pub font_numeric(state: impl IntoVar<NumVariant>);

Sets the font numeric variant features.

Source

pub font_num_spacing(state: impl IntoVar<NumSpacing>);

Sets the font numeric spacing features.

Source

pub font_num_fraction(state: impl IntoVar<NumFraction>);

Sets the font numeric fraction features.

Source

pub font_swash(state: impl IntoVar<FontFeatureState>);

Sets the font swash features.

Source

pub font_stylistic(state: impl IntoVar<FontFeatureState>);

Sets the font stylistic alternative feature.

Source

pub font_historical_forms(state: impl IntoVar<FontFeatureState>);

Sets the font historical forms alternative feature.

Source

pub font_ornaments(state: impl IntoVar<FontFeatureState>);

Sets the font ornaments alternative feature.

Source

pub font_annotation(state: impl IntoVar<FontFeatureState>);

Sets the font annotation alternative feature.

Source

pub font_style_set(state: impl IntoVar<FontStyleSet>);

Sets the font stylistic set alternative feature.

Source

pub font_char_variant(state: impl IntoVar<CharVariant>);

Sets the font character variant alternative feature.

Source

pub font_position(state: impl IntoVar<FontPosition>);

Sets the font sub/super script position alternative feature.

Source

pub font_jp_variant(state: impl IntoVar<JpVariant>);

Sets the Japanese logographic set.

Source

pub font_cn_variant(state: impl IntoVar<CnVariant>);

Sets the Chinese logographic set.

Source

pub font_ea_width(state: impl IntoVar<EastAsianWidth>);

Sets the East Asian figure width.

Implementations§

Source§

impl FontFeaturesMix<()>

Source

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>

Source§

type Target = P

The resulting type after dereferencing.
Source§

fn deref(&self) -> &Self::Target

Dereferences the value.
Source§

impl<P> DerefMut for FontFeaturesMix<P>

Source§

fn deref_mut(&mut self) -> &mut Self::Target

Mutably dereferences the value.

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> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts 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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts 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
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSendSync for T

Source§

impl<T> StateValue for T
where T: Any + Send + Sync,