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

1 2

  /external/webkit/Source/WebKit/chromium/src/
WebInputEventConversion.cpp 42 #include "WebInputEvent.h"
59 m_shiftKey = (e.modifiers & WebInputEvent::ShiftKey);
60 m_ctrlKey = (e.modifiers & WebInputEvent::ControlKey);
61 m_altKey = (e.modifiers & WebInputEvent::AltKey);
62 m_metaKey = (e.modifiers & WebInputEvent::MetaKey);
68 case WebInputEvent::MouseMove:
69 case WebInputEvent::MouseLeave: // synthesize a move event
73 case WebInputEvent::MouseDown:
77 case WebInputEvent::MouseUp:
99 m_shiftKey = (e.modifiers & WebInputEvent::ShiftKey)
    [all...]
WebScrollbarImpl.h 58 virtual bool handleInputEvent(const WebInputEvent&);
74 bool onMouseDown(const WebInputEvent& event);
75 bool onMouseUp(const WebInputEvent& event);
76 bool onMouseMove(const WebInputEvent& event);
77 bool onMouseLeave(const WebInputEvent& event);
78 bool onMouseWheel(const WebInputEvent& event);
79 bool onKeyDown(const WebInputEvent& event);
WebScrollbarImpl.cpp 41 #include "WebInputEvent.h"
125 bool WebScrollbarImpl::handleInputEvent(const WebInputEvent& event)
128 case WebInputEvent::MouseDown:
130 case WebInputEvent::MouseUp:
132 case WebInputEvent::MouseMove:
134 case WebInputEvent::MouseLeave:
136 case WebInputEvent::MouseWheel:
138 case WebInputEvent::KeyDown:
140 case WebInputEvent::Undefined:
141 case WebInputEvent::MouseEnter
    [all...]
WebPopupMenuImpl.cpp 44 #include "WebInputEvent.h"
181 bool WebPopupMenuImpl::handleInputEvent(const WebInputEvent& inputEvent)
190 case WebInputEvent::MouseMove:
194 case WebInputEvent::MouseLeave:
198 case WebInputEvent::MouseWheel:
202 case WebInputEvent::MouseDown:
206 case WebInputEvent::MouseUp:
218 case WebInputEvent::RawKeyDown:
219 case WebInputEvent::KeyDown:
220 case WebInputEvent::KeyUp
    [all...]
