Searched refs:m_wheelDelta (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DWheelEvent.h80 int wheelDelta() const { return m_wheelDelta.y() ? m_wheelDelta.y() : m_wheelDelta.x(); }
81 int wheelDeltaX() const { return m_wheelDelta.x(); }
82 int wheelDeltaY() const { return m_wheelDelta.y(); }
89 bool isHorizontal() const { return m_wheelDelta.x(); }
101 IntPoint m_wheelDelta; member in class:WebCore::WheelEvent
H A DWheelEvent.cpp50 , m_wheelDelta(IntPoint(initializer.wheelDeltaX, initializer.wheelDeltaY))
65 , m_wheelDelta(IntPoint(static_cast<int>(wheelTicks.x() * TickMultiplier), static_cast<int>(wheelTicks.y() * TickMultiplier)))
88 m_wheelDelta = IntPoint(rawDeltaX * TickMultiplier, rawDeltaY * TickMultiplier);
/macosx-10.9.5/WebCore-7537.78.1/platform/win/
H A DPopupMenuWin.h88 int wheelDelta() const { return m_wheelDelta; }
129 int m_wheelDelta; member in class:WebCore::PopupMenuWin
H A DPopupMenuWin.cpp115 , m_wheelDelta(0)
536 m_wheelDelta += delta;
542 ASSERT(delta <= abs(m_wheelDelta));
544 if (m_wheelDelta > 0)
545 m_wheelDelta -= delta;
546 else if (m_wheelDelta < 0)
547 m_wheelDelta += delta;

Completed in 89 milliseconds