| Index: sky/engine/core/events/GestureEvent.idl
|
| diff --git a/sky/engine/core/events/GestureEvent.idl b/sky/engine/core/events/GestureEvent.idl
|
| index 7d44358eaf046eb5996f66dce77599a3d3c253a5..37b9ed5ec1bab25437a474d733bc63b6ef31994f 100644
|
| --- a/sky/engine/core/events/GestureEvent.idl
|
| +++ b/sky/engine/core/events/GestureEvent.idl
|
| @@ -4,18 +4,11 @@
|
|
|
| [
|
| EventConstructor,
|
| -] interface GestureEvent : UIEvent {
|
| - [InitializedByEventConstructor] readonly attribute long screenX;
|
| - [InitializedByEventConstructor] readonly attribute long screenY;
|
| - [InitializedByEventConstructor] readonly attribute long clientX;
|
| - [InitializedByEventConstructor] readonly attribute long clientY;
|
| - [InitializedByEventConstructor] readonly attribute boolean ctrlKey;
|
| - [InitializedByEventConstructor] readonly attribute boolean shiftKey;
|
| - [InitializedByEventConstructor] readonly attribute boolean altKey;
|
| - [InitializedByEventConstructor] readonly attribute boolean metaKey;
|
| -
|
| - [InitializedByEventConstructor] readonly attribute double deltaX;
|
| - [InitializedByEventConstructor] readonly attribute double deltaY;
|
| +] interface GestureEvent : Event {
|
| + [InitializedByEventConstructor] readonly attribute double x;
|
| + [InitializedByEventConstructor] readonly attribute double y;
|
| + [InitializedByEventConstructor] readonly attribute double dx;
|
| + [InitializedByEventConstructor] readonly attribute double dy;
|
| [InitializedByEventConstructor] readonly attribute double velocityX;
|
| [InitializedByEventConstructor] readonly attribute double velocityY;
|
| };
|
|
|