pub trait WindowGroupExt: 'static {
    fn add_window(&self, window: &impl IsA<Window>);
    fn current_device_grab(&self, device: &Device) -> Option<Widget>;
    fn current_grab(&self) -> Option<Widget>;
    fn list_windows(&self) -> Vec<Window>;
    fn remove_window(&self, window: &impl IsA<Window>);
}
Expand description

Trait containing all WindowGroup methods.

Implementors

WindowGroup

Required Methods

Adds a window to a WindowGroup.

window

the Window to add

Returns the current grab widget for device, or None if none.

device

a gdk::Device

Returns

The grab widget, or None

Gets the current grab widget of the given group, see WidgetExt::grab_add().

Returns

the current grab widget of the group

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