{-# LANGUAGE TypeApplications #-}
#if !defined(__HADDOCK_VERSION__)
#define ENABLE_OVERLOADING
#endif
module GI.Gsk.Objects.InsetShadowNode
(
InsetShadowNode(..) ,
IsInsetShadowNode ,
toInsetShadowNode ,
#if defined(ENABLE_OVERLOADING)
ResolveInsetShadowNodeMethod ,
#endif
#if defined(ENABLE_OVERLOADING)
InsetShadowNodeGetBlurRadiusMethodInfo ,
#endif
insetShadowNodeGetBlurRadius ,
#if defined(ENABLE_OVERLOADING)
InsetShadowNodeGetColorMethodInfo ,
#endif
insetShadowNodeGetColor ,
#if defined(ENABLE_OVERLOADING)
InsetShadowNodeGetDxMethodInfo ,
#endif
insetShadowNodeGetDx ,
#if defined(ENABLE_OVERLOADING)
InsetShadowNodeGetDyMethodInfo ,
#endif
insetShadowNodeGetDy ,
#if defined(ENABLE_OVERLOADING)
InsetShadowNodeGetOutlineMethodInfo ,
#endif
insetShadowNodeGetOutline ,
#if defined(ENABLE_OVERLOADING)
InsetShadowNodeGetSpreadMethodInfo ,
#endif
insetShadowNodeGetSpread ,
insetShadowNodeNew ,
) 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
import qualified Data.Word as DW
import qualified Data.Int as DI
import qualified System.Posix.Types as SPT
import qualified Foreign.C.Types as FCT
#if MIN_VERSION_base(4,18,0)
import qualified GI.Cairo.Structs.Context as Cairo.Context
import qualified GI.GLib.Structs.Bytes as GLib.Bytes
import qualified GI.Gdk.Structs.RGBA as Gdk.RGBA
import qualified GI.Graphene.Structs.Point as Graphene.Point
import qualified GI.Graphene.Structs.Rect as Graphene.Rect
import qualified GI.Graphene.Structs.Size as Graphene.Size
import qualified GI.Gsk.Callbacks as Gsk.Callbacks
import {-# SOURCE #-} qualified GI.Gsk.Enums as Gsk.Enums
import {-# SOURCE #-} qualified GI.Gsk.Objects.RenderNode as Gsk.RenderNode
import {-# SOURCE #-} qualified GI.Gsk.Structs.RoundedRect as Gsk.RoundedRect
#else
import qualified GI.Gdk.Structs.RGBA as Gdk.RGBA
import {-# SOURCE #-} qualified GI.Gsk.Objects.RenderNode as Gsk.RenderNode
import {-# SOURCE #-} qualified GI.Gsk.Structs.RoundedRect as Gsk.RoundedRect
#endif
newtype InsetShadowNode = InsetShadowNode (SP.ManagedPtr InsetShadowNode)
deriving (InsetShadowNode -> InsetShadowNode -> Bool
(InsetShadowNode -> InsetShadowNode -> Bool)
-> (InsetShadowNode -> InsetShadowNode -> Bool)
-> Eq InsetShadowNode
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: InsetShadowNode -> InsetShadowNode -> Bool
== :: InsetShadowNode -> InsetShadowNode -> Bool
$c/= :: InsetShadowNode -> InsetShadowNode -> Bool
/= :: InsetShadowNode -> InsetShadowNode -> Bool
Eq)
instance SP.ManagedPtrNewtype InsetShadowNode where
toManagedPtr :: InsetShadowNode -> ManagedPtr InsetShadowNode
toManagedPtr (InsetShadowNode ManagedPtr InsetShadowNode
p) = ManagedPtr InsetShadowNode
p
foreign import ccall "gsk_inset_shadow_node_get_type"
c_gsk_inset_shadow_node_get_type :: IO B.Types.GType
instance B.Types.TypedObject InsetShadowNode where
glibType :: IO GType
glibType = IO GType
c_gsk_inset_shadow_node_get_type
class (SP.BoxedPtr o, SP.TypedObject o, O.IsDescendantOf InsetShadowNode o) => IsInsetShadowNode o
instance (SP.BoxedPtr o, SP.TypedObject o, O.IsDescendantOf InsetShadowNode o) => IsInsetShadowNode o
instance O.HasParentTypes InsetShadowNode
type instance O.ParentTypes InsetShadowNode = '[Gsk.RenderNode.RenderNode]
toInsetShadowNode :: (MIO.MonadIO m, IsInsetShadowNode o) => o -> m InsetShadowNode
toInsetShadowNode :: forall (m :: * -> *) o.
(MonadIO m, IsInsetShadowNode o) =>
o -> m InsetShadowNode
toInsetShadowNode = IO InsetShadowNode -> m InsetShadowNode
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
MIO.liftIO (IO InsetShadowNode -> m InsetShadowNode)
-> (o -> IO InsetShadowNode) -> o -> m InsetShadowNode
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (ManagedPtr InsetShadowNode -> InsetShadowNode)
-> o -> IO InsetShadowNode
forall o o'.
(HasCallStack, ManagedPtrNewtype o, TypedObject o,
ManagedPtrNewtype o', TypedObject o') =>
(ManagedPtr o' -> o') -> o -> IO o'
B.ManagedPtr.unsafeCastTo ManagedPtr InsetShadowNode -> InsetShadowNode
InsetShadowNode
#if defined(ENABLE_OVERLOADING)
type family ResolveInsetShadowNodeMethod (t :: Symbol) (o :: DK.Type) :: DK.Type where
ResolveInsetShadowNodeMethod "draw" o = Gsk.RenderNode.RenderNodeDrawMethodInfo
ResolveInsetShadowNodeMethod "ref" o = Gsk.RenderNode.RenderNodeRefMethodInfo
ResolveInsetShadowNodeMethod "serialize" o = Gsk.RenderNode.RenderNodeSerializeMethodInfo
ResolveInsetShadowNodeMethod "unref" o = Gsk.RenderNode.RenderNodeUnrefMethodInfo
ResolveInsetShadowNodeMethod "writeToFile" o = Gsk.RenderNode.RenderNodeWriteToFileMethodInfo
ResolveInsetShadowNodeMethod "getBlurRadius" o = InsetShadowNodeGetBlurRadiusMethodInfo
ResolveInsetShadowNodeMethod "getBounds" o = Gsk.RenderNode.RenderNodeGetBoundsMethodInfo
ResolveInsetShadowNodeMethod "getColor" o = InsetShadowNodeGetColorMethodInfo
ResolveInsetShadowNodeMethod "getDx" o = InsetShadowNodeGetDxMethodInfo
ResolveInsetShadowNodeMethod "getDy" o = InsetShadowNodeGetDyMethodInfo
ResolveInsetShadowNodeMethod "getNodeType" o = Gsk.RenderNode.RenderNodeGetNodeTypeMethodInfo
ResolveInsetShadowNodeMethod "getOpaqueRect" o = Gsk.RenderNode.RenderNodeGetOpaqueRectMethodInfo
ResolveInsetShadowNodeMethod "getOutline" o = InsetShadowNodeGetOutlineMethodInfo
ResolveInsetShadowNodeMethod "getSpread" o = InsetShadowNodeGetSpreadMethodInfo
ResolveInsetShadowNodeMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveInsetShadowNodeMethod t InsetShadowNode, O.OverloadedMethod info InsetShadowNode p) => OL.IsLabel t (InsetShadowNode -> 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 ~ ResolveInsetShadowNodeMethod t InsetShadowNode, O.OverloadedMethod info InsetShadowNode p, R.HasField t InsetShadowNode p) => R.HasField t InsetShadowNode p where
getField = O.overloadedMethod @info
#endif
instance (info ~ ResolveInsetShadowNodeMethod t InsetShadowNode, O.OverloadedMethodInfo info InsetShadowNode) => OL.IsLabel t (O.MethodProxy info InsetShadowNode) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.MethodProxy
#else
fromLabel _ = O.MethodProxy
#endif
#endif
instance BoxedPtr InsetShadowNode where
boxedPtrCopy :: InsetShadowNode -> IO InsetShadowNode
boxedPtrCopy = InsetShadowNode -> IO InsetShadowNode
forall a. a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
return
boxedPtrFree :: InsetShadowNode -> IO ()
boxedPtrFree = \InsetShadowNode
_x -> () -> IO ()
forall a. a -> IO a
forall (m :: * -> *) a. Monad m => a -> m a
return ()
foreign import ccall "gsk_inset_shadow_node_new" gsk_inset_shadow_node_new ::
Ptr Gsk.RoundedRect.RoundedRect ->
Ptr Gdk.RGBA.RGBA ->
CFloat ->
CFloat ->
CFloat ->
CFloat ->
IO (Ptr InsetShadowNode)
insetShadowNodeNew ::
(B.CallStack.HasCallStack, MonadIO m) =>
Gsk.RoundedRect.RoundedRect
-> Gdk.RGBA.RGBA
-> Float
-> Float
-> Float
-> Float
-> m InsetShadowNode
insetShadowNodeNew :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
RoundedRect
-> RGBA -> Float -> Float -> Float -> Float -> m InsetShadowNode
insetShadowNodeNew RoundedRect
outline RGBA
color Float
dx Float
dy Float
spread Float
blurRadius = IO InsetShadowNode -> m InsetShadowNode
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO InsetShadowNode -> m InsetShadowNode)
-> IO InsetShadowNode -> m InsetShadowNode
forall a b. (a -> b) -> a -> b
$ do
outline' <- RoundedRect -> IO (Ptr RoundedRect)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr RoundedRect
outline
color' <- unsafeManagedPtrGetPtr color
let dx' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
dx
let dy' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
dy
let spread' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
spread
let blurRadius' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
blurRadius
result <- gsk_inset_shadow_node_new outline' color' dx' dy' spread' blurRadius'
checkUnexpectedReturnNULL "insetShadowNodeNew" result
result' <- (wrapPtr InsetShadowNode) result
touchManagedPtr outline
touchManagedPtr color
return result'
#if defined(ENABLE_OVERLOADING)
#endif
foreign import ccall "gsk_inset_shadow_node_get_blur_radius" gsk_inset_shadow_node_get_blur_radius ::
Ptr InsetShadowNode ->
IO CFloat
insetShadowNodeGetBlurRadius ::
(B.CallStack.HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a
-> m Float
insetShadowNodeGetBlurRadius :: forall (m :: * -> *) a.
(HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a -> m Float
insetShadowNodeGetBlurRadius a
node = IO Float -> m Float
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Float -> m Float) -> IO Float -> m Float
forall a b. (a -> b) -> a -> b
$ do
node' <- a -> IO (Ptr InsetShadowNode)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
node
result <- gsk_inset_shadow_node_get_blur_radius node'
let result' = CFloat -> Float
forall a b. (Real a, Fractional b) => a -> b
realToFrac CFloat
result
touchManagedPtr node
return result'
#if defined(ENABLE_OVERLOADING)
data InsetShadowNodeGetBlurRadiusMethodInfo
instance (signature ~ (m Float), MonadIO m, IsInsetShadowNode a) => O.OverloadedMethod InsetShadowNodeGetBlurRadiusMethodInfo a signature where
overloadedMethod = insetShadowNodeGetBlurRadius
instance O.OverloadedMethodInfo InsetShadowNodeGetBlurRadiusMethodInfo a where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gsk.Objects.InsetShadowNode.insetShadowNodeGetBlurRadius",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gsk-4.0.9/docs/GI-Gsk-Objects-InsetShadowNode.html#v:insetShadowNodeGetBlurRadius"
})
#endif
foreign import ccall "gsk_inset_shadow_node_get_color" gsk_inset_shadow_node_get_color ::
Ptr InsetShadowNode ->
IO (Ptr Gdk.RGBA.RGBA)
insetShadowNodeGetColor ::
(B.CallStack.HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a
-> m Gdk.RGBA.RGBA
insetShadowNodeGetColor :: forall (m :: * -> *) a.
(HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a -> m RGBA
insetShadowNodeGetColor a
node = IO RGBA -> m RGBA
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO RGBA -> m RGBA) -> IO RGBA -> m RGBA
forall a b. (a -> b) -> a -> b
$ do
node' <- a -> IO (Ptr InsetShadowNode)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
node
result <- gsk_inset_shadow_node_get_color node'
checkUnexpectedReturnNULL "insetShadowNodeGetColor" result
result' <- (newBoxed Gdk.RGBA.RGBA) result
touchManagedPtr node
return result'
#if defined(ENABLE_OVERLOADING)
data InsetShadowNodeGetColorMethodInfo
instance (signature ~ (m Gdk.RGBA.RGBA), MonadIO m, IsInsetShadowNode a) => O.OverloadedMethod InsetShadowNodeGetColorMethodInfo a signature where
overloadedMethod = insetShadowNodeGetColor
instance O.OverloadedMethodInfo InsetShadowNodeGetColorMethodInfo a where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gsk.Objects.InsetShadowNode.insetShadowNodeGetColor",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gsk-4.0.9/docs/GI-Gsk-Objects-InsetShadowNode.html#v:insetShadowNodeGetColor"
})
#endif
foreign import ccall "gsk_inset_shadow_node_get_dx" gsk_inset_shadow_node_get_dx ::
Ptr InsetShadowNode ->
IO CFloat
insetShadowNodeGetDx ::
(B.CallStack.HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a
-> m Float
insetShadowNodeGetDx :: forall (m :: * -> *) a.
(HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a -> m Float
insetShadowNodeGetDx a
node = IO Float -> m Float
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Float -> m Float) -> IO Float -> m Float
forall a b. (a -> b) -> a -> b
$ do
node' <- a -> IO (Ptr InsetShadowNode)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
node
result <- gsk_inset_shadow_node_get_dx node'
let result' = CFloat -> Float
forall a b. (Real a, Fractional b) => a -> b
realToFrac CFloat
result
touchManagedPtr node
return result'
#if defined(ENABLE_OVERLOADING)
data InsetShadowNodeGetDxMethodInfo
instance (signature ~ (m Float), MonadIO m, IsInsetShadowNode a) => O.OverloadedMethod InsetShadowNodeGetDxMethodInfo a signature where
overloadedMethod = insetShadowNodeGetDx
instance O.OverloadedMethodInfo InsetShadowNodeGetDxMethodInfo a where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gsk.Objects.InsetShadowNode.insetShadowNodeGetDx",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gsk-4.0.9/docs/GI-Gsk-Objects-InsetShadowNode.html#v:insetShadowNodeGetDx"
})
#endif
foreign import ccall "gsk_inset_shadow_node_get_dy" gsk_inset_shadow_node_get_dy ::
Ptr InsetShadowNode ->
IO CFloat
insetShadowNodeGetDy ::
(B.CallStack.HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a
-> m Float
insetShadowNodeGetDy :: forall (m :: * -> *) a.
(HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a -> m Float
insetShadowNodeGetDy a
node = IO Float -> m Float
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Float -> m Float) -> IO Float -> m Float
forall a b. (a -> b) -> a -> b
$ do
node' <- a -> IO (Ptr InsetShadowNode)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
node
result <- gsk_inset_shadow_node_get_dy node'
let result' = CFloat -> Float
forall a b. (Real a, Fractional b) => a -> b
realToFrac CFloat
result
touchManagedPtr node
return result'
#if defined(ENABLE_OVERLOADING)
data InsetShadowNodeGetDyMethodInfo
instance (signature ~ (m Float), MonadIO m, IsInsetShadowNode a) => O.OverloadedMethod InsetShadowNodeGetDyMethodInfo a signature where
overloadedMethod = insetShadowNodeGetDy
instance O.OverloadedMethodInfo InsetShadowNodeGetDyMethodInfo a where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gsk.Objects.InsetShadowNode.insetShadowNodeGetDy",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gsk-4.0.9/docs/GI-Gsk-Objects-InsetShadowNode.html#v:insetShadowNodeGetDy"
})
#endif
foreign import ccall "gsk_inset_shadow_node_get_outline" gsk_inset_shadow_node_get_outline ::
Ptr InsetShadowNode ->
IO (Ptr Gsk.RoundedRect.RoundedRect)
insetShadowNodeGetOutline ::
(B.CallStack.HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a
-> m Gsk.RoundedRect.RoundedRect
insetShadowNodeGetOutline :: forall (m :: * -> *) a.
(HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a -> m RoundedRect
insetShadowNodeGetOutline a
node = IO RoundedRect -> m RoundedRect
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO RoundedRect -> m RoundedRect)
-> IO RoundedRect -> m RoundedRect
forall a b. (a -> b) -> a -> b
$ do
node' <- a -> IO (Ptr InsetShadowNode)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
node
result <- gsk_inset_shadow_node_get_outline node'
checkUnexpectedReturnNULL "insetShadowNodeGetOutline" result
result' <- (newPtr Gsk.RoundedRect.RoundedRect) result
touchManagedPtr node
return result'
#if defined(ENABLE_OVERLOADING)
data InsetShadowNodeGetOutlineMethodInfo
instance (signature ~ (m Gsk.RoundedRect.RoundedRect), MonadIO m, IsInsetShadowNode a) => O.OverloadedMethod InsetShadowNodeGetOutlineMethodInfo a signature where
overloadedMethod = insetShadowNodeGetOutline
instance O.OverloadedMethodInfo InsetShadowNodeGetOutlineMethodInfo a where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gsk.Objects.InsetShadowNode.insetShadowNodeGetOutline",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gsk-4.0.9/docs/GI-Gsk-Objects-InsetShadowNode.html#v:insetShadowNodeGetOutline"
})
#endif
foreign import ccall "gsk_inset_shadow_node_get_spread" gsk_inset_shadow_node_get_spread ::
Ptr InsetShadowNode ->
IO CFloat
insetShadowNodeGetSpread ::
(B.CallStack.HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a
-> m Float
insetShadowNodeGetSpread :: forall (m :: * -> *) a.
(HasCallStack, MonadIO m, IsInsetShadowNode a) =>
a -> m Float
insetShadowNodeGetSpread a
node = IO Float -> m Float
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Float -> m Float) -> IO Float -> m Float
forall a b. (a -> b) -> a -> b
$ do
node' <- a -> IO (Ptr InsetShadowNode)
forall a b. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr b)
unsafeManagedPtrCastPtr a
node
result <- gsk_inset_shadow_node_get_spread node'
let result' = CFloat -> Float
forall a b. (Real a, Fractional b) => a -> b
realToFrac CFloat
result
touchManagedPtr node
return result'
#if defined(ENABLE_OVERLOADING)
data InsetShadowNodeGetSpreadMethodInfo
instance (signature ~ (m Float), MonadIO m, IsInsetShadowNode a) => O.OverloadedMethod InsetShadowNodeGetSpreadMethodInfo a signature where
overloadedMethod = insetShadowNodeGetSpread
instance O.OverloadedMethodInfo InsetShadowNodeGetSpreadMethodInfo a where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gsk.Objects.InsetShadowNode.insetShadowNodeGetSpread",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gsk-4.0.9/docs/GI-Gsk-Objects-InsetShadowNode.html#v:insetShadowNodeGetSpread"
})
#endif