summaryrefslogtreecommitdiff
path: root/libopie2/opiecore
authorchicken <chicken>2004-05-21 19:16:16 (UTC)
committer chicken <chicken>2004-05-21 19:16:16 (UTC)
commit91fcb5849e61a39336ae1ae06a41b4eac501fbf5 (patch) (unidiff)
treeeeb63644fe18c091d1a0507017d9a8ef74bd9621 /libopie2/opiecore
parent265c43b58186a7527144038f113501a8329ff8e7 (diff)
downloadopie-91fcb5849e61a39336ae1ae06a41b4eac501fbf5.zip
opie-91fcb5849e61a39336ae1ae06a41b4eac501fbf5.tar.gz
opie-91fcb5849e61a39336ae1ae06a41b4eac501fbf5.tar.bz2
correct jornada 56x button handling for opie
Diffstat (limited to 'libopie2/opiecore') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/device/odevice_jornada.cpp59
-rw-r--r--libopie2/opiecore/device/odevice_jornada.h13
2 files changed, 69 insertions, 3 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
@@ -74,14 +74,43 @@ typedef struct {
74 unsigned char brightness; 74 unsigned char brightness;
75} FLITE_IN; 75} FLITE_IN;
76 76
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
80using namespace Opie::Core;
80using namespace Opie::Core::Internal; 81using namespace Opie::Core::Internal;
81 82
83struct 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
82void Jornada::init(const QString&) 111void Jornada::init(const QString&)
83{ 112{
84 d->m_vendorstr = "HP"; 113 d->m_vendorstr = "HP";
85 d->m_vendor = Vendor_HP; 114 d->m_vendor = Vendor_HP;
86 d->m_modelstr = "Jornada 56x"; 115 d->m_modelstr = "Jornada 56x";
87 d->m_model = Model_Jornada_56x; 116 d->m_model = Model_Jornada_56x;
@@ -97,23 +126,48 @@ void Jornada::init(const QString&)
97 d->m_sysverstr = ts.readLine().mid( 10 ); 126 d->m_sysverstr = ts.readLine().mid( 10 );
98 127
99 f. close(); 128 f. close();
100 } 129 }
101} 130}
102 131
132void 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
104int Jornada::displayBrightnessResolution() const 159int Jornada::displayBrightnessResolution() const
105{ 160{
106 return 255; 161 return 255;
107} 162}
108 163
109 164
110bool Jornada::setDisplayBrightness( int bright ) 165bool 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;
117 if ( bright < 0 ) 171 if ( bright < 0 )
118 bright = 0; 172 bright = 0;
119 173
@@ -140,25 +194,24 @@ bool Jornada::suspend( )
140 if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices 194 if ( d->m_model == Model_Unknown ) // better don't suspend in qvfb / on unkown devices
141 return false; 195 return false;
142 196
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
150 res = ( ::system ( "apm --suspend" ) == 0 ); 204 res = ( ::system ( "apm --suspend" ) == 0 );
151 205
152 return res; 206 return res;
153} 207}
154 208
155bool Jornada::setDisplayStatus ( bool on ) 209bool Jornada::setDisplayStatus ( bool on )
156{ 210{
157 bool res = false; 211 bool res = false;
158 int fd;
159 212
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" ); 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" );
161 214
162 res = ( ::system( (const char*) cmdline ) == 0 ); 215 res = ( ::system( (const char*) cmdline ) == 0 );
163 216
164 return res; 217 return res;
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
@@ -37,18 +37,31 @@ namespace Core {
37namespace Internal { 37namespace Internal {
38class Jornada : public ODevice 38class Jornada : public ODevice
39{ 39{
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 ( );
46 virtual bool setDisplayBrightness ( int b ); 47 virtual bool setDisplayBrightness ( int b );
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
52struct 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}
53#endif 66#endif
54 67