Searched defs:wheelEvent (Results 1 - 16 of 16) sorted by relevance

/external/webkit/Source/WebCore/page/win/
H A DEventHandlerWin.cpp76 bool EventHandler::passWheelEventToWidget(PlatformWheelEvent& wheelEvent, Widget* widget) argument
81 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(wheelEvent);
/external/webkit/Source/WebCore/page/chromium/
H A DEventHandlerChromium.cpp88 bool EventHandler::passWheelEventToWidget(PlatformWheelEvent& wheelEvent, Widget* widget) argument
100 return static_cast<FrameView*>(widget)->frame()->eventHandler()->handleWheelEvent(wheelEvent);
/external/webkit/Source/WebCore/platform/
H A DScrollableArea.cpp118 void ScrollableArea::handleWheelEvent(PlatformWheelEvent& wheelEvent) argument
120 m_scrollAnimator->handleWheelEvent(wheelEvent);
H A DScrollView.cpp843 void ScrollView::wheelEvent(PlatformWheelEvent& e) function in class:WebCore::ScrollView
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqgraphicswkview.cpp310 void QGraphicsWKView::wheelEvent(QGraphicsSceneWheelEvent* ev) function in class:QGraphicsWKView
312 page()->d->wheelEvent(ev);
314 QGraphicsItem::wheelEvent(ev);
H A Dqwkpage.cpp331 void QWKPagePrivate::wheelEvent(QGraphicsSceneWheelEvent* ev) function in class:QWKPagePrivate
333 WebWheelEvent wheelEvent = WebEventFactory::createWebWheelEvent(ev); local
334 page->handleWheelEvent(wheelEvent);
/external/webkit/Source/WebKit/qt/Api/
H A Dqgraphicswebview.cpp1145 void QGraphicsWebView::wheelEvent(QGraphicsSceneWheelEvent* ev) function in class:QGraphicsWebView
1154 QGraphicsItem::wheelEvent(ev);
H A Dqwebview.cpp1049 void QWebView::wheelEvent(QWheelEvent* ev) function in class:QWebView
H A Dqwebpage.cpp837 void QWebPagePrivate::wheelEvent(T *ev) function in class:QWebPagePrivate
3065 d->wheelEvent(static_cast<QWheelEvent*>(ev));
3069 d->wheelEvent(static_cast<QGraphicsSceneWheelEvent*>(ev));
/external/webkit/Source/WebKit2/PluginProcess/
H A DPluginControllerProxy.cpp452 void PluginControllerProxy::handleWheelEvent(const WebWheelEvent& wheelEvent, bool& handled) argument
454 handled = m_plugin->handleWheelEvent(wheelEvent);
/external/webkit/Source/WebKit2/WebProcess/Plugins/
H A DPluginProxy.cpp278 bool PluginProxy::handleWheelEvent(const WebWheelEvent& wheelEvent) argument
281 if (!m_connection->connection()->sendSync(Messages::PluginControllerProxy::HandleWheelEvent(wheelEvent), Messages::PluginControllerProxy::HandleWheelEvent::Reply(handled), m_pluginInstanceID))
/external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/
H A DNetscapePlugin.cpp670 bool NetscapePlugin::handleWheelEvent(const WebWheelEvent& wheelEvent) argument
674 return platformHandleWheelEvent(wheelEvent);
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.cpp428 WebWheelEvent wheelEvent = WebEventFactory::createWebWheelEvent(hWnd, message, wParam, lParam); local
429 if (wheelEvent.controlKey()) {
436 m_page->handleWheelEvent(wheelEvent);
/external/webkit/Source/WebCore/dom/
H A DNode.cpp2829 WheelEvent* wheelEvent = static_cast<WheelEvent*>(event); local
2839 frame->eventHandler()->defaultWheelEventHandler(startNode, wheelEvent);
/external/webkit/Source/WebCore/page/
H A DEventHandler.cpp2169 view->wheelEvent(e);
2173 void EventHandler::defaultWheelEventHandler(Node* startNode, WheelEvent* wheelEvent) argument
2175 if (!startNode || !wheelEvent)
2182 if (scrollNode(wheelEvent->rawDeltaX(), wheelEvent->granularity(), ScrollLeft, ScrollRight, startNode, &stopNode))
2183 wheelEvent->setDefaultHandled();
2185 if (scrollNode(wheelEvent->rawDeltaY(), wheelEvent->granularity(), ScrollUp, ScrollDown, startNode, &stopNode))
2186 wheelEvent->setDefaultHandled();
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebPage.cpp974 static bool handleWheelEvent(const WebWheelEvent& wheelEvent, Page* page) argument
980 PlatformWheelEvent platformWheelEvent = platform(wheelEvent);
984 void WebPage::wheelEvent(const WebWheelEvent& wheelEvent) argument
986 CurrentEvent currentEvent(wheelEvent);
988 bool handled = handleWheelEvent(wheelEvent, m_page.get());
989 send(Messages::WebPageProxy::DidReceiveEvent(static_cast<uint32_t>(wheelEvent.type()), handled));

Completed in 1317 milliseconds