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

/external/webkit/Source/WebCore/dom/
H A DWheelEvent.cpp24 #include "WheelEvent.h"
34 WheelEvent::WheelEvent() function in class:WebCore::WheelEvent
43 WheelEvent::WheelEvent(float wheelTicksX, float wheelTicksY, float rawDeltaX, float rawDeltaY, function in class:WebCore::WheelEvent
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
[all...]
H A DWheelEvent.h32 class WheelEvent : public MouseRelatedEvent { class in namespace:WebCore
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;
H A DWheelEvent.idl23 // Based off of proposed IDL interface for WheelEvent:
24 interface WheelEvent : UIEvent {
H A DNode.cpp93 #include "WheelEvent.h"
2829 WheelEvent* wheelEvent = static_cast<WheelEvent*>(event);
H A DDocument.cpp147 #include "WheelEvent.h"
3594 else if (eventType == "WheelEvent")
3595 event = WheelEvent::create();
/external/webkit/Source/WebCore/html/
H A DTextFieldInputType.h46 void handleWheelEventForSpinButton(WheelEvent*);
H A DBaseDateAndTimeInputType.h62 virtual void handleWheelEvent(WheelEvent*);
H A DNumberInputType.h60 virtual void handleWheelEvent(WheelEvent*);
H A DTextFieldInputType.cpp40 #include "WheelEvent.h"
86 void TextFieldInputType::handleWheelEventForSpinButton(WheelEvent* event)
H A DInputType.h55 class WheelEvent;
173 virtual void handleWheelEvent(WheelEvent*);
H A DBaseDateAndTimeInputType.cpp135 void BaseDateAndTimeInputType::handleWheelEvent(WheelEvent* event)
H A DNumberInputType.cpp174 void NumberInputType::handleWheelEvent(WheelEvent* event)
H A DInputType.cpp340 void InputType::handleWheelEvent(WheelEvent*)
H A DHTMLInputElement.cpp53 #include "WheelEvent.h"
1090 m_inputType->handleWheelEvent(static_cast<WheelEvent*>(evt));
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputEventConversion.h45 class WheelEvent;
97 // Converts a WebCore::WheelEvent to a corresponding WebMouseWheelEvent.
101 WebMouseWheelEventBuilder(const WebCore::Widget*, const WebCore::WheelEvent&);
H A DWebPluginContainerImpl.h52 class WheelEvent;
135 void handleWheelEvent(WebCore::WheelEvent*);
H A DWebInputEventConversion.cpp43 #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;
H A DWebPluginContainerImpl.cpp74 #include "WheelEvent.h"
175 handleWheelEvent(static_cast<WheelEvent*>(event));
505 void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event)
/external/webkit/Source/WebCore/bindings/js/
H A DJSEventCustom.cpp77 #include "WheelEvent.h"
136 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WheelEvent, event);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8EventCustom.cpp116 return toV8(static_cast<WheelEvent*>(impl));
/external/webkit/Source/WebCore/page/
H A DEventHandler.h73 class WheelEvent;
173 void defaultWheelEventHandler(Node*, WheelEvent*);
H A DEventHandler.cpp81 #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)
2173 void EventHandler::defaultWheelEventHandler(Node* startNode, WheelEvent* wheelEvent)
H A DDOMWindow.idl532 attribute WheelEventConstructor WheelEvent;
/external/webkit/Source/WebCore/
H A DAndroid.mk215 dom/WheelEvent.cpp \
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPageProxy.cpp875 process()->send(Messages::WebPage::WheelEvent(event), m_pageID);

Completed in 441 milliseconds