{-# LANGUAGE TypeApplications #-}
#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif
module GI.HarfBuzz.Structs.OtColorLayerT
(
OtColorLayerT(..) ,
newZeroOtColorLayerT ,
#if defined(ENABLE_OVERLOADING)
ResolveOtColorLayerTMethod ,
#endif
getOtColorLayerTColorIndex ,
#if defined(ENABLE_OVERLOADING)
otColorLayerT_colorIndex ,
#endif
setOtColorLayerTColorIndex ,
getOtColorLayerTGlyph ,
#if defined(ENABLE_OVERLOADING)
otColorLayerT_glyph ,
#endif
setOtColorLayerTGlyph ,
) 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.GHashTable as B.GHT
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.Kind as DK
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 OtColorLayerT = OtColorLayerT (SP.ManagedPtr OtColorLayerT)
deriving (OtColorLayerT -> OtColorLayerT -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: OtColorLayerT -> OtColorLayerT -> Bool
$c/= :: OtColorLayerT -> OtColorLayerT -> Bool
== :: OtColorLayerT -> OtColorLayerT -> Bool
$c== :: OtColorLayerT -> OtColorLayerT -> Bool
Eq)
instance SP.ManagedPtrNewtype OtColorLayerT where
toManagedPtr :: OtColorLayerT -> ManagedPtr OtColorLayerT
toManagedPtr (OtColorLayerT ManagedPtr OtColorLayerT
p) = ManagedPtr OtColorLayerT
p
instance BoxedPtr OtColorLayerT where
boxedPtrCopy :: OtColorLayerT -> IO OtColorLayerT
boxedPtrCopy = \OtColorLayerT
p -> forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr OtColorLayerT
p (forall a. (HasCallStack, CallocPtr a) => Int -> Ptr a -> IO (Ptr a)
copyBytes Int
8 forall (m :: * -> *) a b c.
Monad m =>
(a -> m b) -> (b -> m c) -> a -> m c
>=> forall a.
(HasCallStack, BoxedPtr a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
B.ManagedPtr.wrapPtr ManagedPtr OtColorLayerT -> OtColorLayerT
OtColorLayerT)
boxedPtrFree :: OtColorLayerT -> IO ()
boxedPtrFree = \OtColorLayerT
x -> forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
SP.withManagedPtr OtColorLayerT
x forall a. Ptr a -> IO ()
SP.freeMem
instance CallocPtr OtColorLayerT where
boxedPtrCalloc :: IO (Ptr OtColorLayerT)
boxedPtrCalloc = forall a. Int -> IO (Ptr a)
callocBytes Int
8
newZeroOtColorLayerT :: MonadIO m => m OtColorLayerT
newZeroOtColorLayerT :: forall (m :: * -> *). MonadIO m => m OtColorLayerT
newZeroOtColorLayerT = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a. CallocPtr a => IO (Ptr a)
boxedPtrCalloc forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= forall a.
(HasCallStack, BoxedPtr a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
wrapPtr ManagedPtr OtColorLayerT -> OtColorLayerT
OtColorLayerT
instance tag ~ 'AttrSet => Constructible OtColorLayerT tag where
new :: forall (m :: * -> *).
MonadIO m =>
(ManagedPtr OtColorLayerT -> OtColorLayerT)
-> [AttrOp OtColorLayerT tag] -> m OtColorLayerT
new ManagedPtr OtColorLayerT -> OtColorLayerT
_ [AttrOp OtColorLayerT tag]
attrs = do
OtColorLayerT
o <- forall (m :: * -> *). MonadIO m => m OtColorLayerT
newZeroOtColorLayerT
forall o (m :: * -> *).
MonadIO m =>
o -> [AttrOp o 'AttrSet] -> m ()
GI.Attributes.set OtColorLayerT
o [AttrOp OtColorLayerT tag]
attrs
forall (m :: * -> *) a. Monad m => a -> m a
return OtColorLayerT
o
getOtColorLayerTGlyph :: MonadIO m => OtColorLayerT -> m Word32
getOtColorLayerTGlyph :: forall (m :: * -> *). MonadIO m => OtColorLayerT -> m Word32
getOtColorLayerTGlyph OtColorLayerT
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr OtColorLayerT
s forall a b. (a -> b) -> a -> b
$ \Ptr OtColorLayerT
ptr -> do
Word32
val <- forall a. Storable a => Ptr a -> IO a
peek (Ptr OtColorLayerT
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0) :: IO Word32
forall (m :: * -> *) a. Monad m => a -> m a
return Word32
val
setOtColorLayerTGlyph :: MonadIO m => OtColorLayerT -> Word32 -> m ()
setOtColorLayerTGlyph :: forall (m :: * -> *). MonadIO m => OtColorLayerT -> Word32 -> m ()
setOtColorLayerTGlyph OtColorLayerT
s Word32
val = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr OtColorLayerT
s forall a b. (a -> b) -> a -> b
$ \Ptr OtColorLayerT
ptr -> do
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr OtColorLayerT
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0) (Word32
val :: Word32)
#if defined(ENABLE_OVERLOADING)
data OtColorLayerTGlyphFieldInfo
instance AttrInfo OtColorLayerTGlyphFieldInfo where
type AttrBaseTypeConstraint OtColorLayerTGlyphFieldInfo = (~) OtColorLayerT
type AttrAllowedOps OtColorLayerTGlyphFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint OtColorLayerTGlyphFieldInfo = (~) Word32
type AttrTransferTypeConstraint OtColorLayerTGlyphFieldInfo = (~)Word32
type AttrTransferType OtColorLayerTGlyphFieldInfo = Word32
type AttrGetType OtColorLayerTGlyphFieldInfo = Word32
type AttrLabel OtColorLayerTGlyphFieldInfo = "glyph"
type AttrOrigin OtColorLayerTGlyphFieldInfo = OtColorLayerT
attrGet = getOtColorLayerTGlyph
attrSet = setOtColorLayerTGlyph
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.HarfBuzz.Structs.OtColorLayerT.glyph"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-harfbuzz-0.0.7/docs/GI-HarfBuzz-Structs-OtColorLayerT.html#g:attr:glyph"
})
otColorLayerT_glyph :: AttrLabelProxy "glyph"
otColorLayerT_glyph = AttrLabelProxy
#endif
getOtColorLayerTColorIndex :: MonadIO m => OtColorLayerT -> m Word32
getOtColorLayerTColorIndex :: forall (m :: * -> *). MonadIO m => OtColorLayerT -> m Word32
getOtColorLayerTColorIndex OtColorLayerT
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr OtColorLayerT
s forall a b. (a -> b) -> a -> b
$ \Ptr OtColorLayerT
ptr -> do
Word32
val <- forall a. Storable a => Ptr a -> IO a
peek (Ptr OtColorLayerT
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) :: IO Word32
forall (m :: * -> *) a. Monad m => a -> m a
return Word32
val
setOtColorLayerTColorIndex :: MonadIO m => OtColorLayerT -> Word32 -> m ()
setOtColorLayerTColorIndex :: forall (m :: * -> *). MonadIO m => OtColorLayerT -> Word32 -> m ()
setOtColorLayerTColorIndex OtColorLayerT
s Word32
val = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr OtColorLayerT
s forall a b. (a -> b) -> a -> b
$ \Ptr OtColorLayerT
ptr -> do
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr OtColorLayerT
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) (Word32
val :: Word32)
#if defined(ENABLE_OVERLOADING)
data OtColorLayerTColorIndexFieldInfo
instance AttrInfo OtColorLayerTColorIndexFieldInfo where
type AttrBaseTypeConstraint OtColorLayerTColorIndexFieldInfo = (~) OtColorLayerT
type AttrAllowedOps OtColorLayerTColorIndexFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint OtColorLayerTColorIndexFieldInfo = (~) Word32
type AttrTransferTypeConstraint OtColorLayerTColorIndexFieldInfo = (~)Word32
type AttrTransferType OtColorLayerTColorIndexFieldInfo = Word32
type AttrGetType OtColorLayerTColorIndexFieldInfo = Word32
type AttrLabel OtColorLayerTColorIndexFieldInfo = "color_index"
type AttrOrigin OtColorLayerTColorIndexFieldInfo = OtColorLayerT
attrGet = getOtColorLayerTColorIndex
attrSet = setOtColorLayerTColorIndex
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.HarfBuzz.Structs.OtColorLayerT.colorIndex"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-harfbuzz-0.0.7/docs/GI-HarfBuzz-Structs-OtColorLayerT.html#g:attr:colorIndex"
})
otColorLayerT_colorIndex :: AttrLabelProxy "colorIndex"
otColorLayerT_colorIndex = AttrLabelProxy
#endif
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList OtColorLayerT
type instance O.AttributeList OtColorLayerT = OtColorLayerTAttributeList
type OtColorLayerTAttributeList = ('[ '("glyph", OtColorLayerTGlyphFieldInfo), '("colorIndex", OtColorLayerTColorIndexFieldInfo)] :: [(Symbol, DK.Type)])
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveOtColorLayerTMethod (t :: Symbol) (o :: DK.Type) :: DK.Type where
ResolveOtColorLayerTMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveOtColorLayerTMethod t OtColorLayerT, O.OverloadedMethod info OtColorLayerT p) => OL.IsLabel t (OtColorLayerT -> 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 ~ ResolveOtColorLayerTMethod t OtColorLayerT, O.OverloadedMethod info OtColorLayerT p, R.HasField t OtColorLayerT p) => R.HasField t OtColorLayerT p where
getField = O.overloadedMethod @info
#endif
instance (info ~ ResolveOtColorLayerTMethod t OtColorLayerT, O.OverloadedMethodInfo info OtColorLayerT) => OL.IsLabel t (O.MethodProxy info OtColorLayerT) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.MethodProxy
#else
fromLabel _ = O.MethodProxy
#endif
#endif