Searched refs:platformEvent (Results 1 – 6 of 6) sorted by relevance
449 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); in handleKeyboardEvent() local450 if (!platformEvent) in handleKeyboardEvent()465 if (platformEvent->type() == PlatformKeyboardEvent::RawKeyDown) { in handleKeyboardEvent()508 if (platformEvent->ctrlKey() || platformEvent->altKey()) in handleKeyboardEvent()511 if (frame->editor()->insertText(platformEvent->text(), event)) in handleKeyboardEvent()
58 …static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* … in create() argument60 return adoptRef(new KeyboardEvent(platformEvent, view)); in create()
663 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); in handleKeyboardEvent() local664 int keyCode = platformEvent->nativeVirtualKeyCode(); in handleKeyboardEvent()666 const String text = platformEvent->text(); in handleKeyboardEvent()675 text.ascii().data(), platformEvent->unmodifiedText().ascii().data(), in handleKeyboardEvent()676 platformEvent->keyIdentifier().ascii().data()); in handleKeyboardEvent()
456 PlatformWheelEventBuilder platformEvent(mainFrameImpl()->frameView(), event); in mouseWheel() local457 mainFrameImpl()->frame()->eventHandler()->handleWheelEvent(platformEvent); in mouseWheel()678 PlatformMouseEventBuilder platformEvent(view, mouseEvent); in sendContextMenuEvent() local681 bool handled = focusedFrame->eventHandler()->sendContextMenuEvent(platformEvent); in sendContextMenuEvent()1250 PlatformKeyboardEventBuilder platformEvent(keyboardEvent); in setInitialFocus() local1251 RefPtr<KeyboardEvent> webkitEvent = KeyboardEvent::create(platformEvent, 0); in setInitialFocus()
132 PlatformKeyboardEvent platformEvent(event);133 platformEvent.disambiguateKeyDownEvent(PlatformKeyboardEvent::RawKeyDown);134 return KeyboardEvent::create(platformEvent, m_frame->document()->defaultView());
5330 if (const PlatformKeyboardEvent* platformEvent = event->keyEvent()) {5331 NSEvent *macEvent = platformEvent->macEvent();5360 … if (!haveTextInsertionCommands || platformEvent->type() == PlatformKeyboardEvent::Char) {