Trait animate::PropertyTransitionExt[][src]

pub trait PropertyTransitionExt: 'static {
    fn get_property_name(&self) -> Option<GString>;
fn set_property_name(&self, property_name: Option<&str>);
fn connect_property_property_name_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Trait containing all PropertyTransition methods.

Implementors

KeyframeTransition, PropertyTransition

Required methods

fn get_property_name(&self) -> Option<GString>[src]

Retrieves the value of the PropertyTransition:property-name property.

Returns

the name of the property being animated, or None if none is set. The returned string is owned by the self and it should not be freed.

fn set_property_name(&self, property_name: Option<&str>)[src]

Sets the PropertyTransition:property-name property of self.

property_name

a property name

fn connect_property_property_name_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<PropertyTransition>> PropertyTransitionExt for O[src]

Loading content...