Event.handlerSet

Sets the function to call to handle all events from GDK.

Note that GTK+ uses this to install its own event handler, so it is usually not useful for GTK+ applications. (Although an application can call this function then call Main.doEvent to pass events to GTK+.)

class Event
static
void
handlerSet

Parameters

func GdkEventFunc

the function to call to handle events from GDK.

data void*

user data to pass to the function.

notify GDestroyNotify

the function to call when the handler function is removed, i.e. when Event.handlerSet is called with another event handler.