{-# LANGUAGE TypeApplications #-}


-- | Copyright  : Will Thompson, Iñaki García Etxebarria and Jonas Platte
-- License    : LGPL-2.1
-- Maintainer : Iñaki García Etxebarria
-- 
-- All the fields in the GInitiallyUnowned structure
-- are private to the t'GI.GObject.Objects.InitiallyUnowned.InitiallyUnowned' implementation and should never be
-- accessed directly.

#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif

module GI.GObject.Objects.InitiallyUnowned
    ( 

-- * Exported types
    InitiallyUnowned(..)                    ,
    IsInitiallyUnowned                      ,
    toInitiallyUnowned                      ,


 -- * Methods
-- ** Overloaded methods #method:Overloaded methods#

#if defined(ENABLE_OVERLOADING)
    ResolveInitiallyUnownedMethod           ,
#endif




    ) 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.BasicTypes as B.Types
import qualified Data.GI.Base.ManagedPtr as B.ManagedPtr
import qualified Data.GI.Base.GArray as B.GArray
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.GI.Base.Signals as B.Signals
import qualified Control.Monad.IO.Class as MIO
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.GObject.Objects.Object as GObject.Object

-- | Memory-managed wrapper type.
newtype InitiallyUnowned = InitiallyUnowned (SP.ManagedPtr InitiallyUnowned)
    deriving (InitiallyUnowned -> InitiallyUnowned -> Bool
(InitiallyUnowned -> InitiallyUnowned -> Bool)
-> (InitiallyUnowned -> InitiallyUnowned -> Bool)
-> Eq InitiallyUnowned
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: InitiallyUnowned -> InitiallyUnowned -> Bool
$c/= :: InitiallyUnowned -> InitiallyUnowned -> Bool
== :: InitiallyUnowned -> InitiallyUnowned -> Bool
$c== :: InitiallyUnowned -> InitiallyUnowned -> Bool
Eq)

instance SP.ManagedPtrNewtype InitiallyUnowned where
    toManagedPtr :: InitiallyUnowned -> ManagedPtr InitiallyUnowned
toManagedPtr (InitiallyUnowned ManagedPtr InitiallyUnowned
p) = ManagedPtr InitiallyUnowned
p

foreign import ccall "g_initially_unowned_get_type"
    c_g_initially_unowned_get_type :: IO B.Types.GType

instance B.Types.TypedObject InitiallyUnowned where
    glibType :: IO GType
glibType = IO GType
c_g_initially_unowned_get_type

instance B.Types.GObject InitiallyUnowned

-- | Convert 'InitiallyUnowned' to and from 'Data.GI.Base.GValue.GValue' with 'Data.GI.Base.GValue.toGValue' and 'Data.GI.Base.GValue.fromGValue'.
instance B.GValue.IsGValue InitiallyUnowned where
    toGValue :: InitiallyUnowned -> IO GValue
toGValue InitiallyUnowned
o = do
        GType
gtype <- IO GType
c_g_initially_unowned_get_type
        InitiallyUnowned
-> (Ptr InitiallyUnowned -> IO GValue) -> IO GValue
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr InitiallyUnowned
o (GType
-> (GValue -> Ptr InitiallyUnowned -> IO ())
-> Ptr InitiallyUnowned
-> IO GValue
forall a. GType -> (GValue -> a -> IO ()) -> a -> IO GValue
B.GValue.buildGValue GType
gtype GValue -> Ptr InitiallyUnowned -> IO ()
forall a. GObject a => GValue -> Ptr a -> IO ()
B.GValue.set_object)
        
    fromGValue :: GValue -> IO InitiallyUnowned
fromGValue GValue
gv = do
        Ptr InitiallyUnowned
ptr <- GValue -> IO (Ptr InitiallyUnowned)
forall b. GObject b => GValue -> IO (Ptr b)
B.GValue.get_object GValue
gv :: IO (Ptr InitiallyUnowned)
        (ManagedPtr InitiallyUnowned -> InitiallyUnowned)
-> Ptr InitiallyUnowned -> IO InitiallyUnowned
forall a b.
(HasCallStack, GObject a, GObject b) =>
(ManagedPtr a -> a) -> Ptr b -> IO a
B.ManagedPtr.newObject ManagedPtr InitiallyUnowned -> InitiallyUnowned
InitiallyUnowned Ptr InitiallyUnowned
ptr
        
    

-- | Type class for types which can be safely cast to `InitiallyUnowned`, for instance with `toInitiallyUnowned`.
class (SP.GObject o, O.IsDescendantOf InitiallyUnowned o) => IsInitiallyUnowned o
instance (SP.GObject o, O.IsDescendantOf InitiallyUnowned o) => IsInitiallyUnowned o

instance O.HasParentTypes InitiallyUnowned
type instance O.ParentTypes InitiallyUnowned = '[GObject.Object.Object]

-- | Cast to `InitiallyUnowned`, for types for which this is known to be safe. For general casts, use `Data.GI.Base.ManagedPtr.castTo`.
toInitiallyUnowned :: (MonadIO m, IsInitiallyUnowned o) => o -> m InitiallyUnowned
toInitiallyUnowned :: o -> m InitiallyUnowned
toInitiallyUnowned = IO InitiallyUnowned -> m InitiallyUnowned
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO InitiallyUnowned -> m InitiallyUnowned)
-> (o -> IO InitiallyUnowned) -> o -> m InitiallyUnowned
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (ManagedPtr InitiallyUnowned -> InitiallyUnowned)
-> o -> IO InitiallyUnowned
forall o o'.
(HasCallStack, ManagedPtrNewtype o, TypedObject o,
 ManagedPtrNewtype o', TypedObject o') =>
