Trait ux::native::GridExt[][src]

pub trait GridExt: 'static {
Show methods pub fn get_child_x_align(&self) -> Align;
pub fn get_child_y_align(&self) -> Align;
pub fn get_column_spacing(&self) -> f32;
pub fn get_homogenous_columns(&self) -> bool;
pub fn get_homogenous_rows(&self) -> bool;
pub fn get_line_alignment(&self) -> Align;
pub fn get_max_stride(&self) -> i32;
pub fn get_orientation(&self) -> Orientation;
pub fn get_row_spacing(&self) -> f32;
pub fn set_child_x_align(&self, value: Align);
pub fn set_child_y_align(&self, value: Align);
pub fn set_column_spacing(&self, value: f32);
pub fn set_homogenous_columns(&self, value: bool);
pub fn set_homogenous_rows(&self, value: bool);
pub fn set_line_alignment(&self, value: Align);
pub fn set_max_stride(&self, value: i32);
pub fn set_orientation(&self, orientation: Orientation);
pub fn set_row_spacing(&self, value: f32);
pub fn connect_property_child_x_align_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_child_y_align_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_column_spacing_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_homogenous_columns_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_homogenous_rows_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_line_alignment_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_max_stride_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_orientation_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_row_spacing_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
}

Required methods

pub fn get_child_x_align(&self) -> Align[src]

pub fn get_child_y_align(&self) -> Align[src]

pub fn get_column_spacing(&self) -> f32[src]

pub fn get_homogenous_columns(&self) -> bool[src]

pub fn get_homogenous_rows(&self) -> bool[src]

pub fn get_line_alignment(&self) -> Align[src]

pub fn get_max_stride(&self) -> i32[src]

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

pub fn get_row_spacing(&self) -> f32[src]

pub fn set_child_x_align(&self, value: Align)[src]

pub fn set_child_y_align(&self, value: Align)[src]

pub fn set_column_spacing(&self, value: f32)[src]

pub fn set_homogenous_columns(&self, value: bool)[src]

pub fn set_homogenous_rows(&self, value: bool)[src]

pub fn set_line_alignment(&self, value: Align)[src]

pub fn set_max_stride(&self, value: i32)[src]

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

pub fn set_row_spacing(&self, value: f32)[src]

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O> GridExt for O where
    O: Is<Grid>, 
[src]

Loading content...