Trait gtk::prelude::RevealerExt

source ·
pub trait RevealerExt: 'static {
    // Required methods
    fn is_child_revealed(&self) -> bool;
    fn reveals_child(&self) -> bool;
    fn transition_duration(&self) -> u32;
    fn transition_type(&self) -> RevealerTransitionType;
    fn set_reveal_child(&self, reveal_child: bool);
    fn set_transition_duration(&self, duration: u32);
    fn set_transition_type(&self, transition: RevealerTransitionType);
    fn connect_child_revealed_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_reveal_child_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_transition_duration_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn connect_transition_type_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required Methods§

Implementors§