2aad56b949
We'll need the additional context of which actor the event will be emitted to in mutters event filter (see next commit), so pass that target actor to the event filters that are installed. Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2321>
44 lines
1.6 KiB
C
44 lines
1.6 KiB
C
#ifndef __CLUTTER_EVENT_PRIVATE_H__
|
|
#define __CLUTTER_EVENT_PRIVATE_H__
|
|
|
|
#include <clutter/clutter-event.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
CLUTTER_EXPORT
|
|
void _clutter_event_set_pointer_emulated (ClutterEvent *event,
|
|
gboolean is_emulated);
|
|
|
|
/* Reinjecting queued events for processing */
|
|
CLUTTER_EXPORT
|
|
void _clutter_process_event (ClutterEvent *event);
|
|
|
|
CLUTTER_EXPORT
|
|
gboolean _clutter_event_process_filters (ClutterEvent *event,
|
|
ClutterActor *event_actor);
|
|
|
|
/* clears the event queue inside the main context */
|
|
void _clutter_clear_events_queue (void);
|
|
|
|
CLUTTER_EXPORT
|
|
void _clutter_event_set_platform_data (ClutterEvent *event,
|
|
gpointer data);
|
|
CLUTTER_EXPORT
|
|
gpointer _clutter_event_get_platform_data (const ClutterEvent *event);
|
|
|
|
CLUTTER_EXPORT
|
|
void _clutter_event_set_state_full (ClutterEvent *event,
|
|
ClutterModifierType button_state,
|
|
ClutterModifierType base_state,
|
|
ClutterModifierType latched_state,
|
|
ClutterModifierType locked_state,
|
|
ClutterModifierType effective_state);
|
|
|
|
CLUTTER_EXPORT
|
|
void _clutter_event_push (const ClutterEvent *event,
|
|
gboolean do_copy);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __CLUTTER_EVENT_PRIVATE_H__ */
|