Trait gtk4::prelude::WindowGroupExt[][src]

pub trait WindowGroupExt: 'static {
    fn add_window<P: IsA<Window>>(&self, window: &P);
fn list_windows(&self) -> Vec<Window>;
fn remove_window<P: IsA<Window>>(&self, window: &P); }
Expand description

Trait containing all WindowGroup methods.

Implementors

WindowGroup

Required methods

Adds a window to a WindowGroup.

window

the Window to add

Returns a list of the GtkWindows that belong to self.

Returns

A newly-allocated list of windows inside the group.

Removes a window from a WindowGroup.

window

the Window to remove

Implementors