{-# 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.Gst.Objects.IntRange
    ( 

-- * Exported types
    IntRange(..)                            ,
    IsIntRange                              ,
    toIntRange                              ,


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

#if defined(ENABLE_OVERLOADING)
    ResolveIntRangeMethod                   ,
#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.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 IntRange = IntRange (SP.ManagedPtr IntRange)
    deriving (IntRange -> IntRange -> Bool
(IntRange -> IntRange -> Bool)
-> (IntRange -> IntRange -> Bool) -> Eq IntRange
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: IntRange -> IntRange -> Bool
$c/= :: IntRange -> IntRange -> Bool
== :: IntRange -> IntRange -> Bool
$c== :: IntRange -> IntRange -> Bool
Eq)

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

foreign import ccall "gst_int_range_get_type"
    c_gst_int_range_get_type :: IO B.Types.GType

instance B.Types.TypedObject IntRange where
    glibType :: IO GType
glibType = IO GType
c_gst_int_range_get_type

-- | Type class for types which can be safely cast to `IntRange`, for instance with `toIntRange`.
class (SP.BoxedPtr o, SP.TypedObject o, O.IsDescendantOf IntRange o) => IsIntRange o
instance (SP.BoxedPtr o, SP.TypedObject o, O.IsDescendantOf IntRange o) => IsIntRange o

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

-- | Cast to `IntRange`, for types for which this is known to be safe. For general casts, use `Data.GI.Base.ManagedPtr.castTo`.
toIntRange :: (MonadIO m, IsIntRange o) => o -> m IntRange
toIntRange :: o -> m IntRange
toIntRange = IO IntRange -> m IntRange
forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO (IO IntRange -> m IntRange)
-> (o -> IO IntRange) -> o -> m IntRange
forall b c a. (b -> c) -> (a -> b) -> a -> c
. (ManagedPtr IntRange -> IntRange) -> o -> IO IntRange
forall o o'.
(HasCallStack, ManagedPtrNewtype o, TypedObject o,
 ManagedPtrNewtype o', TypedObject o') =>
(ManagedPtr o' -> o') -> o -> IO o'
unsafeCastTo ManagedPtr IntRange -> IntRange
IntRange

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

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

#endif

-- XXX Wrapping a foreign struct/union with no known destructor or size, leak?
instance BoxedPtr IntRange where
    boxedPtrCopy :: IntRange -> IO IntRange
boxedPtrCopy = IntRange -> IO IntRange
forall (m :: * -> *) a. Monad m => a -> m a
return
    boxedPtrFree :: IntRange -> IO ()
boxedPtrFree = \IntRange
_x -> () -> IO ()
forall (m :: * -> *) a. Monad m => a -> m a
return ()