summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/mainwindow.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/mainwindow.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/mainwindow.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/noncore/apps/opie-console/mainwindow.cpp b/noncore/apps/opie-console/mainwindow.cpp
index 29dbcf3..d3b6c8a 100644
--- a/noncore/apps/opie-console/mainwindow.cpp
+++ b/noncore/apps/opie-console/mainwindow.cpp
@@ -205,6 +205,8 @@ void MainWindow::initUI() {
m_keyBar->hide();
m_kb = new FunctionKeyboard(m_keyBar);
+ connect(m_kb, SIGNAL(keyPressed(ushort, ushort, bool, bool, bool)),
+ this, SLOT(slotKeyReceived(ushort, ushort, bool, bool, bool)));
@@ -476,3 +478,17 @@ void MainWindow::slotFullscreen() {
m_isFullscreen = !m_isFullscreen;
}
+
+
+void MainWindow::slotKeyReceived(ushort u, ushort q, bool, bool, bool) {
+
+ qWarning("received key event! relay to TE widget");
+
+ if ( m_curSession ) {
+ QKeyEvent ke(QEvent::KeyPress, q, u, 0);
+
+ ke.ignore();
+ // where should i send this event? doesnt work sending it here
+ QApplication::sendEvent((QObject *)m_curSession->widgetStack(), &ke);
+ }
+}