Trait ux::PropertyTransitionExt[][src]

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

Trait containing all PropertyTransition methods.

Implementors

KeyframeTransition, PropertyTransition

Required methods

pub 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.

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

Sets the PropertyTransition:property-name property of self.

property_name

a property name

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

Loading content...

Implementors

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

Loading content...