Trait clutter::BoxLayoutExt[][src]

pub trait BoxLayoutExt: 'static {
    fn get_homogeneous(&self) -> bool;
fn get_orientation(&self) -> Orientation;
fn get_pack_start(&self) -> bool;
fn get_spacing(&self) -> u32;
fn set_homogeneous(&self, homogeneous: bool);
fn set_orientation(&self, orientation: Orientation);
fn set_pack_start(&self, pack_start: bool);
fn set_spacing(&self, spacing: u32);
fn connect_property_homogeneous_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_orientation_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_pack_start_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_homogeneous(&self) -> bool[src]

fn get_orientation(&self) -> Orientation[src]

fn get_pack_start(&self) -> bool[src]

fn get_spacing(&self) -> u32[src]

fn set_homogeneous(&self, homogeneous: bool)[src]

fn set_orientation(&self, orientation: Orientation)[src]

fn set_pack_start(&self, pack_start: bool)[src]

fn set_spacing(&self, spacing: u32)[src]

fn connect_property_homogeneous_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_orientation_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_pack_start_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

impl<O: IsA<BoxLayout>> BoxLayoutExt for O[src]

Loading content...