Trait components::TableChildExt[][src]

pub trait TableChildExt: 'static {
Show methods fn get_property_column(&self) -> i32;
fn set_property_column(&self, column: i32);
fn get_property_column_span(&self) -> i32;
fn set_property_column_span(&self, column_span: i32);
fn get_property_row(&self) -> i32;
fn set_property_row(&self, row: i32);
fn get_property_row_span(&self) -> i32;
fn set_property_row_span(&self, row_span: i32);
fn get_property_x_align(&self) -> Align;
fn set_property_x_align(&self, x_align: Align);
fn get_property_x_expand(&self) -> bool;
fn set_property_x_expand(&self, x_expand: bool);
fn get_property_x_fill(&self) -> bool;
fn set_property_x_fill(&self, x_fill: bool);
fn get_property_y_align(&self) -> Align;
fn set_property_y_align(&self, y_align: Align);
fn get_property_y_expand(&self) -> bool;
fn set_property_y_expand(&self, y_expand: bool);
fn get_property_y_fill(&self) -> bool;
fn set_property_y_fill(&self, y_fill: bool);
fn connect_property_column_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_column_span_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_row_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_row_span_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_x_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_x_expand_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_x_fill_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_y_align_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_y_expand_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_y_fill_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
}

Required methods

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

fn set_property_column(&self, column: i32)[src]

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

fn set_property_column_span(&self, column_span: i32)[src]

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

fn set_property_row(&self, row: i32)[src]

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

fn set_property_row_span(&self, row_span: i32)[src]

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

fn set_property_x_align(&self, x_align: Align)[src]

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

fn set_property_x_expand(&self, x_expand: bool)[src]

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

fn set_property_x_fill(&self, x_fill: bool)[src]

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

fn set_property_y_align(&self, y_align: Align)[src]

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

fn set_property_y_expand(&self, y_expand: bool)[src]

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

fn set_property_y_fill(&self, y_fill: bool)[src]

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

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

impl<O: Is<TableChild>> TableChildExt for O[src]

Loading content...