Trait libhelium::prelude::TimedAnimationExt

source ·
pub trait TimedAnimationExt: IsA<TimedAnimation> + Sealed + 'static {
Show 21 methods // Provided methods fn value_from(&self) -> f64 { ... } fn set_value_from(&self, value: f64) { ... } fn value_to(&self) -> f64 { ... } fn set_value_to(&self, value: f64) { ... } fn duration(&self) -> u32 { ... } fn set_duration(&self, value: u32) { ... } fn easing(&self) -> Easing { ... } fn set_easing(&self, value: Easing) { ... } fn repeat_count(&self) -> u32 { ... } fn set_repeat_count(&self, value: u32) { ... } fn is_reverse(&self) -> bool { ... } fn set_reverse(&self, value: bool) { ... } fn is_alternate(&self) -> bool { ... } fn set_alternate(&self, value: bool) { ... } fn connect_value_from_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_value_to_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_duration_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_easing_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_repeat_count_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_reverse_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... } fn connect_alternate_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId { ... }
}
Expand description

Trait containing all TimedAnimation methods.

§Implementors

TimedAnimation

Provided Methods§

source

fn value_from(&self) -> f64

source

fn set_value_from(&self, value: f64)

source

fn value_to(&self) -> f64

source

fn set_value_to(&self, value: f64)

source

fn duration(&self) -> u32

source

fn set_duration(&self, value: u32)

source

fn easing(&self) -> Easing

source

fn set_easing(&self, value: Easing)

source

fn repeat_count(&self) -> u32

source

fn set_repeat_count(&self, value: u32)

source

fn is_reverse(&self) -> bool

source

fn set_reverse(&self, value: bool)

source

fn is_alternate(&self) -> bool

source

fn set_alternate(&self, value: bool)

source

fn connect_value_from_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_value_to_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_duration_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_easing_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_repeat_count_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_reverse_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

source

fn connect_alternate_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId

Object Safety§

This trait is not object safe.

Implementors§