[][src]Trait gtk::LayoutExt

pub trait LayoutExt: 'static {
    fn get_bin_window(&self) -> Option<Window>;
fn get_size(&self) -> (u32, u32);
fn move_<P: IsA<Widget>>(&self, child_widget: &P, x: i32, y: i32);
fn put<P: IsA<Widget>>(&self, child_widget: &P, x: i32, y: i32);
fn set_size(&self, width: u32, height: u32);
fn get_property_height(&self) -> u32;
fn set_property_height(&self, height: u32);
fn get_property_width(&self) -> u32;
fn set_property_width(&self, width: u32);
fn get_child_x<T: IsA<Widget>>(&self, item: &T) -> i32;
fn set_child_x<T: IsA<Widget>>(&self, item: &T, x: i32);
fn get_child_y<T: IsA<Widget>>(&self, item: &T) -> i32;
fn set_child_y<T: IsA<Widget>>(&self, item: &T, y: i32);
fn connect_property_height_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_width_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn get_bin_window(&self) -> Option<Window>

fn get_size(&self) -> (u32, u32)

fn move_<P: IsA<Widget>>(&self, child_widget: &P, x: i32, y: i32)

fn put<P: IsA<Widget>>(&self, child_widget: &P, x: i32, y: i32)

fn set_size(&self, width: u32, height: u32)

fn get_property_height(&self) -> u32

fn set_property_height(&self, height: u32)

fn get_property_width(&self) -> u32

fn set_property_width(&self, width: u32)

fn get_child_x<T: IsA<Widget>>(&self, item: &T) -> i32

fn set_child_x<T: IsA<Widget>>(&self, item: &T, x: i32)

fn get_child_y<T: IsA<Widget>>(&self, item: &T) -> i32

fn set_child_y<T: IsA<Widget>>(&self, item: &T, y: i32)

fn connect_property_height_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

fn connect_property_width_notify<F: Fn(&Self) + 'static>(
    &self,
    f: F
) -> SignalHandlerId

Loading content...

Implementors

impl<O: IsA<Layout>> LayoutExt for O[src]

Loading content...