Trait sourceview5::prelude::EditableExt
source · pub trait EditableExt: IsA<Editable> + Sealed + 'static {
Show 35 methods
// Provided methods
fn delegate_get_accessible_platform_state(
&self,
state: AccessiblePlatformState,
) -> bool { ... }
fn delete_selection(&self) { ... }
fn delete_text(&self, start_pos: i32, end_pos: i32) { ... }
fn finish_delegate(&self) { ... }
fn alignment(&self) -> f32 { ... }
fn chars(&self, start_pos: i32, end_pos: i32) -> GString { ... }
fn delegate(&self) -> Option<Editable> { ... }
fn is_editable(&self) -> bool { ... }
fn enables_undo(&self) -> bool { ... }
fn max_width_chars(&self) -> i32 { ... }
fn position(&self) -> i32 { ... }
fn selection_bounds(&self) -> Option<(i32, i32)> { ... }
fn text(&self) -> GString { ... }
fn width_chars(&self) -> i32 { ... }
fn init_delegate(&self) { ... }
fn insert_text(&self, text: &str, position: &mut i32) { ... }
fn select_region(&self, start_pos: i32, end_pos: i32) { ... }
fn set_alignment(&self, xalign: f32) { ... }
fn set_editable(&self, is_editable: bool) { ... }
fn set_enable_undo(&self, enable_undo: bool) { ... }
fn set_max_width_chars(&self, n_chars: i32) { ... }
fn set_position(&self, position: i32) { ... }
fn set_text(&self, text: &str) { ... }
fn set_width_chars(&self, n_chars: i32) { ... }
fn selection_bound(&self) -> i32 { ... }
fn connect_changed<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_delete_text<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self, i32, i32) + 'static { ... }
fn connect_cursor_position_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_editable_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_enable_undo_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_max_width_chars_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_selection_bound_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_text_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_width_chars_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_xalign_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn delegate_get_accessible_platform_state( &self, state: AccessiblePlatformState, ) -> bool
fn delete_selection(&self)
fn delete_text(&self, start_pos: i32, end_pos: i32)
fn finish_delegate(&self)
fn alignment(&self) -> f32
fn chars(&self, start_pos: i32, end_pos: i32) -> GString
fn delegate(&self) -> Option<Editable>
fn is_editable(&self) -> bool
fn enables_undo(&self) -> bool
fn max_width_chars(&self) -> i32
fn position(&self) -> i32
fn selection_bounds(&self) -> Option<(i32, i32)>
fn text(&self) -> GString
fn width_chars(&self) -> i32
fn init_delegate(&self)
fn insert_text(&self, text: &str, position: &mut i32)
fn select_region(&self, start_pos: i32, end_pos: i32)
fn set_alignment(&self, xalign: f32)
fn set_editable(&self, is_editable: bool)
fn set_enable_undo(&self, enable_undo: bool)
fn set_max_width_chars(&self, n_chars: i32)
fn set_position(&self, position: i32)
fn set_text(&self, text: &str)
fn set_width_chars(&self, n_chars: i32)
fn selection_bound(&self) -> i32
fn connect_changed<F>(&self, f: F) -> SignalHandlerId
fn connect_delete_text<F>(&self, f: F) -> SignalHandlerId
fn connect_cursor_position_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_editable_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_enable_undo_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_max_width_chars_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_selection_bound_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_text_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_width_chars_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_xalign_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.