{-# LANGUAGE TypeApplications #-}
#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif
module GI.HarfBuzz.Structs.ShapePlanT
(
ShapePlanT(..) ,
#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.Coerce as Coerce
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 GHC.Records as R
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
instance B.GValue.IsGValue (Maybe ShapePlanT) where
gvalueGType_ :: IO GType
gvalueGType_ = IO GType
c_hb_gobject_shape_plan_get_type
gvalueSet_ :: Ptr GValue -> Maybe ShapePlanT -> IO ()
gvalueSet_ Ptr GValue
gv Maybe ShapePlanT
P.Nothing = Ptr GValue -> Ptr ShapePlanT -> IO ()
forall a. Ptr GValue -> Ptr a -> IO ()
B.GValue.set_boxed Ptr GValue
gv (Ptr ShapePlanT
forall a. Ptr a
FP.nullPtr :: FP.Ptr ShapePlanT)
gvalueSet_ Ptr GValue
gv (P.Just ShapePlanT
obj) = ShapePlanT -> (Ptr ShapePlanT -> IO ()) -> IO ()
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr ShapePlanT
obj (Ptr GValue -> Ptr ShapePlanT -> IO ()
forall a. Ptr GValue -> Ptr a -> IO ()
B.GValue.set_boxed Ptr GValue
gv)
gvalueGet_ :: Ptr GValue -> IO (Maybe ShapePlanT)
gvalueGet_ Ptr GValue
gv = do
Ptr ShapePlanT
ptr <- Ptr GValue -> IO (Ptr ShapePlanT)
forall b. Ptr GValue -> IO (Ptr b)
B.GValue.get_boxed Ptr GValue
gv :: IO (Ptr ShapePlanT)
if Ptr ShapePlanT
ptr Ptr ShapePlanT -> Ptr ShapePlanT -> Bool
forall a. Eq a => a -> a -> Bool
/= Ptr ShapePlanT
forall a. Ptr a
FP.nullPtr
then ShapePlanT -> Maybe ShapePlanT
forall a. a -> Maybe a
P.Just (ShapePlanT -> Maybe ShapePlanT)
-> IO ShapePlanT -> IO (Maybe ShapePlanT)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
<$> (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
else Maybe ShapePlanT -> IO (Maybe ShapePlanT)
forall (m :: * -> *) a. Monad m => a -> m a
return Maybe ShapePlanT
forall a. Maybe a
P.Nothing
#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.OverloadedMethod 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
#if MIN_VERSION_base(4,13,0)
instance (info ~ ResolveShapePlanTMethod t ShapePlanT, O.OverloadedMethod info ShapePlanT p, R.HasField t ShapePlanT p) => R.HasField t ShapePlanT p where
getField = O.overloadedMethod @info
#endif
instance (info ~ ResolveShapePlanTMethod t ShapePlanT, O.OverloadedMethodInfo info ShapePlanT) => OL.IsLabel t (O.MethodProxy info ShapePlanT) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.MethodProxy
#else
fromLabel _ = O.MethodProxy
#endif
#endif