Searched refs:platformEvent (Results 1 – 11 of 11) sorted by relevance
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/ |
D | WebEditorClientGtk.cpp | 71 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); in handleKeyboardEvent() local 72 if (!platformEvent) in handleKeyboardEvent() 82 if (platformEvent->type() == PlatformKeyboardEvent::RawKeyDown) { in handleKeyboardEvent() 107 frame->editor()->insertText(platformEvent->text(), event); in handleKeyboardEvent() 116 if (platformEvent->ctrlKey() || platformEvent->altKey()) in handleKeyboardEvent() 119 if (frame->editor()->insertText(platformEvent->text(), event)) in handleKeyboardEvent()
|
/external/webkit/Source/WebCore/dom/ |
D | KeyboardEvent.h | 61 …static PassRefPtr<KeyboardEvent> create(const PlatformKeyboardEvent& platformEvent, AbstractView* … in create() argument 63 return adoptRef(new KeyboardEvent(platformEvent, view)); in create()
|
/external/webkit/Source/WebKit/gtk/WebCoreSupport/ |
D | EditorClientGtk.cpp | 709 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); in handleKeyboardEvent() local 710 if (!platformEvent) in handleKeyboardEvent() 719 if (platformEvent->type() == PlatformKeyboardEvent::RawKeyDown) { in handleKeyboardEvent() 758 if (platformEvent->ctrlKey() || platformEvent->altKey()) in handleKeyboardEvent() 761 if (frame->editor()->insertText(platformEvent->text(), event)) in handleKeyboardEvent()
|
/external/webkit/Source/WebCore/plugins/mac/ |
D | PluginViewMac.mm | 647 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); 648 int keyCode = platformEvent->nativeVirtualKeyCode(); 650 const String text = platformEvent->text(); 659 text.ascii().data(), platformEvent->unmodifiedText().ascii().data(), 660 platformEvent->keyIdentifier().ascii().data());
|
/external/webkit/Source/WebKit2/WebProcess/WebPage/mac/ |
D | WebPageMac.mm | 172 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); 173 if (!platformEvent) 177 if ([platformEvent->macEvent() type] == NSFlagsChanged) 208 if (!haveTextInsertionCommands || platformEvent->type() == PlatformKeyboardEvent::Char) {
|
/external/webkit/Source/WebCore/page/mac/ |
D | EventHandlerMac.mm | 129 PlatformKeyboardEvent platformEvent(event); 130 platformEvent.disambiguateKeyDownEvent(PlatformKeyboardEvent::RawKeyDown); 131 return KeyboardEvent::create(platformEvent, m_frame->document()->defaultView());
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebViewImpl.cpp | 574 PlatformWheelEventBuilder platformEvent(mainFrameImpl()->frameView(), event); in mouseWheel() local 575 return mainFrameImpl()->frame()->eventHandler()->handleWheelEvent(platformEvent); in mouseWheel() 1610 PlatformKeyboardEventBuilder platformEvent(keyboardEvent); in setInitialFocus() local 1611 RefPtr<KeyboardEvent> webkitEvent = KeyboardEvent::create(platformEvent, 0); in setInitialFocus()
|
/external/webkit/Source/WebKit/gtk/webkit/ |
D | webkitwebview.cpp | 812 PlatformMouseEvent platformEvent(event); in webkit_web_view_button_press_event() local 813 platformEvent.setClickCount(priv->currentClickCount); in webkit_web_view_button_press_event() 814 priv->previousClickPoint = platformEvent.pos(); in webkit_web_view_button_press_event() 825 gboolean result = frame->eventHandler()->handleMousePressEvent(platformEvent); in webkit_web_view_button_press_event() 1537 PlatformMouseEvent platformEvent(&event->button); in webkit_web_view_drag_end() local 1538 …frame->eventHandler()->dragSourceEndedAt(platformEvent, gdkDragActionToDragOperation(gdk_drag_cont… in webkit_web_view_drag_end()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebViewCore.cpp | 3191 void WebViewCore::setInitialFocus(const WebCore::PlatformKeyboardEvent& platformEvent) in setInitialFocus() argument 3198 switch (platformEvent.nativeVirtualKeyCode()) { in setInitialFocus() 3212 RefPtr<KeyboardEvent> webkitEvent = KeyboardEvent::create(platformEvent, 0); in setInitialFocus()
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebHTMLView.mm | 5499 const PlatformKeyboardEvent* platformEvent = event->keyEvent(); 5500 if (!platformEvent) 5503 NSEvent *macEvent = platformEvent->macEvent(); 5536 if (!haveTextInsertionCommands || platformEvent->type() == PlatformKeyboardEvent::Char)
|
/external/webkit/Source/WebKit/mac/ |
D | ChangeLog | 837 return value in case platformEvent is null to be less mysterious. Moved receivedNOOP from
|