| Index: client/dom/generated/src/frog/WheelEvent.dart
|
| diff --git a/client/dom/generated/src/frog/WheelEvent.dart b/client/dom/generated/src/frog/WheelEvent.dart
|
| index 984ed6a36de09ffcce9a27efe34a40487a94ad43..3a70880d800e2aa39c04061bc1126e5e7d7a5c35 100644
|
| --- a/client/dom/generated/src/frog/WheelEvent.dart
|
| +++ b/client/dom/generated/src/frog/WheelEvent.dart
|
| @@ -1,37 +1,37 @@
|
|
|
| class WheelEvent extends UIEvent native "*WheelEvent" {
|
|
|
| - bool altKey;
|
| + bool get altKey() native "return this.altKey;";
|
|
|
| - int clientX;
|
| + int get clientX() native "return this.clientX;";
|
|
|
| - int clientY;
|
| + int get clientY() native "return this.clientY;";
|
|
|
| - bool ctrlKey;
|
| + bool get ctrlKey() native "return this.ctrlKey;";
|
|
|
| - bool metaKey;
|
| + bool get metaKey() native "return this.metaKey;";
|
|
|
| - int offsetX;
|
| + int get offsetX() native "return this.offsetX;";
|
|
|
| - int offsetY;
|
| + int get offsetY() native "return this.offsetY;";
|
|
|
| - int screenX;
|
| + int get screenX() native "return this.screenX;";
|
|
|
| - int screenY;
|
| + int get screenY() native "return this.screenY;";
|
|
|
| - bool shiftKey;
|
| + bool get shiftKey() native "return this.shiftKey;";
|
|
|
| - bool webkitDirectionInvertedFromDevice;
|
| + bool get webkitDirectionInvertedFromDevice() native "return this.webkitDirectionInvertedFromDevice;";
|
|
|
| - int wheelDelta;
|
| + int get wheelDelta() native "return this.wheelDelta;";
|
|
|
| - int wheelDeltaX;
|
| + int get wheelDeltaX() native "return this.wheelDeltaX;";
|
|
|
| - int wheelDeltaY;
|
| + int get wheelDeltaY() native "return this.wheelDeltaY;";
|
|
|
| - int x;
|
| + int get x() native "return this.x;";
|
|
|
| - int y;
|
| + int get y() native "return this.y;";
|
|
|
| void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native;
|
| }
|
|
|