HomeSort by relevance Sort by last modified time
    Searched refs:WheelEvent (Results 1 - 25 of 25) sorted by null

  /external/webkit/Source/WebCore/dom/
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.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.idl 23 // Based off of proposed IDL interface for WheelEvent:
24 interface WheelEvent : UIEvent {
Node.cpp 93 #include "WheelEvent.h"
    [all...]
Document.cpp 147 #include "WheelEvent.h"
    [all...]
  /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/html/
TextFieldInputType.h 46 void handleWheelEventForSpinButton(WheelEvent*);
BaseDateAndTimeInputType.h 62 virtual void handleWheelEvent(WheelEvent*);
NumberInputType.h 60 virtual void handleWheelEvent(WheelEvent*);
InputType.h 55 class WheelEvent;
173 virtual void handleWheelEvent(WheelEvent*);
TextFieldInputType.cpp 40 #include "WheelEvent.h"
86 void TextFieldInputType::handleWheelEventForSpinButton(WheelEvent* event)
BaseDateAndTimeInputType.cpp 135 void BaseDateAndTimeInputType::handleWheelEvent(WheelEvent* event)
NumberInputType.cpp 174 void NumberInputType::handleWheelEvent(WheelEvent* event)
InputType.cpp 340 void InputType::handleWheelEvent(WheelEvent*)
HTMLInputElement.cpp 53 #include "WheelEvent.h"
    [all...]
  /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/bindings/v8/custom/
V8EventCustom.cpp 116 return toV8(static_cast<WheelEvent*>(impl));
  /external/webkit/Source/WebCore/page/
EventHandler.h 73 class WheelEvent;
173 void defaultWheelEventHandler(Node*, WheelEvent*);
217 bool wheelEvent(NSEvent *);
EventHandler.cpp 81 #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)
    [all...]
DOMWindow.idl 532 attribute WheelEventConstructor WheelEvent;
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 215 dom/WheelEvent.cpp \
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/
WebPageProxy.cpp 875 process()->send(Messages::WebPage::WheelEvent(event), m_pageID);
    [all...]

Completed in 301 milliseconds