HomeSort by relevance Sort by last modified time
    Searched refs:wheelEvent (Results 1 - 25 of 35) sorted by null

1 2

  /external/webkit/Source/WebCore/page/win/
EventHandlerWin.cpp 76 bool EventHandler::passWheelEventToWidget(PlatformWheelEvent& wheelEvent, Widget* widget)
81 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebCore/page/chromium/
EventHandlerChromium.cpp 88 bool EventHandler::passWheelEventToWidget(PlatformWheelEvent& wheelEvent, Widget* widget)
100 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebCore/platform/mac/
ScrollAnimatorMac.mm 797 void ScrollAnimatorMac::handleWheelEvent(PlatformWheelEvent& wheelEvent)
801 if (!wheelEvent.hasPreciseScrollingDeltas()) {
802 ScrollAnimator::handleWheelEvent(wheelEvent);
810 if (fabsf(wheelEvent.deltaY()) >= fabsf(wheelEvent.deltaX())) {
812 ScrollAnimator::handleWheelEvent(wheelEvent);
817 ScrollAnimator::handleWheelEvent(wheelEvent);
822 wheelEvent.accept();
824 bool isMometumScrollEvent = (wheelEvent.momentumPhase() != PlatformWheelEventPhaseNone);
826 if (wheelEvent.momentumPhase() == PlatformWheelEventPhaseEnded
    [all...]
  /external/webkit/Source/WebCore/platform/
ScrollableArea.cpp 118 void ScrollableArea::handleWheelEvent(PlatformWheelEvent& wheelEvent)
120 m_scrollAnimator->handleWheelEvent(wheelEvent);
ScrollView.h 252 void wheelEvent(PlatformWheelEvent&);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 80 virtual void wheelEvent(QGraphicsSceneWheelEvent*);
qwkpage_p.h 109 void wheelEvent(QGraphicsSceneWheelEvent*);
qgraphicswkview.cpp 310 void QGraphicsWKView::wheelEvent(QGraphicsSceneWheelEvent* ev)
312 page()->d->wheelEvent(ev);
314 QGraphicsItem::wheelEvent(ev);
qwkpage.cpp 331 void QWKPagePrivate::wheelEvent(QGraphicsSceneWheelEvent* ev)
333 WebWheelEvent wheelEvent = WebEventFactory::createWebWheelEvent(ev);
334 page->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebCore/page/mac/
EventHandlerMac.mm 108 bool EventHandler::wheelEvent(NSEvent *event)
116 PlatformWheelEvent wheelEvent(event, page->chrome()->platformPageClient());
117 handleWheelEvent(wheelEvent);
119 return wheelEvent.isAccepted();
449 bool EventHandler::passWheelEventToWidget(PlatformWheelEvent& wheelEvent, Widget* widget)
462 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 562 bool NetscapePlugin::platformHandleWheelEvent(const WebWheelEvent& wheelEvent)
568 event.data.mouse.modifierFlags = modifierFlags(wheelEvent);
569 event.data.mouse.pluginX = wheelEvent.position().x() - m_frameRect.x();
570 event.data.mouse.pluginY = wheelEvent.position().y() - m_frameRect.y();
573 event.data.mouse.deltaX = wheelEvent.delta().width();
574 event.data.mouse.deltaY = wheelEvent.delta().height();
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.h 134 virtual void wheelEvent(QGraphicsSceneWheelEvent*);
qwebpage_p.h 107 template<class T> void wheelEvent(T*);
qwebview.h 147 virtual void wheelEvent(QWheelEvent*);
qgraphicswebview.cpp 1145 void QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* ev)
1154 QGraphicsItem::wheelEvent(ev);
  /external/webkit/Source/WebKit/wince/
WebView.cpp 343 PlatformWheelEvent wheelEvent(hWnd, wParam, lParam, isHorizontal);
344 return frame()->eventHandler()->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebKit2/PluginProcess/
PluginControllerProxy.cpp 452 void PluginControllerProxy::handleWheelEvent(const WebWheelEvent& wheelEvent, bool& handled)
454 handled = m_plugin->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProxy.cpp 278 bool PluginProxy::handleWheelEvent(const WebWheelEvent& wheelEvent)
281 if (!m_connection->connection()->sendSync(Messages::PluginControllerProxy::HandleWheelEvent(wheelEvent), Messages::PluginControllerProxy::HandleWheelEvent::Reply(handled), m_pluginInstanceID))
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
NetscapePlugin.cpp 670 bool NetscapePlugin::handleWheelEvent(const WebWheelEvent& wheelEvent)
674 return platformHandleWheelEvent(wheelEvent);
  /external/webkit/Source/WebCore/page/
EventHandler.h 73 class WheelEvent;
173 void defaultWheelEventHandler(Node*, WheelEvent*);
217 bool wheelEvent(NSEvent *);
EventHandler.cpp 81 #include "WheelEvent.h"
137 static inline bool scrollNode(float delta, WheelEvent::Granularity granularity, ScrollDirection positiveDirection, ScrollDirection negativeDirection, Node* node, Node** stopNode)
150 if (granularity == WheelEvent::Page)
153 if (granularity == WheelEvent::Line)
156 if (granularity == WheelEvent::Pixel)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.cpp 974 static bool handleWheelEvent(const WebWheelEvent& wheelEvent, Page* page)
980 PlatformWheelEvent platformWheelEvent = platform(wheelEvent);
984 void WebPage::wheelEvent(const WebWheelEvent& wheelEvent)
986 CurrentEvent currentEvent(wheelEvent);
988 bool handled = handleWheelEvent(wheelEvent, m_page.get());
989 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(wheelEvent.type()), handled));
    [all...]
  /external/webkit/Source/WebKit/mac/Plugins/Hosted/
NetscapePluginInstanceProxy.h 97 bool wheelEvent(NSView *pluginView, NSEvent *);
WebHostedNetscapePluginView.mm 354 processedEvent = _proxy->wheelEvent(self, event);
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.cpp 428 WebWheelEvent wheelEvent = WebEventFactory::createWebWheelEvent(hWnd, message, wParam, lParam);
429 if (wheelEvent.controlKey()) {
436 m_page->handleWheelEvent(wheelEvent);
    [all...]

Completed in 355 milliseconds

1 2