{-# LANGUAGE TypeApplications #-}


-- | Copyright  : Will Thompson, Iñaki García Etxebarria and Jonas Platte
-- License    : LGPL-2.1
-- Maintainer : Iñaki García Etxebarria
-- 
-- A t'GI.Gtk.Objects.LayoutChild.LayoutChild' in a t'GI.Gtk.Objects.ConstraintLayout.ConstraintLayout'.

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

module GI.Gtk.Objects.ConstraintLayoutChild
    ( 

-- * Exported types
    ConstraintLayoutChild(..)               ,
    IsConstraintLayoutChild                 ,
    toConstraintLayoutChild                 ,


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

#if defined(ENABLE_OVERLOADING)
    ResolveConstraintLayoutChildMethod      ,
#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.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 qualified GI.GObject.Objects.Object as GObject.Object
import {-# SOURCE #-} qualified GI.Gtk.Objects.LayoutChild as Gtk.LayoutChild

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

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

foreign import ccall "gtk_constraint_layout_child_get_type"
    c_gtk_constraint_layout_child_get_type :: IO B.Types.GType

instance B.Types.TypedObject ConstraintLayoutChild where
    glibType :: IO GType
glibType = IO GType
c_gtk_constraint_layout_child_get_type

instance B.Types.GObject ConstraintLayoutChild

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

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

instance O.HasParentTypes ConstraintLayoutChild
type instance O.ParentTypes ConstraintLayoutChild = '[Gtk.LayoutChild.LayoutChild, GObject.Object.Object]

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

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

instance (info ~ ResolveConstraintLayoutChildMethod t ConstraintLayoutChild, O.MethodInfo info ConstraintLayoutChild p) => OL.IsLabel t (ConstraintLayoutChild -> 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 ConstraintLayoutChild
type instance O.AttributeList ConstraintLayoutChild = ConstraintLayoutChildAttributeList
type ConstraintLayoutChildAttributeList = ('[ '("childWidget", Gtk.LayoutChild.LayoutChildChildWidgetPropertyInfo), '("layoutManager", Gtk.LayoutChild.LayoutChildLayoutManagerPropertyInfo)] :: [(Symbol, *)])
#endif

#if defined(ENABLE_OVERLOADING)
#endif

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

#endif