#define ENABLE_OVERLOADING (MIN_VERSION_haskell_gi_overloading(1,0,0) \
&& !defined(__HADDOCK_VERSION__))
module GI.Atk.Structs.Implementor
(
Implementor(..) ,
noImplementor ,
#if ENABLE_OVERLOADING
ImplementorRefAccessibleMethodInfo ,
#endif
implementorRefAccessible ,
) where
import Data.GI.Base.ShortPrelude
import qualified Data.GI.Base.ShortPrelude as SP
import qualified Data.GI.Base.Overloading as O
import qualified Prelude as P
import qualified Data.GI.Base.Attributes as GI.Attributes
import qualified Data.GI.Base.ManagedPtr as B.ManagedPtr
import qualified Data.GI.Base.GClosure as B.GClosure
import qualified Data.GI.Base.GError as B.GError
import qualified Data.GI.Base.GVariant as B.GVariant
import qualified Data.GI.Base.GValue as B.GValue
import qualified Data.GI.Base.GParamSpec as B.GParamSpec
import qualified Data.GI.Base.CallStack as B.CallStack
import qualified Data.GI.Base.Properties as B.Properties
import qualified Data.Text as T
import qualified Data.ByteString.Char8 as B
import qualified Data.Map as Map
import qualified Foreign.Ptr as FP
import qualified GHC.OverloadedLabels as OL
import {-# SOURCE #-} qualified GI.Atk.Objects.Object as Atk.Object
newtype Implementor = Implementor (ManagedPtr Implementor)
instance WrappedPtr Implementor where
wrappedPtrCalloc = return nullPtr
wrappedPtrCopy = return
wrappedPtrFree = Nothing
noImplementor :: Maybe Implementor
noImplementor = Nothing
#if ENABLE_OVERLOADING
instance O.HasAttributeList Implementor
type instance O.AttributeList Implementor = ImplementorAttributeList
type ImplementorAttributeList = ('[ ] :: [(Symbol, *)])
#endif
foreign import ccall "atk_implementor_ref_accessible" atk_implementor_ref_accessible ::
Ptr Implementor ->
IO (Ptr Atk.Object.Object)
implementorRefAccessible ::
(B.CallStack.HasCallStack, MonadIO m) =>
Implementor
-> m Atk.Object.Object
implementorRefAccessible implementor = liftIO $ do
implementor' <- unsafeManagedPtrGetPtr implementor
result <- atk_implementor_ref_accessible implementor'
checkUnexpectedReturnNULL "implementorRefAccessible" result
result' <- (wrapObject Atk.Object.Object) result
touchManagedPtr implementor
return result'
#if ENABLE_OVERLOADING
data ImplementorRefAccessibleMethodInfo
instance (signature ~ (m Atk.Object.Object), MonadIO m) => O.MethodInfo ImplementorRefAccessibleMethodInfo Implementor signature where
overloadedMethod _ = implementorRefAccessible
#endif
#if ENABLE_OVERLOADING
type family ResolveImplementorMethod (t :: Symbol) (o :: *) :: * where
ResolveImplementorMethod "refAccessible" o = ImplementorRefAccessibleMethodInfo
ResolveImplementorMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveImplementorMethod t Implementor, O.MethodInfo info Implementor p) => OL.IsLabel t (Implementor -> p) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info)
#else
fromLabel _ = O.overloadedMethod (O.MethodProxy :: O.MethodProxy info)
#endif
#endif