summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/opie-console/function_keyboard.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-console/function_keyboard.cpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp
index d8ade69..a5b19c0 100644
--- a/noncore/apps/opie-console/function_keyboard.cpp
+++ b/noncore/apps/opie-console/function_keyboard.cpp
@@ -2,3 +2,4 @@
#include <qsizepolicy.h>
-#include <qwindowsystem_qws.h>
+#include <qevent.h>
+#include <qapplication.h>
@@ -94,3 +95,3 @@ void FunctionKeyboard::mousePressEvent(QMouseEvent *e) {
pressedRow = e->y() / keyHeight;
- pressedCol = e->x() / keyWidth;
+ pressedCol = (int) (e->x() / keyWidth);
@@ -103,2 +104,6 @@ void FunctionKeyboard::mousePressEvent(QMouseEvent *e) {
//qwsServer->sendKeyEvent(0x41, 0, 0, 1, 0);
+
+ QKeyEvent ke(QEvent::KeyPress, k.getQ(), k.getU(), 0);
+ QApplication::sendEvent(this, &ke);
+
}
@@ -116,2 +121,4 @@ void FunctionKeyboard::mouseReleaseEvent(QMouseEvent *) {
//qwsServer->sendKeyEvent(k.getU(), k.getQ(), 0, 0, 0);
+ QKeyEvent ke(QEvent::KeyRelease, k.getQ(), k.getU(), 0);
+ QApplication::sendEvent(this, &ke);
}