summaryrefslogtreecommitdiff
path: root/libopie/odevice.cpp
authorsandman <sandman>2002-10-28 04:41:42 (UTC)
committer sandman <sandman>2002-10-28 04:41:42 (UTC)
commit226ddd19ef0adeb279c3a864e24cbfcf556b2f17 (patch) (unidiff)
treec1c95e39fa0634a881ffbeba190653dc7ee6201c /libopie/odevice.cpp
parent37397a824a807195ba440117a6bac0043ea788a1 (diff)
downloadopie-226ddd19ef0adeb279c3a864e24cbfcf556b2f17.zip
opie-226ddd19ef0adeb279c3a864e24cbfcf556b2f17.tar.gz
opie-226ddd19ef0adeb279c3a864e24cbfcf556b2f17.tar.bz2
- read ( fd, buffer, 4 ); return 5 (!!) for /proc/hal/light_sensor
so we better try to read 5 bytes ... - small "off by one" fix for the lcd brightness resolution
Diffstat (limited to 'libopie/odevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 6ea4d45..2b7e927 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -293,666 +293,666 @@ QString ODevice::systemString ( ) const
293 293
294OSystem ODevice::system ( ) const 294OSystem ODevice::system ( ) const
295{ 295{
296 return d-> m_system; 296 return d-> m_system;
297} 297}
298 298
299QString ODevice::systemVersionString ( ) const 299QString ODevice::systemVersionString ( ) const
300{ 300{
301 return d-> m_sysverstr; 301 return d-> m_sysverstr;
302} 302}
303 303
304void ODevice::alarmSound ( ) 304void ODevice::alarmSound ( )
305{ 305{
306#ifndef QT_QWS_EBX 306#ifndef QT_QWS_EBX
307#ifndef QT_NO_SOUND 307#ifndef QT_NO_SOUND
308 static Sound snd ( "alarm" ); 308 static Sound snd ( "alarm" );
309 309
310 if ( snd. isFinished ( )) 310 if ( snd. isFinished ( ))
311 snd. play ( ); 311 snd. play ( );
312#endif 312#endif
313#endif 313#endif
314} 314}
315 315
316void ODevice::keySound ( ) 316void ODevice::keySound ( )
317{ 317{
318#ifndef QT_QWS_EBX 318#ifndef QT_QWS_EBX
319#ifndef QT_NO_SOUND 319#ifndef QT_NO_SOUND
320 static Sound snd ( "keysound" ); 320 static Sound snd ( "keysound" );
321 321
322 if ( snd. isFinished ( )) 322 if ( snd. isFinished ( ))
323 snd. play ( ); 323 snd. play ( );
324#endif 324#endif
325#endif 325#endif
326} 326}
327 327
328void ODevice::touchSound ( ) 328void ODevice::touchSound ( )
329{ 329{
330 330
331#ifndef QT_QWS_EBX 331#ifndef QT_QWS_EBX
332#ifndef QT_NO_SOUND 332#ifndef QT_NO_SOUND
333 static Sound snd ( "touchsound" ); 333 static Sound snd ( "touchsound" );
334 334
335 if ( snd. isFinished ( )) 335 if ( snd. isFinished ( ))
336 snd. play ( ); 336 snd. play ( );
337#endif 337#endif
338#endif 338#endif
339} 339}
340 340
341 341
342QValueList <OLed> ODevice::ledList ( ) const 342QValueList <OLed> ODevice::ledList ( ) const
343{ 343{
344 return QValueList <OLed> ( ); 344 return QValueList <OLed> ( );
345} 345}
346 346
347QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const 347QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const
348{ 348{
349 return QValueList <OLedState> ( ); 349 return QValueList <OLedState> ( );
350} 350}
351 351
352OLedState ODevice::ledState ( OLed /*which*/ ) const 352OLedState ODevice::ledState ( OLed /*which*/ ) const
353{ 353{
354 return Led_Off; 354 return Led_Off;
355} 355}
356 356
357bool ODevice::setLedState ( OLed /*which*/, OLedState /*st*/ ) 357bool ODevice::setLedState ( OLed /*which*/, OLedState /*st*/ )
358{ 358{
359 return false; 359 return false;
360} 360}
361 361
362bool ODevice::hasLightSensor ( ) const 362bool ODevice::hasLightSensor ( ) const
363{ 363{
364 return false; 364 return false;
365} 365}
366 366
367int ODevice::readLightSensor ( ) 367int ODevice::readLightSensor ( )
368{ 368{
369 return -1; 369 return -1;
370} 370}
371 371
372 372
373//QValueList <int> ODevice::keyList ( ) const 373//QValueList <int> ODevice::keyList ( ) const
374//{ 374//{
375 //return QValueList <int> ( ); 375 //return QValueList <int> ( );
376//} 376//}
377 377
378 378
379 379
380/************************************************** 380/**************************************************
381 * 381 *
382 * iPAQ 382 * iPAQ
383 * 383 *
384 **************************************************/ 384 **************************************************/
385 385
386void iPAQ::init ( ) 386void iPAQ::init ( )
387{ 387{
388 d-> m_vendorstr = "HP"; 388 d-> m_vendorstr = "HP";
389 d-> m_vendor = Vendor_HP; 389 d-> m_vendor = Vendor_HP;
390 390
391 QFile f ( "/proc/hal/model" ); 391 QFile f ( "/proc/hal/model" );
392 392
393 if ( f. open ( IO_ReadOnly )) { 393 if ( f. open ( IO_ReadOnly )) {
394 QTextStream ts ( &f ); 394 QTextStream ts ( &f );
395 395
396 d-> m_modelstr = "H" + ts. readLine ( ); 396 d-> m_modelstr = "H" + ts. readLine ( );
397 397
398 if ( d-> m_modelstr == "H3100" ) 398 if ( d-> m_modelstr == "H3100" )
399 d-> m_model = Model_iPAQ_H31xx; 399 d-> m_model = Model_iPAQ_H31xx;
400 else if ( d-> m_modelstr == "H3600" ) 400 else if ( d-> m_modelstr == "H3600" )
401 d-> m_model = Model_iPAQ_H36xx; 401 d-> m_model = Model_iPAQ_H36xx;
402 else if ( d-> m_modelstr == "H3700" ) 402 else if ( d-> m_modelstr == "H3700" )
403 d-> m_model = Model_iPAQ_H37xx; 403 d-> m_model = Model_iPAQ_H37xx;
404 else if ( d-> m_modelstr == "H3800" ) 404 else if ( d-> m_modelstr == "H3800" )
405 d-> m_model = Model_iPAQ_H38xx; 405 d-> m_model = Model_iPAQ_H38xx;
406 else 406 else
407 d-> m_model = Model_Unknown; 407 d-> m_model = Model_Unknown;
408 408
409 f. close ( ); 409 f. close ( );
410 } 410 }
411 411
412 f. setName ( "/etc/familiar-version" ); 412 f. setName ( "/etc/familiar-version" );
413 if ( f. open ( IO_ReadOnly )) { 413 if ( f. open ( IO_ReadOnly )) {
414 d-> m_systemstr = "Familiar"; 414 d-> m_systemstr = "Familiar";
415 d-> m_system = System_Familiar; 415 d-> m_system = System_Familiar;
416 416
417 QTextStream ts ( &f ); 417 QTextStream ts ( &f );
418 d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); 418 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
419 419
420 f. close ( ); 420 f. close ( );
421 } 421 }
422 422
423 m_leds [0] = m_leds [1] = Led_Off; 423 m_leds [0] = m_leds [1] = Led_Off;
424 424
425 m_power_timer = 0; 425 m_power_timer = 0;
426 426
427 if ( d-> m_qwsserver ) 427 if ( d-> m_qwsserver )
428 QWSServer::setKeyboardFilter ( this ); 428 QWSServer::setKeyboardFilter ( this );
429} 429}
430 430
431//#include <linux/h3600_ts.h> // including kernel headers is evil ... 431//#include <linux/h3600_ts.h> // including kernel headers is evil ...
432 432
433typedef struct { 433typedef struct {
434 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ 434 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */
435 unsigned char TotalTime; /* Units of 5 seconds */ 435 unsigned char TotalTime; /* Units of 5 seconds */
436 unsigned char OnTime; /* units of 100m/s */ 436 unsigned char OnTime; /* units of 100m/s */
437 unsigned char OffTime; /* units of 100m/s */ 437 unsigned char OffTime; /* units of 100m/s */
438} LED_IN; 438} LED_IN;
439 439
440typedef struct { 440typedef struct {
441 unsigned char mode; 441 unsigned char mode;
442 unsigned char pwr; 442 unsigned char pwr;
443 unsigned char brightness; 443 unsigned char brightness;
444} FLITE_IN; 444} FLITE_IN;
445 445
446#define LED_ON OD_IOW( 'f', 5, LED_IN ) 446#define LED_ON OD_IOW( 'f', 5, LED_IN )
447#define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) 447#define FLITE_ON OD_IOW( 'f', 7, FLITE_IN )
448 448
449 449
450 450
451QValueList <OLed> iPAQ::ledList ( ) const 451QValueList <OLed> iPAQ::ledList ( ) const
452{ 452{
453 QValueList <OLed> vl; 453 QValueList <OLed> vl;
454 vl << Led_Power; 454 vl << Led_Power;
455 455
456 if ( d-> m_model == Model_iPAQ_H38xx ) 456 if ( d-> m_model == Model_iPAQ_H38xx )
457 vl << Led_BlueTooth; 457 vl << Led_BlueTooth;
458 return vl; 458 return vl;
459} 459}
460 460
461QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const 461QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const
462{ 462{
463 QValueList <OLedState> vl; 463 QValueList <OLedState> vl;
464 464
465 if ( l == Led_Power ) 465 if ( l == Led_Power )
466 vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; 466 vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast;
467 else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) 467 else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx )
468 vl << Led_Off; // << Led_On << ??? 468 vl << Led_Off; // << Led_On << ???
469 469
470 return vl; 470 return vl;
471} 471}
472 472
473OLedState iPAQ::ledState ( OLed l ) const 473OLedState iPAQ::ledState ( OLed l ) const
474 { 474 {
475 switch ( l ) { 475 switch ( l ) {
476 case Led_Power: 476 case Led_Power:
477 return m_leds [0]; 477 return m_leds [0];
478 case Led_BlueTooth: 478 case Led_BlueTooth:
479 return m_leds [1]; 479 return m_leds [1];
480 default: 480 default:
481 return Led_Off; 481 return Led_Off;
482 } 482 }
483} 483}
484 484
485bool iPAQ::setLedState ( OLed l, OLedState st ) 485bool iPAQ::setLedState ( OLed l, OLedState st )
486{ 486{
487 static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); 487 static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK );
488 488
489 if ( l == Led_Power ) { 489 if ( l == Led_Power ) {
490 if ( fd >= 0 ) { 490 if ( fd >= 0 ) {
491 LED_IN leds; 491 LED_IN leds;
492 ::memset ( &leds, 0, sizeof( leds )); 492 ::memset ( &leds, 0, sizeof( leds ));
493 leds. TotalTime = 0; 493 leds. TotalTime = 0;
494 leds. OnTime = 0; 494 leds. OnTime = 0;
495 leds. OffTime = 1; 495 leds. OffTime = 1;
496 leds. OffOnBlink = 2; 496 leds. OffOnBlink = 2;
497 497
498 switch ( st ) { 498 switch ( st ) {
499 case Led_Off : leds. OffOnBlink = 0; break; 499 case Led_Off : leds. OffOnBlink = 0; break;
500 case Led_On : leds. OffOnBlink = 1; break; 500 case Led_On : leds. OffOnBlink = 1; break;
501 case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; 501 case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break;
502 case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; 502 case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break;
503 } 503 }
504 504
505 if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { 505 if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) {
506 m_leds [0] = st; 506 m_leds [0] = st;
507 return true; 507 return true;
508 } 508 }
509 } 509 }
510 } 510 }
511 return false; 511 return false;
512} 512}
513 513
514 514
515//QValueList <int> iPAQ::keyList ( ) const 515//QValueList <int> iPAQ::keyList ( ) const
516//{ 516//{
517 //QValueList <int> vl; 517 //QValueList <int> vl;
518 //vl << HardKey_Datebook << HardKey_Contacts << ( model ( ) == Model_iPAQ_H38xx ? HardKey_Mail : HardKey_Menu ) << HardKey_Home << HardKey_Record << HardKey_Suspend << HardKey_Backlight; 518 //vl << HardKey_Datebook << HardKey_Contacts << ( model ( ) == Model_iPAQ_H38xx ? HardKey_Mail : HardKey_Menu ) << HardKey_Home << HardKey_Record << HardKey_Suspend << HardKey_Backlight;
519 //return vl; 519 //return vl;
520//} 520//}
521 521
522bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) 522bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat )
523{ 523{
524 int newkeycode = keycode; 524 int newkeycode = keycode;
525 525
526 526
527 // simple susbstitutions 527 // simple susbstitutions
528 switch ( d-> m_model ) { 528 switch ( d-> m_model ) {
529 case Model_iPAQ_H38xx: 529 case Model_iPAQ_H38xx:
530 // H38xx has no "Q" key anymore - this is now the Mail key 530 // H38xx has no "Q" key anymore - this is now the Mail key
531 if ( keycode == HardKey_Menu ) 531 if ( keycode == HardKey_Menu )
532 newkeycode = HardKey_Mail; 532 newkeycode = HardKey_Mail;
533 //nobreak 533 //nobreak
534 534
535 case Model_iPAQ_H31xx: 535 case Model_iPAQ_H31xx:
536 // Rotate cursor keys 180° 536 // Rotate cursor keys 180°
537 switch ( keycode ) { 537 switch ( keycode ) {
538 case Key_Left : newkeycode = Key_Right; break; 538 case Key_Left : newkeycode = Key_Right; break;
539 case Key_Right: newkeycode = Key_Left; break; 539 case Key_Right: newkeycode = Key_Left; break;
540 case Key_Up : newkeycode = Key_Down; break; 540 case Key_Up : newkeycode = Key_Down; break;
541 case Key_Down : newkeycode = Key_Up; break; 541 case Key_Down : newkeycode = Key_Up; break;
542 } 542 }
543 //nobreak; 543 //nobreak;
544 544
545 case Model_iPAQ_H36xx: 545 case Model_iPAQ_H36xx:
546 case Model_iPAQ_H37xx: 546 case Model_iPAQ_H37xx:
547 // map Power Button short/long press to F34/F35 547 // map Power Button short/long press to F34/F35
548 if ( keycode == Key_SysReq ) { 548 if ( keycode == Key_SysReq ) {
549 if ( isPress ) { 549 if ( isPress ) {
550 if ( m_power_timer ) 550 if ( m_power_timer )
551 killTimer ( m_power_timer ); 551 killTimer ( m_power_timer );
552 m_power_timer = startTimer ( 500 ); 552 m_power_timer = startTimer ( 500 );
553 } 553 }
554 else if ( m_power_timer ) { 554 else if ( m_power_timer ) {
555 killTimer ( m_power_timer ); 555 killTimer ( m_power_timer );
556 m_power_timer = 0; 556 m_power_timer = 0;
557 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); 557 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false );
558 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); 558 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false );
559 } 559 }
560 newkeycode = Key_unknown; 560 newkeycode = Key_unknown;
561 } 561 }
562 //nobreak; 562 //nobreak;
563 563
564 default: 564 default:
565 break; 565 break;
566 } 566 }
567 567
568 if ( newkeycode != keycode ) { 568 if ( newkeycode != keycode ) {
569 if ( newkeycode != Key_unknown ) 569 if ( newkeycode != Key_unknown )
570 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); 570 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat );
571 return true; 571 return true;
572 } 572 }
573 else 573 else
574 return false; 574 return false;
575} 575}
576 576
577void iPAQ::timerEvent ( QTimerEvent * ) 577void iPAQ::timerEvent ( QTimerEvent * )
578{ 578{
579 killTimer ( m_power_timer ); 579 killTimer ( m_power_timer );
580 m_power_timer = 0; 580 m_power_timer = 0;
581 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); 581 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false );
582 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); 582 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false );
583} 583}
584 584
585 585
586void iPAQ::alarmSound ( ) 586void iPAQ::alarmSound ( )
587{ 587{
588#if defined( QT_QWS_IPAQ ) // IPAQ 588#if defined( QT_QWS_IPAQ ) // IPAQ
589#ifndef QT_NO_SOUND 589#ifndef QT_NO_SOUND
590 static Sound snd ( "alarm" ); 590 static Sound snd ( "alarm" );
591 int fd; 591 int fd;
592 int vol; 592 int vol;
593 bool vol_reset = false; 593 bool vol_reset = false;
594 594
595 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { 595 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
596 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { 596 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
597 Config cfg ( "qpe" ); 597 Config cfg ( "qpe" );
598 cfg. setGroup ( "Volume" ); 598 cfg. setGroup ( "Volume" );
599 599
600 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); 600 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
601 if ( volalarm < 0 ) 601 if ( volalarm < 0 )
602 volalarm = 0; 602 volalarm = 0;
603 else if ( volalarm > 100 ) 603 else if ( volalarm > 100 )
604 volalarm = 100; 604 volalarm = 100;
605 volalarm |= ( volalarm << 8 ); 605 volalarm |= ( volalarm << 8 );
606 606
607 if (( volalarm & 0xff ) > ( vol & 0xff )) { 607 if (( volalarm & 0xff ) > ( vol & 0xff )) {
608 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) 608 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
609 vol_reset = true; 609 vol_reset = true;
610 } 610 }
611 } 611 }
612 } 612 }
613 613
614 snd. play ( ); 614 snd. play ( );
615 while ( !snd. isFinished ( )) 615 while ( !snd. isFinished ( ))
616 qApp-> processEvents ( ); 616 qApp-> processEvents ( );
617 617
618 if ( fd >= 0 ) { 618 if ( fd >= 0 ) {
619 if ( vol_reset ) 619 if ( vol_reset )
620 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); 620 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
621 ::close ( fd ); 621 ::close ( fd );
622 } 622 }
623#endif 623#endif
624#endif 624#endif
625} 625}
626 626
627 627
628bool iPAQ::setSoftSuspend ( bool soft ) 628bool iPAQ::setSoftSuspend ( bool soft )
629{ 629{
630 bool res = false; 630 bool res = false;
631 int fd; 631 int fd;
632 632
633 if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { 633 if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) {
634 if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) 634 if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 )
635 res = true; 635 res = true;
636 else 636 else
637 ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); 637 ::perror ( "write to /proc/sys/ts/suspend_button_mode" );
638 638
639 ::close ( fd ); 639 ::close ( fd );
640 } 640 }
641 else 641 else
642 ::perror ( "/proc/sys/ts/suspend_button_mode" ); 642 ::perror ( "/proc/sys/ts/suspend_button_mode" );
643 643
644 return res; 644 return res;
645} 645}
646 646
647 647
648bool iPAQ::setDisplayBrightness ( int bright ) 648bool iPAQ::setDisplayBrightness ( int bright )
649{ 649{
650 bool res = false; 650 bool res = false;
651 int fd; 651 int fd;
652 652
653 if ( bright > 255 ) 653 if ( bright > 255 )
654 bright = 255; 654 bright = 255;
655 if ( bright < 0 ) 655 if ( bright < 0 )
656 bright = 0; 656 bright = 0;
657 657
658 // 128 is the maximum if you want a decent lifetime for the LCD 658 // 128 is the maximum if you want a decent lifetime for the LCD
659 659
660 if ( bright > 1 ) 660 if ( bright > 1 )
661 bright = (int) ( 0.5 + ( ::pow ( 2, double( bright ) / 255.0 ) - 1 ) * 128.0 ); // logarithmic 661 bright = (int) ( 0.5 + ( ::pow ( 2, double( bright ) / 255.0 ) - 1 ) * 128.0 ); // logarithmic
662 //bright = ( bright + 1 ) / 2; 662 //bright = ( bright + 1 ) / 2;
663 663
664 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { 664 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) {
665 FLITE_IN bl; 665 FLITE_IN bl;
666 bl. mode = 1; 666 bl. mode = 1;
667 bl. pwr = bright ? 1 : 0; 667 bl. pwr = bright ? 1 : 0;
668 bl. brightness = bright; 668 bl. brightness = bright;
669 res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); 669 res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 );
670 ::close ( fd ); 670 ::close ( fd );
671 } 671 }
672 return res; 672 return res;
673} 673}
674 674
675int iPAQ::displayBrightnessResolution ( ) const 675int iPAQ::displayBrightnessResolution ( ) const
676{ 676{
677 return 255; // really 128, but logarithmic control is smoother this way 677 return 256; // really 128, but logarithmic control is smoother this way
678} 678}
679 679
680 680
681bool iPAQ::hasLightSensor ( ) const 681bool iPAQ::hasLightSensor ( ) const
682{ 682{
683 return true; 683 return true;
684} 684}
685 685#include <errno.h>
686#include <string.h>
686int iPAQ::readLightSensor ( ) 687int iPAQ::readLightSensor ( )
687{ 688{
688 int fd; 689 int fd;
689 int val = -1; 690 int val = -1;
690 691
691 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { 692 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
692 char buffer [5]; 693 char buffer [8];
693 694
694 if ( ::read ( fd, buffer, 4 ) == 4 ) { 695 if ( ::read ( fd, buffer, 5 ) == 5 )
695 char *endptr; 696 char *endptr;
696 697
697 buffer [4] = 0; 698 buffer [4] = 0;
698 val = ::strtol ( buffer + 2, &endptr, 16 ); 699 val = ::strtol ( buffer + 2, &endptr, 16 );
699 700
700 if ( *endptr != 0 ) 701 if ( *endptr != 0 )
701 val = -1; 702 val = -1;
702 } 703 }
703
704 ::close ( fd ); 704 ::close ( fd );
705 } 705 }
706 706
707 return val; 707 return val;
708} 708}
709 709
710 710
711/************************************************** 711/**************************************************
712 * 712 *
713 * Zaurus 713 * Zaurus
714 * 714 *
715 **************************************************/ 715 **************************************************/
716 716
717 717
718 718
719void Zaurus::init ( ) 719void Zaurus::init ( )
720{ 720{
721 d-> m_modelstr = "Zaurus SL5000"; 721 d-> m_modelstr = "Zaurus SL5000";
722 d-> m_model = Model_Zaurus_SL5000; 722 d-> m_model = Model_Zaurus_SL5000;
723 d-> m_vendorstr = "Sharp"; 723 d-> m_vendorstr = "Sharp";
724 d-> m_vendor = Vendor_Sharp; 724 d-> m_vendor = Vendor_Sharp;
725 725
726 QFile f ( "/proc/filesystems" ); 726 QFile f ( "/proc/filesystems" );
727 727
728 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { 728 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) {
729 d-> m_systemstr = "OpenZaurus"; 729 d-> m_systemstr = "OpenZaurus";
730 d-> m_system = System_OpenZaurus; 730 d-> m_system = System_OpenZaurus;
731 731
732 f. close ( ); 732 f. close ( );
733 733
734 f. setName ( "/etc/oz_version" ); 734 f. setName ( "/etc/oz_version" );
735 if ( f. open ( IO_ReadOnly )) { 735 if ( f. open ( IO_ReadOnly )) {
736 QTextStream ts ( &f ); 736 QTextStream ts ( &f );
737 d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); 737 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
738 f. close ( ); 738 f. close ( );
739 } 739 }
740 } 740 }
741 else { 741 else {
742 d-> m_systemstr = "Zaurus"; 742 d-> m_systemstr = "Zaurus";
743 d-> m_system = System_Zaurus; 743 d-> m_system = System_Zaurus;
744 } 744 }
745 745
746 746
747 m_leds [0] = Led_Off; 747 m_leds [0] = Led_Off;
748} 748}
749 749
750#include <unistd.h> 750#include <unistd.h>
751#include <fcntl.h> 751#include <fcntl.h>
752#include <sys/ioctl.h> 752#include <sys/ioctl.h>
753 753
754//#include <asm/sharp_char.h> // including kernel headers is evil ... 754//#include <asm/sharp_char.h> // including kernel headers is evil ...
755 755
756#define SHARP_DEV_IOCTL_COMMAND_START 0x5680 756#define SHARP_DEV_IOCTL_COMMAND_START 0x5680
757 757
758 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 758 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
759#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 759#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
760 760
761#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 761#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
762#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 762#define SHARP_BUZ_KEYSOUND 2 /* key sound */
763#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 763#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
764 764
765/* --- for SHARP_BUZZER device --- */ 765/* --- for SHARP_BUZZER device --- */
766 766
767 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 767 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
768//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 768//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
769 769
770#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) 770#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1)
771#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) 771#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2)
772#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) 772#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
773#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) 773#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4)
774#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) 774#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5)
775 775
776//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 776//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
777//#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 777//#define SHARP_BUZ_KEYSOUND 2 /* key sound */
778 778
779//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ 779//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */
780//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ 780//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */
781//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ 781//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */
782//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ 782//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */
783//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ 783//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */
784//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ 784//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */
785//#define SHARP_PDA_APPSTART 9 /* application start */ 785//#define SHARP_PDA_APPSTART 9 /* application start */
786//#define SHARP_PDA_APPQUIT 10 /* application ends */ 786//#define SHARP_PDA_APPQUIT 10 /* application ends */
787 787
788//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 788//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
789//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ 789//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */
790//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ 790//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */
791//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ 791//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */
792// 792//
793 793
794 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 794 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
795#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) 795#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1)
796 796
797typedef struct sharp_led_status { 797typedef struct sharp_led_status {
798 int which; /* select which LED status is wanted. */ 798 int which; /* select which LED status is wanted. */
799 int status; /* set new led status if you call SHARP_LED_SETSTATUS */ 799 int status; /* set new led status if you call SHARP_LED_SETSTATUS */
800} sharp_led_status; 800} sharp_led_status;
801 801
802#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ 802#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */
803 803
804#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ 804#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */
805#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ 805#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */
806#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ 806#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */
807 807
808// #include <asm/sharp_apm.h> // including kernel headers is evil ... 808// #include <asm/sharp_apm.h> // including kernel headers is evil ...
809 809
810#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) 810#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int )
811#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) 811#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int )
812#define APM_EVT_POWER_BUTTON (1 << 0) 812#define APM_EVT_POWER_BUTTON (1 << 0)
813 813
814#define FL_IOCTL_STEP_CONTRAST 100 814#define FL_IOCTL_STEP_CONTRAST 100
815 815
816 816
817void Zaurus::buzzer ( int sound ) 817void Zaurus::buzzer ( int sound )
818{ 818{
819 static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK ); 819 static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK );
820 820
821 if ( fd >= 0 ) 821 if ( fd >= 0 )
822 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); 822 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound );
823} 823}
824 824
825 825
826void Zaurus::alarmSound ( ) 826void Zaurus::alarmSound ( )
827{ 827{
828 buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); 828 buzzer ( SHARP_BUZ_SCHEDULE_ALARM );
829} 829}
830 830
831void Zaurus::touchSound ( ) 831void Zaurus::touchSound ( )
832{ 832{
833 buzzer ( SHARP_BUZ_TOUCHSOUND ); 833 buzzer ( SHARP_BUZ_TOUCHSOUND );
834} 834}
835 835
836void Zaurus::keySound ( ) 836void Zaurus::keySound ( )
837{ 837{
838 buzzer ( SHARP_BUZ_KEYSOUND ); 838 buzzer ( SHARP_BUZ_KEYSOUND );
839} 839}
840 840
841 841
842QValueList <OLed> Zaurus::ledList ( ) const 842QValueList <OLed> Zaurus::ledList ( ) const
843{ 843{
844 QValueList <OLed> vl; 844 QValueList <OLed> vl;
845 vl << Led_Mail; 845 vl << Led_Mail;
846 return vl; 846 return vl;
847} 847}
848 848
849QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const 849QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const
850{ 850{
851 QValueList <OLedState> vl; 851 QValueList <OLedState> vl;
852 852
853 if ( l == Led_Mail ) 853 if ( l == Led_Mail )
854 vl << Led_Off << Led_On << Led_BlinkSlow; 854 vl << Led_Off << Led_On << Led_BlinkSlow;
855 return vl; 855 return vl;
856} 856}
857 857
858OLedState Zaurus::ledState ( OLed which ) const 858OLedState Zaurus::ledState ( OLed which ) const
859{ 859{
860 if ( which == Led_Mail ) 860 if ( which == Led_Mail )
861 return m_leds [0]; 861 return m_leds [0];
862 else 862 else
863 return Led_Off; 863 return Led_Off;
864} 864}
865 865
866bool Zaurus::setLedState ( OLed which, OLedState st ) 866bool Zaurus::setLedState ( OLed which, OLedState st )
867{ 867{
868 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); 868 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK );
869 869
870 if ( which == Led_Mail ) { 870 if ( which == Led_Mail ) {
871 if ( fd >= 0 ) { 871 if ( fd >= 0 ) {
872 struct sharp_led_status leds; 872 struct sharp_led_status leds;
873 ::memset ( &leds, 0, sizeof( leds )); 873 ::memset ( &leds, 0, sizeof( leds ));
874 leds. which = SHARP_LED_MAIL_EXISTS; 874 leds. which = SHARP_LED_MAIL_EXISTS;
875 bool ok = true; 875 bool ok = true;
876 876
877 switch ( st ) { 877 switch ( st ) {
878 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; 878 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break;
879 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; 879 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break;
880 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; 880 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break;
881 default : ok = false; 881 default : ok = false;
882 } 882 }
883 883
884 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { 884 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) {
885 m_leds [0] = st; 885 m_leds [0] = st;
886 return true; 886 return true;
887 } 887 }
888 } 888 }
889 } 889 }
890 return false; 890 return false;
891} 891}
892 892
893bool Zaurus::setSoftSuspend ( bool soft ) 893bool Zaurus::setSoftSuspend ( bool soft )
894{ 894{
895 bool res = false; 895 bool res = false;
896 int fd; 896 int fd;
897 897
898 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || 898 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) ||
899 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { 899 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) {
900 900
901 int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources 901 int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources
902 902
903 if ( sources >= 0 ) { 903 if ( sources >= 0 ) {
904 if ( soft ) 904 if ( soft )
905 sources &= ~APM_EVT_POWER_BUTTON; 905 sources &= ~APM_EVT_POWER_BUTTON;
906 else 906 else
907 sources |= APM_EVT_POWER_BUTTON; 907 sources |= APM_EVT_POWER_BUTTON;
908 908
909 if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources 909 if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources
910 res = true; 910 res = true;
911 else 911 else
912 perror ( "APM_IOCGEVTSRC" ); 912 perror ( "APM_IOCGEVTSRC" );
913 } 913 }
914 else 914 else
915 perror ( "APM_IOCGEVTSRC" ); 915 perror ( "APM_IOCGEVTSRC" );
916 916
917 ::close ( fd ); 917 ::close ( fd );
918 } 918 }
919 else 919 else
920 perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); 920 perror ( "/dev/apm_bios or /dev/misc/apm_bios" );
921 921
922 return res; 922 return res;
923} 923}
924 924
925 925
926bool Zaurus::setDisplayBrightness ( int bright ) 926bool Zaurus::setDisplayBrightness ( int bright )
927{ 927{
928 bool res = false; 928 bool res = false;
929 int fd; 929 int fd;
930 930
931 if ( bright > 255 ) 931 if ( bright > 255 )
932 bright = 255; 932 bright = 255;
933 if ( bright < 0 ) 933 if ( bright < 0 )
934 bright = 0; 934 bright = 0;
935 935
936 if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { 936 if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) {
937 int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus 937 int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus
938 if ( bright && !bl ) 938 if ( bright && !bl )
939 bl = 1; 939 bl = 1;
940 res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); 940 res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 );
941 ::close ( fd ); 941 ::close ( fd );
942 } 942 }
943 return res; 943 return res;
944} 944}
945 945
946 946
947int Zaurus::displayBrightnessResolution ( ) const 947int Zaurus::displayBrightnessResolution ( ) const
948{ 948{
949 return 4; 949 return 5;
950} 950}
951 951
952//QValueList <int> Zaurus::keyList ( ) const 952//QValueList <int> Zaurus::keyList ( ) const
953//{ 953//{
954 //QValueList <int> vl; 954 //QValueList <int> vl;
955 //vl << HardKey_Datebook << HardKey_Contacts << HardKey_Mail << HardKey_Menu << HardKey_Home << HardKey_Suspend << HardKey_Backlight; 955 //vl << HardKey_Datebook << HardKey_Contacts << HardKey_Mail << HardKey_Menu << HardKey_Home << HardKey_Suspend << HardKey_Backlight;
956 //return vl; 956 //return vl;
957//} 957//}
958 958