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

1 2 3 4

  /external/webkit/Source/WebCore/dom/
WheelEvent.cpp 24 #include "WheelEvent.h"
34 WheelEvent::WheelEvent()
43 WheelEvent::WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY,
58 void WheelEvent::initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
85 void WheelEvent::initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view,
93 bool WheelEvent::isWheelEvent() const
98 inline static WheelEvent::Granularity granularity(const PlatformWheelEvent& event)
100 return event.granularity() == ScrollByPageWheelEvent ? WheelEvent::Page : WheelEvent::Pixel
    [all...]
WheelEvent.h 32 class WheelEvent : public MouseRelatedEvent {
36 static PassRefPtr<WheelEvent> create()
38 return adoptRef(new WheelEvent);
40 static PassRefPtr<WheelEvent> create(float wheelTicksX, float wheelTicksY,
45 return adoptRef(new WheelEvent(wheelTicksX, wheelTicksY, rawDeltaX, rawDeltaY,
69 WheelEvent();
70 WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY,
90 WheelEvent* event() const;
WheelEvent.idl 23 // Based off of proposed IDL interface for WheelEvent:
24 interface WheelEvent : UIEvent {
  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.h 45 class WheelEvent;
97 // Converts a WebCore::WheelEvent to a corresponding WebMouseWheelEvent.
101 WebMouseWheelEventBuilder(const WebCore::Widget*, const WebCore::WheelEvent&);
WebPluginContainerImpl.h 52 class WheelEvent;
135 void handleWheelEvent(WebCore::WheelEvent*);
WebInputEventConversion.cpp 43 #include "WheelEvent.h"
299 WebMouseWheelEventBuilder::WebMouseWheelEventBuilder(const Widget* widget, const WheelEvent& event)
317 // The 120 is from WheelEvent::initWheelEvent().
320 scrollByPage = event.granularity() == WheelEvent::Page;
WebPluginContainerImpl.cpp 74 #include "WheelEvent.h"
175 handleWheelEvent(static_cast<WheelEvent*>(event));
505 void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event)
  /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/html/
TextFieldInputType.cpp 40 #include "WheelEvent.h"
86 void TextFieldInputType::handleWheelEventForSpinButton(WheelEvent* event)
BaseDateAndTimeInputType.h 62 virtual void handleWheelEvent(WheelEvent*);
NumberInputType.h 60 virtual void handleWheelEvent(WheelEvent*);
TextFieldInputType.h 46 void handleWheelEventForSpinButton(WheelEvent*);
InputType.h 55 class WheelEvent;
173 virtual void handleWheelEvent(WheelEvent*);
  /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/WebKit2/UIProcess/API/qt/
qgraphicswkview.h 80 virtual void wheelEvent(QGraphicsSceneWheelEvent*);
qgraphicswkview.cpp 310 void QGraphicsWKView::wheelEvent(QGraphicsSceneWheelEvent* ev)
312 page()->d->wheelEvent(ev);
314 QGraphicsItem::wheelEvent(ev);
qwkpage_p.h 109 void wheelEvent(QGraphicsSceneWheelEvent*);
qwkpage.cpp 331 void QWKPagePrivate::wheelEvent(QGraphicsSceneWheelEvent* ev)
333 WebWheelEvent wheelEvent = WebEventFactory::createWebWheelEvent(ev);
334 page->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebCore/bindings/js/
JSEventCustom.cpp 77 #include "WheelEvent.h"
136 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WheelEvent, event);
  /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/
ScrollableArea.cpp 118 void ScrollableArea::handleWheelEvent(PlatformWheelEvent& wheelEvent)
120 m_scrollAnimator->handleWheelEvent(wheelEvent);
  /external/webkit/Source/WebCore/page/
EventHandler.h 73 class WheelEvent;
173 void defaultWheelEventHandler(Node*, WheelEvent*);
217 bool wheelEvent(NSEvent *);
  /external/webkit/Source/WebCore/platform/qt/
WheelEventQt.cpp 21 #include "WheelEvent.h"
  /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();

Completed in 1690 milliseconds

1 2 3 4