Gtk.WindowGroup¶
- Subclasses:
None
Methods¶
- Inherited:
- Structs:
class |
|
|
|
|
|
|
|
|
Virtual Methods¶
- Inherited:
Properties¶
None
Signals¶
- Inherited:
Fields¶
- Inherited:
Name |
Type |
Access |
Description |
---|---|---|---|
parent_instance |
r |
Class Details¶
- class Gtk.WindowGroup(**kwargs)¶
- Bases:
- Abstract:
No
- Structure:
A
Gtk.WindowGroup
restricts the effect of grabs to windows in the same group, thereby making window groups almost behave like separate applications.A window can be a member in at most one window group at a time. Windows that have not been explicitly assigned to a group are implicitly treated like windows of the default window group.
Gtk.WindowGroup
objects are referenced by each window in the group, so once you have added all windows to aGtk.WindowGroup
, you can drop the initial reference to the window group withGObject.Object.unref
(). If the windows in the window group are subsequently destroyed, then they will be removed from the window group and drop their references on the window group; when all window have been removed, the window group will be freed.- classmethod new()[source]¶
- Returns:
a new
Gtk.WindowGroup
.- Return type:
Creates a new
Gtk.WindowGroup
object. Grabs added withGtk.Widget.grab_add
() only affect windows within the sameGtk.WindowGroup
.
- add_window(window)[source]¶
- Parameters:
window (
Gtk.Window
) – theGtk.Window
to add
Adds a window to a
Gtk.WindowGroup
.
- get_current_device_grab(device)[source]¶
- Parameters:
device (
Gdk.Device
) – aGdk.Device
- Returns:
The grab widget, or
None
- Return type:
Gtk.Widget
orNone
Returns the current grab widget for device, or
None
if none.New in version 3.0.
- get_current_grab()[source]¶
- Returns:
the current grab widget of the group
- Return type:
Gets the current grab widget of the given group, see
Gtk.Widget.grab_add
().New in version 2.22.
- list_windows()[source]¶
- Returns:
A newly-allocated list of windows inside the group.
- Return type:
Returns a list of the
Gtk.Windows
that belong to self.New in version 2.14.
- remove_window(window)[source]¶
- Parameters:
window (
Gtk.Window
) – theGtk.Window
to remove
Removes a window from a
Gtk.WindowGroup
.