OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (C) 2006, 2007, 2010 Apple Inc. All rights reserved. |
| 3 * Copyright (C) 2006 Samuel Weinig <sam.weinig@gmail.com> |
| 4 * |
| 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. |
| 9 * |
| 10 * This library is distributed in the hope that it will be useful, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. |
| 14 * |
| 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 |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. |
| 19 */ |
| 20 |
| 21 module events { |
| 22 |
| 23 // Based off of proposed IDL interface for WheelEvent: |
| 24 interface WheelEvent : UIEvent { |
| 25 readonly attribute long screenX; |
| 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; |
| 34 readonly attribute long wheelDeltaX; |
| 35 readonly attribute long wheelDeltaY; |
| 36 |
| 37 // WebKit Extensions |
| 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; |
| 43 |
| 44 #if defined(LANGUAGE_OBJECTIVE_C) && LANGUAGE_OBJECTIVE_C |
| 45 readonly attribute boolean isHorizontal; |
| 46 #endif /* defined(LANGUAGE_OBJECTIVE_C) */ |
| 47 |
| 48 #if !defined(LANGUAGE_JAVASCRIPT) || !LANGUAGE_JAVASCRIPT |
| 49 void initWheelEvent(in [Optional=DefaultIsUndefined] long wheelDeltaX, |
| 50 in [Optional=DefaultIsUndefined] long wheelDeltaY, |
| 51 in [Optional=DefaultIsUndefined] DOMWindow view, |
| 52 in [Optional=DefaultIsUndefined] long screenX, |
| 53 in [Optional=DefaultIsUndefined] long screenY, |
| 54 in [Optional=DefaultIsUndefined] long clientX, |
| 55 in [Optional=DefaultIsUndefined] long clientY, |
| 56 in [Optional=DefaultIsUndefined] boolean ctrlKey, |
| 57 in [Optional=DefaultIsUndefined] boolean altKey, |
| 58 in [Optional=DefaultIsUndefined] boolean shiftKey, |
| 59 in [Optional=DefaultIsUndefined] boolean metaKey); |
| 60 #endif /* !defined(LANGUAGE_JAVASCRIPT) */ |
| 61 |
| 62 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT |
| 63 void initWebKitWheelEvent(in [Optional=DefaultIsUndefined] long wheelDel
taX, |
| 64 in [Optional=DefaultIsUndefined] long wheelDel
taY, |
| 65 in [Optional=DefaultIsUndefined] DOMWindow vie
w, |
| 66 in [Optional=DefaultIsUndefined] long screenX, |
| 67 in [Optional=DefaultIsUndefined] long screenY, |
| 68 in [Optional=DefaultIsUndefined] long clientX, |
| 69 in [Optional=DefaultIsUndefined] long clientY, |
| 70 in [Optional=DefaultIsUndefined] boolean ctrlK
ey, |
| 71 in [Optional=DefaultIsUndefined] boolean altKe
y, |
| 72 in [Optional=DefaultIsUndefined] boolean shift
Key, |
| 73 in [Optional=DefaultIsUndefined] boolean metaK
ey); |
| 74 #endif /* defined(LANGUAGE_JAVASCRIPT) */ |
| 75 }; |
| 76 } |
OLD | NEW |