pub trait IMContextImplExt: Sealed + ObjectSubclass {
Show 16 methods // Provided methods fn parent_commit(&self, string: &str) { ... } fn parent_delete_surrounding(&self, offset: i32, n_chars: i32) -> bool { ... } fn parent_filter_keypress(&self, event: &Event) -> bool { ... } fn parent_focus_in(&self) { ... } fn parent_focus_out(&self) { ... } fn parent_surrounding(&self) -> Option<(GString, i32)> { ... } fn parent_preedit_string(&self) -> (GString, AttrList, i32) { ... } fn parent_preedit_changed(&self) { ... } fn parent_preedit_end(&self) { ... } fn parent_preedit_start(&self) { ... } fn parent_reset(&self) { ... } fn parent_retrieve_surrounding(&self) -> bool { ... } fn parent_set_client_widget<P>(&self, widget: Option<&P>) where P: IsA<Widget> { ... } fn parent_set_cursor_location(&self, area: &Rectangle) { ... } fn parent_set_surrounding(&self, text: &str, cursor_index: i32) { ... } fn parent_set_use_preedit(&self, use_preedit: bool) { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§