pub trait ViewAddExt {
    // Required methods
    fn connect_is_responsive_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
    fn icon_name(&self) -> String;
    fn is_responsive(&self) -> bool;
    fn set_is_responsive(&self, value: bool);
    fn view_title(&self) -> String;
}

Required Methods§

source

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

source

fn icon_name(&self) -> String

source

fn is_responsive(&self) -> bool

source

fn set_is_responsive(&self, value: bool)

source

fn view_title(&self) -> String

Implementors§