pub trait CellEditableExt: IsA<CellEditable> + Sealed + 'static {
    // Provided methods
    fn editing_done(&self) { ... }
    fn remove_widget(&self) { ... }
    fn start_editing(&self, event: Option<&Event>) { ... }
    fn is_editing_canceled(&self) -> bool { ... }
    fn set_editing_canceled(&self, editing_canceled: bool) { ... }
    fn connect_editing_done<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_remove_widget<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
    fn connect_editing_canceled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn editing_done(&self)

source

fn remove_widget(&self)

source

fn start_editing(&self, event: Option<&Event>)

source

fn is_editing_canceled(&self) -> bool

source

fn set_editing_canceled(&self, editing_canceled: bool)

source

fn connect_editing_done<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_remove_widget<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_editing_canceled_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§