Trait libadwaita::prelude::NavigationPageExt
source · pub trait NavigationPageExt: IsA<NavigationPage> + Sealed + 'static {
Show 16 methods
// Provided methods
fn can_pop(&self) -> bool { ... }
fn child(&self) -> Option<Widget> { ... }
fn tag(&self) -> Option<GString> { ... }
fn title(&self) -> GString { ... }
fn set_can_pop(&self, can_pop: bool) { ... }
fn set_child(&self, child: Option<&impl IsA<Widget>>) { ... }
fn set_tag(&self, tag: Option<&str>) { ... }
fn set_title(&self, title: &str) { ... }
fn connect_hidden<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
fn connect_hiding<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
fn connect_showing<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
fn connect_shown<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId { ... }
fn connect_can_pop_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_child_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_tag_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_title_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}Available on crate feature
v1_4 only.