Trait libhelium::prelude::SideBarExt
source · pub trait SideBarExt: IsA<SideBar> + Sealed + 'static {
Show 27 methods
// Provided methods
fn title(&self) -> Option<Widget> { ... }
fn set_title(&self, value: Option<&impl IsA<Widget>>) { ... }
fn titlewidget(&self) -> Option<Widget> { ... }
fn set_titlewidget(&self, value: Option<&impl IsA<Widget>>) { ... }
fn subtitle(&self) -> GString { ... }
fn set_subtitle(&self, value: &str) { ... }
fn shows_right_title_buttons(&self) -> bool { ... }
fn set_show_right_title_buttons(&self, value: bool) { ... }
fn shows_left_title_buttons(&self) -> bool { ... }
fn set_show_left_title_buttons(&self, value: bool) { ... }
fn shows_back(&self) -> bool { ... }
fn set_show_back(&self, value: bool) { ... }
fn stack(&self) -> Stack { ... }
fn set_stack(&self, value: &Stack) { ... }
fn scroller(&self) -> ScrolledWindow { ... }
fn set_scroller(&self, value: &ScrolledWindow) { ... }
fn has_margins(&self) -> bool { ... }
fn set_has_margins(&self, value: bool) { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_titlewidget_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_subtitle_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_show_right_title_buttons_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_show_left_title_buttons_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_show_back_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_stack_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_scroller_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_has_margins_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
fn title(&self) -> Option<Widget>
fn set_title(&self, value: Option<&impl IsA<Widget>>)
fn titlewidget(&self) -> Option<Widget>
fn set_titlewidget(&self, value: Option<&impl IsA<Widget>>)
fn subtitle(&self) -> GString
fn set_subtitle(&self, value: &str)
fn shows_back(&self) -> bool
fn set_show_back(&self, value: bool)
fn stack(&self) -> Stack
fn set_stack(&self, value: &Stack)
fn scroller(&self) -> ScrolledWindow
fn set_scroller(&self, value: &ScrolledWindow)
fn has_margins(&self) -> bool
fn set_has_margins(&self, value: bool)
fn connect_title_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_titlewidget_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_subtitle_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_show_back_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_stack_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId
fn connect_scroller_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_has_margins_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.