Trait clutter::FlowLayoutExt[][src]

pub trait FlowLayoutExt: 'static {
    fn get_column_spacing(&self) -> f32;
fn get_column_width(&self) -> (f32, f32);
fn get_homogeneous(&self) -> bool;
fn get_orientation(&self) -> FlowOrientation;
fn get_row_height(&self) -> (f32, f32);
fn get_row_spacing(&self) -> f32;
fn get_snap_to_grid(&self) -> bool;
fn set_column_spacing(&self, spacing: f32);
fn set_column_width(&self, min_width: f32, max_width: f32);
fn set_homogeneous(&self, homogeneous: bool);
fn set_orientation(&self, orientation: FlowOrientation);
fn set_row_height(&self, min_height: f32, max_height: f32);
fn set_row_spacing(&self, spacing: f32);
fn set_snap_to_grid(&self, snap_to_grid: bool);
fn get_property_max_column_width(&self) -> f32;
fn set_property_max_column_width(&self, max_column_width: f32);
fn get_property_max_row_height(&self) -> f32;
fn set_property_max_row_height(&self, max_row_height: f32);
fn get_property_min_column_width(&self) -> f32;
fn set_property_min_column_width(&self, min_column_width: f32);
fn get_property_min_row_height(&self) -> f32;
fn set_property_min_row_height(&self, min_row_height: f32);
fn connect_property_column_spacing_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_homogeneous_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_max_column_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_max_row_height_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_min_column_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_min_row_height_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;
fn connect_property_snap_to_grid_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

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

fn get_column_width(&self) -> (f32, f32)[src]

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

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

fn get_row_height(&self) -> (f32, f32)[src]

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

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

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

fn set_column_width(&self, min_width: f32, max_width: f32)[src]

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

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

fn set_row_height(&self, min_height: f32, max_height: f32)[src]

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

fn set_snap_to_grid(&self, snap_to_grid: bool)[src]

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

fn set_property_max_column_width(&self, max_column_width: f32)[src]

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

fn set_property_max_row_height(&self, max_row_height: f32)[src]

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

fn set_property_min_column_width(&self, min_column_width: f32)[src]

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

fn set_property_min_row_height(&self, min_row_height: f32)[src]

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

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

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

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

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

fn connect_property_min_row_height_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]

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

Loading content...

Implementors

impl<O: IsA<FlowLayout>> FlowLayoutExt for O[src]

Loading content...