{-# LANGUAGE TypeApplications #-}


-- | Copyright  : Will Thompson, Iñaki García Etxebarria and Jonas Platte
-- License    : LGPL-2.1
-- Maintainer : Iñaki García Etxebarria
-- 
-- /No description available in the introspection data./

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

module GI.HarfBuzz.Structs.ShapePlanT
    ( 

-- * Exported types
    ShapePlanT(..)                          ,


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

#if defined(ENABLE_OVERLOADING)
    ResolveShapePlanTMethod                 ,
#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


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

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

foreign import ccall "hb_gobject_shape_plan_get_type" c_hb_gobject_shape_plan_get_type :: 
    IO GType

type instance O.ParentTypes ShapePlanT = '[]
instance O.HasParentTypes ShapePlanT

instance B.Types.TypedObject ShapePlanT where
    glibType :: IO GType
glibType = IO GType
c_hb_gobject_shape_plan_get_type

instance B.Types.GBoxed ShapePlanT

-- | Convert 'ShapePlanT' to and from 'Data.GI.Base.GValue.GValue' with 'Data.GI.Base.GValue.toGValue' and 'Data.GI.Base.GValue.fromGValue'.
instance B.GValue.IsGValue ShapePlanT where
    toGValue :: ShapePlanT -> IO GValue
toGValue ShapePlanT
o = do
        GType
gtype <- IO GType
c_hb_gobject_shape_plan_get_type
        ShapePlanT -> (Ptr ShapePlanT -> IO GValue) -> IO GValue
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr ShapePlanT
o (GType
-> (GValue -> Ptr ShapePlanT -> IO ())
-> Ptr ShapePlanT
-> IO GValue
forall a. GType -> (GValue -> a -> IO ()) -> a -> IO GValue
B.GValue.buildGValue GType
gtype GValue -> Ptr ShapePlanT -> IO ()
forall a. GValue -> Ptr a -> IO ()
B.GValue.set_boxed)
        
    fromGValue :: GValue -> IO ShapePlanT
fromGValue GValue
gv = do
        Ptr ShapePlanT
ptr <- GValue -> IO (Ptr ShapePlanT)
forall b. GValue -> IO (Ptr b)
B.GValue.get_boxed GValue
gv :: IO (Ptr ShapePlanT)
        (ManagedPtr ShapePlanT -> ShapePlanT)
-> Ptr ShapePlanT -> IO ShapePlanT
forall a.
(HasCallStack, GBoxed a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
B.ManagedPtr.newBoxed ManagedPtr ShapePlanT -> ShapePlanT
ShapePlanT Ptr ShapePlanT
ptr
        
    


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

#if defined(ENABLE_OVERLOADING)
type family ResolveShapePlanTMethod (t :: Symbol) (o :: *) :: * where
    ResolveShapePlanTMethod l o = O.MethodResolutionFailed l o

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

#endif