Trait gtk::PanedExt [] [src]

pub trait PanedExt {
    fn add1<P: IsA<Widget>>(&self, child: &P);
    fn add2<P: IsA<Widget>>(&self, child: &P);
    fn get_child1(&self) -> Option<Widget>;
    fn get_child2(&self) -> Option<Widget>;
    fn get_handle_window(&self) -> Option<Window>;
    fn get_position(&self) -> i32;
    fn get_wide_handle(&self) -> bool;
    fn pack1<P: IsA<Widget>>(&self, child: &P, resize: bool, shrink: bool);
    fn pack2<P: IsA<Widget>>(&self, child: &P, resize: bool, shrink: bool);
    fn set_position(&self, position: i32);
    fn set_wide_handle(&self, wide: bool);
    fn get_property_max_position(&self) -> i32;
    fn get_property_min_position(&self) -> i32;
    fn get_property_position_set(&self) -> bool;
    fn set_property_position_set(&self, position_set: bool);
    fn get_child_resize<T: IsA<Widget>>(&self, item: &T) -> bool;
    fn set_child_resize<T: IsA<Widget>>(&self, item: &T, resize: bool);
    fn get_child_shrink<T: IsA<Widget>>(&self, item: &T) -> bool;
    fn set_child_shrink<T: IsA<Widget>>(&self, item: &T, shrink: bool);
    fn connect_accept_position<F: Fn(&Self) -> bool + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_cancel_position<F: Fn(&Self) -> bool + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_cycle_child_focus<F: Fn(&Self, bool) -> bool + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_cycle_handle_focus<F: Fn(&Self, bool) -> bool + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_move_handle<F: Fn(&Self, ScrollType) -> bool + 'static>(
        &self,
        f: F
    ) -> u64; fn connect_toggle_handle_focus<F: Fn(&Self) -> bool + 'static>(
        &self,
        f: F
    ) -> u64; }

Required Methods

Implementors