From 399da3c7bc8e255ebbfe961c957e8675dd0a7bd4 Mon Sep 17 00:00:00 2001 From: Arnaud Bienner Date: Mon, 21 Sep 2015 00:47:11 +0200 Subject: [PATCH] Convert cocoa key down/up pressed event to equivalent Qt events --- 3rdparty/qocoa/qsearchfield_mac.mm | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/3rdparty/qocoa/qsearchfield_mac.mm b/3rdparty/qocoa/qsearchfield_mac.mm index e4b78d9d8..d7c20deb5 100644 --- a/3rdparty/qocoa/qsearchfield_mac.mm +++ b/3rdparty/qocoa/qsearchfield_mac.mm @@ -59,6 +59,22 @@ public: } } + void keyDownPressed() + { + if (qSearchField) { + QKeyEvent* event = new QKeyEvent(QEvent::KeyPress, Qt::Key_Down, Qt::NoModifier); + QApplication::postEvent(qSearchField, event); + } + } + + void keyUpPressed() + { + if (qSearchField) { + QKeyEvent* event = new QKeyEvent(QEvent::KeyPress, Qt::Key_Up, Qt::NoModifier); + QApplication::postEvent(qSearchField, event); + } + } + QPointer qSearchField; NSSearchField *nsSearchField; }; @@ -79,6 +95,22 @@ public: pimpl->textDidChange(toQString([[notification object] stringValue])); } +-(BOOL)control: (NSControl *)control textView: + (NSTextView *)textView doCommandBySelector: + (SEL)commandSelector { + Q_ASSERT(pimpl); + if (!pimpl) return NO; + + if (commandSelector == @selector(moveDown:)) { + pimpl->keyDownPressed(); + return YES; + } else if (commandSelector == @selector(moveUp:)) { + pimpl->keyUpPressed(); + return YES; + } + return NO; +} + -(void)controlTextDidEndEditing:(NSNotification*)notification { // No Q_ASSERT here as it is called on destruction. if (!pimpl) return;