summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.cpp
authorhash <hash>2002-10-13 00:58:30 (UTC)
committer hash <hash>2002-10-13 00:58:30 (UTC)
commitb977a4bc4a8ac2b8685c4fa13534f630dabbf956 (patch) (side-by-side diff)
tree60da6513fe4085857f447469031ad596ef2a13b8 /noncore/apps/opie-console/function_keyboard.cpp
parent9333a4005b30aaa723447a044c9fce5a1e580317 (diff)
downloadopie-b977a4bc4a8ac2b8685c4fa13534f630dabbf956.zip
opie-b977a4bc4a8ac2b8685c4fa13534f630dabbf956.tar.gz
opie-b977a4bc4a8ac2b8685c4fa13534f630dabbf956.tar.bz2
cant figure out why this segfaults when emits key
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.cpp68
1 files changed, 63 insertions, 5 deletions
diff --git a/noncore/apps/opie-console/function_keyboard.cpp b/noncore/apps/opie-console/function_keyboard.cpp
index a3da5b2..9b036f3 100644
--- a/noncore/apps/opie-console/function_keyboard.cpp
+++ b/noncore/apps/opie-console/function_keyboard.cpp
@@ -1,11 +1,32 @@
#include "function_keyboard.h"
#include <qsizepolicy.h>
+#include <qwindowsystem_qws.h>
FunctionKeyboard::FunctionKeyboard(QWidget *parent) :
- QFrame(parent), numRows(2), numCols(15),
+ QFrame(parent), numRows(1), numCols(11),
pressedRow(0), pressedCol(0) {
- setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding));
+ setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed));
+
+ Config conf("opie-console-keys");
+ conf.setGroup("keys");
+ for (int r = 0; r < numRows; r++)
+ for (int c = 0; c < numCols; c++) {
+
+ QString handle = "r" + QString::number(r) + "c" + QString::number(c);
+ QStringList value_list = conf.readListEntry( handle, '|');
+
+ if (value_list.isEmpty()) continue;
+
+ keys.insert(
+
+ handle,
+ FKey (value_list[0], value_list[1].toUShort(), value_list[2].toUShort())
+ );
+ }
+ qWarning("loaded %d keys", keys.count());
+
+
}
@@ -19,27 +40,53 @@ void FunctionKeyboard::paintEvent(QPaintEvent *e) {
p.setClipRect(e->rect());
p.fillRect(0, 0, width(), height(), QColor(255,255,255));
+ p.setPen(QColor(0,0,0));
+
/* those decimals do count! becomes short if use plain int */
for (double i = 0; i <= width(); i += keyWidth) {
- p.setPen(QColor(0,0,0));
p.drawLine((int)i, 0, (int)i, height());
}
- for (int i = 0; i <= height(); i += height()/numRows) {
+ // sometimes the last line doesnt get drawn
+ p.drawLine(width() -1, 0, width() -1, height());
+
+ for (int i = 0; i <= height(); i += keyHeight) {
- p.setPen(QColor(0,0,0));
p.drawLine(0, i, width(), i);
}
+ for (int r = 0; r < numRows; r++) {
+ for (int c = 0; c < numCols; c++) {
+
+ QString handle = "r" + QString::number(r) + "c" + QString::number(c);
+ if (keys.contains(handle)) {
+
+ p.drawText(
+ c * keyWidth + 1, r * keyHeight + 1,
+ keyWidth, keyHeight,
+ Qt::AlignHCenter | Qt::AlignVCenter,
+ keys[handle].getL()
+ );
+ }
+ }
+ }
}
void FunctionKeyboard::paintKey(int row, int col) {
QPainter p(this);
+
p.fillRect(QRect(QPoint(col * keyWidth + 1, row * keyHeight + 1),
QPoint((col + 1) * keyWidth - 1, row * keyHeight + keyHeight- 1)),
(pressedRow != -1 && pressedCol != -1 ) ? QColor(97,119,155) : QColor(255,255,255));
+ p.drawText(
+ col * keyWidth + 1, row * keyHeight + 1,
+ keyWidth, keyHeight,
+ Qt::AlignHCenter | Qt::AlignVCenter,
+ keys["r" + QString::number(row) + "c" + QString::number(col)].getL()
+ );
+
}
void FunctionKeyboard::mousePressEvent(QMouseEvent *e) {
@@ -48,6 +95,12 @@ void FunctionKeyboard::mousePressEvent(QMouseEvent *e) {
pressedCol = e->x() / keyWidth;
paintKey(pressedRow, pressedCol);
+
+ // emit that sucker!
+ FKey k = keys["r" + QString::number(pressedRow) + "c" + QString::number(pressedCol)];
+ //QWSServer::sendKeyEvent(k.getU(), k.getQ(), 0, 1, 0);
+ //qwsServer->sendKeyEvent(k.getU(), k.getQ(), 0, 1, 0);
+ qwsServer->sendKeyEvent(0x41, 0, 0, 1, 0);
}
void FunctionKeyboard::mouseReleaseEvent(QMouseEvent *) {
@@ -57,7 +110,12 @@ void FunctionKeyboard::mouseReleaseEvent(QMouseEvent *) {
int row = pressedRow; pressedRow = -1;
int col = pressedCol; pressedCol = -1;
paintKey(row, col);
+
+ FKey k = keys["r" + QString::number(row) + "c" + QString::number(col)];
+ //QWSServer::sendKeyEvent(k.getU(), k.getQ(), 0, 0, 0);
+ //qwsServer->sendKeyEvent(k.getU(), k.getQ(), 0, 0, 0);
}
+
}