Trait gtk::prelude::PanedExt

source ·
pub trait PanedExt: IsA<Paned> + Sealed + 'static {
Show 36 methods // Provided methods fn add1(&self, child: &impl IsA<Widget>) { ... } fn add2(&self, child: &impl IsA<Widget>) { ... } fn child1(&self) -> Option<Widget> { ... } fn child2(&self) -> Option<Widget> { ... } fn handle_window(&self) -> Option<Window> { ... } fn position(&self) -> i32 { ... } fn is_wide_handle(&self) -> bool { ... } fn pack1(&self, child: &impl IsA<Widget>, resize: bool, shrink: bool) { ... } fn pack2(&self, child: &impl IsA<Widget>, resize: bool, shrink: bool) { ... } fn set_position(&self, position: i32) { ... } fn set_wide_handle(&self, wide: bool) { ... } fn max_position(&self) -> i32 { ... } fn min_position(&self) -> i32 { ... } fn is_position_set(&self) -> bool { ... } fn set_position_set(&self, position_set: bool) { ... } fn child_resizes<T: IsA<Widget>>(&self, item: &T) -> bool { ... } fn set_child_resize<T: IsA<Widget>>(&self, item: &T, resize: bool) { ... } fn child_shrinks<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 ) -> SignalHandlerId { ... } fn emit_accept_position(&self) -> bool { ... } fn connect_cancel_position<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn emit_cancel_position(&self) -> bool { ... } fn connect_cycle_child_focus<F: Fn(&Self, bool) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn emit_cycle_child_focus(&self, reversed: bool) -> bool { ... } fn connect_cycle_handle_focus<F: Fn(&Self, bool) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn emit_cycle_handle_focus(&self, reversed: bool) -> bool { ... } fn connect_move_handle<F: Fn(&Self, ScrollType) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn emit_move_handle(&self, scroll_type: ScrollType) -> bool { ... } fn connect_toggle_handle_focus<F: Fn(&Self) -> bool + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn emit_toggle_handle_focus(&self) -> bool { ... } fn connect_max_position_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_min_position_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_position_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_position_set_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... } fn connect_wide_handle_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId { ... }
}

Provided Methods§

source

fn add1(&self, child: &impl IsA<Widget>)

source

fn add2(&self, child: &impl IsA<Widget>)

source

fn child1(&self) -> Option<Widget>

source

fn child2(&self) -> Option<Widget>

source

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

source

fn position(&self) -> i32

source

fn is_wide_handle(&self) -> bool

source

fn pack1(&self, child: &impl IsA<Widget>, resize: bool, shrink: bool)

source

fn pack2(&self, child: &impl IsA<Widget>, resize: bool, shrink: bool)

source

fn set_position(&self, position: i32)

source

fn set_wide_handle(&self, wide: bool)

source

fn max_position(&self) -> i32

source

fn min_position(&self) -> i32

source

fn is_position_set(&self) -> bool

source

fn set_position_set(&self, position_set: bool)

source

fn child_resizes<T: IsA<Widget>>(&self, item: &T) -> bool

source

fn set_child_resize<T: IsA<Widget>>(&self, item: &T, resize: bool)

source

fn child_shrinks<T: IsA<Widget>>(&self, item: &T) -> bool

source

fn set_child_shrink<T: IsA<Widget>>(&self, item: &T, shrink: bool)

source

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

source

fn emit_accept_position(&self) -> bool

source

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

source

fn emit_cancel_position(&self) -> bool

source

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

source

fn emit_cycle_child_focus(&self, reversed: bool) -> bool

source

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

source

fn emit_cycle_handle_focus(&self, reversed: bool) -> bool

source

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

source

fn emit_move_handle(&self, scroll_type: ScrollType) -> bool

source

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

source

fn emit_toggle_handle_focus(&self) -> bool

source

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

source

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

source

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

source

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

source

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

Implementors§

source§

impl<O: IsA<Paned>> PanedExt for O