| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> | 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 module events { | 21 module events { |
| 22 | 22 |
| 23 // Based off of proposed IDL interface for WheelEvent: | 23 // Based off http://dev.w3.org/2006/webapi/DOM-Level-3-Events/html/DOM3-Even
ts.html#events-wheelevents |
| 24 interface WheelEvent : UIEvent { | 24 interface WheelEvent : MouseEvent |
| 25 readonly attribute long screenX; | 25 { |
| 26 readonly attribute long screenY; | |
| 27 readonly attribute long clientX; | |
| 28 readonly attribute long clientY; | |
| 29 readonly attribute boolean ctrlKey; | |
| 30 readonly attribute boolean shiftKey; | |
| 31 readonly attribute boolean altKey; | |
| 32 readonly attribute boolean metaKey; | |
| 33 readonly attribute long wheelDelta; | 26 readonly attribute long wheelDelta; |
| 34 readonly attribute long wheelDeltaX; | 27 readonly attribute long wheelDeltaX; |
| 35 readonly attribute long wheelDeltaY; | 28 readonly attribute long wheelDeltaY; |
| 36 | 29 |
| 37 // WebKit Extensions | 30 // WebKit Extension |
| 38 readonly attribute long offsetX; | |
| 39 readonly attribute long offsetY; | |
| 40 readonly attribute long x; | |
| 41 readonly attribute long y; | |
| 42 readonly attribute boolean webkitDirectionInvertedFromDevice; | 31 readonly attribute boolean webkitDirectionInvertedFromDevice; |
| 43 | 32 |
| 44 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C | 33 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| 45 readonly attribute boolean isHorizontal; | 34 readonly attribute boolean isHorizontal; |
| 46 #endif /* defined(LANGUAGE_OBJECTIVE_C) */ | 35 #endif /* defined(LANGUAGE_OBJECTIVE_C) */ |
| 47 | 36 |
| 48 #if !defined(LANGUAGE_JAVASCRIPT) || !LANGUAGE_JAVASCRIPT | 37 #if !defined(LANGUAGE_JAVASCRIPT) || !LANGUAGE_JAVASCRIPT |
| 49 void initWheelEvent(in [Optional=DefaultIsUndefined] long wheelDeltaX, | 38 void initWheelEvent(in [Optional=DefaultIsUndefined] long wheelDeltaX, |
| 50 in [Optional=DefaultIsUndefined] long wheelDeltaY, | 39 in [Optional=DefaultIsUndefined] long wheelDeltaY, |
| 51 in [Optional=DefaultIsUndefined] DOMWindow view, | 40 in [Optional=DefaultIsUndefined] DOMWindow view, |
| (...skipping 15 matching lines...) Expand all Loading... |
| 67 in [Optional=DefaultIsUndefined] long screenY, | 56 in [Optional=DefaultIsUndefined] long screenY, |
| 68 in [Optional=DefaultIsUndefined] long clientX, | 57 in [Optional=DefaultIsUndefined] long clientX, |
| 69 in [Optional=DefaultIsUndefined] long clientY, | 58 in [Optional=DefaultIsUndefined] long clientY, |
| 70 in [Optional=DefaultIsUndefined] boolean ctrlK
ey, | 59 in [Optional=DefaultIsUndefined] boolean ctrlK
ey, |
| 71 in [Optional=DefaultIsUndefined] boolean altKe
y, | 60 in [Optional=DefaultIsUndefined] boolean altKe
y, |
| 72 in [Optional=DefaultIsUndefined] boolean shift
Key, | 61 in [Optional=DefaultIsUndefined] boolean shift
Key, |
| 73 in [Optional=DefaultIsUndefined] boolean metaK
ey); | 62 in [Optional=DefaultIsUndefined] boolean metaK
ey); |
| 74 #endif /* defined(LANGUAGE_JAVASCRIPT) */ | 63 #endif /* defined(LANGUAGE_JAVASCRIPT) */ |
| 75 }; | 64 }; |
| 76 } | 65 } |
| OLD | NEW |