Trait gtk::TextTagTableExt [] [src]

pub trait TextTagTableExt {
    fn add(&self, tag: &TextTag) -> bool;
    fn get_size(&self) -> i32;
    fn lookup(&self, name: &str) -> Option<TextTag>;
    fn remove(&self, tag: &TextTag);
    fn connect_tag_added<F: Fn(&Self, &TextTag) + 'static>(&self, f: F) -> u64;
    fn connect_tag_changed<F: Fn(&Self, &TextTag, bool) + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_tag_removed<F: Fn(&Self, &TextTag) + 'static>(&self, f: F) -> u64; }

Required Methods

Implementors