summaryrefslogtreecommitdiff
authoralwin <alwin>2005-03-14 09:14:08 (UTC)
committer alwin <alwin>2005-03-14 09:14:08 (UTC)
commit69f310d4a0a2330d10ba37ff4db388e8c60ba64b (patch) (side-by-side diff)
tree95d8e7660560ae88d04d6215b5b3e048400f7ebf
parent826bc5ef2aa34877fd8816ddfc4156f865dc9149 (diff)
downloadopie-69f310d4a0a2330d10ba37ff4db388e8c60ba64b.zip
opie-69f310d4a0a2330d10ba37ff4db388e8c60ba64b.tar.gz
opie-69f310d4a0a2330d10ba37ff4db388e8c60ba64b.tar.bz2
hopefull speedups on keyeventhandler, eventhandler will just set when
device with hinge-sensor.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_zaurus.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/libopie2/opiecore/device/odevice_zaurus.cpp b/libopie2/opiecore/device/odevice_zaurus.cpp
index 89b9258..59d4eb0 100644
--- a/libopie2/opiecore/device/odevice_zaurus.cpp
+++ b/libopie2/opiecore/device/odevice_zaurus.cpp
@@ -240,5 +240,2 @@ void Zaurus::initButtons()
- if ( isQWS( ) ) {
- addPreHandler(this);
- }
@@ -251,2 +248,5 @@ void Zaurus::initButtons()
case Model_Zaurus_SLC7x0:
+ if ( isQWS( ) ) {
+ addPreHandler(this); // hinge-sensor-handler
+ }
pz_buttons = z_buttons_c700;
@@ -605,9 +605,5 @@ bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress,
{
- Transformation rot;
int newkeycode = keycode;
-
if (d->m_model!=Model_Zaurus_SLC3000 && d->m_model!=Model_Zaurus_SLC7x0) return false;
- rot = rotation();
- if (rot==Rot0) return false;
@@ -621,3 +617,3 @@ bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress,
{
- if (rot==Rot90) {
+ if (rotation()==Rot90) {
newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4;
@@ -636 +632,2 @@ bool Zaurus::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress,
}
+