1 /* 2 * Copyright (C) 2001 Peter Kelly (pmk@post.com) 3 * Copyright (C) 2001 Tobias Anton (anton@stud.fbi.fh-darmstadt.de) 4 * Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) 5 * Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010 Apple Inc. All rights reserved. 6 * Copyright (C) 2013 Samsung Electronics. All rights reserved. 7 * 8 * This library is free software; you can redistribute it and/or 9 * modify it under the terms of the GNU Library General Public 10 * License as published by the Free Software Foundation; either 11 * version 2 of the License, or (at your option) any later version. 12 * 13 * This library is distributed in the hope that it will be useful, 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * Library General Public License for more details. 17 * 18 * You should have received a copy of the GNU Library General Public License 19 * along with this library; see the file COPYING.LIB. If not, write to 20 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 21 * Boston, MA 02110-1301, USA. 22 * 23 */ 24 25 #ifndef WheelEvent_h 26 #define WheelEvent_h 27 28 #include "core/events/EventDispatchMediator.h" 29 #include "core/events/MouseEvent.h" 30 #include "platform/geometry/FloatPoint.h" 31 32 namespace WebCore { 33 34 class PlatformWheelEvent; 35 36 struct WheelEventInit : public MouseEventInit { 37 WheelEventInit(); 38 39 double deltaX; 40 double deltaY; 41 double deltaZ; 42 int wheelDeltaX; // Deprecated. 43 int wheelDeltaY; // Deprecated. 44 unsigned deltaMode; 45 }; 46 47 class WheelEvent FINAL : public MouseEvent { 48 public: 49 enum { TickMultiplier = 120 }; 50 51 enum DeltaMode { 52 DOM_DELTA_PIXEL = 0, 53 DOM_DELTA_LINE, 54 DOM_DELTA_PAGE 55 }; 56 create()57 static PassRefPtrWillBeRawPtr<WheelEvent> create() 58 { 59 return adoptRefWillBeNoop(new WheelEvent); 60 } 61 create(const AtomicString & type,const WheelEventInit & initializer)62 static PassRefPtrWillBeRawPtr<WheelEvent> create(const AtomicString& type, const WheelEventInit& initializer) 63 { 64 return adoptRefWillBeNoop(new WheelEvent(type, initializer)); 65 } 66 create(const FloatPoint & wheelTicks,const FloatPoint & rawDelta,unsigned deltaMode,PassRefPtrWillBeRawPtr<AbstractView> view,const IntPoint & screenLocation,const IntPoint & pageLocation,bool ctrlKey,bool altKey,bool shiftKey,bool metaKey,bool directionInvertedFromDevice)67 static PassRefPtrWillBeRawPtr<WheelEvent> create(const FloatPoint& wheelTicks, 68 const FloatPoint& rawDelta, unsigned deltaMode, PassRefPtrWillBeRawPtr<AbstractView> view, 69 const IntPoint& screenLocation, const IntPoint& pageLocation, 70 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice) 71 { 72 return adoptRefWillBeNoop(new WheelEvent(wheelTicks, rawDelta, deltaMode, view, 73 screenLocation, pageLocation, ctrlKey, altKey, shiftKey, metaKey, directionInvertedFromDevice)); 74 } 75 76 void initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtrWillBeRawPtr<AbstractView>, 77 int screenX, int screenY, int pageX, int pageY, 78 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 79 80 void initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtrWillBeRawPtr<AbstractView>, 81 int screenX, int screenY, int pageX, int pageY, 82 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey); 83 deltaX()84 double deltaX() const { return m_deltaX; } // Positive when scrolling right. deltaY()85 double deltaY() const { return m_deltaY; } // Positive when scrolling down. deltaZ()86 double deltaZ() const { return m_deltaZ; } wheelDelta()87 int wheelDelta() const { return wheelDeltaY() ? wheelDeltaY() : wheelDeltaX(); } // Deprecated. wheelDeltaX()88 int wheelDeltaX() const { return m_wheelDelta.x(); } // Deprecated, negative when scrolling right. wheelDeltaY()89 int wheelDeltaY() const { return m_wheelDelta.y(); } // Deprecated, negative when scrolling down. deltaMode()90 unsigned deltaMode() const { return m_deltaMode; } ticksX()91 float ticksX() const { return static_cast<float>(m_wheelDelta.x()) / TickMultiplier; } ticksY()92 float ticksY() const { return static_cast<float>(m_wheelDelta.y()) / TickMultiplier; } 93 webkitDirectionInvertedFromDevice()94 bool webkitDirectionInvertedFromDevice() const { return m_directionInvertedFromDevice; } 95 96 virtual const AtomicString& interfaceName() const OVERRIDE; 97 virtual bool isMouseEvent() const OVERRIDE; 98 virtual bool isWheelEvent() const OVERRIDE; 99 100 virtual void trace(Visitor*) OVERRIDE; 101 102 private: 103 WheelEvent(); 104 WheelEvent(const AtomicString&, const WheelEventInit&); 105 WheelEvent(const FloatPoint& wheelTicks, const FloatPoint& rawDelta, 106 unsigned, PassRefPtrWillBeRawPtr<AbstractView>, const IntPoint& screenLocation, const IntPoint& pageLocation, 107 bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool directionInvertedFromDevice); 108 109 IntPoint m_wheelDelta; 110 double m_deltaX; 111 double m_deltaY; 112 double m_deltaZ; 113 unsigned m_deltaMode; 114 bool m_directionInvertedFromDevice; 115 }; 116 117 DEFINE_EVENT_TYPE_CASTS(WheelEvent); 118 119 class WheelEventDispatchMediator FINAL : public EventDispatchMediator { 120 public: 121 static PassRefPtrWillBeRawPtr<WheelEventDispatchMediator> create(const PlatformWheelEvent&, PassRefPtrWillBeRawPtr<AbstractView>); 122 private: 123 WheelEventDispatchMediator(const PlatformWheelEvent&, PassRefPtrWillBeRawPtr<AbstractView>); 124 WheelEvent* event() const; 125 virtual bool dispatchEvent(EventDispatcher*) const OVERRIDE; 126 }; 127 128 } // namespace WebCore 129 130 #endif // WheelEvent_h 131