Trait ux::TableChildExt[][src]

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

Required methods

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Loading content...

Implementors

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

Loading content...