| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 class _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i
mplements WheelEvent { | 7 class _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i
mplements WheelEvent { |
| 8 _WheelEventWrappingImplementation() : super() {} | 8 _WheelEventWrappingImplementation() : super() {} |
| 9 | 9 |
| 10 static create__WheelEventWrappingImplementation() native { | 10 static create__WheelEventWrappingImplementation() native { |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); } | 50 int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); } |
| 51 static int _get__WheelEvent_wheelDeltaY(var _this) native; | 51 static int _get__WheelEvent_wheelDeltaY(var _this) native; |
| 52 | 52 |
| 53 int get x() { return _get__WheelEvent_x(this); } | 53 int get x() { return _get__WheelEvent_x(this); } |
| 54 static int _get__WheelEvent_x(var _this) native; | 54 static int _get__WheelEvent_x(var _this) native; |
| 55 | 55 |
| 56 int get y() { return _get__WheelEvent_y(this); } | 56 int get y() { return _get__WheelEvent_y(this); } |
| 57 static int _get__WheelEvent_y(var _this) native; | 57 static int _get__WheelEvent_y(var _this) native; |
| 58 | 58 |
| 59 void initWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, int scre
enX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shif
tKey, bool metaKey) { | 59 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, in
t screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, boo
l shiftKey, bool metaKey) { |
| 60 _initWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clie
ntX, clientY, ctrlKey, altKey, shiftKey, metaKey); | 60 _initWebKitWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY
, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey); |
| 61 return; | 61 return; |
| 62 } | 62 } |
| 63 static void _initWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, screenX,
screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native; | 63 static void _initWebKitWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, sc
reenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native; |
| 64 | 64 |
| 65 String get typeName() { return "WheelEvent"; } | 65 String get typeName() { return "WheelEvent"; } |
| 66 } | 66 } |
| OLD | NEW |