summaryrefslogtreecommitdiff
path: root/development/keyview
authoralwin <alwin>2004-03-02 12:14:15 (UTC)
committer alwin <alwin>2004-03-02 12:14:15 (UTC)
commit0d59c780513da78033f4d9040475dee9db0256d4 (patch) (unidiff)
tree503d320b4aa3daae9982082e7b34e3e2c48bdfb7 /development/keyview
parenta0981652d61776d70f25980f035748b21339e946 (diff)
downloadopie-0d59c780513da78033f4d9040475dee9db0256d4.zip
opie-0d59c780513da78033f4d9040475dee9db0256d4.tar.gz
opie-0d59c780513da78033f4d9040475dee9db0256d4.tar.bz2
run the optimize_connect script
the whole cvs is tagged with "before_optimize_connect" if there are problems you can check the diff (but it had compiled and run here)
Diffstat (limited to 'development/keyview') (more/less context) (ignore whitespace changes)
-rw-r--r--development/keyview/keyview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/development/keyview/keyview.cpp b/development/keyview/keyview.cpp
index 21bbb93..93c84d9 100644
--- a/development/keyview/keyview.cpp
+++ b/development/keyview/keyview.cpp
@@ -32,26 +32,26 @@ Keyview::Keyview( QWidget* parent, const char* name, WFlags fl )
32 l = new QLabel(QString("autoRepeat:"), this); 32 l = new QLabel(QString("autoRepeat:"), this);
33 autoRepeat = new QLineEdit(this); 33 autoRepeat = new QLineEdit(this);
34 autoRepeat->setReadOnly(1); 34 autoRepeat->setReadOnly(1);
35 35
36 // spacer 36 // spacer
37 l = new QLabel(QString(""), this); 37 l = new QLabel(QString(""), this);
38 l->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding)); 38 l->setSizePolicy(QSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding));
39 39
40 40
41 KeyFilter *filter = new KeyFilter(this); 41 KeyFilter *filter = new KeyFilter(this);
42 QWSServer::setKeyboardFilter(filter); 42 QWSServer::setKeyboardFilter(filter);
43 43
44 connect(filter, SIGNAL(keyPressed(int, int, int, bool, bool)), 44 connect(filter, SIGNAL(keyPressed(int,int,int,bool,bool)),
45 this, SLOT(updateItems(int, int, int, bool, bool))); 45 this, SLOT(updateItems(int,int,int,bool,bool)));
46} 46}
47 47
48Keyview::~Keyview() { } 48Keyview::~Keyview() { }
49 49
50void Keyview::updateItems(int u, int k, int m, bool p, bool a) { 50void Keyview::updateItems(int u, int k, int m, bool p, bool a) {
51 51
52 unicode->setText("0x" + QString::number(u, 16)); 52 unicode->setText("0x" + QString::number(u, 16));
53 keycode->setText("0x" + QString::number(k, 16)); 53 keycode->setText("0x" + QString::number(k, 16));
54 modifiers->setText("0x" + QString::number(m, 16)); 54 modifiers->setText("0x" + QString::number(m, 16));
55 isPress->setText("0x" + QString::number(p, 16)); 55 isPress->setText("0x" + QString::number(p, 16));
56 autoRepeat->setText("0x" + QString::number(a, 16)); 56 autoRepeat->setText("0x" + QString::number(a, 16));
57} 57}