summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-console/function_keyboard.cpp
blob: a3da5b2f5a052600d3f3ecfddbc14fdca982ebed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#include "function_keyboard.h"
#include <qsizepolicy.h> 

FunctionKeyboard::FunctionKeyboard(QWidget *parent) : 
    QFrame(parent), numRows(2), numCols(15), 
    pressedRow(0), pressedCol(0) {

    setSizePolicy(QSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding));

}

FunctionKeyboard::~FunctionKeyboard() {

}

void FunctionKeyboard::paintEvent(QPaintEvent *e) {

    QPainter p(this);
    p.setClipRect(e->rect());
    p.fillRect(0, 0, width(), height(), QColor(255,255,255));

    /* 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) {

        p.setPen(QColor(0,0,0));
        p.drawLine(0, i, width(), i);
    }

}

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));
}

void FunctionKeyboard::mousePressEvent(QMouseEvent *e) {

    pressedRow = e->y() / keyHeight;
    pressedCol = e->x() / keyWidth;

    paintKey(pressedRow, pressedCol);
}

void FunctionKeyboard::mouseReleaseEvent(QMouseEvent *) {

    if (pressedRow != -1 && pressedRow != -1) {

        int row = pressedRow; pressedRow = -1;
        int col = pressedCol; pressedCol = -1;
        paintKey(row, col);
    }
}


void FunctionKeyboard::resizeEvent(QResizeEvent*) {

    /* set he default font height/width */
    QFontMetrics fm=fontMetrics();
    keyHeight = fm.lineSpacing() + 2;
    keyWidth = (double)width()/numCols;

}

QSize FunctionKeyboard::sizeHint() const {

    return QSize(width(), keyHeight * numRows + 1);
}