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

1 2

  /external/webkit/Source/WebKit2/Shared/
WebEvent.cpp 27 #include "WebEvent.h"
35 WebEvent::WebEvent()
42 WebEvent::WebEvent(Type type, Modifiers modifiers, double timestamp)
49 void WebEvent::encode(CoreIPC::ArgumentEncoder* encoder) const
54 bool WebEvent::decode(CoreIPC::ArgumentDecoder* decoder, WebEvent& t)
WebTouchEvent.cpp 27 #include "WebEvent.h"
36 WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp)
37 : WebEvent(type, modifiers, timestamp)
49 WebEvent::encode(encoder);
56 if (!WebEvent::decode(decoder, t))
WebGestureEvent.cpp 27 #include "WebEvent.h"
39 : WebEvent(type, modifiers, timestamp)
48 WebEvent::encode(encoder);
56 if (!WebEvent::decode(decoder, t))
WebEventConversion.cpp 29 #include "WebEvent.h"
35 WebKit2PlatformMouseEvent(const WebMouseEvent& webEvent)
37 switch (webEvent.type()) {
38 case WebEvent::MouseDown:
41 case WebEvent::MouseUp:
44 case WebEvent::MouseMove:
51 switch (webEvent.button()) {
68 m_position = webEvent.position();
69 m_globalPosition = webEvent.globalPosition();
70 m_clickCount = webEvent.clickCount()
    [all...]
WebKeyboardEvent.cpp 27 #include "WebEvent.h"
34 : WebEvent(type, modifiers, timestamp)
50 WebEvent::encode(encoder);
58 if (!WebEvent::decode(decoder, t))
WebMouseEvent.cpp 27 #include "WebEvent.h"
37 : WebEvent()
50 : WebEvent(type, modifiers, timestamp)
67 : WebEvent(type, modifiers, timestamp)
83 WebEvent::encode(encoder);
95 if (!WebEvent::decode(decoder, t))
WebEvent.h 43 class WebEvent {
98 WebEvent();
100 WebEvent(Type, Modifiers, double timestamp);
103 static bool decode(CoreIPC::ArgumentDecoder*, WebEvent&);
112 class WebMouseEvent : public WebEvent {
158 class WebWheelEvent : public WebEvent {
213 class WebKeyboardEvent : public WebEvent {
249 class WebGestureEvent : public WebEvent {
307 class WebTouchEvent : public WebEvent {
WebWheelEvent.cpp 27 #include "WebEvent.h"
37 : WebEvent(type, modifiers, timestamp)
53 : WebEvent(type, modifiers, timestamp)
69 WebEvent::encode(encoder);
85 if (!WebEvent::decode(decoder, t))
  /external/webkit/Source/WebKit2/Shared/qt/
WebEventFactoryQt.cpp 53 static WebEvent::Type webEventTypeForEvent(QEvent* event)
58 return WebEvent::MouseDown;
60 return WebEvent::MouseUp;
62 return WebEvent::MouseMove;
64 return WebEvent::Wheel;
66 return WebEvent::KeyDown;
68 return WebEvent::KeyUp;
71 return WebEvent::TouchStart;
73 return WebEvent::TouchMove;
75 return WebEvent::TouchEnd
    [all...]
  /external/webkit/Source/WebKit2/Shared/win/
WebEventFactory.cpp 72 static inline int clickCount(WebEvent::Type type, WebMouseEvent::Button button, const POINT& position, double timeStampSeconds)
83 if (type == WebEvent::MouseDown) {
92 } else if (type == WebEvent::MouseMove) {
104 static inline WebEvent::Modifiers modifiersForEvent(WPARAM wparam)
108 modifiers |= WebEvent::ControlKey;
110 modifiers |= WebEvent::ShiftKey;
112 modifiers |= WebEvent::AltKey;
113 return static_cast<WebEvent::Modifiers>(modifiers);
116 static inline WebEvent::Modifiers modifiersForCurrentKeyState()
120 modifiers |= WebEvent::ControlKey
    [all...]
  /external/webkit/Source/WebKit2/Shared/gtk/
WebEventFactory.cpp 48 static inline WebEvent::Modifiers modifiersForEvent(const GdkEvent* event)
56 modifiers |= WebEvent::ControlKey;
58 modifiers |= WebEvent::ShiftKey;
60 modifiers |= WebEvent::AltKey;
62 modifiers |= WebEvent::MetaKey;
64 return static_cast<WebEvent::Modifiers>(modifiers);
105 WebEvent::Type type = static_cast<WebEvent::Type>(0);
108 type = WebEvent::MouseMove;
113 type = WebEvent::MouseDown
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleNavigationAction.cpp 60 WebEvent::Modifiers InjectedBundleNavigationAction::modifiersForNavigationAction(const NavigationAction& navigationAction)
65 modifiers |= WebEvent::ShiftKey;
67 modifiers |= WebEvent::ControlKey;
69 modifiers |= WebEvent::AltKey;
71 modifiers |= WebEvent::MetaKey;
74 return static_cast<WebEvent::Modifiers>(modifiers);
InjectedBundleNavigationAction.h 32 #include "WebEvent.h"
52 static WebEvent::Modifiers modifiersForNavigationAction(const WebCore::NavigationAction&);
56 WebEvent::Modifiers modifiers() const { return m_modifiers; }
67 WebEvent::Modifiers m_modifiers;
InjectedBundlePageUIClient.h 31 #include "WebEvent.h"
53 void mouseDidMoveOverElement(WebPage*, const WebCore::HitTestResult&, WebEvent::Modifiers, RefPtr<APIObject>& userData);
  /external/webkit/Source/WebKit2/UIProcess/
WebPolicyClient.h 31 #include "WebEvent.h"
50 bool decidePolicyForNavigationAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEvent::Modifiers, WebMouseEvent::Button, const WebCore::ResourceRequest&, WebFramePolicyListenerProxy*, APIObject* userData);
51 bool decidePolicyForNewWindowAction(WebPageProxy*, WebFrameProxy*, WebCore::NavigationType, WebEvent::Modifiers, WebMouseEvent::Button, const WebCore::ResourceRequest&, const String& frameName, WebFramePolicyListenerProxy*, APIObject* userData);
WebPolicyClient.cpp 37 bool WebPolicyClient::decidePolicyForNavigationAction(WebPageProxy* page, WebFrameProxy* frame, NavigationType type, WebEvent::Modifiers modifiers, WebMouseEvent::Button mouseButton, const ResourceRequest& resourceRequest, WebFramePolicyListenerProxy* listener, APIObject* userData)
48 bool WebPolicyClient::decidePolicyForNewWindowAction(WebPageProxy* page, WebFrameProxy* frame, NavigationType type, WebEvent::Modifiers modifiers, WebMouseEvent::Button mouseButton, const ResourceRequest& resourceRequest, const String& frameName, WebFramePolicyListenerProxy* listener, APIObject* userData)
WebUIClient.h 31 #include "WebEvent.h"
55 PassRefPtr<WebPageProxy> createNewPage(WebPageProxy*, const WebCore::WindowFeatures&, WebEvent::Modifiers, WebMouseEvent::Button);
68 void mouseDidMoveOverElement(WebPageProxy*, WebEvent::Modifiers, APIObject*);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePageOverlay.cpp 86 case WebEvent::MouseDown: {
92 case WebEvent::MouseUp: {
98 case WebEvent::MouseMove: {
  /external/webkit/Source/WebCore/platform/iphone/
KeyEventIPhone.mm 33 #import "WebEvent.h"
39 static String keyIdentifierForKeyEvent(WebEvent *event)
51 PlatformKeyboardEvent::PlatformKeyboardEvent(WebEvent *event)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/x11/
NetscapePluginX11.cpp 32 #include "WebEvent.h"
267 static inline unsigned xKeyModifiers(const WebEvent& event)
283 static inline void setCommonMouseEventFields(XEventType& xEvent, const WebMouseEvent& webEvent, const WebCore::IntPoint& pluginLocation)
287 xEvent.time = xTimeStamp(webEvent.timestamp());
288 xEvent.x = webEvent.position().x() - pluginLocation.x();
289 xEvent.y = webEvent.position().y() - pluginLocation.y();
290 xEvent.x_root = webEvent.globalPosition().x();
291 xEvent.y_root = webEvent.globalPosition().y();
292 xEvent.state = xKeyModifiers(webEvent);
296 static inline void setXMotionEventFields(XEvent& xEvent, const WebMouseEvent& webEvent, const WebCore::IntPoint& pluginLocation
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/gtk/
WebPageGtk.cpp 32 #include "WebEvent.h"
62 if (keyboardEvent.type() != WebEvent::KeyDown && keyboardEvent.type() != WebEvent::RawKeyDown)
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/mac/
NetscapePluginMac.mm 30 #import "WebEvent.h"
334 static bool anyMouseButtonIsDown(const WebEvent& event)
336 if (event.type() == WebEvent::MouseDown)
339 if (event.type() == WebEvent::MouseMove && static_cast<const WebMouseEvent&>(event).button() != WebMouseEvent::NoButton)
345 static bool rightMouseButtonIsDown(const WebEvent& event)
347 if (event.type() == WebEvent::MouseDown && static_cast<const WebMouseEvent&>(event).button() == WebMouseEvent::RightButton)
350 if (event.type() == WebEvent::MouseMove && static_cast<const WebMouseEvent&>(event).button() == WebMouseEvent::RightButton)
356 static EventModifiers modifiersForEvent(const WebEvent& event)
427 static uint32_t modifierFlags(const WebEvent& event)
476 case WebEvent::MouseDown
    [all...]
  /external/webkit/Source/WebKit2/Shared/mac/
WebEventFactory.mm 72 static WebEvent::Type mouseEventTypeForEvent(NSEvent* event)
81 return WebEvent::MouseMove;
85 return WebEvent::MouseDown;
89 return WebEvent::MouseUp;
91 return WebEvent::MouseMove;
244 static WebEvent::Type gestureEventTypeForEvent(NSEvent *event)
248 return WebEvent::GestureScrollBegin;
250 return WebEvent::GestureScrollEnd;
253 return WebEvent::GestureScrollEnd;
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/Netscape/win/
NetscapePluginWin.cpp 30 #include "WebEvent.h"
191 case WebEvent::MouseMove:
207 case WebEvent::MouseDown:
223 case WebEvent::MouseUp:
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 32 #include "WebEvent.h"
560 const WebEvent* currentEvent = WebPage::currentEvent();
566 if ((event->type() == eventNames().mousemoveEvent && currentEvent->type() == WebEvent::MouseMove)
567 || (event->type() == eventNames().mousedownEvent && currentEvent->type() == WebEvent::MouseDown)
568 || (event->type() == eventNames().mouseupEvent && currentEvent->type() == WebEvent::MouseUp)) {
570 if (currentEvent->type() == WebEvent::MouseDown)
574 } else if (event->type() == eventNames().mousewheelEvent && currentEvent->type() == WebEvent::Wheel) {
577 } else if (event->type() == eventNames().mouseoverEvent && currentEvent->type() == WebEvent::MouseMove) {
580 } else if (event->type() == eventNames().mouseoutEvent && currentEvent->type() == WebEvent::MouseMove) {
583 } else if ((event->type() == eventNames().keydownEvent && currentEvent->type() == WebEvent::KeyDown
    [all...]

Completed in 124 milliseconds

1 2