HomeSort by relevance Sort by last modified time
    Searched full:webinputevent (Results 1 - 18 of 18) sorted by null

  /external/webkit/WebKit/chromium/src/
WebInputEventConversion.cpp 42 #include "WebInputEvent.h"
58 m_shiftKey = (e.modifiers & WebInputEvent::ShiftKey);
59 m_ctrlKey = (e.modifiers & WebInputEvent::ControlKey);
60 m_altKey = (e.modifiers & WebInputEvent::AltKey);
61 m_metaKey = (e.modifiers & WebInputEvent::MetaKey);
67 case WebInputEvent::MouseMove:
68 case WebInputEvent::MouseLeave: // synthesize a move event
72 case WebInputEvent::MouseDown:
76 case WebInputEvent::MouseUp:
98 m_shiftKey = (e.modifiers & WebInputEvent::ShiftKey)
    [all...]
WebPopupMenuImpl.cpp 44 #include "WebInputEvent.h"
176 bool WebPopupMenuImpl::handleInputEvent(const WebInputEvent& inputEvent)
185 case WebInputEvent::MouseMove:
189 case WebInputEvent::MouseLeave:
193 case WebInputEvent::MouseWheel:
197 case WebInputEvent::MouseDown:
201 case WebInputEvent::MouseUp:
213 case WebInputEvent::RawKeyDown:
214 case WebInputEvent::KeyDown:
215 case WebInputEvent::KeyUp
    [all...]
WebInputEventConversion.h 36 #include "../public/WebInputEvent.h"
55 // These classes are used to convert from WebInputEvent subclasses to
WebViewImpl.cpp 90 #include "WebInputEvent.h"
462 ASSERT((event.type == WebInputEvent::RawKeyDown)
463 || (event.type == WebInputEvent::KeyDown)
464 || (event.type == WebInputEvent::KeyUp));
487 const WebInputEvent::Type contextMenuTriggeringEventType =
489 WebInputEvent::KeyUp;
491 WebInputEvent::RawKeyDown;
495 || ((event.modifiers == WebInputEvent::ShiftKey) && (event.windowsKeyCode == VKEY_F10)))
510 if (WebInputEvent::RawKeyDown == event.type)
558 if (WebInputEvent::RawKeyDown == event.type
    [all...]
WebInputEvent.cpp 32 #include "WebInputEvent.h"
WebPopupMenuImpl.h 70 virtual bool handleInputEvent(const WebInputEvent&);
ChromeClientImpl.cpp 62 #include "WebInputEvent.h"
231 static inline bool currentEventShouldCauseBackgroundTab(const WebInputEvent* inputEvent)
236 if (inputEvent->type != WebInputEvent::MouseUp)
WebPluginContainerImpl.cpp 38 #include "WebInputEvent.h"
343 if (webEvent.type == WebInputEvent::Undefined)
388 if (webEvent.type == WebInputEvent::Undefined)
WebViewImpl.h 88 virtual bool handleInputEvent(const WebInputEvent&);
294 static const WebInputEvent* currentInputEvent()
449 static const WebInputEvent* m_currentInputEvent;
  /external/webkit/WebKit/chromium/src/win/
WebInputEventFactory.cpp 34 #include "WebInputEvent.h"
106 result.type = WebInputEvent::RawKeyDown;
111 result.type = WebInputEvent::KeyUp;
114 result.type = WebInputEvent::Char;
118 result.type = WebInputEvent::Char;
120 result.type = WebInputEvent::Char;
126 if (result.type == WebInputEvent::Char || result.type == WebInputEvent::RawKeyDown) {
130 if (result.type != WebInputEvent::Char)
134 result.modifiers |= WebInputEvent::ShiftKey
    [all...]
  /external/webkit/WebKit/chromium/tests/
KeyboardTest.cpp 39 #include "WebInputEvent.h"
71 keyboardEvent->type = WebInputEvent::KeyDown;
83 WebInputEvent::Modifiers osModifier = WebInputEvent::MetaKey;
85 WebInputEvent::Modifiers osModifier = WebInputEvent::ControlKey;
95 setupKeyDownEvent(&keyboardEvent, keyCode, WebInputEvent::ControlKey);
183 EXPECT_STREQ("InsertBacktab", interpretTab(WebInputEvent::ShiftKey));
193 EXPECT_STREQ("InsertNewline", interpretNewLine(WebInputEvent::ControlKey));
198 EXPECT_STREQ("InsertLineBreak", interpretNewLine(WebInputEvent::ShiftKey))
    [all...]
  /external/webkit/WebKit/chromium/src/gtk/
WebInputEventFactory.cpp 37 #include "WebInputEvent.h"
70 modifiers |= WebInputEvent::ShiftKey;
72 modifiers |= WebInputEvent::ControlKey;
74 modifiers |= WebInputEvent::AltKey;
77 modifiers |= WebInputEvent::MetaKey;
80 modifiers |= WebInputEvent::LeftButtonDown;
82 modifiers |= WebInputEvent::MiddleButtonDown;
84 modifiers |= WebInputEvent::RightButtonDown;
244 result.type = WebInputEvent::KeyUp;
247 result.type = WebInputEvent::RawKeyDown
    [all...]
  /external/webkit/WebKit/chromium/public/
WebInputEvent.h 48 // WebInputEvent --------------------------------------------------------------
50 class WebInputEvent {
52 WebInputEvent(unsigned sizeParam = sizeof(WebInputEvent))
124 // Returns true if the WebInputEvent |type| is a keyboard event.
136 class WebKeyboardEvent : public WebInputEvent {
182 : WebInputEvent(sizeParam)
199 class WebMouseEvent : public WebInputEvent {
219 : WebInputEvent(sizeParam)
WebPlugin.h 42 class WebInputEvent;
70 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
WebWidget.h 41 class WebInputEvent;
71 virtual bool handleInputEvent(const WebInputEvent&) = 0;
  /external/webkit/WebKit/chromium/src/mac/
WebInputEventFactory.mm 33 #include "WebInputEvent.h"
852 modifiers |= WebInputEvent::ControlKey;
854 modifiers |= WebInputEvent::ShiftKey;
856 modifiers |= WebInputEvent::AltKey;
858 modifiers |= WebInputEvent::MetaKey;
869 isKeyUpEvent(event) ? WebInputEvent::KeyUp : WebInputEvent::RawKeyDown;
874 result.modifiers |= WebInputEvent::IsKeyPad;
877 result.modifiers |= WebInputEvent::IsAutoRepeat;
930 if (result.modifiers & WebInputEvent::MetaKey
    [all...]
  /external/webkit/WebKit/chromium/
WebKit.gyp 126 'public/WebInputEvent.h',
308 'src/WebInputEvent.cpp',
ChangeLog     [all...]

Completed in 1377 milliseconds