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.

Provided Methods§

source

fn can_pop(&self) -> bool

source

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

source

fn tag(&self) -> Option<GString>

source

fn title(&self) -> GString

source

fn set_can_pop(&self, can_pop: bool)

source

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

source

fn set_tag(&self, tag: Option<&str>)

source

fn set_title(&self, title: &str)

source

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

source

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

source

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

source

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

source

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

source

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

source

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

source

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

Implementors§