Home
last modified time | relevance | path

Searched refs:WheelEvent (Results 1 – 25 of 43) sorted by relevance

12

/external/webkit/Source/WebCore/dom/
DWheelEvent.cpp34 WheelEvent::WheelEvent() in WheelEvent() function in WebCore::WheelEvent
43 WheelEvent::WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY, in WheelEvent() function in WebCore::WheelEvent
58 void WheelEvent::initWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view, in initWheelEvent()
85 void WheelEvent::initWebKitWheelEvent(int rawDeltaX, int rawDeltaY, PassRefPtr<AbstractView> view, in initWebKitWheelEvent()
93 bool WheelEvent::isWheelEvent() const in isWheelEvent()
98 inline static WheelEvent::Granularity granularity(const PlatformWheelEvent& event) in granularity()
100 return event.granularity() == ScrollByPageWheelEvent ? WheelEvent::Page : WheelEvent::Pixel; in granularity()
108 …setEvent(WheelEvent::create(event.wheelTicksX(), event.wheelTicksY(), event.deltaX(), event.deltaY… in WheelEventDispatchMediator()
113 WheelEvent* WheelEventDispatchMediator::event() const in event()
115 return static_cast<WheelEvent*>(EventDispatchMediator::event()); in event()
DWheelEvent.h32 class WheelEvent : public MouseRelatedEvent {
36 static PassRefPtr<WheelEvent> create() in create()
38 return adoptRef(new WheelEvent); in create()
40 static PassRefPtr<WheelEvent> create(float wheelTicksX, float wheelTicksY, in create()
45 return adoptRef(new WheelEvent(wheelTicksX, wheelTicksY, rawDeltaX, rawDeltaY, in create()
69 WheelEvent();
70 WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY,
90 WheelEvent* event() const;
DWheelEvent.idl23 // Based off of proposed IDL interface for WheelEvent:
24 interface WheelEvent : UIEvent {
DNode.cpp2829 WheelEvent* wheelEvent = static_cast<WheelEvent*>(event); in defaultEventHandler()
/external/webkit/Source/WebKit/chromium/src/
DWebInputEventConversion.h45 class WheelEvent; variable
101 WebMouseWheelEventBuilder(const WebCore::Widget*, const WebCore::WheelEvent&);
DWebPluginContainerImpl.h52 class WheelEvent; variable
135 void handleWheelEvent(WebCore::WheelEvent*);
DWebInputEventConversion.cpp299 WebMouseWheelEventBuilder::WebMouseWheelEventBuilder(const Widget* widget, const WheelEvent& event) in WebMouseWheelEventBuilder()
320 scrollByPage = event.granularity() == WheelEvent::Page; in WebMouseWheelEventBuilder()
DWebPluginContainerImpl.cpp175 handleWheelEvent(static_cast<WheelEvent*>(event)); in handleEvent()
505 void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event) in handleWheelEvent()
/external/webkit/Source/WebCore/html/
DTextFieldInputType.h46 void handleWheelEventForSpinButton(WheelEvent*);
DBaseDateAndTimeInputType.h62 virtual void handleWheelEvent(WheelEvent*);
DInputType.h55 class WheelEvent; variable
173 virtual void handleWheelEvent(WheelEvent*);
DNumberInputType.h60 virtual void handleWheelEvent(WheelEvent*);
DTextFieldInputType.cpp86 void TextFieldInputType::handleWheelEventForSpinButton(WheelEvent* event) in handleWheelEventForSpinButton()
DBaseDateAndTimeInputType.cpp135 void BaseDateAndTimeInputType::handleWheelEvent(WheelEvent* event) in handleWheelEvent()
DNumberInputType.cpp174 void NumberInputType::handleWheelEvent(WheelEvent* event) in handleWheelEvent()
DInputType.cpp340 void InputType::handleWheelEvent(WheelEvent*) in handleWheelEvent() argument
DHTMLInputElement.cpp1090 m_inputType->handleWheelEvent(static_cast<WheelEvent*>(evt)); in defaultEventHandler()
/external/webkit/Source/WebCore/page/
DEventHandler.h73 class WheelEvent; variable
173 void defaultWheelEventHandler(Node*, WheelEvent*);
DEventHandler.cpp137 static inline bool scrollNode(float delta, WheelEvent::Granularity granularity, ScrollDirection pos… in scrollNode()
150 if (granularity == WheelEvent::Page) in scrollNode()
153 if (granularity == WheelEvent::Line) in scrollNode()
156 if (granularity == WheelEvent::Pixel) in scrollNode()
2173 void EventHandler::defaultWheelEventHandler(Node* startNode, WheelEvent* wheelEvent) in defaultWheelEventHandler()
DDOMWindow.idl532 attribute WheelEventConstructor WheelEvent;
/external/webkit/Source/WebCore/bindings/v8/custom/
DV8EventCustom.cpp116 return toV8(static_cast<WheelEvent*>(impl)); in toV8()
/external/webkit/Source/WebCore/bindings/js/
DJSEventCustom.cpp136 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WheelEvent, event); in toJS()
/external/webkit/Source/WebKit2/WebProcess/WebPage/
DWebPage.messages.in37 WheelEvent(WebKit::WebWheelEvent event)
/external/webkit/Source/WebCore/
DDerivedSources.make534 WheelEvent \
DCodeGenerators.pri160 dom/WheelEvent.idl \

12