author | harlekin <harlekin> | 2002-02-16 02:00:41 (UTC) |
---|---|---|
committer | harlekin <harlekin> | 2002-02-16 02:00:41 (UTC) |
commit | f8744f9a9a59f7968ddbac66c927ba8da358f223 (patch) (unidiff) | |
tree | 8a9670929d1025bd1c610cd3350a6e2cb35ef6b8 /inputmethods/keyboard | |
parent | c91dc39fb820f6f6b9805b96aea282f1deb4d576 (diff) | |
download | opie-f8744f9a9a59f7968ddbac66c927ba8da358f223.zip opie-f8744f9a9a59f7968ddbac66c927ba8da358f223.tar.gz opie-f8744f9a9a59f7968ddbac66c927ba8da358f223.tar.bz2 |
Quick and dirty fix for the sticky keyboard problem on ipaq - just turn it off. Turned on on zaurus
-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 | |||
@@ -28,6 +28,8 @@ | |||
28 | #include <qtimer.h> | 28 | #include <qtimer.h> |
29 | #include <ctype.h> | 29 | #include <ctype.h> |
30 | 30 | ||
31 | #include <sys/utsname.h> | ||
32 | |||
31 | 33 | ||
32 | #define USE_SMALL_BACKSPACE | 34 | #define USE_SMALL_BACKSPACE |
33 | 35 | ||
@@ -49,7 +51,19 @@ Keyboard::Keyboard(QWidget* parent, const char* name, WFlags f) : | |||
49 | this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); | 51 | this, SIGNAL(key(ushort,ushort,ushort,bool,bool)) ); |
50 | 52 | ||
51 | repeatTimer = new QTimer( this ); | 53 | repeatTimer = new QTimer( this ); |
52 | connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); | 54 | |
55 | // temporary quick and dirty fix for the "sticky keyboard bug" | ||
56 | // on ipaq. | ||
57 | struct utsname name; | ||
58 | if (uname(&name) != -1) | ||
59 | { | ||
60 | QString release=name.release; | ||
61 | qWarning("System release: %s\n", name.release); | ||
62 | if(release.find("embedix",0,TRUE) !=-1) | ||
63 | { | ||
64 | connect( repeatTimer, SIGNAL(timeout()), this, SLOT(repeat()) ); | ||
65 | } | ||
66 | } | ||
53 | } | 67 | } |
54 | 68 | ||
55 | void Keyboard::resizeEvent(QResizeEvent*) | 69 | void Keyboard::resizeEvent(QResizeEvent*) |
@@ -761,8 +775,9 @@ void Keyboard::timerEvent(QTimerEvent* e) | |||
761 | 775 | ||
762 | void Keyboard::repeat() | 776 | void Keyboard::repeat() |
763 | { | 777 | { |
764 | repeatTimer->start( 150 ); | 778 | |
765 | emit key( unicode, qkeycode, modifiers, true, true ); | 779 | repeatTimer->start( 200 ); |
780 | emit key( unicode, qkeycode, modifiers, true, true ); | ||
766 | } | 781 | } |
767 | 782 | ||
768 | void Keyboard::clearHighlight() | 783 | void Keyboard::clearHighlight() |