(ManagedPtr o' -> o') -> o -> IO o'
unsafeCastTo ManagedPtr InitiallyUnowned -> InitiallyUnowned
InitiallyUnowned

#if defined(ENABLE_OVERLOADING)
type family ResolveInitiallyUnownedMethod (t :: Symbol) (o :: *) :: * where
    ResolveInitiallyUnownedMethod "bindProperty" o = GObject.Object.ObjectBindPropertyMethodInfo
    ResolveInitiallyUnownedMethod "bindPropertyFull" o = GObject.Object.ObjectBindPropertyFullMethodInfo
    ResolveInitiallyUnownedMethod "forceFloating" o = GObject.Object.ObjectForceFloatingMethodInfo
    ResolveInitiallyUnownedMethod "freezeNotify" o = GObject.Object.ObjectFreezeNotifyMethodInfo
    ResolveInitiallyUnownedMethod "getv" o = GObject.Object.ObjectGetvMethodInfo
    ResolveInitiallyUnownedMethod "isFloating" o = GObject.Object.ObjectIsFloatingMethodInfo
    ResolveInitiallyUnownedMethod "notify" o = GObject.Object.ObjectNotifyMethodInfo
    ResolveInitiallyUnownedMethod "notifyByPspec" o = GObject.Object.ObjectNotifyByPspecMethodInfo
    ResolveInitiallyUnownedMethod "ref" o = GObject.Object.ObjectRefMethodInfo
    ResolveInitiallyUnownedMethod "refSink" o = GObject.Object.ObjectRefSinkMethodInfo
    ResolveInitiallyUnownedMethod "runDispose" o = GObject.Object.ObjectRunDisposeMethodInfo
    ResolveInitiallyUnownedMethod "stealData" o = GObject.Object.ObjectStealDataMethodInfo
    ResolveInitiallyUnownedMethod "stealQdata" o = GObject.Object.ObjectStealQdataMethodInfo
    ResolveInitiallyUnownedMethod "thawNotify" o = GObject.Object.ObjectThawNotifyMethodInfo
    ResolveInitiallyUnownedMethod "unref" o = GObject.Object.ObjectUnrefMethodInfo
    ResolveInitiallyUnownedMethod "watchClosure" o = GObject.Object.ObjectWatchClosureMethodInfo
    ResolveInitiallyUnownedMethod "getData" o = GObject.Object.ObjectGetDataMethodInfo
    ResolveInitiallyUnownedMethod "getProperty" o = GObject.Object.ObjectGetPropertyMethodInfo
    ResolveInitiallyUnownedMethod "getQdata" o = GObject.Object.ObjectGetQdataMethodInfo
    ResolveInitiallyUnownedMethod "setData" o = GObject.Object.ObjectSetDataMethodInfo
    ResolveInitiallyUnownedMethod "setDataFull" o = GObject.Object.ObjectSetDataFullMethodInfo
    ResolveInitiallyUnownedMethod "setProperty" o = GObject.Object.ObjectSetPropertyMethodInfo
    ResolveInitiallyUnownedMethod l o = O.MethodResolutionFailed l o

instance (info ~ ResolveInitiallyUnownedMethod t InitiallyUnowned, O.MethodInfo info InitiallyUnowned p) => OL.IsLabel t (InitiallyUnowned -> p) where
#if MIN_VERSION_base(4,10,0)
    fromLabel = O.overloadedMethod @info
#else
    fromLabel _ = O.overloadedMethod @info
#endif

#endif

#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList InitiallyUnowned
type instance O.AttributeList InitiallyUnowned = InitiallyUnownedAttributeList
type InitiallyUnownedAttributeList = ('[ ] :: [(Symbol, *)])
#endif

#if defined(ENABLE_OVERLOADING)
#endif

#if defined(ENABLE_OVERLOADING)
type instance O.SignalList InitiallyUnowned = InitiallyUnownedSignalList
type InitiallyUnownedSignalList = ('[ '("notify", GObject.Object.ObjectNotifySignalInfo)] :: [(Symbol, *)])

#endif