{-# LANGUAGE TypeApplications #-}
#if (MIN_VERSION_haskell_gi_overloading(1,0,0) && !defined(__HADDOCK_VERSION__))
#define ENABLE_OVERLOADING
#endif
module GI.Gdk.Structs.EventFocus
(
EventFocus(..) ,
newZeroEventFocus ,
#if defined(ENABLE_OVERLOADING)
ResolveEventFocusMethod ,
#endif
#if defined(ENABLE_OVERLOADING)
eventFocus_in ,
#endif
getEventFocusIn ,
setEventFocusIn ,
#if defined(ENABLE_OVERLOADING)
eventFocus_sendEvent ,
#endif
getEventFocusSendEvent ,
setEventFocusSendEvent ,
#if defined(ENABLE_OVERLOADING)
eventFocus_type ,
#endif
getEventFocusType ,
setEventFocusType ,
clearEventFocusWindow ,
#if defined(ENABLE_OVERLOADING)
eventFocus_window ,
#endif
getEventFocusWindow ,
setEventFocusWindow ,
) 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 {-# SOURCE #-} qualified GI.Gdk.Enums as Gdk.Enums
import {-# SOURCE #-} qualified GI.Gdk.Objects.Window as Gdk.Window
newtype EventFocus = EventFocus (SP.ManagedPtr EventFocus)
deriving (EventFocus -> EventFocus -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: EventFocus -> EventFocus -> Bool
$c/= :: EventFocus -> EventFocus -> Bool
== :: EventFocus -> EventFocus -> Bool
$c== :: EventFocus -> EventFocus -> Bool
Eq)
instance SP.ManagedPtrNewtype EventFocus where
toManagedPtr :: EventFocus -> ManagedPtr EventFocus
toManagedPtr (EventFocus ManagedPtr EventFocus
p) = ManagedPtr EventFocus
p
instance BoxedPtr EventFocus where
boxedPtrCopy :: EventFocus -> IO EventFocus
boxedPtrCopy = \EventFocus
p -> forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
B.ManagedPtr.withManagedPtr EventFocus
p (forall a. (HasCallStack, CallocPtr a) => Int -> Ptr a -> IO (Ptr a)
copyBytes Int
12 forall (m :: * -> *) a b c.
Monad m =>
(a -> m b) -> (b -> m c) -> a -> m c
>=> forall a.
(HasCallStack, BoxedPtr a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
B.ManagedPtr.wrapPtr ManagedPtr EventFocus -> EventFocus
EventFocus)
boxedPtrFree :: EventFocus -> IO ()
boxedPtrFree = \EventFocus
x -> forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
SP.withManagedPtr EventFocus
x forall a. Ptr a -> IO ()
SP.freeMem
instance CallocPtr EventFocus where
boxedPtrCalloc :: IO (Ptr EventFocus)
boxedPtrCalloc = forall a. Int -> IO (Ptr a)
callocBytes Int
12
newZeroEventFocus :: MonadIO m => m EventFocus
newZeroEventFocus :: forall (m :: * -> *). MonadIO m => m EventFocus
newZeroEventFocus = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a. CallocPtr a => IO (Ptr a)
boxedPtrCalloc forall (m :: * -> *) a b. Monad m => m a -> (a -> m b) -> m b
>>= forall a.
(HasCallStack, BoxedPtr a) =>
(ManagedPtr a -> a) -> Ptr a -> IO a
wrapPtr ManagedPtr EventFocus -> EventFocus
EventFocus
instance tag ~ 'AttrSet => Constructible EventFocus tag where
new :: forall (m :: * -> *).
MonadIO m =>
(ManagedPtr EventFocus -> EventFocus)
-> [AttrOp EventFocus tag] -> m EventFocus
new ManagedPtr EventFocus -> EventFocus
_ [AttrOp EventFocus tag]
attrs = do
EventFocus
o <- forall (m :: * -> *). MonadIO m => m EventFocus
newZeroEventFocus
forall o (m :: * -> *).
MonadIO m =>
o -> [AttrOp o 'AttrSet] -> m ()
GI.Attributes.set EventFocus
o [AttrOp EventFocus tag]
attrs
forall (m :: * -> *) a. Monad m => a -> m a
return EventFocus
o
getEventFocusType :: MonadIO m => EventFocus -> m Gdk.Enums.EventType
getEventFocusType :: forall (m :: * -> *). MonadIO m => EventFocus -> m EventType
getEventFocusType EventFocus
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
CInt
val <- forall a. Storable a => Ptr a -> IO a
peek (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0) :: IO CInt
let val' :: EventType
val' = (forall a. Enum a => Int -> a
toEnum forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall a b. (Integral a, Num b) => a -> b
fromIntegral) CInt
val
forall (m :: * -> *) a. Monad m => a -> m a
return EventType
val'
setEventFocusType :: MonadIO m => EventFocus -> Gdk.Enums.EventType -> m ()
setEventFocusType :: forall (m :: * -> *). MonadIO m => EventFocus -> EventType -> m ()
setEventFocusType EventFocus
s EventType
val = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
let val' :: CInt
val' = (forall a b. (Integral a, Num b) => a -> b
fromIntegral forall b c a. (b -> c) -> (a -> b) -> a -> c
. forall a. Enum a => a -> Int
fromEnum) EventType
val
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
0) (CInt
val' :: CInt)
#if defined(ENABLE_OVERLOADING)
data EventFocusTypeFieldInfo
instance AttrInfo EventFocusTypeFieldInfo where
type AttrBaseTypeConstraint EventFocusTypeFieldInfo = (~) EventFocus
type AttrAllowedOps EventFocusTypeFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint EventFocusTypeFieldInfo = (~) Gdk.Enums.EventType
type AttrTransferTypeConstraint EventFocusTypeFieldInfo = (~)Gdk.Enums.EventType
type AttrTransferType EventFocusTypeFieldInfo = Gdk.Enums.EventType
type AttrGetType EventFocusTypeFieldInfo = Gdk.Enums.EventType
type AttrLabel EventFocusTypeFieldInfo = "type"
type AttrOrigin EventFocusTypeFieldInfo = EventFocus
attrGet = getEventFocusType
attrSet = setEventFocusType
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gdk.Structs.EventFocus.type"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gdk-3.0.26/docs/GI-Gdk-Structs-EventFocus.html#g:attr:type"
})
eventFocus_type :: AttrLabelProxy "type"
eventFocus_type = AttrLabelProxy
#endif
getEventFocusWindow :: MonadIO m => EventFocus -> m (Maybe Gdk.Window.Window)
getEventFocusWindow :: forall (m :: * -> *). MonadIO m => EventFocus -> m (Maybe Window)
getEventFocusWindow EventFocus
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
Ptr Window
val <- forall a. Storable a => Ptr a -> IO a
peek (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) :: IO (Ptr Gdk.Window.Window)
Maybe Window
result <- forall a b. Ptr a -> (Ptr a -> IO b) -> IO (Maybe b)
SP.convertIfNonNull Ptr Window
val forall a b. (a -> b) -> a -> b
$ \Ptr Window
val' -> do
Window
val'' <- (forall a b.
(HasCallStack, GObject a, GObject b) =>
(ManagedPtr a -> a) -> Ptr b -> IO a
newObject ManagedPtr Window -> Window
Gdk.Window.Window) Ptr Window
val'
forall (m :: * -> *) a. Monad m => a -> m a
return Window
val''
forall (m :: * -> *) a. Monad m => a -> m a
return Maybe Window
result
setEventFocusWindow :: MonadIO m => EventFocus -> Ptr Gdk.Window.Window -> m ()
setEventFocusWindow :: forall (m :: * -> *). MonadIO m => EventFocus -> Ptr Window -> m ()
setEventFocusWindow EventFocus
s Ptr Window
val = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) (Ptr Window
val :: Ptr Gdk.Window.Window)
clearEventFocusWindow :: MonadIO m => EventFocus -> m ()
clearEventFocusWindow :: forall (m :: * -> *). MonadIO m => EventFocus -> m ()
clearEventFocusWindow EventFocus
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
4) (forall a. Ptr a
FP.nullPtr :: Ptr Gdk.Window.Window)
#if defined(ENABLE_OVERLOADING)
data EventFocusWindowFieldInfo
instance AttrInfo EventFocusWindowFieldInfo where
type AttrBaseTypeConstraint EventFocusWindowFieldInfo = (~) EventFocus
type AttrAllowedOps EventFocusWindowFieldInfo = '[ 'AttrSet, 'AttrGet, 'AttrClear]
type AttrSetTypeConstraint EventFocusWindowFieldInfo = (~) (Ptr Gdk.Window.Window)
type AttrTransferTypeConstraint EventFocusWindowFieldInfo = (~)(Ptr Gdk.Window.Window)
type AttrTransferType EventFocusWindowFieldInfo = (Ptr Gdk.Window.Window)
type AttrGetType EventFocusWindowFieldInfo = Maybe Gdk.Window.Window
type AttrLabel EventFocusWindowFieldInfo = "window"
type AttrOrigin EventFocusWindowFieldInfo = EventFocus
attrGet = getEventFocusWindow
attrSet = setEventFocusWindow
attrConstruct = undefined
attrClear = clearEventFocusWindow
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gdk.Structs.EventFocus.window"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gdk-3.0.26/docs/GI-Gdk-Structs-EventFocus.html#g:attr:window"
})
eventFocus_window :: AttrLabelProxy "window"
eventFocus_window = AttrLabelProxy
#endif
getEventFocusSendEvent :: MonadIO m => EventFocus -> m Int8
getEventFocusSendEvent :: forall (m :: * -> *). MonadIO m => EventFocus -> m Int8
getEventFocusSendEvent EventFocus
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
Int8
val <- forall a. Storable a => Ptr a -> IO a
peek (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8) :: IO Int8
forall (m :: * -> *) a. Monad m => a -> m a
return Int8
val
setEventFocusSendEvent :: MonadIO m => EventFocus -> Int8 -> m ()
setEventFocusSendEvent :: forall (m :: * -> *). MonadIO m => EventFocus -> Int8 -> m ()
setEventFocusSendEvent EventFocus
s Int8
val = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
8) (Int8
val :: Int8)
#if defined(ENABLE_OVERLOADING)
data EventFocusSendEventFieldInfo
instance AttrInfo EventFocusSendEventFieldInfo where
type AttrBaseTypeConstraint EventFocusSendEventFieldInfo = (~) EventFocus
type AttrAllowedOps EventFocusSendEventFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint EventFocusSendEventFieldInfo = (~) Int8
type AttrTransferTypeConstraint EventFocusSendEventFieldInfo = (~)Int8
type AttrTransferType EventFocusSendEventFieldInfo = Int8
type AttrGetType EventFocusSendEventFieldInfo = Int8
type AttrLabel EventFocusSendEventFieldInfo = "send_event"
type AttrOrigin EventFocusSendEventFieldInfo = EventFocus
attrGet = getEventFocusSendEvent
attrSet = setEventFocusSendEvent
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gdk.Structs.EventFocus.sendEvent"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gdk-3.0.26/docs/GI-Gdk-Structs-EventFocus.html#g:attr:sendEvent"
})
eventFocus_sendEvent :: AttrLabelProxy "sendEvent"
eventFocus_sendEvent = AttrLabelProxy
#endif
getEventFocusIn :: MonadIO m => EventFocus -> m Int16
getEventFocusIn :: forall (m :: * -> *). MonadIO m => EventFocus -> m Int16
getEventFocusIn EventFocus
s = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
Int16
val <- forall a. Storable a => Ptr a -> IO a
peek (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
10) :: IO Int16
forall (m :: * -> *) a. Monad m => a -> m a
return Int16
val
setEventFocusIn :: MonadIO m => EventFocus -> Int16 -> m ()
setEventFocusIn :: forall (m :: * -> *). MonadIO m => EventFocus -> Int16 -> m ()
setEventFocusIn EventFocus
s Int16
val = forall (m :: * -> *) a. MonadIO m => IO a -> m a
liftIO forall a b. (a -> b) -> a -> b
$ forall a c.
(HasCallStack, ManagedPtrNewtype a) =>
a -> (Ptr a -> IO c) -> IO c
withManagedPtr EventFocus
s forall a b. (a -> b) -> a -> b
$ \Ptr EventFocus
ptr -> do
forall a. Storable a => Ptr a -> a -> IO ()
poke (Ptr EventFocus
ptr forall a b. Ptr a -> Int -> Ptr b
`plusPtr` Int
10) (Int16
val :: Int16)
#if defined(ENABLE_OVERLOADING)
data EventFocusInFieldInfo
instance AttrInfo EventFocusInFieldInfo where
type AttrBaseTypeConstraint EventFocusInFieldInfo = (~) EventFocus
type AttrAllowedOps EventFocusInFieldInfo = '[ 'AttrSet, 'AttrGet]
type AttrSetTypeConstraint EventFocusInFieldInfo = (~) Int16
type AttrTransferTypeConstraint EventFocusInFieldInfo = (~)Int16
type AttrTransferType EventFocusInFieldInfo = Int16
type AttrGetType EventFocusInFieldInfo = Int16
type AttrLabel EventFocusInFieldInfo = "in"
type AttrOrigin EventFocusInFieldInfo = EventFocus
attrGet = getEventFocusIn
attrSet = setEventFocusIn
attrConstruct = undefined
attrClear = undefined
attrTransfer _ v = do
return v
dbgAttrInfo = P.Just (O.ResolvedSymbolInfo {
O.resolvedSymbolName = "GI.Gdk.Structs.EventFocus.in"
, O.resolvedSymbolURL = "https://hackage.haskell.org/package/gi-gdk-3.0.26/docs/GI-Gdk-Structs-EventFocus.html#g:attr:in"
})
eventFocus_in :: AttrLabelProxy "in"
eventFocus_in = AttrLabelProxy
#endif
#if defined(ENABLE_OVERLOADING)
instance O.HasAttributeList EventFocus
type instance O.AttributeList EventFocus = EventFocusAttributeList
type EventFocusAttributeList = ('[ '("type", EventFocusTypeFieldInfo), '("window", EventFocusWindowFieldInfo), '("sendEvent", EventFocusSendEventFieldInfo), '("in", EventFocusInFieldInfo)] :: [(Symbol, DK.Type)])
#endif
#if defined(ENABLE_OVERLOADING)
type family ResolveEventFocusMethod (t :: Symbol) (o :: DK.Type) :: DK.Type where
ResolveEventFocusMethod l o = O.MethodResolutionFailed l o
instance (info ~ ResolveEventFocusMethod t EventFocus, O.OverloadedMethod info EventFocus p) => OL.IsLabel t (EventFocus -> 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 ~ ResolveEventFocusMethod t EventFocus, O.OverloadedMethod info EventFocus p, R.HasField t EventFocus p) => R.HasField t EventFocus p where
getField = O.overloadedMethod @info
#endif
instance (info ~ ResolveEventFocusMethod t EventFocus, O.OverloadedMethodInfo info EventFocus) => OL.IsLabel t (O.MethodProxy info EventFocus) where
#if MIN_VERSION_base(4,10,0)
fromLabel = O.MethodProxy
#else
fromLabel _ = O.MethodProxy
#endif
#endif