-rw-r--r-- | inputmethods/keyboard/keyboard.cpp | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/inputmethods/keyboard/keyboard.cpp b/inputmethods/keyboard/keyboard.cpp index 9dd24e4..233f08e 100644 --- a/inputmethods/keyboard/keyboard.cpp +++ b/inputmethods/keyboard/keyboard.cpp @@ -27,8 +27,10 @@ #include <qfontmetrics.h> #include <qtimer.h> #include <ctype.h> +#include <sys/utsname.h> + #define USE_SMALL_BACKSPACE Keyboard::Keyboard(QWidget* parent, const char* name, WFlags f) : @@ -48,9 +50,21 @@ Keyboard::Keyboard(QWidget* parent, const char* name, WFlags f) : QObject::connect( picks, SIGNAL(key(ushort,ushort,ushort,bool,bool) ), this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); repeatTimer = new QTimer( this ); - connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); + + // temporary quick and dirty fix for the "sticky keyboard bug" + // on ipaq. + struct utsname name; + if (uname(&name) != -1) + { + QString release=name.release; + qWarning("System release: %s\n", name.release); + if(release.find("embedix",0,TRUE) !=-1) + { + connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); + } + } } void Keyboard::resizeEvent(QResizeEvent*) { @@ -760,10 +774,11 @@ void Keyboard::timerEvent(QTimerEvent* e) } void Keyboard::repeat() { - repeatTimer->start( 150 ); - emit key( unicode, qkeycode, modifiers, true, true ); + + repeatTimer->start( 200 ); + emit key( unicode, qkeycode, modifiers, true, true ); } void Keyboard::clearHighlight() { |