summaryrefslogtreecommitdiff
Side-by-side diff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_palm.cpp41
1 files changed, 23 insertions, 18 deletions
diff --git a/libopie2/opiecore/device/odevice_palm.cpp b/libopie2/opiecore/device/odevice_palm.cpp
index 892083e..6d94687 100644
--- a/libopie2/opiecore/device/odevice_palm.cpp
+++ b/libopie2/opiecore/device/odevice_palm.cpp
@@ -63,2 +63,23 @@ using namespace Opie::Core::Internal;
struct palm_button palm_buttons [] = {
+ { Model_Palm_LD,
+ Qt::Key_F6, QT_TRANSLATE_NOOP( "Button", "Rotate Button" ),
+ "devicebuttons/palm_rotate",
+ "QPE/Rotation", "flip()",
+ 0, 0 },
+ { Model_Palm_LD | Model_Palm_Z72 | Model_Palm_T600 | Model_Palm_T650 |
+ Model_Palm_T680 | Model_Palm_T700W | Model_Palm_T700P |
+ Model_Palm_T750 | Model_Palm_T755P,
+ Qt::Key_F7, QT_TRANSLATE_NOOP( "Button", "Record Button" ),
+ "devicebuttons/palm_record",
+ "QPE/VMemo", "toggleRecord()",
+ "sound", "raise()" },
+ { Model_Palm_TT | Model_Palm_TT2 | Model_Palm_TT3 | Model_Palm_TT5 |
+ Model_Palm_TE | Model_Palm_TE2 | Model_Palm_TC | Model_Palm_LD |
+ Model_Palm_TX | Model_Palm_Z71 | Model_Palm_Z72 | Model_Palm_T600 |
+ Model_Palm_T650 | Model_Palm_T680 | Model_Palm_T700W |
+ Model_Palm_T700P | Model_Palm_T750 | Model_Palm_T755P,
+ Qt::Key_F8, QT_TRANSLATE_NOOP( "Button", "Suspend Button" ),
+ "devicebuttons/palm_suspend",
+ "suspend", "raise()",
+ "suspend", "raise()" },
{ Model_Palm_TT | Model_Palm_TT2 | Model_Palm_TT3 | Model_Palm_TT5 |
@@ -99,18 +120,2 @@ struct palm_button palm_buttons [] = {
"opiemail", "newmail()" },
- { Model_Palm_LD | Model_Palm_Z72 | Model_Palm_T600 | Model_Palm_T650 |
- Model_Palm_T680 | Model_Palm_T700W | Model_Palm_T700P |
- Model_Palm_T750 | Model_Palm_T755P,
- Qt::Key_F7, QT_TRANSLATE_NOOP( "Button", "Record Button" ),
- "devicebuttons/palm_record",
- "QPE/VMemo", "toggleRecord()",
- "sound", "raise()" },
- { Model_Palm_TT | Model_Palm_TT2 | Model_Palm_TT3 | Model_Palm_TT5 |
- Model_Palm_TE | Model_Palm_TE2 | Model_Palm_TC | Model_Palm_LD |
- Model_Palm_TX | Model_Palm_Z71 | Model_Palm_Z72 | Model_Palm_T600 |
- Model_Palm_T650 | Model_Palm_T680 | Model_Palm_T700W |
- Model_Palm_T700P | Model_Palm_T750 | Model_Palm_T755P,
- Qt::Key_F8, QT_TRANSLATE_NOOP( "Button", "Suspend Button" ),
- "devicebuttons/palm_suspend",
- "suspend", "raise()",
- "suspend", "raise()" },
};
@@ -218,2 +223,3 @@ void Palm::init(const QString& cpu_info)
case Model_Palm_Z72:
+ case Model_Palm_T650:
m_backlightdev = "/sys/class/backlight/pxapwm-bl/";
@@ -230,3 +236,2 @@ void Palm::init(const QString& cpu_info)
break;
- case Model_Palm_T650:
case Model_Palm_T680:
@@ -288,3 +293,3 @@ bool Palm::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, b
case Key_Down :
- newkeycode = Key_Left + ( keycode - Key_Left + (int) qt_screen->transformOrientation() ) % 4;
+ newkeycode = Key_Left + ( keycode - Key_Left + 4 ) % 4;
default: