{-# 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.GdkX11.Objects.X11GLContext
    ( 

-- * Exported types
    X11GLContext(..)                        ,
    IsX11GLContext                          ,
    toX11GLContext                          ,
    noX11GLContext                          ,


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

#if defined(ENABLE_OVERLOADING)
    ResolveX11GLContextMethod               ,
#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

import qualified GI.GObject.Objects.Object as GObject.Object
import qualified GI.Gdk.Objects.GLContext as Gdk.GLContext

-- | Memory-managed wrapper type.
newtype X11GLContext = X11GLContext (ManagedPtr X11GLContext)
    deriving (X11GLContext -> X11GLContext -> Bool
(X11GLContext -> X11GLContext -> Bool)
-> (X11GLContext -> X11GLContext -> Bool) -> Eq X11GLContext
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: X11GLContext -> X11GLContext -> Bool
$c/= :: X11GLContext -> X11GLContext -> Bool
== :: X11GLContext -> X11GLContext -> Bool
$c== :: X11GLContext -> X11GLContext -> Bool
Eq)
foreign import ccall "gdk_x11_gl_context_get_type"
    c_gdk_x11_gl_context_get_type :: IO GType

instance GObject X11GLContext where
    gobjectType :: IO GType
gobjectType = IO GType
c_gdk_x11_gl_context_get_type
    

-- | Convert 'X11GLContext' to and from 'Data.GI.Base.GValue.GValue' with 'Data.GI.Base.GValue.toGValue' and 'Data.GI.Base.GValue.fromGValue'.
instance B.GValue.IsGValue X11GLContext where
    toGValue :: X11GLContext -> IO GValue
toGValue o :: X11GLContext
o = do
        GType
gtype <- IO GType
c_gdk_x11_gl_context_get_type
        X11GLContext -> (Ptr X11GLContext -> IO GValue) -> IO GValue
forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr X11GLContext
o (GType
-> (GValue -> Ptr X11GLContext -> IO ())
-> Ptr X11GLContext
-> IO GValue
forall a. GType -> (GValue -> a -> IO ()) -> a -> IO GValue
B.GValue.buildGValue GType
gtype GValue -> Ptr X11GLContext -> IO ()
forall a. GObject a => GValue -> Ptr a -> IO ()
B.GValue.set_object)
        
    fromGValue :: GValue -> IO X11GLContext
fromGValue gv :: GValue
gv = do
        Ptr X11GLContext
ptr <- GValue -> IO (Ptr X11GLContext)
forall b. GObject b => GValue -> IO (Ptr b)
B.GValue.get_object GValue
gv :: IO (Ptr X11GLContext)
        (ManagedPtr X11GLContext -> X11GLContext)
-> Ptr X11GLContext -> IO X11GLContext
forall a b.
(HasCallStack, GObject a, GObject b) =>
(ManagedPtr a -> a) -> Ptr b -> IO a
B.ManagedPtr.newObject ManagedPtr X11GLContext -> X11GLContext
X11GLContext Ptr X11GLContext
ptr
        
    

-- | Type class for types which can be safely cast to `X11GLContext`, for instance with `toX11GLContext`.
class (GObject o, O.IsDescendantOf X11GLContext o) => IsX11GLContext o
instance (GObject o, O.IsDescendantOf X11GLContext o) => IsX11GLContext o

instance O.HasParentTypes X11GLContext
type instance O.ParentTypes X11GLContext = '[Gdk.GLContext.GLContext, GObject.Object.Object]

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

-- | A convenience alias for `Nothing` :: `Maybe` `X11GLContext`.
noX11GLContext :: Maybe X11GLContext
noX11GLContext :: Maybe X11GLContext
noX11GLContext = Maybe X11GLContext
forall a. Maybe a
Nothing

#if defined(ENABLE_OVERLOADING)
type family ResolveX11GLContextMethod (t :: Symbol) (o :: *) :: * where
    ResolveX11GLContextMethod "bindProperty" o = GObject.Object.ObjectBindPropertyMethodInfo
    ResolveX11GLContextMethod "bindPropertyFull" o = GObject.Object.ObjectBindPropertyFullMethodInfo
    ResolveX11GLContextMethod "forceFloating" o = GObject.Object.ObjectForceFloatingMethodInfo
    ResolveX11GLContextMethod "freezeNotify" o = GObject.Object.ObjectFreezeNotifyMethodInfo
    ResolveX11GLContextMethod "getv" o = GObject.Object.ObjectGetvMethodInfo
    ResolveX11GLContextMethod "isFloating" o = GObject.Object.ObjectIsFloatingMethodInfo
    ResolveX11GLContextMethod "isLegacy" o = Gdk.GLContext.GLContextIsLegacyMethodInfo
    ResolveX11GLContextMethod "makeCurrent" o = Gdk.GLContext.GLContextMakeCurrentMethodInfo
    ResolveX11GLContextMethod "notify" o = GObject.Object.ObjectNotifyMethodInfo
    ResolveX11GLContextMethod "notifyByPspec" o = GObject.Object.ObjectNotifyByPspecMethodInfo
    ResolveX11GLContextMethod "realize" o = Gdk.GLContext.GLContextRealizeMethodInfo
    ResolveX11GLContextMethod "ref" o = GObject.Object.ObjectRefMethodInfo
    ResolveX11GLContextMethod "refSink" o = GObject.Object.ObjectRefSinkMethodInfo
    ResolveX11GLContextMethod "runDispose" o = GObject.Object.ObjectRunDisposeMethodInfo
    ResolveX11GLContextMethod "stealData" o = GObject.Object.ObjectStealDataMethodInfo
    ResolveX11GLContextMethod "stealQdata" o = GObject.Object.ObjectStealQdataMethodInfo
    ResolveX11GLContextMethod "thawNotify" o = GObject.Object.ObjectThawNotifyMethodInfo
    ResolveX11GLContextMethod "unref" o = GObject.Object.ObjectUnrefMethodInfo
    ResolveX11GLContextMethod "watchClosure" o = GObject.Object.ObjectWatchClosureMethodInfo
    ResolveX11GLContextMethod "getData" o = GObject.Object.ObjectGetDataMethodInfo
    ResolveX11GLContextMethod "getDebugEnabled" o = Gdk.GLContext.GLContextGetDebugEnabledMethodInfo
    ResolveX11GLContextMethod "getDisplay" o = Gdk.GLContext.GLContextGetDisplayMethodInfo
    ResolveX11GLContextMethod "getForwardCompatible" o = Gdk.GLContext.GLContextGetForwardCompatibleMethodInfo
    ResolveX11GLContextMethod "getProperty" o = GObject.Object.ObjectGetPropertyMethodInfo
    ResolveX11GLContextMethod "getQdata" o = GObject.Object.ObjectGetQdataMethodInfo
    ResolveX11GLContextMethod "getRequiredVersion" o = Gdk.GLContext.GLContextGetRequiredVersionMethodInfo
    ResolveX11GLContextMethod "getSharedContext" o = Gdk.GLContext.GLContextGetSharedContextMethodInfo
    ResolveX11GLContextMethod "getUseEs" o = Gdk.GLContext.GLContextGetUseEsMethodInfo
    ResolveX11GLContextMethod "getVersion" o = Gdk.GLContext.GLContextGetVersionMethodInfo
    ResolveX11GLContextMethod "getWindow" o = Gdk.GLContext.GLContextGetWindowMethodInfo
    ResolveX11GLContextMethod "setData" o = GObject.Object.ObjectSetDataMethodInfo
    ResolveX11GLContextMethod "setDataFull" o = GObject.Object.ObjectSetDataFullMethodInfo
    ResolveX11GLContextMethod "setDebugEnabled" o = Gdk.GLContext.GLContextSetDebugEnabledMethodInfo
    ResolveX11GLContextMethod "setForwardCompatible" o = Gdk.GLContext.GLContextSetForwardCompatibleMethodInfo
    ResolveX11GLContextMethod "setProperty" o = GObject.Object.ObjectSetPropertyMethodInfo
    ResolveX11GLContextMethod "setRequiredVersion" o = Gdk.GLContext.GLContextSetRequiredVersionMethodInfo
    ResolveX11GLContextMethod "setUseEs" o = Gdk.GLContext.GLContextSetUseEsMethodInfo
    ResolveX11GLContextMethod l o = O.MethodResolutionFailed l o

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

#endif

#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList X11GLContext
type instance O.AttributeList X11GLContext = X11GLContextAttributeList
type X11GLContextAttributeList = ('[ '("display", Gdk.GLContext.GLContextDisplayPropertyInfo), '("sharedContext", Gdk.GLContext.GLContextSharedContextPropertyInfo), '("window", Gdk.GLContext.GLContextWindowPropertyInfo)] :: [(Symbol, *)])
#endif

#if defined(ENABLE_OVERLOADING)
#endif

#if defined(ENABLE_OVERLOADING)
type instance O.SignalList X11GLContext = X11GLContextSignalList
type X11GLContextSignalList = ('[ '("notify", GObject.Object.ObjectNotifySignalInfo)] :: [(Symbol, *)])

#endif