pub struct TextFillMix<P>(/* private fields */);Expand description
m Text color properties.
All properties in this mixin affects Text! nodes inside the widget where they are set.
Implementations§
Source§impl TextFillMix<()>
impl TextFillMix<()>
Sourcepub fn context_vars_set(set: &mut ContextValueSet)
pub fn context_vars_set(set: &mut ContextValueSet)
Insert context variables used by properties in this mixin.
Source§impl<P: WidgetImpl> TextFillMix<P>
impl<P: WidgetImpl> TextFillMix<P>
Sourcepub fn font_color(&self, color: impl IntoVar<Rgba>)
pub fn font_color(&self, color: impl IntoVar<Rgba>)
P Defines the color the most text glyphs are filled with.
Colored glyphs (Emoji) are not affected by this, you can use font_palette to modify
Emoji colors.
Sets the FONT_COLOR_VAR.
Source§impl<P: WidgetImpl> TextFillMix<P>
impl<P: WidgetImpl> TextFillMix<P>
Sourcepub fn font_palette(&self, palette: impl IntoVar<FontColorPalette>)
pub fn font_palette(&self, palette: impl IntoVar<FontColorPalette>)
P Defines the palette used to render colored glyphs (Emoji).
This property only affects Emoji from fonts using COLR v0. You can use font_color to set
the base color, and font_palette_colors to change specific colors.
Sets the FONT_PALETTE_VAR.
Source§impl<P: WidgetImpl> TextFillMix<P>
impl<P: WidgetImpl> TextFillMix<P>
Sourcepub fn font_palette_colors(&self, colors: impl IntoVar<Vec<(u16, Rgba)>>)
pub fn font_palette_colors(&self, colors: impl IntoVar<Vec<(u16, Rgba)>>)
P Defines custom palette colors that affect Emoji colors.
The palette is selected by font_palette and then each valid index entry in this property replaces
the selected color.
Sets the FONT_PALETTE_COLORS_VAR.
Trait Implementations§
Source§impl<P> Deref for TextFillMix<P>
impl<P> Deref for TextFillMix<P>
Auto Trait Implementations§
impl<P> Freeze for TextFillMix<P>where
P: Freeze,
impl<P> RefUnwindSafe for TextFillMix<P>where
P: RefUnwindSafe,
impl<P> Send for TextFillMix<P>where
P: Send,
impl<P> Sync for TextFillMix<P>where
P: Sync,
impl<P> Unpin for TextFillMix<P>where
P: Unpin,
impl<P> UnwindSafe for TextFillMix<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