Function
ClutterEventFilterFunc
Declaration
gboolean
(* ClutterEventFilterFunc) (
const ClutterEvent* event,
ClutterActor* event_actor,
gpointer user_data
)
Description [src]
A function pointer type used by event filters that are added with
clutter_event_add_filter()
.
Parameters
event
-
Type:
ClutterEvent
The event that is going to be emitted.
The data is owned by the caller of the function. event_actor
-
Type:
ClutterActor
The current device actor of the events device.
The data is owned by the caller of the function. user_data
-
Type:
gpointer
The data pointer passed to
clutter_event_add_filter()
.The argument can be NULL
.The data is owned by the caller of the function.