Trait gtk::LinkButtonExt[][src]

pub trait LinkButtonExt: 'static {
    fn get_uri(&self) -> Option<GString>;
fn get_visited(&self) -> bool;
fn set_uri(&self, uri: &str);
fn set_visited(&self, visited: bool);
fn connect_activate_link<F: Fn(&Self) -> Inhibit + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_uri_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_visited_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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

fn get_visited(&self) -> bool[src]

fn set_uri(&self, uri: &str)[src]

fn set_visited(&self, visited: bool)[src]

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

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

Loading content...

Implementors

impl<O: IsA<LinkButton>> LinkButtonExt for O[src]

Loading content...