X11-1.6.1.2: A binding to the X11 graphics library

Copyright(c) Alastair Reid, 1999-2003
LicenseBSD-style (see the file libraries/base/LICENSE)
Maintainerlibraries@haskell.org
Stabilityprovisional
Portabilityportable
Safe HaskellNone
LanguageHaskell98

Graphics.X11.Xlib.Event

Description

A collection of FFI declarations for interfacing with Xlib Events.

Synopsis

Documentation

waitForEvent :: Display -> Word32 -> IO Bool Source

Reads an event with a timeout (in microseconds). Returns True if timeout occurs.

gettimeofday_in_milliseconds :: IO Integer Source

This function is somewhat compatible with Win32's TimeGetTime()

flush :: Display -> IO () Source

interface to the X11 library function XFlush().

sync :: Display -> Bool -> IO () Source

interface to the X11 library function XSync().

pending :: Display -> IO CInt Source

interface to the X11 library function XPending().

eventsQueued :: Display -> QueuedMode -> IO CInt Source

interface to the X11 library function XEventsQueued().

nextEvent :: Display -> XEventPtr -> IO () Source

interface to the X11 library function XNextEvent().

allowEvents :: Display -> AllowEvents -> Time -> IO () Source

interface to the X11 library function XAllowEvents().

selectInput :: Display -> Window -> EventMask -> IO () Source

interface to the X11 library function XSelectInput().

sendEvent :: Display -> Window -> Bool -> EventMask -> XEventPtr -> IO () Source

interface to the X11 library function XSendEvent().

windowEvent :: Display -> Window -> EventMask -> XEventPtr -> IO () Source

interface to the X11 library function XWindowEvent().

checkWindowEvent :: Display -> Window -> EventMask -> XEventPtr -> IO Bool Source

interface to the X11 library function XCheckWindowEvent().

maskEvent :: Display -> EventMask -> XEventPtr -> IO () Source

interface to the X11 library function XMaskEvent().

checkMaskEvent :: Display -> EventMask -> XEventPtr -> IO Bool Source

interface to the X11 library function XCheckMaskEvent().

checkTypedEvent :: Display -> EventType -> XEventPtr -> IO Bool Source

interface to the X11 library function XCheckTypedEvent().

checkTypedWindowEvent :: Display -> Window -> EventType -> XEventPtr -> IO Bool Source

interface to the X11 library function XCheckTypedWindowEvent().

putBackEvent :: Display -> XEventPtr -> IO () Source

interface to the X11 library function XPutBackEvent().

peekEvent :: Display -> XEventPtr -> IO () Source

interface to the X11 library function XPeekEvent().

refreshKeyboardMapping :: XMappingEvent -> IO () Source

interface to the X11 library function XRefreshKeyboardMapping().