Function
WPEPlatformEventpointer_move_new
Declaration [src]
WPEEvent*
wpe_event_pointer_move_new (
WPEEventType type,
WPEView* view,
WPEInputSource source,
guint32 time,
WPEModifiers modifiers,
double x,
double y,
double delta_x,
double delta_y
)
Parameters
type
-
Type:
WPEEventType
A
WPEEventType
(WPE_EVENT_POINTER_MOVE
,WPE_EVENT_POINTER_ENTER
orWPE_EVENT_POINTER_LEAVE
) view
-
Type:
WPEView
A
WPEView
.The data is owned by the caller of the function. source
-
Type:
WPEInputSource
A
WPEInputSource
. time
-
Type:
guint32
The event timestamp.
modifiers
-
Type:
WPEModifiers
A
WPEModifiers
. x
-
Type:
double
The x coordinate of the pointer.
y
-
Type:
double
The y coordinate of the pointer.
delta_x
-
Type:
double
The x coordainte movement delta.
delta_y
-
Type:
double
The y coordinate movement delta.
Return value
Type: WPEEvent
A new allocated WPEEvent
.
The caller of the function takes ownership of the data, and is responsible for freeing it. |