Trait sourceview5::prelude::CellEditableExt

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

Provided Methods§

source

fn editing_done(&self)

👎Deprecated: Since 4.10
source

fn remove_widget(&self)

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

fn is_editing_canceled(&self) -> bool

👎Deprecated: Since 4.10
source

fn set_editing_canceled(&self, editing_canceled: bool)

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10
source

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

👎Deprecated: Since 4.10

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<O> CellEditableExt for O
where O: IsA<CellEditable>,