summaryrefslogtreecommitdiff
authorpaule <paule>2007-06-29 05:58:46 (UTC)
committer paule <paule>2007-06-29 05:58:46 (UTC)
commit06bcedc305af0c1fe026abde4f4cc64b12b8ed63 (patch) (side-by-side diff)
tree455f3bbc826a3a04f970bc7d7860d9a79c5f6cef
parent703d2871544d48268e1003a5534454f79f162b16 (diff)
downloadopie-06bcedc305af0c1fe026abde4f4cc64b12b8ed63.zip
opie-06bcedc305af0c1fe026abde4f4cc64b12b8ed63.tar.gz
opie-06bcedc305af0c1fe026abde4f4cc64b12b8ed63.tar.bz2
Palm patches:
* Reorder keys (bug #1860) * Add key F6 as rotate screen button for Palm LifeDrive (bug #1861) * Fix backlight on Palm Treo 650 (bug #1862) * Rotate function of directional keys when screen rotated (bug #1863) Patches courtesy of Marek Vasut <marek.vasut@gmail.com>
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: