Object Hierarchy
GBoxed
╰── HippoEvent
Includes
#include <hippo/hippo-event.h>
Functions
hippo_event_get_type ()
GType
hippo_event_get_type (void
);
Types and Values
HIPPO_TYPE_EVENT
#define HIPPO_TYPE_EVENT (hippo_event_get_type())
struct HippoEvent
struct HippoEvent {
HippoEventType type;
int x;
int y;
union {
struct {
HippoMotionDetail detail;
} motion;
struct {
int button;
int count;
/* we pass these through for gtk_window_begin_resize_drag() */
int x11_x_root;
int x11_y_root;
guint32 x11_time;
guint modifiers;
} button;
struct {
HippoKey key;
gunichar character; /* 0 if no translation */
guint modifiers;
} key;
struct {
HippoScrollDirection direction;
} scroll;
} u;
};