Trait libhandy::prelude::PreferencesWindowExt
source · pub trait PreferencesWindowExt: IsA<PreferencesWindow> + Sealed + 'static {
// Provided methods
fn close_subpage(&self) { ... }
fn can_swipe_back(&self) -> bool { ... }
fn is_search_enabled(&self) -> bool { ... }
fn present_subpage(&self, subpage: &impl IsA<Widget>) { ... }
fn set_can_swipe_back(&self, can_swipe_back: bool) { ... }
fn set_search_enabled(&self, search_enabled: bool) { ... }
fn connect_can_swipe_back_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
fn connect_search_enabled_notify<F: Fn(&Self) + 'static>(
&self,
f: F
) -> SignalHandlerId { ... }
}
Expand description
Provided Methods§
sourcefn close_subpage(&self)
fn close_subpage(&self)
Closes the current subpage.
If there is no presented subpage, this does nothing.
sourcefn can_swipe_back(&self) -> bool
fn can_swipe_back(&self) -> bool
Gets whether swipe gestures allow switching from a subpage to the preferences.
Returns
TRUE
if back swipe is enabled
sourcefn is_search_enabled(&self) -> bool
fn is_search_enabled(&self) -> bool
sourcefn present_subpage(&self, subpage: &impl IsA<Widget>)
fn present_subpage(&self, subpage: &impl IsA<Widget>)
Sets @subpage as the window’s subpage and opens it.
The transition can be cancelled by the user, in which case visible child will change back to the previously visible child.
subpage
the subpage
sourcefn set_can_swipe_back(&self, can_swipe_back: bool)
fn set_can_swipe_back(&self, can_swipe_back: bool)
Sets whether swipe gestures allow switching from a subpage to the preferences.
can_swipe_back
the new value
sourcefn set_search_enabled(&self, search_enabled: bool)
fn set_search_enabled(&self, search_enabled: bool)
fn connect_can_swipe_back_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
fn connect_search_enabled_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId
Object Safety§
This trait is not object safe.