Searched defs:WheelEvent (Results 1 - 2 of 2) sorted by relevance

/external/webkit/Source/WebCore/dom/
H A DWheelEvent.cpp24 #include "WheelEvent.h"
34 WheelEvent::WheelEvent() function in class:WebCore::WheelEvent
43 WheelEvent::WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY, function in class:WebCore::WheelEvent
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
[all...]
H A DWheelEvent.h32 class WheelEvent : public MouseRelatedEvent { class in namespace:WebCore
36 static PassRefPtr<WheelEvent> create()
38 return adoptRef(new WheelEvent);
40 static PassRefPtr<WheelEvent> create(float wheelTicksX, float wheelTicksY,
45 return adoptRef(new WheelEvent(wheelTicksX, wheelTicksY, rawDeltaX, rawDeltaY,
69 WheelEvent();
70 WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY,
90 WheelEvent* event() const;

Completed in 41 milliseconds