summaryrefslogtreecommitdiff
path: root/libopie/odevice.cpp
Unidiff
Diffstat (limited to 'libopie/odevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 057c344..bf64676 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -1,576 +1,578 @@
1/* This file is part of the OPIE libraries 1/* This file is part of the OPIE libraries
2 Copyright (C) 2002 Robert Griebl (sandman@handhelds.org) 2 Copyright (C) 2002 Robert Griebl (sandman@handhelds.org)
3 3
4 This library is free software; you can redistribute it and/or 4 This library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public 5 modify it under the terms of the GNU Library General Public
6 License as published by the Free Software Foundation; either 6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version. 7 version 2 of the License, or (at your option) any later version.
8 8
9 This library is distributed in the hope that it will be useful, 9 This library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of 10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details. 12 Library General Public License for more details.
13 13
14 You should have received a copy of the GNU Library General Public License 14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to 15 along with this library; see the file COPYING.LIB. If not, write to
16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 16 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 Boston, MA 02111-1307, USA. 17 Boston, MA 02111-1307, USA.
18*/ 18*/
19 19
20#include <stdlib.h> 20#include <stdlib.h>
21 21
22#include <qfile.h> 22#include <qfile.h>
23#include <qtextstream.h> 23#include <qtextstream.h>
24#include <qpe/sound.h> 24#include <qpe/sound.h>
25#include <qpe/resource.h> 25#include <qpe/resource.h>
26 26
27 27
28#include "odevice.h" 28#include "odevice.h"
29 29
30 30
31class ODeviceData { 31class ODeviceData {
32public: 32public:
33 QString m_vendorstr; 33 QString m_vendorstr;
34 OVendor m_vendor; 34 OVendor m_vendor;
35 35
36 QString m_modelstr; 36 QString m_modelstr;
37 OModel m_model; 37 OModel m_model;
38 38
39 QString m_systemstr; 39 QString m_systemstr;
40 OSystem m_system; 40 OSystem m_system;
41 41
42 QString m_sysverstr; 42 QString m_sysverstr;
43 43
44 OLedState m_leds [4]; // just for convenience ... 44 OLedState m_leds [4]; // just for convenience ...
45}; 45};
46 46
47class ODeviceIPAQ : public ODevice { 47class ODeviceIPAQ : public ODevice {
48protected: 48protected:
49 virtual void init ( ); 49 virtual void init ( );
50 50
51public: 51public:
52 virtual bool suspend ( ); 52 virtual bool suspend ( );
53 53
54 virtual void alarmSound ( ); 54 virtual void alarmSound ( );
55 55
56 virtual uint hasLeds ( ) const; 56 virtual uint hasLeds ( ) const;
57 virtual OLedState led ( uint which ) const; 57 virtual OLedState led ( uint which ) const;
58 virtual bool setLed ( uint which, OLedState st ); 58 virtual bool setLed ( uint which, OLedState st );
59 59
60private: 60private:
61 static void tstp_sighandler ( int ); 61 static void tstp_sighandler ( int );
62}; 62};
63 63
64class ODeviceZaurus : public ODevice { 64class ODeviceZaurus : public ODevice {
65protected: 65protected:
66 virtual void init ( ); 66 virtual void init ( );
67 67
68 public: 68 public:
69 virtual void alarmSound ( ); 69 virtual void alarmSound ( );
70 virtual void keySound ( ); 70 virtual void keySound ( );
71 virtual void touchSound ( ); 71 virtual void touchSound ( );
72 72
73 virtual uint hasLeds ( ) const; 73 virtual uint hasLeds ( ) const;
74 virtual OLedState led ( uint which ) const; 74 virtual OLedState led ( uint which ) const;
75 virtual bool setLed ( uint which, OLedState st ); 75 virtual bool setLed ( uint which, OLedState st );
76 76
77protected: 77protected:
78 virtual void buzzer ( int snd ); 78 virtual void buzzer ( int snd );
79}; 79};
80 80
81 81
82 82
83 83
84ODevice *ODevice::inst ( ) 84ODevice *ODevice::inst ( )
85{ 85{
86 static ODevice *dev = 0; 86 static ODevice *dev = 0;
87 87
88 if ( !dev ) { 88 if ( !dev ) {
89 if ( QFile::exists ( "/proc/hal/model" )) 89 if ( QFile::exists ( "/proc/hal/model" ))
90 dev = new ODeviceIPAQ ( ); 90 dev = new ODeviceIPAQ ( );
91 else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" )) 91 else if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ))
92 dev = new ODeviceZaurus ( ); 92 dev = new ODeviceZaurus ( );
93 else 93 else
94 dev = new ODevice ( ); 94 dev = new ODevice ( );
95 95
96 dev-> init ( ); 96 dev-> init ( );
97 } 97 }
98 return dev; 98 return dev;
99} 99}
100 100
101ODevice::ODevice ( ) 101ODevice::ODevice ( )
102{ 102{
103 d = new ODeviceData; 103 d = new ODeviceData;
104 104
105 d-> m_modelstr = "Unknown"; 105 d-> m_modelstr = "Unknown";
106 d-> m_model = OMODEL_Unknown; 106 d-> m_model = OMODEL_Unknown;
107 d-> m_vendorstr = "Unkown"; 107 d-> m_vendorstr = "Unkown";
108 d-> m_vendor = OVENDOR_Unknown; 108 d-> m_vendor = OVENDOR_Unknown;
109 d-> m_systemstr = "Unkown"; 109 d-> m_systemstr = "Unkown";
110 d-> m_system = OSYSTEM_Unknown; 110 d-> m_system = OSYSTEM_Unknown;
111 d-> m_sysverstr = "0.0"; 111 d-> m_sysverstr = "0.0";
112} 112}
113 113
114void ODevice::init ( ) 114void ODevice::init ( )
115{ 115{
116} 116}
117 117
118ODevice::~ODevice ( ) 118ODevice::~ODevice ( )
119{ 119{
120 delete d; 120 delete d;
121} 121}
122 122
123bool ODevice::suspend ( ) 123bool ODevice::suspend ( )
124{ 124{
125 int rc = ::system ( "apm --suspend" ); 125 int rc = ::system ( "apm --suspend" );
126 126
127 if (( rc == 127 ) || ( rc == -1 )) 127 if (( rc == 127 ) || ( rc == -1 ))
128 return false; 128 return false;
129 else 129 else
130 return true; 130 return true;
131} 131}
132 132
133QString ODevice::vendorString ( ) 133QString ODevice::vendorString ( )
134{ 134{
135 return d-> m_vendorstr; 135 return d-> m_vendorstr;
136} 136}
137 137
138OVendor ODevice::vendor ( ) 138OVendor ODevice::vendor ( )
139{ 139{
140 return d-> m_vendor; 140 return d-> m_vendor;
141} 141}
142 142
143QString ODevice::modelString ( ) 143QString ODevice::modelString ( )
144{ 144{
145 return d-> m_modelstr; 145 return d-> m_modelstr;
146} 146}
147 147
148OModel ODevice::model ( ) 148OModel ODevice::model ( )
149{ 149{
150 return d-> m_model; 150 return d-> m_model;
151} 151}
152 152
153QString ODevice::systemString ( ) 153QString ODevice::systemString ( )
154{ 154{
155 return d-> m_systemstr; 155 return d-> m_systemstr;
156} 156}
157 157
158OSystem ODevice::system ( ) 158OSystem ODevice::system ( )
159{ 159{
160 return d-> m_system; 160 return d-> m_system;
161} 161}
162 162
163QString ODevice::systemVersionString ( ) 163QString ODevice::systemVersionString ( )
164{ 164{
165 return d-> m_sysverstr; 165 return d-> m_sysverstr;
166} 166}
167 167
168void ODevice::alarmSound ( ) 168void ODevice::alarmSound ( )
169{ 169{
170#ifndef QT_QWS_EBX 170#ifndef QT_QWS_EBX
171#ifndef QT_NO_SOUND 171#ifndef QT_NO_SOUND
172 static Sound snd ( "alarm" ); 172 static Sound snd ( "alarm" );
173 173
174 if ( snd. isFinished ( )) 174 if ( snd. isFinished ( ))
175 snd. play ( ); 175 snd. play ( );
176#endif 176#endif
177#endif 177#endif
178} 178}
179 179
180void ODevice::keySound ( ) 180void ODevice::keySound ( )
181{ 181{
182#ifndef QT_QWS_EBX 182#ifndef QT_QWS_EBX
183#ifndef QT_NO_SOUND 183#ifndef QT_NO_SOUND
184 static Sound snd ( "keysound" ); 184 static Sound snd ( "keysound" );
185 185
186 if ( snd. isFinished ( )) 186 if ( snd. isFinished ( ))
187 snd. play ( ); 187 snd. play ( );
188#endif 188#endif
189#endif 189#endif
190} 190}
191 191
192void ODevice::touchSound ( ) 192void ODevice::touchSound ( )
193{ 193{
194 194
195#ifndef QT_QWS_EBX 195#ifndef QT_QWS_EBX
196#ifndef QT_NO_SOUND 196#ifndef QT_NO_SOUND
197 static Sound snd ( "touchsound" ); 197 static Sound snd ( "touchsound" );
198//qDebug("touchSound"); 198//qDebug("touchSound");
199 if ( snd. isFinished ( )) { 199 if ( snd. isFinished ( )) {
200 snd. play ( ); 200 snd. play ( );
201 // qDebug("sound should play"); 201 // qDebug("sound should play");
202 } 202 }
203#endif 203#endif
204#endif 204#endif
205} 205}
206 206
207uint ODevice::hasLeds ( ) const 207uint ODevice::hasLeds ( ) const
208{ 208{
209 return 0; 209 return 0;
210} 210}
211 211
212OLedState ODevice::led ( uint /*which*/ ) const 212OLedState ODevice::led ( uint /*which*/ ) const
213{ 213{
214 return OLED_Off; 214 return OLED_Off;
215} 215}
216 216
217bool ODevice::setLed ( uint /*which*/, OLedState /*st*/ ) 217bool ODevice::setLed ( uint /*which*/, OLedState /*st*/ )
218{ 218{
219 return false; 219 return false;
220} 220}
221 221
222 222
223 223
224 224
225//#if defined( QT_QWS_IPAQ ) // IPAQ 225//#if defined( QT_QWS_IPAQ ) // IPAQ
226 226
227 227
228void ODeviceIPAQ::init ( ) 228void ODeviceIPAQ::init ( )
229{ 229{
230 d-> m_vendorstr = "HP"; 230 d-> m_vendorstr = "HP";
231 d-> m_vendor = OVENDOR_HP; 231 d-> m_vendor = OVENDOR_HP;
232 232
233 QFile f ( "/proc/hal/model" ); 233 QFile f ( "/proc/hal/model" );
234 234
235 if ( f. open ( IO_ReadOnly )) { 235 if ( f. open ( IO_ReadOnly )) {
236 QTextStream ts ( &f ); 236 QTextStream ts ( &f );
237 237
238 d-> m_modelstr = "H" + ts. readLine ( ); 238 d-> m_modelstr = "H" + ts. readLine ( );
239 239
240 if ( d-> m_modelstr == "H3100" ) 240 if ( d-> m_modelstr == "H3100" )
241 d-> m_model = OMODEL_iPAQ_H31xx; 241 d-> m_model = OMODEL_iPAQ_H31xx;
242 else if ( d-> m_modelstr == "H3600" ) 242 else if ( d-> m_modelstr == "H3600" )
243 d-> m_model = OMODEL_iPAQ_H36xx; 243 d-> m_model = OMODEL_iPAQ_H36xx;
244 else if ( d-> m_modelstr == "H3700" ) 244 else if ( d-> m_modelstr == "H3700" )
245 d-> m_model = OMODEL_iPAQ_H37xx; 245 d-> m_model = OMODEL_iPAQ_H37xx;
246 else if ( d-> m_modelstr == "H3800" ) 246 else if ( d-> m_modelstr == "H3800" )
247 d-> m_model = OMODEL_iPAQ_H38xx; 247 d-> m_model = OMODEL_iPAQ_H38xx;
248 else 248 else
249 d-> m_model = OMODEL_Unknown; 249 d-> m_model = OMODEL_Unknown;
250 250
251 f. close ( ); 251 f. close ( );
252 } 252 }
253 253
254 f. setName ( "/etc/familiar-version" ); 254 f. setName ( "/etc/familiar-version" );
255 if ( f. open ( IO_ReadOnly )) { 255 if ( f. open ( IO_ReadOnly )) {
256 d-> m_systemstr = "Familiar"; 256 d-> m_systemstr = "Familiar";
257 d-> m_system = OSYSTEM_Familiar; 257 d-> m_system = OSYSTEM_Familiar;
258 258
259 QTextStream ts ( &f ); 259 QTextStream ts ( &f );
260 d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); 260 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
261 261
262 f. close ( ); 262 f. close ( );
263 } 263 }
264 264
265 d-> m_leds [0] = OLED_Off; 265 d-> m_leds [0] = OLED_Off;
266} 266}
267 267
268#include <unistd.h> 268#include <unistd.h>
269#include <fcntl.h> 269#include <fcntl.h>
270#include <sys/ioctl.h> 270#include <sys/ioctl.h>
271#include <signal.h> 271#include <signal.h>
272#include <sys/time.h> 272#include <sys/time.h>
273#include <linux/soundcard.h> 273#include <linux/soundcard.h>
274#include <qapplication.h> 274#include <qapplication.h>
275#include <qpe/config.h> 275#include <qpe/config.h>
276 276
277//#include <linux/h3600_ts.h> // including kernel headers is evil ... 277//#include <linux/h3600_ts.h> // including kernel headers is evil ...
278 278
279typedef struct h3600_ts_led { 279typedef struct h3600_ts_led {
280 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ 280 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */
281 unsigned char TotalTime; /* Units of 5 seconds */ 281 unsigned char TotalTime; /* Units of 5 seconds */
282 unsigned char OnTime; /* units of 100m/s */ 282 unsigned char OnTime; /* units of 100m/s */
283 unsigned char OffTime; /* units of 100m/s */ 283 unsigned char OffTime; /* units of 100m/s */
284} LED_IN; 284} LED_IN;
285 285
286 286
287// #define IOC_H3600_TS_MAGIC 'f' 287// #define IOC_H3600_TS_MAGIC 'f'
288// #define LED_ON _IOW(IOC_H3600_TS_MAGIC, 5, struct h3600_ts_led) 288// #define LED_ON _IOW(IOC_H3600_TS_MAGIC, 5, struct h3600_ts_led)
289#define LED_ON (( 1<<30 ) | ( 'f'<<8 ) | ( 5 ) | ( sizeof(struct h3600_ts_led)<<16 )) // _IOW only defined in kernel headers :( 289#define LED_ON (( 1<<30 ) | ( 'f'<<8 ) | ( 5 ) | ( sizeof(struct h3600_ts_led)<<16 )) // _IOW only defined in kernel headers :(
290 290
291 291
292//#include <linux/apm_bios.h> 292//#include <linux/apm_bios.h>
293 293
294//#define APM_IOC_SUSPEND _IO('A',2) 294//#define APM_IOC_SUSPEND _IO('A',2)
295 295
296#define APM_IOC_SUSPEND (( 0<<30 ) | ( 'A'<<8 ) | ( 2 ) | ( 0<<16 )) 296#define APM_IOC_SUSPEND (( 0<<30 ) | ( 'A'<<8 ) | ( 2 ) | ( 0<<16 ))
297 297
298 298
299void ODeviceIPAQ::tstp_sighandler ( int ) 299void ODeviceIPAQ::tstp_sighandler ( int )
300{ 300{
301} 301}
302 302
303 303
304bool ODeviceIPAQ::suspend ( ) 304bool ODeviceIPAQ::suspend ( )
305{ 305{
306 int fd; 306 int fd;
307 bool res = false; 307 bool res = false;
308 308
309 if (( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) { 309 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) ||
310 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) {
310 struct timeval tvs, tvn; 311 struct timeval tvs, tvn;
311 312
312 ::signal ( SIGTSTP, tstp_sighandler ); 313 ::signal ( SIGTSTP, tstp_sighandler );
313 ::gettimeofday ( &tvs, 0 ); 314 ::gettimeofday ( &tvs, 0 );
314 315
315 res = ( ::ioctl ( fd, APM_IOC_SUSPEND ) == 0 ); 316 res = ( ::ioctl ( fd, APM_IOC_SUSPEND ) == 0 );
316 ::close ( fd ); 317 ::close ( fd );
317 318
318 if ( res ) { 319 if ( res ) {
319 ::kill ( -::getpid ( ), SIGTSTP ); 320 ::kill ( -::getpid ( ), SIGTSTP );
320 321
321 do { 322 do {
322 ::usleep ( 200 * 1000 ); 323 ::usleep ( 200 * 1000 );
323 ::gettimeofday ( &tvn, 0 ); 324 ::gettimeofday ( &tvn, 0 );
324 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 ); 325 } while ((( tvn. tv_sec - tvs. tv_sec ) * 1000 + ( tvn. tv_usec - tvs. tv_usec ) / 1000 ) < 1500 );
325 326
326 ::kill ( -::getpid ( ), SIGCONT ); 327 ::kill ( -::getpid ( ), SIGCONT );
327 } 328 }
328 329
329 ::signal ( SIGTSTP, SIG_DFL ); 330 ::signal ( SIGTSTP, SIG_DFL );
330 } 331 }
332
331 return res; 333 return res;
332} 334}
333 335
334 336
335void ODeviceIPAQ::alarmSound ( ) 337void ODeviceIPAQ::alarmSound ( )
336{ 338{
337#if defined( QT_QWS_IPAQ ) // IPAQ 339#if defined( QT_QWS_IPAQ ) // IPAQ
338#ifndef QT_NO_SOUND 340#ifndef QT_NO_SOUND
339 static Sound snd ( "alarm" ); 341 static Sound snd ( "alarm" );
340 int fd; 342 int fd;
341 int vol; 343 int vol;
342 bool vol_reset = false; 344 bool vol_reset = false;
343 345
344 if ((( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) || 346 if ((( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) ||
345 (( fd = ::open ( "/dev/mixer", O_RDWR )) >= 0 )) { 347 (( fd = ::open ( "/dev/mixer", O_RDWR )) >= 0 )) {
346 348
347 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { 349 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
348 Config cfg ( "qpe" ); 350 Config cfg ( "qpe" );
349 cfg. setGroup ( "Volume" ); 351 cfg. setGroup ( "Volume" );
350 352
351 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); 353 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
352 if ( volalarm < 0 ) 354 if ( volalarm < 0 )
353 volalarm = 0; 355 volalarm = 0;
354 else if ( volalarm > 100 ) 356 else if ( volalarm > 100 )
355 volalarm = 100; 357 volalarm = 100;
356 volalarm |= ( volalarm << 8 ); 358 volalarm |= ( volalarm << 8 );
357 359
358 if (( volalarm & 0xff ) > ( vol & 0xff )) { 360 if (( volalarm & 0xff ) > ( vol & 0xff )) {
359 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) 361 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
360 vol_reset = true; 362 vol_reset = true;
361 } 363 }
362 } 364 }
363 } 365 }
364 366
365 snd. play ( ); 367 snd. play ( );
366 while ( !snd. isFinished ( )) 368 while ( !snd. isFinished ( ))
367 qApp-> processEvents ( ); 369 qApp-> processEvents ( );
368 370
369 if ( fd >= 0 ) { 371 if ( fd >= 0 ) {
370 if ( vol_reset ) 372 if ( vol_reset )
371 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); 373 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
372 ::close ( fd ); 374 ::close ( fd );
373 } 375 }
374#endif 376#endif
375#endif 377#endif
376} 378}
377 379
378uint ODeviceIPAQ::hasLeds ( ) const 380uint ODeviceIPAQ::hasLeds ( ) const
379{ 381{
380 return 1; 382 return 1;
381} 383}
382 384
383OLedState ODeviceIPAQ::led ( uint which ) const 385OLedState ODeviceIPAQ::led ( uint which ) const
384{ 386{
385 if ( which == 0 ) 387 if ( which == 0 )
386 return d-> m_leds [0]; 388 return d-> m_leds [0];
387 else 389 else
388 return OLED_Off; 390 return OLED_Off;
389} 391}
390 392
391bool ODeviceIPAQ::setLed ( uint which, OLedState st ) 393bool ODeviceIPAQ::setLed ( uint which, OLedState st )
392{ 394{
393 static int fd = ::open ( "/dev/touchscreen/0", O_RDWR|O_NONBLOCK ); 395 static int fd = ::open ( "/dev/touchscreen/0", O_RDWR|O_NONBLOCK );
394 396
395 if ( which == 0 ) { 397 if ( which == 0 ) {
396 if ( fd >= 0 ) { 398 if ( fd >= 0 ) {
397 struct h3600_ts_led leds; 399 struct h3600_ts_led leds;
398 ::memset ( &leds, 0, sizeof( leds )); 400 ::memset ( &leds, 0, sizeof( leds ));
399 leds. TotalTime = 0; 401 leds. TotalTime = 0;
400 leds. OnTime = 0; 402 leds. OnTime = 0;
401 leds. OffTime = 1; 403 leds. OffTime = 1;
402 leds. OffOnBlink = 2; 404 leds. OffOnBlink = 2;
403 405
404 switch ( st ) { 406 switch ( st ) {
405 case OLED_Off : leds. OffOnBlink = 0; break; 407 case OLED_Off : leds. OffOnBlink = 0; break;
406 case OLED_On : leds. OffOnBlink = 1; break; 408 case OLED_On : leds. OffOnBlink = 1; break;
407 case OLED_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; 409 case OLED_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break;
408 case OLED_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; 410 case OLED_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break;
409 } 411 }
410 412
411 if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { 413 if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) {
412 d-> m_leds [0] = st; 414 d-> m_leds [0] = st;
413 return true; 415 return true;
414 } 416 }
415 } 417 }
416 } 418 }
417 return false; 419 return false;
418} 420}
419 421
420 422
421//#endif 423//#endif
422 424
423 425
424 426
425 427
426 428
427//#if defined( QT_QWS_EBX ) // Zaurus 429//#if defined( QT_QWS_EBX ) // Zaurus
428 430
429void ODeviceZaurus::init ( ) 431void ODeviceZaurus::init ( )
430{ 432{
431 d-> m_modelstr = "Zaurus SL5000"; 433 d-> m_modelstr = "Zaurus SL5000";
432 d-> m_model = OMODEL_Zaurus_SL5000; 434 d-> m_model = OMODEL_Zaurus_SL5000;
433 d-> m_vendorstr = "Sharp"; 435 d-> m_vendorstr = "Sharp";
434 d-> m_vendor = OVENDOR_Sharp; 436 d-> m_vendor = OVENDOR_Sharp;
435 437
436 QFile f ( "/proc/filesystems" ); 438 QFile f ( "/proc/filesystems" );
437 439
438 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { 440 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) {
439 d-> m_systemstr = "OpenZaurus"; 441 d-> m_systemstr = "OpenZaurus";
440 d-> m_system = OSYSTEM_OpenZaurus; 442 d-> m_system = OSYSTEM_OpenZaurus;
441 443
442 f. close ( ); 444 f. close ( );
443 } 445 }
444 else { 446 else {
445 d-> m_systemstr = "Zaurus"; 447 d-> m_systemstr = "Zaurus";
446 d-> m_system = OSYSTEM_Zaurus; 448 d-> m_system = OSYSTEM_Zaurus;
447 } 449 }
448 450
449 d-> m_leds [0] = OLED_Off; 451 d-> m_leds [0] = OLED_Off;
450} 452}
451 453
452#include <unistd.h> 454#include <unistd.h>
453#include <fcntl.h> 455#include <fcntl.h>
454#include <sys/ioctl.h> 456#include <sys/ioctl.h>
455 457
456//#include <asm/sharp_char.h> // including kernel headers is evil ... 458//#include <asm/sharp_char.h> // including kernel headers is evil ...
457 459
458#define SHARP_DEV_IOCTL_COMMAND_START 0x5680 460#define SHARP_DEV_IOCTL_COMMAND_START 0x5680
459 461
460 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 462 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
461#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 463#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
462 464
463#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 465#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
464#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 466#define SHARP_BUZ_KEYSOUND 2 /* key sound */
465#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 467#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
466 468
467/* --- for SHARP_BUZZER device --- */ 469/* --- for SHARP_BUZZER device --- */
468 470
469 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 471 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
470//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 472//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
471 473
472#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) 474#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1)
473#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) 475#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2)
474#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) 476#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
475#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) 477#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4)
476#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) 478#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5)
477 479
478//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 480//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
479//#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 481//#define SHARP_BUZ_KEYSOUND 2 /* key sound */
480 482
481//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ 483//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */
482//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ 484//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */
483//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ 485//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */
484//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ 486//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */
485//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ 487//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */
486//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ 488//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */
487//#define SHARP_PDA_APPSTART 9 /* application start */ 489//#define SHARP_PDA_APPSTART 9 /* application start */
488//#define SHARP_PDA_APPQUIT 10 /* application ends */ 490//#define SHARP_PDA_APPQUIT 10 /* application ends */
489 491
490//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 492//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
491//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ 493//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */
492//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ 494//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */
493//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ 495//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */
494// 496//
495 497
496 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 498 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
497#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) 499#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1)
498 500
499typedef struct sharp_led_status { 501typedef struct sharp_led_status {
500 int which; /* select which LED status is wanted. */ 502 int which; /* select which LED status is wanted. */
501 int status; /* set new led status if you call SHARP_LED_SETSTATUS */ 503 int status; /* set new led status if you call SHARP_LED_SETSTATUS */
502} sharp_led_status; 504} sharp_led_status;
503 505
504#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ 506#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */
505 507
506#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ 508#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */
507#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ 509#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */
508#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ 510#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */
509 511
510 512
511 513
512void ODeviceZaurus::buzzer ( int sound ) 514void ODeviceZaurus::buzzer ( int sound )
513{ 515{
514 static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK ); 516 static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK );
515 517
516 if ( fd >= 0 ) 518 if ( fd >= 0 )
517 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); 519 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound );
518} 520}
519 521
520 522
521void ODeviceZaurus::alarmSound ( ) 523void ODeviceZaurus::alarmSound ( )
522{ 524{
523 buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); 525 buzzer ( SHARP_BUZ_SCHEDULE_ALARM );
524} 526}
525 527
526void ODeviceZaurus::touchSound ( ) 528void ODeviceZaurus::touchSound ( )
527{ 529{
528 buzzer ( SHARP_BUZ_TOUCHSOUND ); 530 buzzer ( SHARP_BUZ_TOUCHSOUND );
529} 531}
530 532
531void ODeviceZaurus::keySound ( ) 533void ODeviceZaurus::keySound ( )
532{ 534{
533 buzzer ( SHARP_BUZ_KEYSOUND ); 535 buzzer ( SHARP_BUZ_KEYSOUND );
534} 536}
535 537
536 538
537uint ODeviceZaurus::hasLeds ( ) const 539uint ODeviceZaurus::hasLeds ( ) const
538{ 540{
539 return 1; 541 return 1;
540} 542}
541 543
542OLedState ODeviceZaurus::led ( uint which ) const 544OLedState ODeviceZaurus::led ( uint which ) const
543{ 545{
544 if ( which == 0 ) 546 if ( which == 0 )
545 return d-> m_leds [0]; 547 return d-> m_leds [0];
546 else 548 else
547 return OLED_Off; 549 return OLED_Off;
548} 550}
549 551
550bool ODeviceZaurus::setLed ( uint which, OLedState st ) 552bool ODeviceZaurus::setLed ( uint which, OLedState st )
551{ 553{
552 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); 554 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK );
553 555
554 if ( which == 0 ) { 556 if ( which == 0 ) {
555 if ( fd >= 0 ) { 557 if ( fd >= 0 ) {
556 struct sharp_led_status leds; 558 struct sharp_led_status leds;
557 ::memset ( &leds, 0, sizeof( leds )); 559 ::memset ( &leds, 0, sizeof( leds ));
558 leds. which = SHARP_LED_MAIL_EXISTS; 560 leds. which = SHARP_LED_MAIL_EXISTS;
559 561
560 switch ( st ) { 562 switch ( st ) {
561 case OLED_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; 563 case OLED_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break;
562 case OLED_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; 564 case OLED_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break;
563 case OLED_BlinkSlow: 565 case OLED_BlinkSlow:
564 case OLED_BlinkFast: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; 566 case OLED_BlinkFast: leds. status = LED_MAIL_UNREAD_MAIL_EX; break;
565 } 567 }
566 568
567 if ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 ) { 569 if ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 ) {
568 d-> m_leds [0] = st; 570 d-> m_leds [0] = st;
569 return true; 571 return true;
570 } 572 }
571 } 573 }
572 } 574 }
573 return false; 575 return false;
574} 576}
575 577
576//#endif 578//#endif