gi-gtk-4.0.4: Gtk bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.Gtk.Objects.WindowGroup

Description

A 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.

GtkWindowGroup objects are referenced by each window in the group, so once you have added all windows to a GtkWindowGroup, you can drop the initial reference to the window group with objectUnref. 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.

Synopsis

Exported types

newtype WindowGroup Source #

Memory-managed wrapper type.

Constructors

WindowGroup (ManagedPtr WindowGroup) 

Instances

Instances details
Eq WindowGroup Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

GObject WindowGroup Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

ManagedPtrNewtype WindowGroup Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

Methods

toManagedPtr :: WindowGroup -> ManagedPtr WindowGroup

TypedObject WindowGroup Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

Methods

glibType :: IO GType

HasParentTypes WindowGroup Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

IsGValue (Maybe WindowGroup) Source #

Convert WindowGroup to and from GValue. See toGValue and fromGValue.

Instance details

Defined in GI.Gtk.Objects.WindowGroup

Methods

gvalueGType_ :: IO GType

gvalueSet_ :: Ptr GValue -> Maybe WindowGroup -> IO ()

gvalueGet_ :: Ptr GValue -> IO (Maybe WindowGroup)

type ParentTypes WindowGroup Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

type ParentTypes WindowGroup = '[Object]

class (GObject o, IsDescendantOf WindowGroup o) => IsWindowGroup o Source #

Type class for types which can be safely cast to WindowGroup, for instance with toWindowGroup.

Instances

Instances details
(GObject o, IsDescendantOf WindowGroup o) => IsWindowGroup o Source # 
Instance details

Defined in GI.Gtk.Objects.WindowGroup

toWindowGroup :: (MonadIO m, IsWindowGroup o) => o -> m WindowGroup Source #

Cast to WindowGroup, for types for which this is known to be safe. For general casts, use castTo.

Methods

addWindow

windowGroupAddWindow Source #

Arguments

:: (HasCallStack, MonadIO m, IsWindowGroup a, IsWindow b) 
=> a

windowGroup: a WindowGroup

-> b

window: the Window to add

-> m () 

Adds a window to a WindowGroup.

listWindows

windowGroupListWindows Source #

Arguments

:: (HasCallStack, MonadIO m, IsWindowGroup a) 
=> a

windowGroup: a WindowGroup

-> m [Window]

Returns: A newly-allocated list of windows inside the group.

Returns a list of the GtkWindows that belong to windowGroup.

new

windowGroupNew Source #

Arguments

:: (HasCallStack, MonadIO m) 
=> m WindowGroup

Returns: a new WindowGroup.

Creates a new WindowGroup object.

Modality of windows only affects windows within the same WindowGroup.

removeWindow

windowGroupRemoveWindow Source #

Arguments

:: (HasCallStack, MonadIO m, IsWindowGroup a, IsWindow b) 
=> a

windowGroup: a WindowGroup

-> b

window: the Window to remove

-> m () 

Removes a window from a WindowGroup.