gi-nm-1.0.1: NM bindings
CopyrightWill Thompson and Iñaki García Etxebarria
LicenseLGPL-2.1
MaintainerIñaki García Etxebarria
Safe HaskellNone
LanguageHaskell2010

GI.NM.Interfaces.VpnEditor

Description

No description available in the introspection data.

Synopsis

Exported types

newtype VpnEditor Source #

Memory-managed wrapper type.

Instances

Instances details
Eq VpnEditor Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

GObject VpnEditor Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

ManagedPtrNewtype VpnEditor Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

TypedObject VpnEditor Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

Methods

glibType :: IO GType #

HasParentTypes VpnEditor Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

IsGValue (Maybe VpnEditor) Source #

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

Instance details

Defined in GI.NM.Interfaces.VpnEditor

type ParentTypes VpnEditor Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

class (GObject o, IsDescendantOf VpnEditor o) => IsVpnEditor o Source #

Type class for types which can be safely cast to VpnEditor, for instance with toVpnEditor.

Instances

Instances details
(GObject o, IsDescendantOf VpnEditor o) => IsVpnEditor o Source # 
Instance details

Defined in GI.NM.Interfaces.VpnEditor

toVpnEditor :: (MonadIO m, IsVpnEditor o) => o -> m VpnEditor Source #

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

Methods

getWidget

vpnEditorGetWidget Source #

Arguments

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

editor: the VpnEditor

-> m Object 

No description available in the introspection data.

updateConnection

vpnEditorUpdateConnection Source #

Arguments

:: (HasCallStack, MonadIO m, IsVpnEditor a, IsConnection b) 
=> a 
-> b 
-> m ()

(Can throw GError)

No description available in the introspection data.

Signals

changed

type VpnEditorChangedCallback = IO () Source #

No description available in the introspection data.

afterVpnEditorChanged :: (IsVpnEditor a, MonadIO m) => a -> ((?self :: a) => VpnEditorChangedCallback) -> m SignalHandlerId Source #

Connect a signal handler for the changed signal, to be run after the default handler. When overloading is enabled, this is equivalent to

after vpnEditor #changed callback

By default the object invoking the signal is not passed to the callback. If you need to access it, you can use the implit ?self parameter. Note that this requires activating the ImplicitParams GHC extension.

onVpnEditorChanged :: (IsVpnEditor a, MonadIO m) => a -> ((?self :: a) => VpnEditorChangedCallback) -> m SignalHandlerId Source #

Connect a signal handler for the changed signal, to be run before the default handler. When overloading is enabled, this is equivalent to

on vpnEditor #changed callback