pub trait AppBarExt: IsA<AppBar> + Sealed + 'static {
Show 31 methods
// Provided methods
fn append(&self, child: &impl IsA<Widget>) { ... }
fn append_toggle(&self, child: &impl IsA<Widget>) { ... }
fn append_menu(&self, child: &impl IsA<Widget>) { ... }
fn remove(&self, child: &impl IsA<Widget>) { ... }
fn stack(&self) -> Stack { ... }
fn set_stack(&self, value: &Stack) { ... }
fn scroller(&self) -> ScrolledWindow { ... }
fn set_scroller(&self, value: &ScrolledWindow) { ... }
fn is_compact(&self) -> bool { ... }
fn set_is_compact(&self, value: bool) { ... }
fn viewtitle_widget(&self) -> Option<Widget> { ... }
fn set_viewtitle_widget(&self, value: Option<&impl IsA<Widget>>) { ... }
fn viewsubtitle_label(&self) -> GString { ... }
fn set_viewsubtitle_label(&self, value: &str) { ... }
fn shows_left_title_buttons(&self) -> bool { ... }
fn set_show_left_title_buttons(&self, value: bool) { ... }
fn shows_right_title_buttons(&self) -> bool { ... }
fn set_show_right_title_buttons(&self, value: bool) { ... }
fn decoration_layout(&self) -> GString { ... }
fn set_decoration_layout(&self, value: &str) { ... }
fn shows_back(&self) -> bool { ... }
fn set_show_back(&self, value: bool) { ... }
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_is_compact_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_viewtitle_widget_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_viewsubtitle_label_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_right_title_buttons_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_decoration_layout_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
fn connect_show_back_notify<F: Fn(&Self) + 'static>(
&self,
f: F,
) -> SignalHandlerId { ... }
}
Provided Methods§
sourcefn append(&self, child: &impl IsA<Widget>)
fn append(&self, child: &impl IsA<Widget>)
§child
sourcefn append_toggle(&self, child: &impl IsA<Widget>)
fn append_toggle(&self, child: &impl IsA<Widget>)
§child
§child
fn stack(&self) -> Stack
fn set_stack(&self, value: &Stack)
fn scroller(&self) -> ScrolledWindow
fn set_scroller(&self, value: &ScrolledWindow)
fn is_compact(&self) -> bool
fn set_is_compact(&self, value: bool)
fn viewtitle_widget(&self) -> Option<Widget>
fn set_viewtitle_widget(&self, value: Option<&impl IsA<Widget>>)
fn viewsubtitle_label(&self) -> GString
fn set_viewsubtitle_label(&self, value: &str)
fn decoration_layout(&self) -> GString
fn set_decoration_layout(&self, value: &str)
fn shows_back(&self) -> bool
fn set_show_back(&self, value: bool)
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_is_compact_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_viewtitle_widget_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_viewsubtitle_label_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_decoration_layout_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
fn connect_show_back_notify<F: Fn(&Self) + 'static>( &self, f: F, ) -> SignalHandlerId
Object Safety§
This trait is not object safe.