HomeSort by relevance Sort by last modified time
    Searched full:webwheelevent (Results 1 - 25 of 38) sorted by null

1 2

  /external/webkit/Source/WebKit2/Shared/
WebWheelEvent.cpp 36 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Modifiers modifiers, double timestamp)
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)
67 void WebWheelEvent::encode(CoreIPC::ArgumentEncoder* encoder) const
83 bool WebWheelEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebWheelEvent& t)
108 bool WebWheelEvent::isWheelEventType(Type type)
WebEventConversion.h 45 class WebWheelEvent;
58 WebCore::PlatformWheelEvent platform(const WebWheelEvent&);
WebEvent.h 53 // WebWheelEvent
158 class WebWheelEvent : public WebEvent {
176 WebWheelEvent() { }
178 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);
195 static bool decode(CoreIPC::ArgumentDecoder*, WebWheelEvent&);
WebEventConversion.cpp 100 WebKit2PlatformWheelEvent(const WebWheelEvent& webEvent)
108 m_granularity = (webEvent.granularity() == WebWheelEvent::ScrollByPageWheelEvent) ? WebCore::ScrollByPageWheelEvent : WebCore::ScrollByPixelWheelEvent;
122 WebCore::PlatformWheelEvent platform(const WebWheelEvent& webEvent)
  /external/webkit/Source/WebKit2/Shared/mac/
WebEventFactory.mm 188 static WebWheelEvent::Phase phaseForEvent(NSEvent *event)
191 uint32_t phase = WebWheelEvent::PhaseNone;
193 phase |= WebWheelEvent::PhaseBegan;
195 phase |= WebWheelEvent::PhaseStationary;
197 phase |= WebWheelEvent::PhaseChanged;
199 phase |= WebWheelEvent::PhaseEnded;
201 phase |= WebWheelEvent::PhaseCancelled;
202 return static_cast<WebWheelEvent::Phase>(phase);
204 return WebWheelEvent::PhaseNone;
208 static WebWheelEvent::Phase momentumPhaseForEvent(NSEvent *event
    [all...]
WebEventFactory.h 39 static WebWheelEvent createWebWheelEvent(NSEvent *event, NSView *windowView);
  /external/webkit/Source/WebKit2/Shared/gtk/
WebEventFactory.h 41 static WebWheelEvent createWebWheelEvent(GdkEventScroll*);
WebEventFactory.cpp 134 WebWheelEvent WebEventFactory::createWebWheelEvent(GdkEventScroll* scrollEvent)
164 return WebWheelEvent(WebEvent::Wheel,
169 WebWheelEvent::ScrollByPixelWheelEvent,
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 112 WebWheelEvent WebEventFactory::createWebWheelEvent(QGraphicsSceneWheelEvent* e)
118 WebWheelEvent::Granularity granularity = WebWheelEvent::ScrollByPixelWheelEvent;
143 return WebWheelEvent(WebEvent::Wheel, e->pos().toPoint(), e->screenPos(), FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
WebEventFactoryQt.h 45 static WebWheelEvent createWebWheelEvent(QGraphicsSceneWheelEvent* event);
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.h 39 static WebWheelEvent createWebWheelEvent(HWND, UINT message, WPARAM, LPARAM);
WebEventFactory.cpp 398 WebWheelEvent WebEventFactory::createWebWheelEvent(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
407 WebWheelEvent::Granularity granularity = WebWheelEvent::ScrollByPixelWheelEvent;
430 granularity = WebWheelEvent::ScrollByPixelWheelEvent;
436 granularity = WebWheelEvent::ScrollByPageWheelEvent;
438 granularity = WebWheelEvent::ScrollByPixelWheelEvent;
443 return WebWheelEvent(WebEvent::Wheel, position, globalPosition, FloatSize(deltaX, deltaY), FloatSize(wheelTicksX, wheelTicksY), granularity, modifiers, timestamp);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePluginNone.cpp 63 bool NetscapePlugin::platformHandleWheelEvent(const WebWheelEvent&)
NetscapePlugin.h 135 bool platformHandleWheelEvent(const WebWheelEvent&);
166 virtual bool handleWheelEvent(const WebWheelEvent&);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
Plugin.h 51 class WebWheelEvent;
134 virtual bool handleWheelEvent(const WebWheelEvent&) = 0;
PluginProxy.h 86 virtual bool handleWheelEvent(const WebWheelEvent&);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.h 120 void handleWheelEvent(const WebWheelEvent&, bool& handled);
PluginControllerProxy.messages.in 66 HandleWheelEvent(WebKit::WebWheelEvent wheelEvent) -> (bool handled)
PluginControllerProxy.cpp 452 void PluginControllerProxy::handleWheelEvent(const WebWheelEvent& wheelEvent, bool& handled)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
NetscapePluginWin.cpp 257 bool NetscapePlugin::platformHandleWheelEvent(const WebWheelEvent&)
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.messages.in 37 WheelEvent(WebKit::WebWheelEvent event)
WebPage.h 107 class WebWheelEvent;
462 void wheelEvent(const WebWheelEvent&);
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.h 97 class WebWheelEvent;
292 void handleWheelEvent(const WebWheelEvent&);
    [all...]
WebPageProxy.cpp 844 static PassOwnPtr<WebWheelEvent> coalesceWheelEvents(WebWheelEvent* oldNextWheelEvent, const WebWheelEvent& newWheelEvent)
849 return adoptPtr(new WebWheelEvent(newWheelEvent));
852 return adoptPtr(new WebWheelEvent(newWheelEvent));
857 return adoptPtr(new WebWheelEvent(WebEvent::Wheel, newWheelEvent.position(), newWheelEvent.globalPosition(), mergedDelta, mergedWheelTicks, newWheelEvent.granularity(), newWheelEvent.modifiers(), newWheelEvent.timestamp()));
860 return adoptPtr(new WebWheelEvent(newWheelEvent));
864 void WebPageProxy::handleWheelEvent(const WebWheelEvent& event)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 361 bool NetscapePlugin::platformHandleWheelEvent(const WebWheelEvent&)

Completed in 260 milliseconds

1 2