Home
last modified time | relevance | path

Searched refs:platformEvent (Results 1 – 6 of 6) sorted by relevance

/external/webkit/WebKit/gtk/WebCoreSupport/
DEditorClientGtk.cpp449 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); in handleKeyboardEvent() local
450 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()
/external/webkit/WebCore/dom/
DKeyboardEvent.h58 …static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* … in create() argument
60 return adoptRef(new KeyboardEvent(platformEvent, view)); in create()
/external/webkit/WebCore/plugins/mac/
DPluginViewMac.cpp663 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); in handleKeyboardEvent() local
664 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()
/external/webkit/WebKit/chromium/src/
DWebViewImpl.cpp456 PlatformWheelEventBuilder platformEvent(mainFrameImpl()->frameView(), event); in mouseWheel() local
457 mainFrameImpl()->frame()->eventHandler()->handleWheelEvent(platformEvent); in mouseWheel()
678 PlatformMouseEventBuilder platformEvent(view, mouseEvent); in sendContextMenuEvent() local
681 bool handled = focusedFrame->eventHandler()->sendContextMenuEvent(platformEvent); in sendContextMenuEvent()
1250 PlatformKeyboardEventBuilder platformEvent(keyboardEvent); in setInitialFocus() local
1251 RefPtr<KeyboardEvent> webkitEvent = KeyboardEvent::create(platformEvent, 0); in setInitialFocus()
/external/webkit/WebCore/page/mac/
DEventHandlerMac.mm132 PlatformKeyboardEvent platformEvent(event);
133 platformEvent.disambiguateKeyDownEvent(PlatformKeyboardEvent::RawKeyDown);
134 return KeyboardEvent::create(platformEvent, m_frame->document()->defaultView());
/external/webkit/WebKit/mac/WebView/
DWebHTMLView.mm5330 if (const PlatformKeyboardEvent* platformEvent = event->keyEvent()) {
5331 NSEvent *macEvent = platformEvent->macEvent();
5360 … if (!haveTextInsertionCommands || platformEvent->type() == PlatformKeyboardEvent::Char) {