Searched refs:inputEvent (Results 1 – 5 of 5) sorted by relevance
181 bool WebPopupMenuImpl::handleInputEvent(const WebInputEvent& inputEvent) in handleInputEvent() argument189 switch (inputEvent.type) { in handleInputEvent()191 MouseMove(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()195 MouseLeave(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()199 MouseWheel(*static_cast<const WebMouseWheelEvent*>(&inputEvent)); in handleInputEvent()203 MouseDown(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()207 MouseUp(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()222 return KeyEvent(*static_cast<const WebKeyboardEvent*>(&inputEvent)); in handleInputEvent()
1131 bool WebViewImpl::handleInputEvent(const WebInputEvent& inputEvent) in handleInputEvent() argument1133 …UserGestureIndicator gestureIndicator(WebInputEvent::isUserGestureEventType(inputEvent.type) ? Def… in handleInputEvent()1143 m_currentInputEvent = &inputEvent; in handleInputEvent()1145 if (m_mouseCaptureNode.get() && WebInputEvent::isMouseEventType(inputEvent.type)) { in handleInputEvent()1150 if (inputEvent.type == WebInputEvent::MouseUp) in handleInputEvent()1154 switch (inputEvent.type) { in handleInputEvent()1172 …rmMouseEventBuilder(mainFrameImpl()->frameView(), *static_cast<const WebMouseEvent*>(&inputEvent)), in handleInputEvent()1173 eventType, static_cast<const WebMouseEvent*>(&inputEvent)->clickCount); in handleInputEvent()1183 switch (inputEvent.type) { in handleInputEvent()1185 mouseMove(*static_cast<const WebMouseEvent*>(&inputEvent)); in handleInputEvent()[all …]
283 static inline bool currentEventShouldCauseBackgroundTab(const WebInputEvent* inputEvent) in currentEventShouldCauseBackgroundTab() argument285 if (!inputEvent) in currentEventShouldCauseBackgroundTab()288 if (inputEvent->type != WebInputEvent::MouseUp) in currentEventShouldCauseBackgroundTab()291 const WebMouseEvent* mouseEvent = static_cast<const WebMouseEvent*>(inputEvent); in currentEventShouldCauseBackgroundTab()
248 … setAttributeEventListener(eventNames().inputEvent, createAttributeEventListener(this, attr)); in parseMappedAttribute()
2781 dispatchEvent(Event::create(eventNames().inputEvent, true, false)); in dispatchInputEvent()