Home | History | Annotate | Download | only in dom

Lines Matching defs:WheelEvent

24 #include "WheelEvent.h"
34 WheelEvent::WheelEvent()
43 WheelEvent::WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY,
58 void WheelEvent::initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
85 void WheelEvent::initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
93 bool WheelEvent::isWheelEvent() const
98 inline static WheelEvent::Granularity granularity(const PlatformWheelEvent& event)
100 return event.granularity() == ScrollByPageWheelEvent ? WheelEvent::Page : WheelEvent::Pixel;
108 setEvent(WheelEvent::create(event.wheelTicksX(), event.wheelTicksY(), event.deltaX(), event.deltaY(), granularity(event),
113 WheelEvent* WheelEventDispatchMediator::event() const
115 return static_cast<WheelEvent*>(EventDispatchMediator::event());