Searched refs:platformEvent (Results 1 - 12 of 12) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/replay/
H A DReplayInputDispatchMethods.cpp58 controller.page().userInputBridge().handleKeyEvent(platformEvent(), InputSource::Synthetic);
65 controller.page().userInputBridge().handleMouseMoveOnScrollbarEvent(platformEvent(), InputSource::Synthetic);
67 controller.page().userInputBridge().handleMouseMoveEvent(platformEvent(), InputSource::Synthetic);
72 controller.page().userInputBridge().handleMousePressEvent(platformEvent(), InputSource::Synthetic);
77 controller.page().userInputBridge().handleMouseReleaseEvent(platformEvent(), InputSource::Synthetic);
82 controller.page().userInputBridge().handleWheelEvent(platformEvent(), InputSource::Synthetic);
H A DSerializationMethods.cpp297 PlatformKeyboardEvent platformEvent = PlatformKeyboardEvent(type, text, unmodifiedText, keyIdentifier, windowsVirtualKeyCode, nativeVirtualKeyCode, macCharCode, autoRepeat, keypad, systemKey, modifiers, timestamp); local
299 input = std::make_unique<PlatformKeyboardEventAppKit>(platformEvent, handledByInputMethod, commands);
301 input = std::make_unique<PlatformKeyboardEvent>(platformEvent);
/macosx-10.10/JavaScriptCore-7600.1.17/replay/scripts/tests/expected/
H A Dgenerate-enum-with-guard.json-TestReplayInputs.cpp39 HandleWheelEvent::HandleWheelEvent(std::unique_ptr<PlatformWheelEvent> platformEvent) argument
41 , m_platformEvent(WTF::move(platformEvent))
59 encodedValue.put<WebCore::PlatformWheelEvent>(ASCIILiteral("platformEvent"), input.platformEvent());
64 std::unique_ptr<WebCore::PlatformWheelEvent> platformEvent; local
65 if (!encodedValue.get<WebCore::PlatformWheelEvent>(ASCIILiteral("platformEvent"), platformEvent))
68 input = std::make_unique<Test::HandleWheelEvent>(WTF::move(platformEvent));
H A Dgenerate-enum-with-guard.json-TestReplayInputs.h68 HandleWheelEvent(std::unique_ptr<PlatformWheelEvent> platformEvent);
73 const PlatformWheelEvent& platformEvent() const { return *m_platformEvent; } function in class:Test::HandleWheelEvent
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/gtk/
H A DWebEditorClientGtk.cpp76 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); local
77 if (!platformEvent)
81 if (platformEvent->windowsVirtualKeyCode() == VK_PROCESSKEY)
91 if (platformEvent->type() == PlatformEvent::RawKeyDown) {
120 if (platformEvent->ctrlKey() || platformEvent->altKey())
123 if (frame->editor().insertText(platformEvent->text(), event))
129 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); local
130 if (platformEvent && platformEvent
[all...]
/macosx-10.10/WebCore-7600.1.25/dom/
H A DKeyboardEvent.h65 static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* view) argument
67 return adoptRef(new KeyboardEvent(platformEvent, view));
H A DElement.cpp227 bool Element::dispatchMouseEvent(const PlatformMouseEvent& platformEvent, const AtomicString& eventType, int detail, Element* relatedTarget) argument
232 RefPtr<MouseEvent> mouseEvent = MouseEvent::create(eventType, document().defaultView(), platformEvent, detail, relatedTarget);
271 bool Element::dispatchKeyEvent(const PlatformKeyboardEvent& platformEvent) argument
273 RefPtr<KeyboardEvent> event = KeyboardEvent::create(platformEvent, document().defaultView());
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DWebPageMac.mm212 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
213 if (!platformEvent)
217 ASSERT(!platformEvent->macEvent()); // Cannot have a native event in WebProcess.
220 if (platformEvent->type() != PlatformEvent::Char && platformEvent->windowsVirtualKeyCode() == VK_ESCAPE && commands.size() == 1 && commandNameForSelectorName(commands[0].commandName) == "cancelOperation")
236 if (!haveTextInsertionCommands || platformEvent->type() == PlatformEvent::Char) {
/macosx-10.10/WebKit2-7600.1.25/WebProcess/Plugins/PDF/
H A DPDFPlugin.mm1347 PlatformMouseEvent platformEvent = platform(event);
1393 return targetScrollbar->mouseMoved(platformEvent);
1414 return targetScrollbar->mouseDown(platformEvent);
1429 return targetScrollbar->mouseUp(platformEvent);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebHTMLView.mm4150 PlatformKeyboardEvent platformEvent = PlatformEventFactory::createPlatformKeyboardEvent(event);
4151 platformEvent.disambiguateKeyDownEvent(PlatformEvent::RawKeyDown);
4152 return KeyboardEvent::create(platformEvent, coreFrame->document()->defaultView());
5751 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
5752 if (!platformEvent)
5755 NSEvent *macEvent = platformEvent->macEvent();
5788 if (!haveTextInsertionCommands || platformEvent->type() == PlatformEvent::Char)
5831 if (const PlatformKeyboardEvent* platformEvent = wcEvent->keyEvent()) {
5832 WebEvent *event = platformEvent->event();
5837 BOOL shift = platformEvent
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/ios/
H A DWebPageIOS.mm273 const PlatformKeyboardEvent* platformEvent = event->keyEvent();
274 if (!platformEvent)
279 bool sendResult = WebProcess::shared().parentProcessConnection()->sendSync(Messages::WebPageProxy::InterpretKeyEvent(editorState(), platformEvent->type() == PlatformKeyboardEvent::Char),
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/
H A DWebPage.cpp2206 PlatformKeyboardEvent platformEvent(platform(event));
2207 platformEvent.disambiguateKeyDownEvent(PlatformEvent::RawKeyDown);
2208 m_page->focusController().setInitialFocus(forward ? FocusDirectionForward : FocusDirectionBackward, KeyboardEvent::create(platformEvent, frame.document()->defaultView()).get());

Completed in 292 milliseconds