gi-gio-2.0.28: Gio bindings
CopyrightWill Thompson Iñaki García Etxebarria and Jonas Platte
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellSafe-Inferred
LanguageHaskell2010

GI.Gio.Objects.DBusActionGroup

Description

DBusActionGroup is an implementation of the ActionGroup interface that can be used as a proxy for an action group that is exported over D-Bus with dBusConnectionExportActionGroup.

Synopsis

Exported types

newtype DBusActionGroup Source #

Memory-managed wrapper type.

Constructors

DBusActionGroup (ManagedPtr DBusActionGroup) 

Instances

Instances details
Eq DBusActionGroup Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

GObject DBusActionGroup Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

ManagedPtrNewtype DBusActionGroup Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

TypedObject DBusActionGroup Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

Methods

glibType :: IO GType

HasParentTypes DBusActionGroup Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

IsGValue (Maybe DBusActionGroup) Source #

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

Instance details

Defined in GI.Gio.Objects.DBusActionGroup

Methods

gvalueGType_ :: IO GType

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

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

type ParentTypes DBusActionGroup Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

class (GObject o, IsDescendantOf DBusActionGroup o) => IsDBusActionGroup o Source #

Type class for types which can be safely cast to DBusActionGroup, for instance with toDBusActionGroup.

Instances

Instances details
(GObject o, IsDescendantOf DBusActionGroup o) => IsDBusActionGroup o Source # 
Instance details

Defined in GI.Gio.Objects.DBusActionGroup

toDBusActionGroup :: (MonadIO m, IsDBusActionGroup o) => o -> m DBusActionGroup Source #

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

Methods

get

dBusActionGroupGet Source #

Arguments

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

connection: A DBusConnection

-> Maybe Text

busName: the bus name which exports the action group or Nothing if connection is not a message bus connection

-> Text

objectPath: the object path at which the action group is exported

-> m DBusActionGroup

Returns: a DBusActionGroup

Obtains a DBusActionGroup for the action group which is exported at the given busName and objectPath.

The thread default main context is taken at the time of this call. All signals on the menu model (and any linked models) are reported with respect to this context. All calls on the returned menu model (and linked models) must also originate from this same context, with the thread default main context unchanged.

This call is non-blocking. The returned action group may or may not already be filled in. The correct thing to do is connect the signals for the action group to monitor for changes and then to call actionGroupListActions to get the initial list.

Since: 2.32