blob: 033ab8082f5ae32e83ca9cba6f7675ec6e6e6cd3 [file] [log] [blame]
jeffm@apple.comde8db0d2011-05-04 17:29:16 +00001/*
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>
33OBJC_CLASS NSView;
34#elif PLATFORM(QT)
commit-queue@webkit.org65114542011-09-30 11:58:30 +000035#include <qevent.h>
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000036#elif PLATFORM(GTK)
carlosgc@webkit.org2e0ad7d2011-05-05 16:01:55 +000037#include <GOwnPtrGtk.h>
38typedef union _GdkEvent GdkEvent;
commit-queue@webkit.orge9020342011-06-19 03:44:03 +000039#elif PLATFORM(EFL)
40#include <Evas.h>
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000041#endif
42
43namespace WebKit {
44
45class NativeWebWheelEvent : public WebWheelEvent {
46public:
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.org65114542011-09-30 11:58:30 +000052 explicit NativeWebWheelEvent(QWheelEvent*);
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000053#elif PLATFORM(GTK)
carlosgc@webkit.org2e0ad7d2011-05-05 16:01:55 +000054 NativeWebWheelEvent(const NativeWebWheelEvent&);
55 NativeWebWheelEvent(GdkEvent*);
commit-queue@webkit.orge9020342011-06-19 03:44:03 +000056#elif PLATFORM(EFL)
57 NativeWebWheelEvent(const Evas_Event_Mouse_Wheel*, const Evas_Point*);
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000058#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.org65114542011-09-30 11:58:30 +000065 const QWheelEvent* nativeEvent() const { return m_nativeEvent; }
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000066#elif PLATFORM(GTK)
carlosgc@webkit.org2e0ad7d2011-05-05 16:01:55 +000067 const GdkEvent* nativeEvent() const { return m_nativeEvent.get(); }
commit-queue@webkit.orge9020342011-06-19 03:44:03 +000068#elif PLATFORM(EFL)
69 const Evas_Event_Mouse_Wheel* nativeEvent() const { return m_nativeEvent; }
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000070#endif
71
72private:
73#if PLATFORM(MAC)
74 RetainPtr<NSEvent> m_nativeEvent;
75#elif PLATFORM(WIN)
76 MSG m_nativeEvent;
77#elif PLATFORM(QT)
commit-queue@webkit.org65114542011-09-30 11:58:30 +000078 QWheelEvent* m_nativeEvent;
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000079#elif PLATFORM(GTK)
carlosgc@webkit.org2e0ad7d2011-05-05 16:01:55 +000080 GOwnPtr<GdkEvent> m_nativeEvent;
commit-queue@webkit.orge9020342011-06-19 03:44:03 +000081#elif PLATFORM(EFL)
82 const Evas_Event_Mouse_Wheel* m_nativeEvent;
jeffm@apple.comde8db0d2011-05-04 17:29:16 +000083#endif
84};
85
86} // namespace WebKit
87
88#endif // NativeWebWheelEvent_h