Home | History | Annotate | Download | only in web

Lines Matching refs:WebInputEvent

29 #include "WebInputEvent.h"
239 bool WebPluginScrollbarImpl::handleInputEvent(const WebInputEvent& event)
242 case WebInputEvent::MouseDown:
244 case WebInputEvent::MouseUp:
246 case WebInputEvent::MouseMove:
248 case WebInputEvent::MouseLeave:
250 case WebInputEvent::MouseWheel:
252 case WebInputEvent::KeyDown:
254 case WebInputEvent::Undefined:
255 case WebInputEvent::MouseEnter:
256 case WebInputEvent::RawKeyDown:
257 case WebInputEvent::KeyUp:
258 case WebInputEvent::Char:
259 case WebInputEvent::TouchStart:
260 case WebInputEvent::TouchMove:
261 case WebInputEvent::TouchEnd:
262 case WebInputEvent::TouchCancel:
279 bool WebPluginScrollbarImpl::onMouseDown(const WebInputEvent& event)
291 bool WebPluginScrollbarImpl::onMouseUp(const WebInputEvent& event)
301 bool WebPluginScrollbarImpl::onMouseMove(const WebInputEvent& event)
317 bool WebPluginScrollbarImpl::onMouseLeave(const WebInputEvent& event)
325 bool WebPluginScrollbarImpl::onMouseWheel(const WebInputEvent& event)
332 bool WebPluginScrollbarImpl::onKeyDown(const WebInputEvent& event)
339 keyCode = ((keyboard.modifiers & WebInputEvent::ShiftKey) ? VKEY_PRIOR : VKEY_NEXT);
341 if (keyboard.modifiers == WebInputEvent::ControlKey) {
355 if (keyboard.isSystemKey || (keyboard.modifiers & WebInputEvent::ShiftKey))