jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2011 Apple Inc. All rights reserved. |
| 3 | * |
| 4 | * Redistribution and use in source and binary forms, with or without |
| 5 | * modification, are permitted provided that the following conditions |
| 6 | * are met: |
| 7 | * 1. Redistributions of source code must retain the above copyright |
| 8 | * notice, this list of conditions and the following disclaimer. |
| 9 | * 2. Redistributions in binary form must reproduce the above copyright |
| 10 | * notice, this list of conditions and the following disclaimer in the |
| 11 | * documentation and/or other materials provided with the distribution. |
| 12 | * |
| 13 | * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' |
| 14 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
| 15 | * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| 16 | * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS |
| 17 | * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 18 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 19 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 20 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 21 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 22 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF |
| 23 | * THE POSSIBILITY OF SUCH DAMAGE. |
| 24 | */ |
| 25 | |
| 26 | #ifndef NativeWebWheelEvent_h |
| 27 | #define NativeWebWheelEvent_h |
| 28 | |
| 29 | #include "WebEvent.h" |
| 30 | |
| 31 | #if PLATFORM(MAC) |
| 32 | #include <wtf/RetainPtr.h> |
| 33 | OBJC_CLASS NSView; |
| 34 | #elif PLATFORM(QT) |
commit-queue@webkit.org | 6511454 | 2011-09-30 11:58:30 +0000 | [diff] [blame] | 35 | #include <qevent.h> |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 36 | #elif PLATFORM(GTK) |
carlosgc@webkit.org | 2e0ad7d | 2011-05-05 16:01:55 +0000 | [diff] [blame] | 37 | #include <GOwnPtrGtk.h> |
| 38 | typedef union _GdkEvent GdkEvent; |
commit-queue@webkit.org | e902034 | 2011-06-19 03:44:03 +0000 | [diff] [blame] | 39 | #elif PLATFORM(EFL) |
| 40 | #include <Evas.h> |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 41 | #endif |
| 42 | |
| 43 | namespace WebKit { |
| 44 | |
| 45 | class NativeWebWheelEvent : public WebWheelEvent { |
| 46 | public: |
| 47 | #if PLATFORM(MAC) |
| 48 | NativeWebWheelEvent(NSEvent *, NSView *); |
| 49 | #elif PLATFORM(WIN) |
| 50 | NativeWebWheelEvent(HWND, UINT message, WPARAM, LPARAM); |
| 51 | #elif PLATFORM(QT) |
commit-queue@webkit.org | 6511454 | 2011-09-30 11:58:30 +0000 | [diff] [blame] | 52 | explicit NativeWebWheelEvent(QWheelEvent*); |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 53 | #elif PLATFORM(GTK) |
carlosgc@webkit.org | 2e0ad7d | 2011-05-05 16:01:55 +0000 | [diff] [blame] | 54 | NativeWebWheelEvent(const NativeWebWheelEvent&); |
| 55 | NativeWebWheelEvent(GdkEvent*); |
commit-queue@webkit.org | e902034 | 2011-06-19 03:44:03 +0000 | [diff] [blame] | 56 | #elif PLATFORM(EFL) |
| 57 | NativeWebWheelEvent(const Evas_Event_Mouse_Wheel*, const Evas_Point*); |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 58 | #endif |
| 59 | |
| 60 | #if PLATFORM(MAC) |
| 61 | NSEvent* nativeEvent() const { return m_nativeEvent.get(); } |
| 62 | #elif PLATFORM(WIN) |
| 63 | const MSG* nativeEvent() const { return &m_nativeEvent; } |
| 64 | #elif PLATFORM(QT) |
commit-queue@webkit.org | 6511454 | 2011-09-30 11:58:30 +0000 | [diff] [blame] | 65 | const QWheelEvent* nativeEvent() const { return m_nativeEvent; } |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 66 | #elif PLATFORM(GTK) |
carlosgc@webkit.org | 2e0ad7d | 2011-05-05 16:01:55 +0000 | [diff] [blame] | 67 | const GdkEvent* nativeEvent() const { return m_nativeEvent.get(); } |
commit-queue@webkit.org | e902034 | 2011-06-19 03:44:03 +0000 | [diff] [blame] | 68 | #elif PLATFORM(EFL) |
| 69 | const Evas_Event_Mouse_Wheel* nativeEvent() const { return m_nativeEvent; } |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 70 | #endif |
| 71 | |
| 72 | private: |
| 73 | #if PLATFORM(MAC) |
| 74 | RetainPtr<NSEvent> m_nativeEvent; |
| 75 | #elif PLATFORM(WIN) |
| 76 | MSG m_nativeEvent; |
| 77 | #elif PLATFORM(QT) |
commit-queue@webkit.org | 6511454 | 2011-09-30 11:58:30 +0000 | [diff] [blame] | 78 | QWheelEvent* m_nativeEvent; |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 79 | #elif PLATFORM(GTK) |
carlosgc@webkit.org | 2e0ad7d | 2011-05-05 16:01:55 +0000 | [diff] [blame] | 80 | GOwnPtr<GdkEvent> m_nativeEvent; |
commit-queue@webkit.org | e902034 | 2011-06-19 03:44:03 +0000 | [diff] [blame] | 81 | #elif PLATFORM(EFL) |
| 82 | const Evas_Event_Mouse_Wheel* m_nativeEvent; |
jeffm@apple.com | de8db0d | 2011-05-04 17:29:16 +0000 | [diff] [blame] | 83 | #endif |
| 84 | }; |
| 85 | |
| 86 | } // namespace WebKit |
| 87 | |
| 88 | #endif // NativeWebWheelEvent_h |