pub trait IconViewImpl: IconViewImplExt + ContainerImpl {
    fn item_activated(&self, icon_view: &Self::Type, path: &TreePath) { ... }
    fn selection_changed(&self, icon_view: &Self::Type) { ... }
    fn select_all(&self, icon_view: &Self::Type) { ... }
    fn unselect_all(&self, icon_view: &Self::Type) { ... }
    fn select_cursor_item(&self, icon_view: &Self::Type) { ... }
    fn toggle_cursor_item(&self, icon_view: &Self::Type) { ... }
    fn move_cursor(
        &self,
        icon_view: &Self::Type,
        step: MovementStep,
        count: i32
    ) -> bool { ... } fn activate_cursor_item(&self, icon_view: &Self::Type) -> bool { ... } }

Provided Methods

Implementors