{-# LANGUAGE TypeApplications #-}
#if !defined(__HADDOCK_VERSION__)
#define ENABLE_OVERLOADING
#endif
module GI.Graphene.Structs.Size
(
Size(..) ,
newZeroSize ,
#if defined(ENABLE_OVERLOADING)
ResolveSizeMethod ,
#endif
sizeAlloc ,
#if defined(ENABLE_OVERLOADING)
SizeEqualMethodInfo ,
#endif
sizeEqual ,
#if defined(ENABLE_OVERLOADING)
SizeFreeMethodInfo ,
#endif
sizeFree ,
#if defined(ENABLE_OVERLOADING)
SizeInitMethodInfo ,
#endif
sizeInit ,
#if defined(ENABLE_OVERLOADING)
SizeInitFromSizeMethodInfo ,
#endif
sizeInitFromSize ,
#if defined(ENABLE_OVERLOADING)
SizeInterpolateMethodInfo ,
#endif
sizeInterpolate ,
#if defined(ENABLE_OVERLOADING)
SizeScaleMethodInfo ,
#endif
sizeScale ,
sizeZero ,
getSizeHeight ,
setSizeHeight ,
#if defined(ENABLE_OVERLOADING)
size_height ,
#endif
getSizeWidth ,
setSizeWidth ,
#if defined(ENABLE_OVERLOADING)
size_width ,
#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.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)
#else
#endif
newtype Size = Size (SP.ManagedPtr Size)
deriving (Size -> Size -> Bool
(Size -> Size -> Bool) -> (Size -> Size -> Bool) -> Eq Size
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
$c== :: Size -> Size -> Bool
== :: Size -> Size -> Bool
$c/= :: Size -> Size -> Bool
/= :: Size -> Size -> Bool
Eq)
instance SP.ManagedPtrNewtype Size where
toManagedPtr :: Size -> ManagedPtr Size
toManagedPtr (Size ManagedPtr Size
p) = ManagedPtr Size
p
foreign import ccall "graphene_size_get_type" c_graphene_size_get_type ::
IO GType
type instance O.ParentTypes Size = '[]
instance O.HasParentTypes Size
instance B.Types.TypedObject Size where
glibType :: IO GType
glibType = IO GType
c_graphene_size_get_type
instance B.Types.GBoxed Size
instance B.GValue.IsGValue (Maybe Size) where
gvalueGType_ :: IO GType
gvalueGType_ = IO GType
c_graphene_size_get_type
gvalueSet_ :: Ptr GValue -> Maybe Size -> IO ()
gvalueSet_ Ptr GValue
gv Maybe Size
P.Nothing = Ptr GValue -> Ptr Size -> IO ()
forall a. Ptr GValue -> Ptr a -> IO ()
B.GValue.set_boxed Ptr GValue
gv (Ptr Size
forall a. Ptr a
FP.nullPtr :: FP.Ptr Size)
gvalueSet_ Ptr GValue
gv (P.Just Size
obj) = Size -> (Ptr Size -> IO ()) -> IO ()
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr Size
obj (Ptr GValue -> Ptr Size -> IO ()
forall a. Ptr GValue -> Ptr a -> IO ()
B.GValue.set_boxed Ptr GValue
gv)
gvalueGet_ :: Ptr GValue -> IO (Maybe Size)
gvalueGet_ Ptr GValue
gv = do
ptr <- Ptr GValue -> IO (Ptr Size)
forall b. Ptr GValue -> IO (Ptr b)
B.GValue.get_boxed Ptr GValue
gv :: IO (Ptr Size)
if ptr /= FP.nullPtr
then P.Just <$> B.ManagedPtr.newBoxed Size ptr
else return P.Nothing
newZeroSize :: MonadIO m => m Size
newZeroSize :: forall (m :: * -> *). MonadIO m => m Size
newZeroSize = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ Int -> IO (Ptr Size)
forall a. GBoxed a => Int -> IO (Ptr a)
callocBoxedBytes Int
8 IO (Ptr Size) -> (Ptr Size -> IO Size) -> IO Size
forall a b. IO a -> (a -> IO b) -> IO b
forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= (ManagedPtr Size -> Size) -> Ptr Size -> IO Size
forall a.
(HasCallStack, GBoxed a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
wrapBoxed ManagedPtr Size -> Size
Size
instance tag ~ 'AttrSet => Constructible Size tag where
new :: forall (m :: * -> *).
MonadIO m =>
(ManagedPtr Size -> Size) -> [AttrOp Size tag] -> m Size
new ManagedPtr Size -> Size
_ [AttrOp Size tag]
attrs = do
o <- m Size
forall (m :: * -> *). MonadIO m => m Size
newZeroSize
GI.Attributes.set o attrs
return o
getSizeWidth :: MonadIO m => Size -> m Float
getSizeWidth :: forall (m :: * -> *). MonadIO m => Size -> m Float
getSizeWidth Size
s = 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
$ Size -> (Ptr Size -> IO Float) -> IO Float
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr Size
s ((Ptr Size -> IO Float) -> IO Float)
-> (Ptr Size -> IO Float) -> IO Float
forall a b. (a -> b) -> a -> b
$ \Ptr Size
ptr -> do
val <- Ptr CFloat -> IO CFloat
forall a. Storable a => Ptr a -> IO a
peek (Ptr Size
ptr Ptr Size -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0) :: IO CFloat
let val' = CFloat -> Float
forall a b. (Real a, Fractional b) => a -> b
realToFrac CFloat
val
return val'
setSizeWidth :: MonadIO m => Size -> Float -> m ()
setSizeWidth :: forall (m :: * -> *). MonadIO m => Size -> Float -> m ()
setSizeWidth Size
s Float
val = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ Size -> (Ptr Size -> IO ()) -> IO ()
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr Size
s ((Ptr Size -> IO ()) -> IO ()) -> (Ptr Size -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \Ptr Size
ptr -> do
let val' :: CFloat
val' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
val
Ptr CFloat -> CFloat -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Size
ptr Ptr Size -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0) (CFloat
val' :: CFloat)
#if defined(ENABLE_OVERLOADING)
data SizeWidthFieldInfo
instance AttrInfo SizeWidthFieldInfo where
type AttrBaseTypeConstraint SizeWidthFieldInfo = (~) Size
type AttrAllowedOps SizeWidthFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint SizeWidthFieldInfo = (~) Float
type AttrTransferTypeConstraint SizeWidthFieldInfo = (~)Float
type AttrTransferType SizeWidthFieldInfo = Float
type AttrGetType SizeWidthFieldInfo = Float
type AttrLabel SizeWidthFieldInfo = "width"
type AttrOrigin SizeWidthFieldInfo = Size
attrGet = getSizeWidth
attrSet = setSizeWidth
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.width"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#g:attr:width"
})
size_width :: AttrLabelProxy "width"
size_width = AttrLabelProxy
#endif
getSizeHeight :: MonadIO m => Size -> m Float
getSizeHeight :: forall (m :: * -> *). MonadIO m => Size -> m Float
getSizeHeight Size
s = 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
$ Size -> (Ptr Size -> IO Float) -> IO Float
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr Size
s ((Ptr Size -> IO Float) -> IO Float)
-> (Ptr Size -> IO Float) -> IO Float
forall a b. (a -> b) -> a -> b
$ \Ptr Size
ptr -> do
val <- Ptr CFloat -> IO CFloat
forall a. Storable a => Ptr a -> IO a
peek (Ptr Size
ptr Ptr Size -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) :: IO CFloat
let val' = CFloat -> Float
forall a b. (Real a, Fractional b) => a -> b
realToFrac CFloat
val
return val'
setSizeHeight :: MonadIO m => Size -> Float -> m ()
setSizeHeight :: forall (m :: * -> *). MonadIO m => Size -> Float -> m ()
setSizeHeight Size
s Float
val = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ Size -> (Ptr Size -> IO ()) -> IO ()
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr Size
s ((Ptr Size -> IO ()) -> IO ()) -> (Ptr Size -> IO ()) -> IO ()
forall a b. (a -> b) -> a -> b
$ \Ptr Size
ptr -> do
let val' :: CFloat
val' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
val
Ptr CFloat -> CFloat -> IO ()
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr Size
ptr Ptr Size -> Int -> Ptr CFloat
forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) (CFloat
val' :: CFloat)
#if defined(ENABLE_OVERLOADING)
data SizeHeightFieldInfo
instance AttrInfo SizeHeightFieldInfo where
type AttrBaseTypeConstraint SizeHeightFieldInfo = (~) Size
type AttrAllowedOps SizeHeightFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint SizeHeightFieldInfo = (~) Float
type AttrTransferTypeConstraint SizeHeightFieldInfo = (~)Float
type AttrTransferType SizeHeightFieldInfo = Float
type AttrGetType SizeHeightFieldInfo = Float
type AttrLabel SizeHeightFieldInfo = "height"
type AttrOrigin SizeHeightFieldInfo = Size
attrGet = getSizeHeight
attrSet = setSizeHeight
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.height"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#g:attr:height"
})
size_height :: AttrLabelProxy "height"
size_height = AttrLabelProxy
#endif
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList Size
type instance O.AttributeList Size = SizeAttributeList
type SizeAttributeList = ('[ '("width", SizeWidthFieldInfo), '("height", SizeHeightFieldInfo)] :: [(Symbol, DK.Type)])
#endif
foreign import ccall "graphene_size_alloc" graphene_size_alloc ::
IO (Ptr Size)
sizeAlloc ::
(B.CallStack.HasCallStack, MonadIO m) =>
m Size
sizeAlloc :: forall (m :: * -> *). (HasCallStack, MonadIO m) => m Size
sizeAlloc = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ do
result <- IO (Ptr Size)
graphene_size_alloc
checkUnexpectedReturnNULL "sizeAlloc" result
result' <- (wrapBoxed Size) result
return result'
#if defined(ENABLE_OVERLOADING)
#endif
foreign import ccall "graphene_size_equal" graphene_size_equal ::
Ptr Size ->
Ptr Size ->
IO CInt
sizeEqual ::
(B.CallStack.HasCallStack, MonadIO m) =>
Size
-> Size
-> m Bool
sizeEqual :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Size -> Size -> m Bool
sizeEqual Size
a Size
b = IO Bool -> m Bool
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Bool -> m Bool) -> IO Bool -> m Bool
forall a b. (a -> b) -> a -> b
$ do
a' <- Size -> IO (Ptr Size)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Size
a
b' <- unsafeManagedPtrGetPtr b
result <- graphene_size_equal a' b'
let result' = (CInt -> CInt -> Bool
forall a. Eq a => a -> a -> Bool
/= CInt
0) CInt
result
touchManagedPtr a
touchManagedPtr b
return result'
#if defined(ENABLE_OVERLOADING)
data SizeEqualMethodInfo
instance (signature ~ (Size -> m Bool), MonadIO m) => O.OverloadedMethod SizeEqualMethodInfo Size signature where
overloadedMethod = sizeEqual
instance O.OverloadedMethodInfo SizeEqualMethodInfo Size where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.sizeEqual",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#v:sizeEqual"
})
#endif
foreign import ccall "graphene_size_free" graphene_size_free ::
Ptr Size ->
IO ()
sizeFree ::
(B.CallStack.HasCallStack, MonadIO m) =>
Size
-> m ()
sizeFree :: forall (m :: * -> *). (HasCallStack, MonadIO m) => Size -> m ()
sizeFree Size
s = IO () -> m ()
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO () -> m ()) -> IO () -> m ()
forall a b. (a -> b) -> a -> b
$ do
s' <- Size -> IO (Ptr Size)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Size
s
graphene_size_free s'
touchManagedPtr s
return ()
#if defined(ENABLE_OVERLOADING)
data SizeFreeMethodInfo
instance (signature ~ (m ()), MonadIO m) => O.OverloadedMethod SizeFreeMethodInfo Size signature where
overloadedMethod = sizeFree
instance O.OverloadedMethodInfo SizeFreeMethodInfo Size where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.sizeFree",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#v:sizeFree"
})
#endif
foreign import ccall "graphene_size_init" graphene_size_init ::
Ptr Size ->
CFloat ->
CFloat ->
IO (Ptr Size)
sizeInit ::
(B.CallStack.HasCallStack, MonadIO m) =>
Size
-> Float
-> Float
-> m Size
sizeInit :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Size -> Float -> Float -> m Size
sizeInit Size
s Float
width Float
height = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ do
s' <- Size -> IO (Ptr Size)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Size
s
let width' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
width
let height' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
height
result <- graphene_size_init s' width' height'
checkUnexpectedReturnNULL "sizeInit" result
result' <- (newBoxed Size) result
touchManagedPtr s
return result'
#if defined(ENABLE_OVERLOADING)
data SizeInitMethodInfo
instance (signature ~ (Float -> Float -> m Size), MonadIO m) => O.OverloadedMethod SizeInitMethodInfo Size signature where
overloadedMethod = sizeInit
instance O.OverloadedMethodInfo SizeInitMethodInfo Size where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.sizeInit",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#v:sizeInit"
})
#endif
foreign import ccall "graphene_size_init_from_size" graphene_size_init_from_size ::
Ptr Size ->
Ptr Size ->
IO (Ptr Size)
sizeInitFromSize ::
(B.CallStack.HasCallStack, MonadIO m) =>
Size
-> Size
-> m Size
sizeInitFromSize :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Size -> Size -> m Size
sizeInitFromSize Size
s Size
src = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ do
s' <- Size -> IO (Ptr Size)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Size
s
src' <- unsafeManagedPtrGetPtr src
result <- graphene_size_init_from_size s' src'
checkUnexpectedReturnNULL "sizeInitFromSize" result
result' <- (newBoxed Size) result
touchManagedPtr s
touchManagedPtr src
return result'
#if defined(ENABLE_OVERLOADING)
data SizeInitFromSizeMethodInfo
instance (signature ~ (Size -> m Size), MonadIO m) => O.OverloadedMethod SizeInitFromSizeMethodInfo Size signature where
overloadedMethod = sizeInitFromSize
instance O.OverloadedMethodInfo SizeInitFromSizeMethodInfo Size where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.sizeInitFromSize",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#v:sizeInitFromSize"
})
#endif
foreign import ccall "graphene_size_interpolate" graphene_size_interpolate ::
Ptr Size ->
Ptr Size ->
CDouble ->
Ptr Size ->
IO ()
sizeInterpolate ::
(B.CallStack.HasCallStack, MonadIO m) =>
Size
-> Size
-> Double
-> m (Size)
sizeInterpolate :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Size -> Size -> Double -> m Size
sizeInterpolate Size
a Size
b Double
factor = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ do
a' <- Size -> IO (Ptr Size)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Size
a
b' <- unsafeManagedPtrGetPtr b
let factor' = Double -> CDouble
forall a b. (Real a, Fractional b) => a -> b
realToFrac Double
factor
res <- SP.callocBoxedBytes 8 :: IO (Ptr Size)
graphene_size_interpolate a' b' factor' res
res' <- (wrapBoxed Size) res
touchManagedPtr a
touchManagedPtr b
return res'
#if defined(ENABLE_OVERLOADING)
data SizeInterpolateMethodInfo
instance (signature ~ (Size -> Double -> m (Size)), MonadIO m) => O.OverloadedMethod SizeInterpolateMethodInfo Size signature where
overloadedMethod = sizeInterpolate
instance O.OverloadedMethodInfo SizeInterpolateMethodInfo Size where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.sizeInterpolate",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#v:sizeInterpolate"
})
#endif
foreign import ccall "graphene_size_scale" graphene_size_scale ::
Ptr Size ->
CFloat ->
Ptr Size ->
IO ()
sizeScale ::
(B.CallStack.HasCallStack, MonadIO m) =>
Size
-> Float
-> m (Size)
sizeScale :: forall (m :: * -> *).
(HasCallStack, MonadIO m) =>
Size -> Float -> m Size
sizeScale Size
s Float
factor = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ do
s' <- Size -> IO (Ptr Size)
forall a. (HasCallStack, ManagedPtrNewtype a) => a -> IO (Ptr a)
unsafeManagedPtrGetPtr Size
s
let factor' = Float -> CFloat
forall a b. (Real a, Fractional b) => a -> b
realToFrac Float
factor
res <- SP.callocBoxedBytes 8 :: IO (Ptr Size)
graphene_size_scale s' factor' res
res' <- (wrapBoxed Size) res
touchManagedPtr s
return res'
#if defined(ENABLE_OVERLOADING)
data SizeScaleMethodInfo
instance (signature ~ (Float -> m (Size)), MonadIO m) => O.OverloadedMethod SizeScaleMethodInfo Size signature where
overloadedMethod = sizeScale
instance O.OverloadedMethodInfo SizeScaleMethodInfo Size where
overloadedMethodInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Graphene.Structs.Size.sizeScale",
O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-graphene-1.0.8/docs/GI-Graphene-Structs-Size.html#v:sizeScale"
})
#endif
foreign import ccall "graphene_size_zero" graphene_size_zero ::
IO (Ptr Size)
sizeZero ::
(B.CallStack.HasCallStack, MonadIO m) =>
m Size
sizeZero :: forall (m :: * -> *). (HasCallStack, MonadIO m) => m Size
sizeZero = IO Size -> m Size
forall a. IO a -> m a
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO Size -> m Size) -> IO Size -> m Size
forall a b. (a -> b) -> a -> b
$ do
result <- IO (Ptr Size)
graphene_size_zero
checkUnexpectedReturnNULL "sizeZero" result
result' <- (newBoxed Size) result
return result'
#if defined(ENABLE_OVERLOADING)
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveSizeMethod (t :: Symbol) (o :: DK.Type) :: DK.Type where
ResolveSizeMethod "equal" o = SizeEqualMethodInfo
ResolveSizeMethod "free" o = SizeFreeMethodInfo
ResolveSizeMethod "init" o = SizeInitMethodInfo
ResolveSizeMethod "initFromSize" o = SizeInitFromSizeMethodInfo
ResolveSizeMethod "interpolate" o = SizeInterpolateMethodInfo
ResolveSizeMethod "scale" o = SizeScaleMethodInfo
ResolveSizeMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveSizeMethod t Size, O.OverloadedMethod info Size p) => OL.IsLabel t (Size -> 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 ~ ResolveSizeMethod t Size, O.OverloadedMethod info Size p, R.HasField t Size p) => R.HasField t Size p where
getField = O.overloadedMethod @info
#endif
instance (info ~ ResolveSizeMethod t Size, O.OverloadedMethodInfo info Size) => OL.IsLabel t (O.MethodProxy info Size) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.MethodProxy
#else
fromLabel _ = O.MethodProxy
#endif
#endif