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

Trait containing all PreferencesWindow methods.

Implementors

PreferencesWindow

Provided Methods§

source

fn close_subpage(&self)

Closes the current subpage.

If there is no presented subpage, this does nothing.

source

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

source

fn is_search_enabled(&self) -> bool

Gets whether search is enabled for @self.

Returns

whether search is enabled for @self

source

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

source

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

source

fn set_search_enabled(&self, search_enabled: bool)

Sets whether search is enabled for @self.

search_enabled

TRUE to enable search, FALSE to disable it

source

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

source

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

Object Safety§

This trait is not object safe.

Implementors§