Trait components::GridExt[][src]

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

Required methods

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

fn connect_property_max_stride_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_row_spacing_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId
[src]

Loading content...

Implementors

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

Loading content...