pub trait ScrolledWindowImpl: ScrolledWindowImplExt + BinImpl {
    fn move_focus_out(&self, window: &Self::Type, direction_type: DirectionType) { ... }
    fn scroll_child(
        &self,
        window: &Self::Type,
        scroll: ScrollType,
        horizontal: bool
    ) -> bool { ... } }

Provided Methods

Implementors