Trait gtk::CellAreaBoxExt [−][src]
pub trait CellAreaBoxExt {
fn get_spacing(&self) -> i32;
fn pack_end<P: IsA<CellRenderer>>(
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool
);
fn pack_start<P: IsA<CellRenderer>>(
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool
);
fn set_spacing(&self, spacing: i32);
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId;
}Required Methods
fn get_spacing(&self) -> i32
fn pack_end<P: IsA<CellRenderer>>(
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool
)
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool
)
fn pack_start<P: IsA<CellRenderer>>(
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool
)
&self,
renderer: &P,
expand: bool,
align: bool,
fixed: bool
)
fn set_spacing(&self, spacing: i32)
fn connect_property_spacing_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId
&self,
f: F
) -> SignalHandlerId
Implementors
impl<O: IsA<CellAreaBox> + IsA<Object>> CellAreaBoxExt for O