Searched defs:wheelTicks (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebWheelEvent.cpp36 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Modifiers modifiers, double timestamp) argument
41 , m_wheelTicks(wheelTicks)
52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp) argument
57 , m_wheelTicks(wheelTicks)
H A DWebEvent.h178 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Modifiers, double timestamp);
180 WebWheelEvent(Type, const WebCore::IntPoint& position, const WebCore::IntPoint& globalPosition, const WebCore::FloatSize& delta, const WebCore::FloatSize& wheelTicks, Granularity, Phase phase, Phase momentumPhase,bool hasPreciseScrollingDeltas, Modifiers, double timestamp);
186 const WebCore::FloatSize wheelTicks() const { return m_wheelTicks; } function in class:WebKit::WebWheelEvent
/external/webkit/Source/WebKit2/Shared/gtk/
H A DWebEventFactory.cpp141 FloatSize wheelTicks; local
144 wheelTicks = FloatSize(0, 1);
147 wheelTicks = FloatSize(0, -1);
150 wheelTicks = FloatSize(1, 0);
153 wheelTicks = FloatSize(-1, 0);
162 FloatSize delta(wheelTicks.width() * step, wheelTicks.height() * step);
168 wheelTicks,

Completed in 115 milliseconds