pub trait TreeViewImplExt: Sealed + ObjectSubclass {
Show 15 methods
// Provided methods
fn parent_columns_changed(&self) { ... }
fn parent_cursor_changed(&self) { ... }
fn parent_expand_collapse_cursor_row(
&self,
logical: bool,
expand: bool,
open_all: bool,
) -> bool { ... }
fn parent_move_cursor(
&self,
step: MovementStep,
count: i32,
extend: bool,
modify: bool,
) -> bool { ... }
fn parent_row_activated(&self, path: &TreePath, column: &TreeViewColumn) { ... }
fn parent_row_collapsed(&self, iter: &TreeIter, path: &TreePath) { ... }
fn parent_row_expanded(&self, iter: &TreeIter, path: &TreePath) { ... }
fn parent_select_all(&self) -> bool { ... }
fn parent_select_cursor_parent(&self) -> bool { ... }
fn parent_select_cursor_row(&self, start_editing: bool) -> bool { ... }
fn parent_start_interactive_search(&self) -> bool { ... }
fn parent_test_collapse_row(&self, iter: &TreeIter, path: &TreePath) -> bool { ... }
fn parent_test_expand_row(&self, iter: &TreeIter, path: &TreePath) -> bool { ... }
fn parent_toggle_cursor_row(&self) -> bool { ... }
fn parent_unselect_all(&self) -> bool { ... }
}
๐Deprecated: Since 4.10
Provided Methodsยง
fn parent_columns_changed(&self)
๐Deprecated: Since 4.10
fn parent_cursor_changed(&self)
๐Deprecated: Since 4.10
fn parent_expand_collapse_cursor_row( &self, logical: bool, expand: bool, open_all: bool, ) -> bool
๐Deprecated: Since 4.10
fn parent_move_cursor( &self, step: MovementStep, count: i32, extend: bool, modify: bool, ) -> bool
๐Deprecated: Since 4.10
fn parent_row_activated(&self, path: &TreePath, column: &TreeViewColumn)
๐Deprecated: Since 4.10
fn parent_row_collapsed(&self, iter: &TreeIter, path: &TreePath)
๐Deprecated: Since 4.10
fn parent_row_expanded(&self, iter: &TreeIter, path: &TreePath)
๐Deprecated: Since 4.10
fn parent_select_all(&self) -> bool
๐Deprecated: Since 4.10
fn parent_select_cursor_parent(&self) -> bool
๐Deprecated: Since 4.10
fn parent_select_cursor_row(&self, start_editing: bool) -> bool
๐Deprecated: Since 4.10
fn parent_start_interactive_search(&self) -> bool
๐Deprecated: Since 4.10
fn parent_test_collapse_row(&self, iter: &TreeIter, path: &TreePath) -> bool
๐Deprecated: Since 4.10
fn parent_test_expand_row(&self, iter: &TreeIter, path: &TreePath) -> bool
๐Deprecated: Since 4.10
fn parent_toggle_cursor_row(&self) -> bool
๐Deprecated: Since 4.10
fn parent_unselect_all(&self) -> bool
๐Deprecated: Since 4.10
Dyn Compatibilityยง
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.