Trait gtk::prelude::EditableSignals  
                   
                       [−]
                   
               [src]
pub trait EditableSignals {
    fn connect_changed<F>(&self, changed_func: F) -> u64
    where
        F: Fn(&Self) + 'static;
    fn connect_delete_text<F>(&self, delete_text_func: F) -> u64
    where
        F: Fn(&Self, i32, i32) + 'static;
    fn connect_insert_text<F>(&self, insert_text_func: F) -> u64
    where
        F: Fn(&Self, &str, &mut i32) + 'static;
}
            Required Methods
fn connect_changed<F>(&self, changed_func: F) -> u64 where
    F: Fn(&Self) + 'static, 
F: Fn(&Self) + 'static,
fn connect_delete_text<F>(&self, delete_text_func: F) -> u64 where
    F: Fn(&Self, i32, i32) + 'static, 
F: Fn(&Self, i32, i32) + 'static,
fn connect_insert_text<F>(&self, insert_text_func: F) -> u64 where
    F: Fn(&Self, &str, &mut i32) + 'static, 
F: Fn(&Self, &str, &mut i32) + 'static,