pub trait ListBoxImpl:
ListBoxImplExt
+ ContainerImpl
+ WidgetImpl {
// Provided methods
fn activate_cursor_row(&self) { ... }
fn move_cursor(&self, step: MovementStep, count: i32) { ... }
fn row_activated(&self, row: &ListBoxRow) { ... }
fn row_selected(&self, row: Option<&ListBoxRow>) { ... }
fn select_all(&self) { ... }
fn selected_rows_changed(&self) { ... }
fn toggle_cursor_row(&self) { ... }
fn unselect_all(&self) { ... }
}Provided Methods§
Sourcefn activate_cursor_row(&self)
fn activate_cursor_row(&self)
Class handler for the activate-cursor-row signal
Sourcefn move_cursor(&self, step: MovementStep, count: i32)
fn move_cursor(&self, step: MovementStep, count: i32)
Class handler for the move-cursor signal
Sourcefn row_activated(&self, row: &ListBoxRow)
fn row_activated(&self, row: &ListBoxRow)
Class handler for the row-activated signal
Sourcefn row_selected(&self, row: Option<&ListBoxRow>)
fn row_selected(&self, row: Option<&ListBoxRow>)
Class handler for the row-selected signal
Sourcefn select_all(&self)
fn select_all(&self)
Select all children of box_, if the selection mode allows it.
Sourcefn selected_rows_changed(&self)
fn selected_rows_changed(&self)
Class handler for the selected-rows-changed signal
Sourcefn toggle_cursor_row(&self)
fn toggle_cursor_row(&self)
Class handler for the toggle-cursor-row signal
Sourcefn unselect_all(&self)
fn unselect_all(&self)
Unselect all children of box_, if the selection mode allows it.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".