summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 9fd3ae2..c947630 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -547,100 +547,98 @@ bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, b
547 killTimer ( m_power_timer ); 547 killTimer ( m_power_timer );
548 m_power_timer = 0; 548 m_power_timer = 0;
549 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); 549 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false );
550 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); 550 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false );
551 } 551 }
552 newkeycode = Key_unknown; 552 newkeycode = Key_unknown;
553 break; 553 break;
554 } 554 }
555 } 555 }
556 556
557 if ( newkeycode != keycode ) { 557 if ( newkeycode != keycode ) {
558 if ( newkeycode != Key_unknown ) 558 if ( newkeycode != Key_unknown )
559 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); 559 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat );
560 return true; 560 return true;
561 } 561 }
562 else 562 else
563 return false; 563 return false;
564} 564}
565 565
566void iPAQ::timerEvent ( QTimerEvent * ) 566void iPAQ::timerEvent ( QTimerEvent * )
567{ 567{
568 killTimer ( m_power_timer ); 568 killTimer ( m_power_timer );
569 m_power_timer = 0; 569 m_power_timer = 0;
570 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); 570 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false );
571 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); 571 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false );
572} 572}
573 573
574 574
575void iPAQ::alarmSound ( ) 575void iPAQ::alarmSound ( )
576{ 576{
577#ifndef QT_NO_SOUND 577#ifndef QT_NO_SOUND
578 static Sound snd ( "alarm" ); 578 static Sound snd ( "alarm" );
579 int fd; 579 int fd;
580 int vol; 580 int vol;
581 bool vol_reset = false; 581 bool vol_reset = false;
582 582
583 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { 583 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
584 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { 584 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
585 Config cfg ( "qpe" ); 585 Config cfg ( "qpe" );
586 cfg. setGroup ( "Volume" ); 586 cfg. setGroup ( "Volume" );
587 587
588 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); 588 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
589 if ( volalarm < 0 ) 589 if ( volalarm < 0 )
590 volalarm = 0; 590 volalarm = 0;
591 else if ( volalarm > 100 ) 591 else if ( volalarm > 100 )
592 volalarm = 100; 592 volalarm = 100;
593 volalarm |= ( volalarm << 8 ); 593 volalarm |= ( volalarm << 8 );
594 594
595 if (( volalarm & 0xff ) > ( vol & 0xff )) { 595 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
596 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) 596 vol_reset = true;
597 vol_reset = true;
598 }
599 } 597 }
600 } 598 }
601 599
602 snd. play ( ); 600 snd. play ( );
603 while ( !snd. isFinished ( )) 601 while ( !snd. isFinished ( ))
604 qApp-> processEvents ( ); 602 qApp-> processEvents ( );
605 603
606 if ( fd >= 0 ) { 604 if ( fd >= 0 ) {
607 if ( vol_reset ) 605 if ( vol_reset )
608 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); 606 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
609 ::close ( fd ); 607 ::close ( fd );
610 } 608 }
611#endif 609#endif
612} 610}
613 611
614 612
615bool iPAQ::setSoftSuspend ( bool soft ) 613bool iPAQ::setSoftSuspend ( bool soft )
616{ 614{
617 bool res = false; 615 bool res = false;
618 int fd; 616 int fd;
619 617
620 if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { 618 if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) {
621 if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) 619 if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 )
622 res = true; 620 res = true;
623 else 621 else
624 ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); 622 ::perror ( "write to /proc/sys/ts/suspend_button_mode" );
625 623
626 ::close ( fd ); 624 ::close ( fd );
627 } 625 }
628 else 626 else
629 ::perror ( "/proc/sys/ts/suspend_button_mode" ); 627 ::perror ( "/proc/sys/ts/suspend_button_mode" );
630 628
631 return res; 629 return res;
632} 630}
633 631
634 632
635bool iPAQ::setDisplayBrightness ( int bright ) 633bool iPAQ::setDisplayBrightness ( int bright )
636{ 634{
637 bool res = false; 635 bool res = false;
638 int fd; 636 int fd;
639 637
640 if ( bright > 255 ) 638 if ( bright > 255 )
641 bright = 255; 639 bright = 255;
642 if ( bright < 0 ) 640 if ( bright < 0 )
643 bright = 0; 641 bright = 0;
644 642
645 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { 643 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) {
646 FLITE_IN bl; 644 FLITE_IN bl;