OLD | NEW |
1 | 1 |
2 class TouchEventJs extends UIEventJs implements TouchEvent native "*TouchEvent"
{ | 2 class _TouchEventJs extends _UIEventJs implements TouchEvent native "*TouchEvent
" { |
3 | 3 |
4 bool get altKey() native "return this.altKey;"; | 4 bool get altKey() native "return this.altKey;"; |
5 | 5 |
6 TouchListJs get changedTouches() native "return this.changedTouches;"; | 6 _TouchListJs get changedTouches() native "return this.changedTouches;"; |
7 | 7 |
8 bool get ctrlKey() native "return this.ctrlKey;"; | 8 bool get ctrlKey() native "return this.ctrlKey;"; |
9 | 9 |
10 bool get metaKey() native "return this.metaKey;"; | 10 bool get metaKey() native "return this.metaKey;"; |
11 | 11 |
12 bool get shiftKey() native "return this.shiftKey;"; | 12 bool get shiftKey() native "return this.shiftKey;"; |
13 | 13 |
14 TouchListJs get targetTouches() native "return this.targetTouches;"; | 14 _TouchListJs get targetTouches() native "return this.targetTouches;"; |
15 | 15 |
16 TouchListJs get touches() native "return this.touches;"; | 16 _TouchListJs get touches() native "return this.touches;"; |
17 | 17 |
18 void initTouchEvent(TouchListJs touches, TouchListJs targetTouches, TouchListJ
s changedTouches, String type, DOMWindowJs view, int screenX, int screenY, int c
lientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) nat
ive; | 18 void initTouchEvent(_TouchListJs touches, _TouchListJs targetTouches, _TouchLi
stJs changedTouches, String type, _DOMWindowJs view, int screenX, int screenY, i
nt clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey)
native; |
19 } | 19 } |
OLD | NEW |