Trait gtk::MiscExt [] [src]

pub trait MiscExt {
    fn get_alignment(&self) -> (f32, f32);
fn get_padding(&self) -> (i32, i32);
fn set_alignment(&self, xalign: f32, yalign: f32);
fn set_padding(&self, xpad: i32, ypad: i32);
fn get_property_xalign(&self) -> f32;
fn set_property_xalign(&self, xalign: f32);
fn get_property_xpad(&self) -> i32;
fn set_property_xpad(&self, xpad: i32);
fn get_property_yalign(&self) -> f32;
fn set_property_yalign(&self, yalign: f32);
fn get_property_ypad(&self) -> i32;
fn set_property_ypad(&self, ypad: i32);
fn connect_property_xalign_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_xpad_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_yalign_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_ypad_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required Methods

Implementors