WebPluginContainerImpl.cpp 41 #include "WebInputEvent.h"
479 if (webEvent.type == WebInputEvent::Undefined)
508 if (webEvent.type == WebInputEvent::Undefined)
519 if (webEvent.type == WebInputEvent::Undefined)
522 if (webEvent.type == WebInputEvent::KeyDown) {
524 if (webEvent.modifiers == WebInputEvent::MetaKey
526 if (webEvent.modifiers == WebInputEvent::ControlKey
539 const WebInputEvent* currentInputEvent = WebViewImpl::currentInputEvent();
544 && WebInputEvent::isKeyboardEventType(currentInputEvent->type)) {
546 (WebInputEvent::CapsLockOn | WebInputEvent::NumLockOn)
    [all...]
WebViewImpl.cpp 108 #include "WebInputEvent.h"
580 ASSERT((event.type == WebInputEvent::RawKeyDown)
581 || (event.type == WebInputEvent::KeyDown)
582 || (event.type == WebInputEvent::KeyUp));
609 const WebInputEvent::Type contextMenuTriggeringEventType =
611 WebInputEvent::KeyUp;
613 WebInputEvent::RawKeyDown;
616 bool isUnmodifiedMenuKey = !(event.modifiers & WebInputEvent::InputModifiers) && event.windowsKeyCode == VKEY_APPS;
617 bool isShiftF10 = event.modifiers == WebInputEvent::ShiftKey && event.windowsKeyCode == VKEY_F10;
627 if (WebInputEvent::RawKeyDown == event.type)
    [all...]
WebPopupMenuImpl.h 70 virtual bool handleInputEvent(const WebInputEvent&);
WebViewImpl.h 100 virtual bool handleInputEvent(const WebInputEvent&);
330 static const WebInputEvent* currentInputEvent()
531 static const WebInputEvent* m_currentInputEvent;
  /external/webkit/Source/WebKit/chromium/src/win/
WebInputEventFactory.cpp 34 #include "WebInputEvent.h"
90 static void SetToggleKeyState(WebInputEvent* event)
94 event->modifiers |= WebInputEvent::NumLockOn;
96 event->modifiers |= WebInputEvent::CapsLockOn;
116 result.type = WebInputEvent::RawKeyDown;
121 result.type = WebInputEvent::KeyUp;
124 result.type = WebInputEvent::Char;
128 result.type = WebInputEvent::Char;
130 result.type = WebInputEvent::Char;
136 if (result.type == WebInputEvent::Char || result.type == WebInputEvent::RawKeyDown)
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebInputEvent.h 49 // WebInputEvent --------------------------------------------------------------
51 class WebInputEvent {
53 WebInputEvent(unsigned sizeParam = sizeof(WebInputEvent))
127 // into WebCore, so round-tripping from WebInputEvent to a WebCore
140 // Returns true if the WebInputEvent |type| is a mouse event.
151 // Returns true if the WebInputEvent |type| is a keyboard event.
160 // Returns true if the WebInputEvent |type| is a touch event.
169 // Returns true if the WebInputEvent |type| should be handled as user gesture.
182 class WebKeyboardEvent : public WebInputEvent {
    [all...]
WebScrollbar.h 39 class WebInputEvent;
93 virtual bool handleInputEvent(const WebInputEvent&) = 0;
WebWidget.h 42 class WebInputEvent;
91 virtual bool handleInputEvent(const WebInputEvent&) = 0;
WebPlugin.h 44 class WebInputEvent;
72 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
  /external/webkit/Source/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...]
PopupMenuTest.cpp 42 #include "WebInputEvent.h"
133 virtual bool handleInputEvent(const WebInputEvent&) { return true; }
217 simulateKeyEvent(WebInputEvent::RawKeyDown, keyCode);
222 simulateKeyEvent(WebInputEvent::KeyUp, keyCode);
227 void simulateKeyEvent(WebInputEvent::Type eventType, int keyCode)
  /external/chromium/chrome/browser/ui/views/
unhandled_keyboard_event_handler.cc 27 if (event.type == WebKit::WebInputEvent::Char && ignore_next_char_event_) {
35 if (event.type == WebKit::WebInputEvent::RawKeyDown) {
dropdown_bar_host_gtk.cc 39 wke.type = WebKit::WebInputEvent::KeyDown;
  /external/webkit/Source/WebKit/chromium/src/gtk/
WebInputEventFactory.cpp 37 #include "WebInputEvent.h"
97 modifiers |= WebInputEvent::ShiftKey;
99 modifiers |= WebInputEvent::ControlKey;
101 modifiers |= WebInputEvent::AltKey;
104 modifiers |= WebInputEvent::MetaKey;
107 modifiers |= WebInputEvent::LeftButtonDown;
109 modifiers |= WebInputEvent::MiddleButtonDown;
111 modifiers |= WebInputEvent::RightButtonDown;
113 modifiers |= WebInputEvent::CapsLockOn;
115 modifiers |= WebInputEvent::NumLockOn
    [all...]
  /external/chromium/webkit/glue/
context_menu_unittest.cc 14 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
20 using WebKit::WebInputEvent;
53 mouse_event.type = WebInputEvent::MouseDown;
64 mouse_event.type = WebInputEvent::MouseUp;
  /external/webkit/Source/WebKit/chromium/src/mac/
WebInputEventFactory.mm 34 #include "WebInputEvent.h"
499 modifiers |= WebInputEvent::ControlKey;
501 modifiers |= WebInputEvent::ShiftKey;
503 modifiers |= WebInputEvent::AltKey;
505 modifiers |= WebInputEvent::MetaKey;
507 modifiers |= WebInputEvent::CapsLockOn;
541 isKeyUpEvent(event) ? WebInputEvent::KeyUp : WebInputEvent::RawKeyDown;
546 result.modifiers |= WebInputEvent::IsKeyPad;
549 result.modifiers |= WebInputEvent::IsAutoRepeat
    [all...]
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 133 static void initMouseEvent(WebInputEvent::Type t, WebMouseEvent::Button b,
148 static bool applyKeyModifier(const string& modifierName, WebInputEvent* event)
157 event->modifiers |= WebInputEvent::ControlKey;
159 event->modifiers |= WebInputEvent::ShiftKey;
161 event->modifiers |= WebInputEvent::AltKey;
172 event->modifiers |= WebInputEvent::MetaKey;
179 event->modifiers |= WebInputEvent::MetaKey;
185 static bool applyKeyModifiers(const CppVariant* argument, WebInputEvent* event)
336 initMouseEvent(WebInputEvent::MouseDown, pressedButton, lastMousePos, &event);
396 initMouseEvent(WebInputEvent::MouseDown, buttonType, lastMousePos, &event)
    [all...]
EventSender.h 43 #include "WebInputEvent.h"
141 void sendCurrentTouchEvent(const WebKit::WebInputEvent::Type);
  /external/chromium/chrome/browser/renderer_host/
gtk_im_context_wrapper.cc 409 wke->type = WebKit::WebInputEvent::Char;
504 SendFakeCompositionKeyEvent(WebKit::WebInputEvent::RawKeyDown);
506 SendFakeCompositionKeyEvent(WebKit::WebInputEvent::KeyUp);
547 SendFakeCompositionKeyEvent(WebKit::WebInputEvent::RawKeyDown);
556 SendFakeCompositionKeyEvent(WebKit::WebInputEvent::KeyUp);
593 WebKit::WebInputEvent::Type type) {
render_widget_host_view_views.cc 25 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
81 modifiers |= WebKit::WebInputEvent::ShiftKey;
83 modifiers |= WebKit::WebInputEvent::ControlKey;
85 modifiers |= WebKit::WebInputEvent::AltKey;
87 modifiers |= WebKit::WebInputEvent::CapsLockOn;
108 WebKit::WebInputEvent::Type TouchEventTypeFromEvent(
112 return WebKit::WebInputEvent::TouchStart;
114 return WebKit::WebInputEvent::TouchEnd;
116 return WebKit::WebInputEvent::TouchMove;
118 return WebKit::WebInputEvent::TouchCancel
    [all...]
gtk_im_context_wrapper.h 16 #include "third_party/WebKit/Source/WebKit/chromium/public/WebInputEvent.h"
105 void SendFakeCompositionKeyEvent(WebKit::WebInputEvent::Type type);

Completed in 297 milliseconds

1 2