[][src]Trait gtk::EditableSignals

pub trait EditableSignals: 'static {
    fn connect_changed<F>(&self, changed_func: F) -> SignalHandlerId
    where
        F: Fn(&Self) + 'static
;
fn connect_delete_text<F>(&self, delete_text_func: F) -> SignalHandlerId
    where
        F: Fn(&Self, i32, i32) + 'static
;
fn connect_insert_text<F>(&self, insert_text_func: F) -> SignalHandlerId
    where
        F: Fn(&Self, &str, &mut i32) + 'static
; }

Required methods

fn connect_changed<F>(&self, changed_func: F) -> SignalHandlerId where
    F: Fn(&Self) + 'static, 

fn connect_delete_text<F>(&self, delete_text_func: F) -> SignalHandlerId where
    F: Fn(&Self, i32, i32) + 'static, 

fn connect_insert_text<F>(&self, insert_text_func: F) -> SignalHandlerId where
    F: Fn(&Self, &str, &mut i32) + 'static, 

Loading content...

Implementors

impl<T: IsA<Editable>> EditableSignals for T[src]

Loading content...