pub trait EditorStateExt: IsA<EditorState> + Sealed + 'static {
    // Provided methods
    fn typing_attributes(&self) -> u32 { ... }
    fn is_copy_available(&self) -> bool { ... }
    fn is_cut_available(&self) -> bool { ... }
    fn is_paste_available(&self) -> bool { ... }
    fn is_redo_available(&self) -> bool { ... }
    fn is_undo_available(&self) -> bool { ... }
    fn connect_typing_attributes_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId { ... }
}
Available on crate feature v2_10 only.

Provided Methods§

source

fn typing_attributes(&self) -> u32

source

fn is_copy_available(&self) -> bool

Available on crate feature v2_20 only.
source

fn is_cut_available(&self) -> bool

Available on crate feature v2_20 only.
source

fn is_paste_available(&self) -> bool

Available on crate feature v2_20 only.
source

fn is_redo_available(&self) -> bool

Available on crate feature v2_20 only.
source

fn is_undo_available(&self) -> bool

Available on crate feature v2_20 only.
source

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

Object Safety§

This trait is not object safe.

Implementors§