summaryrefslogtreecommitdiff
path: root/core/applets/multikeyapplet/multikey.cpp
authormouse <mouse>2004-01-05 15:23:15 (UTC)
committer mouse <mouse>2004-01-05 15:23:15 (UTC)
commit969831e80dd285e8c95e8a91333a626717d5543e (patch) (unidiff)
treef5976ce77f9381f8e4f4d871d74e520f0d76ba85 /core/applets/multikeyapplet/multikey.cpp
parentc127e5d582b1ae4033eca1c8454bee75d510b9e8 (diff)
downloadopie-969831e80dd285e8c95e8a91333a626717d5543e.zip
opie-969831e80dd285e8c95e8a91333a626717d5543e.tar.gz
opie-969831e80dd285e8c95e8a91333a626717d5543e.tar.bz2
added popup menu
fixed reaction by one touch and hold-touch (RightButton)
Diffstat (limited to 'core/applets/multikeyapplet/multikey.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--core/applets/multikeyapplet/multikey.cpp12
1 files changed, 10 insertions, 2 deletions
diff --git a/core/applets/multikeyapplet/multikey.cpp b/core/applets/multikeyapplet/multikey.cpp
index f1227ef..9ef162f 100644
--- a/core/applets/multikeyapplet/multikey.cpp
+++ b/core/applets/multikeyapplet/multikey.cpp
@@ -31,6 +31,7 @@ Multikey::Multikey(QWidget *parent) : QLabel(parent), popupMenu(this), current("
31 this, SLOT(message(const QCString &, const QByteArray &))); 31 this, SLOT(message(const QCString &, const QByteArray &)));
32 32
33 setFont( QFont( "Helvetica", 10, QFont::Normal ) ); 33 setFont( QFont( "Helvetica", 10, QFont::Normal ) );
34 QPEApplication::setStylusOperation(this, QPEApplication::RightOnHold);
34 lang = 0; 35 lang = 0;
35 QCopEnvelope e("MultiKey/Keyboard", "getmultikey()"); 36 QCopEnvelope e("MultiKey/Keyboard", "getmultikey()");
36 setText("EN"); 37 setText("EN");
@@ -50,10 +51,17 @@ void Multikey::mousePressEvent(QMouseEvent *ev)
50 if (opt == -1) 51 if (opt == -1)
51 return; 52 return;
52 lang = opt; 53 lang = opt;
53 } else { 54
54 lang = lang < sw_maps.count()-1 ? lang+1 : 0; 55 QCopEnvelope e("MultiKey/Keyboard", "setmultikey(QString)");
56 e << sw_maps[lang];
57 setText(labels[lang]);
55 } 58 }
59 QWidget::mousePressEvent(ev);
60}
56 61
62void Multikey::mouseReleaseEvent(QMouseEvent *ev)
63{
64 lang = lang < sw_maps.count()-1 ? lang+1 : 0;
57 QCopEnvelope e("MultiKey/Keyboard", "setmultikey(QString)"); 65 QCopEnvelope e("MultiKey/Keyboard", "setmultikey(QString)");
58 //qDebug("Lang=%d, count=%d, lab=%s", lang, sw_maps.count(), labels[lang].ascii()); 66 //qDebug("Lang=%d, count=%d, lab=%s", lang, sw_maps.count(), labels[lang].ascii());
59 e << sw_maps[lang]; 67 e << sw_maps[lang];