Trait gtk::prelude::ScrollableExt  
                   
                       [−]
                   
               [src]
pub trait ScrollableExt {
    fn get_hadjustment(&self) -> Option<Adjustment>;
    fn get_hscroll_policy(&self) -> ScrollablePolicy;
    fn get_vadjustment(&self) -> Option<Adjustment>;
    fn get_vscroll_policy(&self) -> ScrollablePolicy;
    fn set_hadjustment<'a, P: Into<Option<&'a Adjustment>>>(
        &self, 
        hadjustment: P
    );
    fn set_hscroll_policy(&self, policy: ScrollablePolicy);
    fn set_vadjustment<'a, P: Into<Option<&'a Adjustment>>>(
        &self, 
        vadjustment: P
    );
    fn set_vscroll_policy(&self, policy: ScrollablePolicy);
}
            Required Methods
fn get_hadjustment(&self) -> Option<Adjustment>
fn get_hscroll_policy(&self) -> ScrollablePolicy
fn get_vadjustment(&self) -> Option<Adjustment>
fn get_vscroll_policy(&self) -> ScrollablePolicy
fn set_hadjustment<'a, P: Into<Option<&'a Adjustment>>>(&self, hadjustment: P)
fn set_hscroll_policy(&self, policy: ScrollablePolicy)
fn set_vadjustment<'a, P: Into<Option<&'a Adjustment>>>(&self, vadjustment: P)
fn set_vscroll_policy(&self, policy: ScrollablePolicy)
Implementors
impl<O: IsA<Scrollable>> ScrollableExt for O