{-# LANGUAGE TypeApplications #-}


-- | Copyright  : Will Thompson, Iñaki García Etxebarria and Jonas Platte
-- License    : LGPL-2.1
-- Maintainer : Iñaki García Etxebarria
-- 
-- GdkEventSequence is an opaque type representing a sequence
-- of related touch events.

#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif

module GI.Gdk.Structs.EventSequence
    ( 

-- * Exported types
    EventSequence(..)                       ,
    noEventSequence                         ,


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

#if defined(ENABLE_OVERLOADING)
    ResolveEventSequenceMethod              ,
#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.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 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 EventSequence = EventSequence (ManagedPtr EventSequence)
    deriving (EventSequence -> EventSequence -> Bool
(EventSequence -> EventSequence -> Bool)
-> (EventSequence -> EventSequence -> Bool) -> Eq EventSequence
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: EventSequence -> EventSequence -> Bool
$c/= :: EventSequence -> EventSequence -> Bool
== :: EventSequence -> EventSequence -> Bool
$c== :: EventSequence -> EventSequence -> Bool
Eq)
foreign import ccall "gdk_event_sequence_get_type" c_gdk_event_sequence_get_type :: 
    IO GType

instance BoxedObject EventSequence where
    boxedType :: EventSequence -> IO GType
boxedType _ = IO GType
c_gdk_event_sequence_get_type

-- | Convert 'EventSequence' to and from 'Data.GI.Base.GValue.GValue' with 'Data.GI.Base.GValue.toGValue' and 'Data.GI.Base.GValue.fromGValue'.
instance B.GValue.IsGValue EventSequence where
    toGValue :: EventSequence -> IO GValue
toGValue o :: EventSequence
o = do
        GType
gtype <- IO GType
c_gdk_event_sequence_get_type
        EventSequence -> (Ptr EventSequence -> IO GValue) -> IO GValue
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr EventSequence
o (GType
-> (GValue -> Ptr EventSequence -> IO ())
-> Ptr EventSequence
-> IO GValue
forall a. GType -> (GValue -> a -> IO ()) -> a -> IO GValue
B.GValue.buildGValue GType
gtype GValue -> Ptr EventSequence -> IO ()
forall a. GValue -> Ptr a -> IO ()
B.GValue.set_boxed)
        
    fromGValue :: GValue -> IO EventSequence
fromGValue gv :: GValue
gv = do
        Ptr EventSequence
ptr <- GValue -> IO (Ptr EventSequence)
forall b. GValue -> IO (Ptr b)
B.GValue.get_boxed GValue
gv :: IO (Ptr EventSequence)
        (ManagedPtr EventSequence -> EventSequence)
-> Ptr EventSequence -> IO EventSequence
forall a.
(HasCallStack, BoxedObject a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
B.ManagedPtr.newBoxed ManagedPtr EventSequence -> EventSequence
EventSequence Ptr EventSequence
ptr
        
    

-- | A convenience alias for `Nothing` :: `Maybe` `EventSequence`.
noEventSequence :: Maybe EventSequence
noEventSequence :: Maybe EventSequence
noEventSequence = Maybe EventSequence
forall a. Maybe a
Nothing


#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList EventSequence
type instance O.AttributeList EventSequence = EventSequenceAttributeList
type EventSequenceAttributeList = ('[ ] :: [(Symbol, *)])
#endif

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

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

#endif