author | chicken <chicken> | 2004-05-21 19:16:16 (UTC) |
---|---|---|
committer | chicken <chicken> | 2004-05-21 19:16:16 (UTC) |
commit | 91fcb5849e61a39336ae1ae06a41b4eac501fbf5 (patch) (unidiff) | |
tree | eeb63644fe18c091d1a0507017d9a8ef74bd9621 | |
parent | 265c43b58186a7527144038f113501a8329ff8e7 (diff) | |
download | opie-91fcb5849e61a39336ae1ae06a41b4eac501fbf5.zip opie-91fcb5849e61a39336ae1ae06a41b4eac501fbf5.tar.gz opie-91fcb5849e61a39336ae1ae06a41b4eac501fbf5.tar.bz2 |
correct jornada 56x button handling for opie
-rw-r--r-- | libopie2/opiecore/device/odevice_jornada.cpp | 63 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_jornada.h | 13 |
2 files changed, 71 insertions, 5 deletions
diff --git a/libopie2/opiecore/device/odevice_jornada.cpp b/libopie2/opiecore/device/odevice_jornada.cpp index 75c9fc5..526f9cb 100644 --- a/libopie2/opiecore/device/odevice_jornada.cpp +++ b/libopie2/opiecore/device/odevice_jornada.cpp | |||
@@ -77,8 +77,37 @@ typedef struct { | |||
77 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) | 77 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) |
78 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) | 78 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) |
79 | 79 | ||
80 | using namespace Opie::Core; | ||
80 | using namespace Opie::Core::Internal; | 81 | using namespace Opie::Core::Internal; |
81 | 82 | ||
83 | struct j_button jornada56x_buttons [] = { | ||
84 | { Model_Jornada_56x, | ||
85 | Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Calendar Button"), | ||
86 | "devicebuttons/jornada56x_calendar", | ||
87 | "datebook", "nextView()", | ||
88 | "today", "raise()" }, | ||
89 | { Model_Jornada_56x, | ||
90 | Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Contacts Button"), | ||
91 | "devicebuttons/jornada56x_contact", | ||
92 | "addressbook", "raise()", | ||
93 | "addressbook", "beamBusinessCard()" }, | ||
94 | { Model_Jornada_56x, | ||
95 | Qt::Key_F14, QT_TRANSLATE_NOOP("Button", "Todo Button"), | ||
96 | "devicebuttons/jornada56x_todo", | ||
97 | "todolist", "raise()", | ||
98 | "todolist", "create()" }, | ||
99 | { Model_Jornada_56x, | ||
100 | Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Home Button"), | ||
101 | "devicebuttons/jornada56x_home", | ||
102 | "QPE/Launcher", "home()", | ||
103 | "buttonsettings", "raise()" }, | ||
104 | { Model_Jornada_56x, | ||
105 | Qt::Key_F15, QT_TRANSLATE_NOOP("Button", "Record Button"), | ||
106 | "devicebuttons/jornada56x_record", | ||
107 | "QPE/VMemo", "toggleRecord()", | ||
108 | "sound", "raise()" }, | ||
109 | }; | ||
110 | |||
82 | void Jornada::init(const QString&) | 111 | void Jornada::init(const QString&) |
83 | { | 112 | { |
84 | d->m_vendorstr = "HP"; | 113 | d->m_vendorstr = "HP"; |
@@ -100,6 +129,32 @@ void Jornada::init(const QString&) | |||
100 | } | 129 | } |
101 | } | 130 | } |
102 | 131 | ||
132 | void Jornada::initButtons() | ||
133 | { | ||
134 | if ( d->m_buttons ) | ||
135 | return; | ||
136 | |||
137 | d->m_buttons = new QValueList <ODeviceButton>; | ||
138 | |||
139 | for ( uint i = 0; i < ( sizeof( jornada56x_buttons ) / sizeof( j_button )); i++ ) { | ||
140 | j_button *ib = jornada56x_buttons + i; | ||
141 | ODeviceButton b; | ||
142 | |||
143 | if (( ib->model & d->m_model ) == d->m_model ) { | ||
144 | b. setKeycode ( ib->code ); | ||
145 | b. setUserText ( QObject::tr ( "Button", ib->utext )); | ||
146 | b. setPixmap ( Resource::loadPixmap ( ib->pix )); | ||
147 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction )); | ||
148 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction )); | ||
149 | |||
150 | d->m_buttons->append ( b ); | ||
151 | } | ||
152 | } | ||
153 | reloadButtonMapping(); | ||
154 | |||
155 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | ||
156 | connect ( sysch, SIGNAL( received(const QCString&,const QByteArray&)), this, SLOT( systemMessage(const QCString&,const QByteArray&))); | ||
157 | } | ||
103 | 158 | ||
104 | int Jornada::displayBrightnessResolution() const | 159 | int Jornada::displayBrightnessResolution() const |
105 | { | 160 | { |
@@ -110,7 +165,6 @@ int Jornada::displayBrightnessResolution() const | |||
110 | bool Jornada::setDisplayBrightness( int bright ) | 165 | bool Jornada::setDisplayBrightness( int bright ) |
111 | { | 166 | { |
112 | bool res = false; | 167 | bool res = false; |
113 | int fd; | ||
114 | 168 | ||
115 | if ( bright > 255 ) | 169 | if ( bright > 255 ) |
116 | bright = 255; | 170 | bright = 255; |
@@ -143,7 +197,7 @@ bool Jornada::suspend( ) | |||
143 | bool res = false; | 197 | bool res = false; |
144 | ODevice::sendSuspendmsg(); | 198 | ODevice::sendSuspendmsg(); |
145 | 199 | ||
146 | struct timeval tvs, tvn; | 200 | struct timeval tvs; |
147 | ::gettimeofday ( &tvs, 0 ); | 201 | ::gettimeofday ( &tvs, 0 ); |
148 | 202 | ||
149 | ::sync(); // flush fs caches | 203 | ::sync(); // flush fs caches |
@@ -155,9 +209,8 @@ bool Jornada::suspend( ) | |||
155 | bool Jornada::setDisplayStatus ( bool on ) | 209 | bool Jornada::setDisplayStatus ( bool on ) |
156 | { | 210 | { |
157 | bool res = false; | 211 | bool res = false; |
158 | int fd; | 212 | |
159 | 213 | QString cmdline = QString().sprintf( "echo %d > /sys/class/lcd/sa1100fb/power; echo %d > /sys/class/backlight/sa1100fb/power", on ? "1" : "0", on ? "1" : "0" ); | |
160 | QString cmdline = QString().sprintf( "echo %d > /sys/class/lcd/sa1100fb/power; echo %d > /sys/class/backlight/sa1100fb/power", on ? "1" : "0",on ? "1" : "0" ); | ||
161 | 214 | ||
162 | res = ( ::system( (const char*) cmdline ) == 0 ); | 215 | res = ( ::system( (const char*) cmdline ) == 0 ); |
163 | 216 | ||
diff --git a/libopie2/opiecore/device/odevice_jornada.h b/libopie2/opiecore/device/odevice_jornada.h index 2a9e821..b17fa8b 100644 --- a/libopie2/opiecore/device/odevice_jornada.h +++ b/libopie2/opiecore/device/odevice_jornada.h | |||
@@ -40,6 +40,7 @@ class Jornada : public ODevice | |||
40 | 40 | ||
41 | protected: | 41 | protected: |
42 | virtual void init(const QString&); | 42 | virtual void init(const QString&); |
43 | virtual void initButtons(); | ||
43 | 44 | ||
44 | public: | 45 | public: |
45 | virtual bool suspend ( ); | 46 | virtual bool suspend ( ); |
@@ -47,6 +48,18 @@ class Jornada : public ODevice | |||
47 | virtual bool setDisplayStatus ( bool on); | 48 | virtual bool setDisplayStatus ( bool on); |
48 | virtual int displayBrightnessResolution() const; | 49 | virtual int displayBrightnessResolution() const; |
49 | }; | 50 | }; |
51 | |||
52 | struct j_button { | ||
53 | uint model; | ||
54 | Qt::Key code; | ||
55 | char *utext; | ||
56 | char *pix; | ||
57 | char *fpressedservice; | ||
58 | char *fpressedaction; | ||
59 | char *fheldservice; | ||
60 | char *fheldaction; | ||
61 | }; | ||
62 | |||
50 | } | 63 | } |
51 | } | 64 | } |
52 | } | 65 | } |