Trait gtk::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);
fn connect_property_hadjustment_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_hscroll_policy_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_vadjustment_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_vscroll_policy_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors