pub trait LinkButtonExt: IsA<LinkButton> + Sealed + 'static {
    // Provided methods
    fn uri(&self) -> Option<GString> { ... }
    fn is_visited(&self) -> bool { ... }
    fn set_uri(&self, uri: &str) { ... }
    fn set_visited(&self, visited: bool) { ... }
    fn connect_activate_link<F: Fn(&Self) -> Propagation + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_visited_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn uri(&self) -> Option<GString>

source

fn is_visited(&self) -> bool

source

fn set_uri(&self, uri: &str)

source

fn set_visited(&self, visited: bool)

source

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

source

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

Implementors§