Trait gtk::CellEditableExt [] [src]

pub trait CellEditableExt {
    fn editing_done(&self);
    fn remove_widget(&self);
    fn start_editing<'a, P: Into<Option<&'a Event>>>(&self, event: P);
    fn get_property_editing_canceled(&self) -> bool;
    fn set_property_editing_canceled(&self, editing_canceled: bool);
    fn connect_editing_done<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
    fn connect_remove_widget<F: Fn(&Self) + 'static>(&self, f: F) -> u64;
}

Required Methods

Implementors