/external/webkit/Source/WebCore/dom/ |
D | WheelEvent.cpp | 34 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()
|
D | WheelEvent.h | 32 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;
|
D | WheelEvent.idl | 23 // Based off of proposed IDL interface for WheelEvent: 24 interface WheelEvent : UIEvent {
|
D | Node.cpp | 2829 WheelEvent* wheelEvent = static_cast<WheelEvent*>(event); in defaultEventHandler()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebInputEventConversion.h | 45 class WheelEvent; variable 101 WebMouseWheelEventBuilder(const WebCore::Widget*, const WebCore::WheelEvent&);
|
D | WebPluginContainerImpl.h | 52 class WheelEvent; variable 135 void handleWheelEvent(WebCore::WheelEvent*);
|
D | WebInputEventConversion.cpp | 299 WebMouseWheelEventBuilder::WebMouseWheelEventBuilder(const Widget* widget, const WheelEvent& event) in WebMouseWheelEventBuilder() 320 scrollByPage = event.granularity() == WheelEvent::Page; in WebMouseWheelEventBuilder()
|
D | WebPluginContainerImpl.cpp | 175 handleWheelEvent(static_cast<WheelEvent*>(event)); in handleEvent() 505 void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event) in handleWheelEvent()
|
/external/webkit/Source/WebCore/html/ |
D | TextFieldInputType.h | 46 void handleWheelEventForSpinButton(WheelEvent*);
|
D | BaseDateAndTimeInputType.h | 62 virtual void handleWheelEvent(WheelEvent*);
|
D | InputType.h | 55 class WheelEvent; variable 173 virtual void handleWheelEvent(WheelEvent*);
|
D | NumberInputType.h | 60 virtual void handleWheelEvent(WheelEvent*);
|
D | TextFieldInputType.cpp | 86 void TextFieldInputType::handleWheelEventForSpinButton(WheelEvent* event) in handleWheelEventForSpinButton()
|
D | BaseDateAndTimeInputType.cpp | 135 void BaseDateAndTimeInputType::handleWheelEvent(WheelEvent* event) in handleWheelEvent()
|
D | NumberInputType.cpp | 174 void NumberInputType::handleWheelEvent(WheelEvent* event) in handleWheelEvent()
|
D | InputType.cpp | 340 void InputType::handleWheelEvent(WheelEvent*) in handleWheelEvent() argument
|
D | HTMLInputElement.cpp | 1090 m_inputType->handleWheelEvent(static_cast<WheelEvent*>(evt)); in defaultEventHandler()
|
/external/webkit/Source/WebCore/page/ |
D | EventHandler.h | 73 class WheelEvent; variable 173 void defaultWheelEventHandler(Node*, WheelEvent*);
|
D | EventHandler.cpp | 137 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()
|
D | DOMWindow.idl | 532 attribute WheelEventConstructor WheelEvent;
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
D | V8EventCustom.cpp | 116 return toV8(static_cast<WheelEvent*>(impl)); in toV8()
|
/external/webkit/Source/WebCore/bindings/js/ |
D | JSEventCustom.cpp | 136 wrapper = CREATE_DOM_OBJECT_WRAPPER(exec, globalObject, WheelEvent, event); in toJS()
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/ |
D | WebPage.messages.in | 37 WheelEvent(WebKit::WebWheelEvent event)
|
/external/webkit/Source/WebCore/ |
D | DerivedSources.make | 534 WheelEvent \
|
D | CodeGenerators.pri | 160 dom/WheelEvent.idl \
|