-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTouchEventType.hx
37 lines (28 loc) · 933 Bytes
/
TouchEventType.hx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package eventtypes;
enum abstract TouchEventType(String) to String {
/**
The touchcancel event is fired when a touch point has been disrupted in
an implementation-specific manner (for example, too many touch points
are created).
See https://developer.mozilla.org/en-US/docs/Web/Events/touchcancel
*/
var TouchCancel = 'touchcancel';
/**
The touchend event is fired when a touch point is removed from the
touch surface.
See https://developer.mozilla.org/en-US/docs/Web/Events/touchend
*/
var TouchEnd = 'touchend';
/**
The touchmove event is fired when a touch point is moved along the
touch surface.
See https://developer.mozilla.org/en-US/docs/Web/Events/touchmove
*/
var TouchMove = 'touchmove';
/**
The touchstart event is fired when a touch point is placed on the touch
surface.
See https://developer.mozilla.org/en-US/docs/Web/Events/touchstart
*/
var TouchStart = 'touchstart';
}