pub struct StyleMix<P>(/* private fields */);
Expand description
m
Styleable widget mixin.
Widgets that inherit this mix-in have a style_fn
property that can be set to a style_fn!
that generates properties that are dynamically injected into the widget to alter its appearance.
The style mixin drastically affects the widget build process, only the style_base_fn
, style_fn
and when
condition
properties that affects these are instantiated with the widget, all the other properties and intrinsic nodes are instantiated
on init, after the style is generated.
Widgets that inherit this mix-in must call style_intrinsic
in their own widget_intrinsic
, the call is missing
the widget will log an error on instantiation and only the style_base_fn
will be used. You can use the impl_style_fn!
macro to generate the style var and property.
Implementations§
source§impl<P> StyleMix<P>where
P: WidgetImpl,
impl<P> StyleMix<P>where
P: WidgetImpl,
sourcepub fn style_intrinsic(
&mut self,
style_var: ContextVar<StyleFn>,
style_fn: PropertyId,
)
pub fn style_intrinsic( &mut self, style_var: ContextVar<StyleFn>, style_fn: PropertyId, )
Setup the style build.
source§impl<P> StyleMix<P>
impl<P> StyleMix<P>
sourcepub fn custom_build(
wgt: WidgetBuilder,
cfg: Option<(ContextVar<StyleFn>, PropertyId)>,
) -> Box<dyn UiNodeBoxed>
pub fn custom_build( wgt: WidgetBuilder, cfg: Option<(ContextVar<StyleFn>, PropertyId)>, ) -> Box<dyn UiNodeBoxed>
The custom build that is set on intrinsic by the mixin.
source§impl<P> StyleMix<P>where
P: WidgetImpl,
impl<P> StyleMix<P>where
P: WidgetImpl,
sourcepub fn style_base_fn(&self, style: impl IntoVar<StyleFn>)
pub fn style_base_fn(&self, style: impl IntoVar<StyleFn>)
c
Widget’s base style. All other styles set using style_fn
are applied over this style.
Is nil
by default.
Trait Implementations§
Auto Trait Implementations§
impl<P> Freeze for StyleMix<P>where
P: Freeze,
impl<P> RefUnwindSafe for StyleMix<P>where
P: RefUnwindSafe,
impl<P> Send for StyleMix<P>where
P: Send,
impl<P> Sync for StyleMix<P>where
P: Sync,
impl<P> Unpin for StyleMix<P>where
P: Unpin,
impl<P> UnwindSafe for StyleMix<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> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.§impl<T> DowncastSync for T
impl<T> DowncastSync for 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> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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