summaryrefslogtreecommitdiff
path: root/libopie/odevice.cpp
Unidiff
Diffstat (limited to 'libopie/odevice.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libopie/odevice.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp
index 55ba7bd..cea4f35 100644
--- a/libopie/odevice.cpp
+++ b/libopie/odevice.cpp
@@ -618,646 +618,648 @@ void iPAQ::init ( )
618 d-> m_model = Model_iPAQ_H39xx; 618 d-> m_model = Model_iPAQ_H39xx;
619 else 619 else
620 d-> m_model = Model_Unknown; 620 d-> m_model = Model_Unknown;
621 621
622 f. close ( ); 622 f. close ( );
623 } 623 }
624 624
625 switch ( d-> m_model ) { 625 switch ( d-> m_model ) {
626 case Model_iPAQ_H31xx: 626 case Model_iPAQ_H31xx:
627 case Model_iPAQ_H38xx: 627 case Model_iPAQ_H38xx:
628 d-> m_rotation = Rot90; 628 d-> m_rotation = Rot90;
629 break; 629 break;
630 case Model_iPAQ_H36xx: 630 case Model_iPAQ_H36xx:
631 case Model_iPAQ_H37xx: 631 case Model_iPAQ_H37xx:
632 case Model_iPAQ_H39xx: 632 case Model_iPAQ_H39xx:
633 default: 633 default:
634 d-> m_rotation = Rot270; 634 d-> m_rotation = Rot270;
635 break; 635 break;
636 } 636 }
637 637
638 f. setName ( "/etc/familiar-version" ); 638 f. setName ( "/etc/familiar-version" );
639 if ( f. open ( IO_ReadOnly )) { 639 if ( f. open ( IO_ReadOnly )) {
640 d-> m_systemstr = "Familiar"; 640 d-> m_systemstr = "Familiar";
641 d-> m_system = System_Familiar; 641 d-> m_system = System_Familiar;
642 642
643 QTextStream ts ( &f ); 643 QTextStream ts ( &f );
644 d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); 644 d-> m_sysverstr = ts. readLine ( ). mid ( 10 );
645 645
646 f. close ( ); 646 f. close ( );
647 } 647 }
648 648
649 m_leds [0] = m_leds [1] = Led_Off; 649 m_leds [0] = m_leds [1] = Led_Off;
650 650
651 m_power_timer = 0; 651 m_power_timer = 0;
652 652
653 if ( d-> m_qwsserver ) 653 if ( d-> m_qwsserver )
654 QWSServer::setKeyboardFilter ( this ); 654 QWSServer::setKeyboardFilter ( this );
655} 655}
656 656
657void iPAQ::initButtons ( ) 657void iPAQ::initButtons ( )
658{ 658{
659 if ( d-> m_buttons ) 659 if ( d-> m_buttons )
660 return; 660 return;
661 661
662 d-> m_buttons = new QValueList <ODeviceButton>; 662 d-> m_buttons = new QValueList <ODeviceButton>;
663 663
664 for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { 664 for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) {
665 i_button *ib = ipaq_buttons + i; 665 i_button *ib = ipaq_buttons + i;
666 ODeviceButton b; 666 ODeviceButton b;
667 667
668 if (( ib-> model & d-> m_model ) == d-> m_model ) { 668 if (( ib-> model & d-> m_model ) == d-> m_model ) {
669 b. setKeycode ( ib-> code ); 669 b. setKeycode ( ib-> code );
670 b. setUserText ( QObject::tr ( "Button", ib-> utext )); 670 b. setUserText ( QObject::tr ( "Button", ib-> utext ));
671 b. setPixmap ( Resource::loadPixmap ( ib-> pix )); 671 b. setPixmap ( Resource::loadPixmap ( ib-> pix ));
672 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction )); 672 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction ));
673 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction )); 673 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction ));
674 674
675 d-> m_buttons-> append ( b ); 675 d-> m_buttons-> append ( b );
676 } 676 }
677 } 677 }
678 reloadButtonMapping ( ); 678 reloadButtonMapping ( );
679 679
680 QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); 680 QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
681 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); 681 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
682} 682}
683 683
684 684
685//#include <linux/h3600_ts.h> // including kernel headers is evil ... 685//#include <linux/h3600_ts.h> // including kernel headers is evil ...
686 686
687typedef struct { 687typedef struct {
688 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ 688 unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */
689 unsigned char TotalTime; /* Units of 5 seconds */ 689 unsigned char TotalTime; /* Units of 5 seconds */
690 unsigned char OnTime; /* units of 100m/s */ 690 unsigned char OnTime; /* units of 100m/s */
691 unsigned char OffTime; /* units of 100m/s */ 691 unsigned char OffTime; /* units of 100m/s */
692} LED_IN; 692} LED_IN;
693 693
694typedef struct { 694typedef struct {
695 unsigned char mode; 695 unsigned char mode;
696 unsigned char pwr; 696 unsigned char pwr;
697 unsigned char brightness; 697 unsigned char brightness;
698} FLITE_IN; 698} FLITE_IN;
699 699
700#define LED_ON OD_IOW( 'f', 5, LED_IN ) 700#define LED_ON OD_IOW( 'f', 5, LED_IN )
701#define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) 701#define FLITE_ON OD_IOW( 'f', 7, FLITE_IN )
702 702
703 703
704QValueList <OLed> iPAQ::ledList ( ) const 704QValueList <OLed> iPAQ::ledList ( ) const
705{ 705{
706 QValueList <OLed> vl; 706 QValueList <OLed> vl;
707 vl << Led_Power; 707 vl << Led_Power;
708 708
709 if ( d-> m_model == Model_iPAQ_H38xx ) 709 if ( d-> m_model == Model_iPAQ_H38xx )
710 vl << Led_BlueTooth; 710 vl << Led_BlueTooth;
711 return vl; 711 return vl;
712} 712}
713 713
714QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const 714QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const
715{ 715{
716 QValueList <OLedState> vl; 716 QValueList <OLedState> vl;
717 717
718 if ( l == Led_Power ) 718 if ( l == Led_Power )
719 vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; 719 vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast;
720 else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) 720 else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx )
721 vl << Led_Off; // << Led_On << ??? 721 vl << Led_Off; // << Led_On << ???
722 722
723 return vl; 723 return vl;
724} 724}
725 725
726OLedState iPAQ::ledState ( OLed l ) const 726OLedState iPAQ::ledState ( OLed l ) const
727 { 727 {
728 switch ( l ) { 728 switch ( l ) {
729 case Led_Power: 729 case Led_Power:
730 return m_leds [0]; 730 return m_leds [0];
731 case Led_BlueTooth: 731 case Led_BlueTooth:
732 return m_leds [1]; 732 return m_leds [1];
733 default: 733 default:
734 return Led_Off; 734 return Led_Off;
735 } 735 }
736} 736}
737 737
738bool iPAQ::setLedState ( OLed l, OLedState st ) 738bool iPAQ::setLedState ( OLed l, OLedState st )
739{ 739{
740 static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); 740 static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK );
741 741
742 if ( l == Led_Power ) { 742 if ( l == Led_Power ) {
743 if ( fd >= 0 ) { 743 if ( fd >= 0 ) {
744 LED_IN leds; 744 LED_IN leds;
745 ::memset ( &leds, 0, sizeof( leds )); 745 ::memset ( &leds, 0, sizeof( leds ));
746 leds. TotalTime = 0; 746 leds. TotalTime = 0;
747 leds. OnTime = 0; 747 leds. OnTime = 0;
748 leds. OffTime = 1; 748 leds. OffTime = 1;
749 leds. OffOnBlink = 2; 749 leds. OffOnBlink = 2;
750 750
751 switch ( st ) { 751 switch ( st ) {
752 case Led_Off : leds. OffOnBlink = 0; break; 752 case Led_Off : leds. OffOnBlink = 0; break;
753 case Led_On : leds. OffOnBlink = 1; break; 753 case Led_On : leds. OffOnBlink = 1; break;
754 case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; 754 case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break;
755 case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; 755 case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break;
756 } 756 }
757 757
758 if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { 758 if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) {
759 m_leds [0] = st; 759 m_leds [0] = st;
760 return true; 760 return true;
761 } 761 }
762 } 762 }
763 } 763 }
764 return false; 764 return false;
765} 765}
766 766
767 767
768bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) 768bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat )
769{ 769{
770 int newkeycode = keycode; 770 int newkeycode = keycode;
771 771
772 switch ( keycode ) { 772 switch ( keycode ) {
773 // H38xx/H39xx have no "Q" key anymore - this is now the Mail key 773 // H38xx/H39xx have no "Q" key anymore - this is now the Mail key
774 case HardKey_Menu: { 774 case HardKey_Menu: {
775 if (( d-> m_model == Model_iPAQ_H38xx ) || 775 if (( d-> m_model == Model_iPAQ_H38xx ) ||
776 ( d-> m_model == Model_iPAQ_H39xx )) { 776 ( d-> m_model == Model_iPAQ_H39xx )) {
777 newkeycode = HardKey_Mail; 777 newkeycode = HardKey_Mail;
778 } 778 }
779 break; 779 break;
780 } 780 }
781 781
782 // Rotate cursor keys 180° 782 // Rotate cursor keys 180°
783 case Key_Left : 783 case Key_Left :
784 case Key_Right: 784 case Key_Right:
785 case Key_Up : 785 case Key_Up :
786 case Key_Down : { 786 case Key_Down : {
787 if (( d-> m_model == Model_iPAQ_H31xx ) || 787 if (( d-> m_model == Model_iPAQ_H31xx ) ||
788 ( d-> m_model == Model_iPAQ_H38xx )) { 788 ( d-> m_model == Model_iPAQ_H38xx )) {
789 newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; 789 newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4;
790 } 790 }
791 break; 791 break;
792 } 792 }
793 793
794 // map Power Button short/long press to F34/F35 794 // map Power Button short/long press to F34/F35
795 case Key_SysReq: { 795 case Key_SysReq: {
796 if ( isPress ) { 796 if ( isPress ) {
797 if ( m_power_timer ) 797 if ( m_power_timer )
798 killTimer ( m_power_timer ); 798 killTimer ( m_power_timer );
799 m_power_timer = startTimer ( 500 ); 799 m_power_timer = startTimer ( 500 );
800 } 800 }
801 else if ( m_power_timer ) { 801 else if ( m_power_timer ) {
802 killTimer ( m_power_timer ); 802 killTimer ( m_power_timer );
803 m_power_timer = 0; 803 m_power_timer = 0;
804 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); 804 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false );
805 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); 805 QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false );
806 } 806 }
807 newkeycode = Key_unknown; 807 newkeycode = Key_unknown;
808 break; 808 break;
809 } 809 }
810 } 810 }
811 811
812 if ( newkeycode != keycode ) { 812 if ( newkeycode != keycode ) {
813 if ( newkeycode != Key_unknown ) 813 if ( newkeycode != Key_unknown )
814 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); 814 QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat );
815 return true; 815 return true;
816 } 816 }
817 else 817 else
818 return false; 818 return false;
819} 819}
820 820
821void iPAQ::timerEvent ( QTimerEvent * ) 821void iPAQ::timerEvent ( QTimerEvent * )
822{ 822{
823 killTimer ( m_power_timer ); 823 killTimer ( m_power_timer );
824 m_power_timer = 0; 824 m_power_timer = 0;
825 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); 825 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false );
826 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); 826 QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false );
827} 827}
828 828
829 829
830void iPAQ::alarmSound ( ) 830void iPAQ::alarmSound ( )
831{ 831{
832#ifndef QT_NO_SOUND 832#ifndef QT_NO_SOUND
833 static Sound snd ( "alarm" ); 833 static Sound snd ( "alarm" );
834 int fd; 834 int fd;
835 int vol; 835 int vol;
836 bool vol_reset = false; 836 bool vol_reset = false;
837 837
838 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { 838 if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) {
839 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { 839 if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) {
840 Config cfg ( "qpe" ); 840 Config cfg ( "qpe" );
841 cfg. setGroup ( "Volume" ); 841 cfg. setGroup ( "Volume" );
842 842
843 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); 843 int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 );
844 if ( volalarm < 0 ) 844 if ( volalarm < 0 )
845 volalarm = 0; 845 volalarm = 0;
846 else if ( volalarm > 100 ) 846 else if ( volalarm > 100 )
847 volalarm = 100; 847 volalarm = 100;
848 volalarm |= ( volalarm << 8 ); 848 volalarm |= ( volalarm << 8 );
849 849
850 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) 850 if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 )
851 vol_reset = true; 851 vol_reset = true;
852 } 852 }
853 } 853 }
854 854
855 snd. play ( ); 855 snd. play ( );
856 while ( !snd. isFinished ( )) 856 while ( !snd. isFinished ( ))
857 qApp-> processEvents ( ); 857 qApp-> processEvents ( );
858 858
859 if ( fd >= 0 ) { 859 if ( fd >= 0 ) {
860 if ( vol_reset ) 860 if ( vol_reset )
861 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); 861 ::ioctl ( fd, MIXER_WRITE( 0 ), &vol );
862 ::close ( fd ); 862 ::close ( fd );
863 } 863 }
864#endif 864#endif
865} 865}
866 866
867 867
868bool iPAQ::setSoftSuspend ( bool soft ) 868bool iPAQ::setSoftSuspend ( bool soft )
869{ 869{
870 bool res = false; 870 bool res = false;
871 int fd; 871 int fd;
872 872
873 if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { 873 if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) {
874 if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) 874 if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 )
875 res = true; 875 res = true;
876 else 876 else
877 ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); 877 ::perror ( "write to /proc/sys/ts/suspend_button_mode" );
878 878
879 ::close ( fd ); 879 ::close ( fd );
880 } 880 }
881 else 881 else
882 ::perror ( "/proc/sys/ts/suspend_button_mode" ); 882 ::perror ( "/proc/sys/ts/suspend_button_mode" );
883 883
884 return res; 884 return res;
885} 885}
886 886
887 887
888bool iPAQ::setDisplayBrightness ( int bright ) 888bool iPAQ::setDisplayBrightness ( int bright )
889{ 889{
890 bool res = false; 890 bool res = false;
891 int fd; 891 int fd;
892 892
893 if ( bright > 255 ) 893 if ( bright > 255 )
894 bright = 255; 894 bright = 255;
895 if ( bright < 0 ) 895 if ( bright < 0 )
896 bright = 0; 896 bright = 0;
897 897
898 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { 898 if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) {
899 FLITE_IN bl; 899 FLITE_IN bl;
900 bl. mode = 1; 900 bl. mode = 1;
901 bl. pwr = bright ? 1 : 0; 901 bl. pwr = bright ? 1 : 0;
902 bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; 902 bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255;
903 res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); 903 res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 );
904 ::close ( fd ); 904 ::close ( fd );
905 } 905 }
906 return res; 906 return res;
907} 907}
908 908
909int iPAQ::displayBrightnessResolution ( ) const 909int iPAQ::displayBrightnessResolution ( ) const
910{ 910{
911 switch ( model ( )) { 911 switch ( model ( )) {
912 case Model_iPAQ_H31xx: 912 case Model_iPAQ_H31xx:
913 case Model_iPAQ_H36xx: 913 case Model_iPAQ_H36xx:
914 case Model_iPAQ_H37xx: 914 case Model_iPAQ_H37xx:
915 return 128; // really 256, but >128 could damage the LCD 915 return 128; // really 256, but >128 could damage the LCD
916 916
917 case Model_iPAQ_H38xx: 917 case Model_iPAQ_H38xx:
918 case Model_iPAQ_H39xx: 918 case Model_iPAQ_H39xx:
919 return 64; 919 return 64;
920 920
921 default: 921 default:
922 return 2; 922 return 2;
923 } 923 }
924} 924}
925 925
926 926
927bool iPAQ::hasLightSensor ( ) const 927bool iPAQ::hasLightSensor ( ) const
928{ 928{
929 return true; 929 return true;
930} 930}
931 931
932int iPAQ::readLightSensor ( ) 932int iPAQ::readLightSensor ( )
933{ 933{
934 int fd; 934 int fd;
935 int val = -1; 935 int val = -1;
936 936
937 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { 937 if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) {
938 char buffer [8]; 938 char buffer [8];
939 939
940 if ( ::read ( fd, buffer, 5 ) == 5 ) { 940 if ( ::read ( fd, buffer, 5 ) == 5 ) {
941 char *endptr; 941 char *endptr;
942 942
943 buffer [4] = 0; 943 buffer [4] = 0;
944 val = ::strtol ( buffer + 2, &endptr, 16 ); 944 val = ::strtol ( buffer + 2, &endptr, 16 );
945 945
946 if ( *endptr != 0 ) 946 if ( *endptr != 0 )
947 val = -1; 947 val = -1;
948 } 948 }
949 ::close ( fd ); 949 ::close ( fd );
950 } 950 }
951 951
952 return val; 952 return val;
953} 953}
954 954
955int iPAQ::lightSensorResolution ( ) const 955int iPAQ::lightSensorResolution ( ) const
956{ 956{
957 return 256; 957 return 256;
958} 958}
959 959
960/************************************************** 960/**************************************************
961 * 961 *
962 * Zaurus 962 * Zaurus
963 * 963 *
964 **************************************************/ 964 **************************************************/
965 965
966 966
967 967
968void Zaurus::init ( ) 968void Zaurus::init ( )
969{ 969{
970 d-> m_vendorstr = "Sharp"; 970 d-> m_vendorstr = "Sharp";
971 d-> m_vendor = Vendor_Sharp; 971 d-> m_vendor = Vendor_Sharp;
972 972
973 QFile f ( "/proc/filesystems" ); 973 QFile f ( "/proc/filesystems" );
974 974
975 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { 975 if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) {
976 d-> m_vendorstr = "OpenZaurus Team"; 976 d-> m_vendorstr = "OpenZaurus Team";
977 d-> m_systemstr = "OpenZaurus"; 977 d-> m_systemstr = "OpenZaurus";
978 d-> m_system = System_OpenZaurus; 978 d-> m_system = System_OpenZaurus;
979 979
980 f. close ( ); 980 f. close ( );
981 981
982 f. setName ( "/etc/oz_version" ); 982 f. setName ( "/etc/oz_version" );
983 if ( f. open ( IO_ReadOnly )) { 983 if ( f. open ( IO_ReadOnly )) {
984 QTextStream ts ( &f ); 984 QTextStream ts ( &f );
985 d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); 985 d-> m_sysverstr = ts. readLine ( );//. mid ( 10 );
986 f. close ( ); 986 f. close ( );
987 } 987 }
988 } 988 }
989 else { 989 else {
990 d-> m_systemstr = "Zaurus"; 990 d-> m_systemstr = "Zaurus";
991 d-> m_system = System_Zaurus; 991 d-> m_system = System_Zaurus;
992 } 992 }
993 993
994 f. setName ( "/proc/deviceinfo/product" ); 994 f. setName ( "/proc/deviceinfo/product" );
995 if ( f. open ( IO_ReadOnly ) ) { 995 if ( f. open ( IO_ReadOnly ) ) {
996 QTextStream ts ( &f ); 996 QTextStream ts ( &f );
997 QString model = ts. readLine ( ); 997 QString model = ts. readLine ( );
998 f. close ( ); 998 f. close ( );
999 999
1000 d-> m_modelstr = QString("Zaurus ") + model; 1000 d-> m_modelstr = QString("Zaurus ") + model;
1001 if ( model == "SL-5500" ) 1001 if ( model == "SL-5500" )
1002 d-> m_model = Model_Zaurus_SL5500; 1002 d-> m_model = Model_Zaurus_SL5500;
1003 else if ( model == "SL-C700" ) 1003 else if ( model == "SL-C700" )
1004 d-> m_model = Model_Zaurus_SLC700; 1004 d-> m_model = Model_Zaurus_SLC700;
1005 else if ( model == "SL-A300" ) 1005 else if ( model == "SL-A300" )
1006 d-> m_model = Model_Zaurus_SLA300; 1006 d-> m_model = Model_Zaurus_SLA300;
1007 else if ( model == "SL-B600" || model == "SL-5600" ) 1007 else if ( model == "SL-B600" || model == "SL-5600" )
1008 d-> m_model = Model_Zaurus_SLB600; 1008 d-> m_model = Model_Zaurus_SLB600;
1009 else 1009 else
1010 d-> m_model = Model_Zaurus_SL5000; 1010 d-> m_model = Model_Zaurus_SL5000;
1011 } 1011 }
1012 else { 1012 else {
1013 d-> m_model = Model_Zaurus_SL5000; 1013 d-> m_model = Model_Zaurus_SL5000;
1014 d-> m_modelstr = "Zaurus (model unknown)"; 1014 d-> m_modelstr = "Zaurus (model unknown)";
1015 } 1015 }
1016 1016
1017 switch ( d-> m_model ) { 1017 switch ( d-> m_model ) {
1018 case Model_Zaurus_SLA300: 1018 case Model_Zaurus_SLA300:
1019 d-> m_rotation = Rot0; 1019 d-> m_rotation = Rot0;
1020 break; 1020 break;
1021 case Model_Zaurus_SLC700: 1021 case Model_Zaurus_SLC700:
1022 /* note for C700, we must check the display rotation 1022 /* note for C700, we must check the display rotation
1023 * sensor to set an appropriate value 1023 * sensor to set an appropriate value
1024 */ 1024 */
1025 case Model_Zaurus_SLB600: 1025 case Model_Zaurus_SLB600:
1026 case Model_Zaurus_SL5500: 1026 case Model_Zaurus_SL5500:
1027 case Model_Zaurus_SL5000: 1027 case Model_Zaurus_SL5000:
1028 default: 1028 default:
1029 d-> m_rotation = Rot270; 1029 d-> m_rotation = Rot270;
1030 break; 1030 break;
1031 } 1031 }
1032 m_leds [0] = Led_Off; 1032 m_leds [0] = Led_Off;
1033} 1033}
1034 1034
1035void Zaurus::initButtons ( ) 1035void Zaurus::initButtons ( )
1036{ 1036{
1037 if ( d-> m_buttons ) 1037 if ( d-> m_buttons )
1038 return; 1038 return;
1039 1039
1040 d-> m_buttons = new QValueList <ODeviceButton>; 1040 d-> m_buttons = new QValueList <ODeviceButton>;
1041 1041
1042 for ( uint i = 0; i < ( sizeof( z_buttons ) / sizeof( z_button )); i++ ) { 1042 for ( uint i = 0; i < ( sizeof( z_buttons ) / sizeof( z_button )); i++ ) {
1043 z_button *zb = z_buttons + i; 1043 z_button *zb = z_buttons + i;
1044 ODeviceButton b; 1044 ODeviceButton b;
1045 1045
1046 b. setKeycode ( zb-> code ); 1046 b. setKeycode ( zb-> code );
1047 b. setUserText ( QObject::tr ( "Button", zb-> utext )); 1047 b. setUserText ( QObject::tr ( "Button", zb-> utext ));
1048 b. setPixmap ( Resource::loadPixmap ( zb-> pix )); 1048 b. setPixmap ( Resource::loadPixmap ( zb-> pix ));
1049 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), zb-> fpressedaction )); 1049 b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), zb-> fpressedaction ));
1050 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), zb-> fheldaction )); 1050 b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), zb-> fheldaction ));
1051 1051
1052 d-> m_buttons-> append ( b ); 1052 d-> m_buttons-> append ( b );
1053 } 1053 }
1054 1054
1055 reloadButtonMapping ( ); 1055 reloadButtonMapping ( );
1056 1056
1057 QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); 1057 QCopChannel *sysch = new QCopChannel ( "QPE/System", this );
1058 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); 1058 connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & )));
1059} 1059}
1060 1060
1061#include <unistd.h> 1061#include <unistd.h>
1062#include <fcntl.h> 1062#include <fcntl.h>
1063#include <sys/ioctl.h> 1063#include <sys/ioctl.h>
1064 1064
1065//#include <asm/sharp_char.h> // including kernel headers is evil ... 1065//#include <asm/sharp_char.h> // including kernel headers is evil ...
1066 1066
1067#define SHARP_DEV_IOCTL_COMMAND_START 0x5680 1067#define SHARP_DEV_IOCTL_COMMAND_START 0x5680
1068 1068
1069 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 1069 #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
1070#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 1070#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
1071 1071
1072#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 1072#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
1073#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 1073#define SHARP_BUZ_KEYSOUND 2 /* key sound */
1074#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 1074#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
1075 1075
1076/* --- for SHARP_BUZZER device --- */ 1076/* --- for SHARP_BUZZER device --- */
1077 1077
1078 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 1078 //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
1079//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) 1079//#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START)
1080 1080
1081#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) 1081#define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1)
1082#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) 1082#define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2)
1083#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) 1083#define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3)
1084#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) 1084#define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4)
1085#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) 1085#define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5)
1086 1086
1087//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ 1087//#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */
1088//#define SHARP_BUZ_KEYSOUND 2 /* key sound */ 1088//#define SHARP_BUZ_KEYSOUND 2 /* key sound */
1089 1089
1090//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ 1090//#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */
1091//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ 1091//#define SHARP_PDA_WARNSOUND 4 /* warning occurred */
1092//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ 1092//#define SHARP_PDA_ERRORSOUND 5 /* error occurred */
1093//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ 1093//#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */
1094//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ 1094//#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */
1095//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ 1095//#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */
1096//#define SHARP_PDA_APPSTART 9 /* application start */ 1096//#define SHARP_PDA_APPSTART 9 /* application start */
1097//#define SHARP_PDA_APPQUIT 10 /* application ends */ 1097//#define SHARP_PDA_APPQUIT 10 /* application ends */
1098 1098
1099//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ 1099//#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */
1100//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ 1100//#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */
1101//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ 1101//#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */
1102//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ 1102//#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */
1103// 1103//
1104 1104
1105 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) 1105 #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START)
1106#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) 1106#define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1)
1107 1107
1108typedef struct sharp_led_status { 1108typedef struct sharp_led_status {
1109 int which; /* select which LED status is wanted. */ 1109 int which; /* select which LED status is wanted. */
1110 int status; /* set new led status if you call SHARP_LED_SETSTATUS */ 1110 int status; /* set new led status if you call SHARP_LED_SETSTATUS */
1111} sharp_led_status; 1111} sharp_led_status;
1112 1112
1113#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ 1113#define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */
1114 1114
1115#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ 1115#define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */
1116#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ 1116#define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */
1117#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ 1117#define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */
1118 1118
1119// #include <asm/sharp_apm.h> // including kernel headers is evil ... 1119// #include <asm/sharp_apm.h> // including kernel headers is evil ...
1120 1120
1121#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) 1121#define APM_IOCGEVTSRC OD_IOR( 'A', 203, int )
1122#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) 1122#define APM_IOCSEVTSRC OD_IORW( 'A', 204, int )
1123#define APM_EVT_POWER_BUTTON (1 << 0) 1123#define APM_EVT_POWER_BUTTON (1 << 0)
1124 1124
1125#define FL_IOCTL_STEP_CONTRAST 100 1125#define FL_IOCTL_STEP_CONTRAST 100
1126 1126
1127 1127
1128void Zaurus::buzzer ( int sound ) 1128void Zaurus::buzzer ( int sound )
1129{ 1129{
1130 static int fd = ::open ( "/dev/sharp_buz", O_RDWR|O_NONBLOCK ); 1130 static int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK );
1131 1131
1132 if ( fd >= 0 ) 1132 if ( fd >= 0 ) {
1133 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); 1133 ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound );
1134 ::close ( fd );
1135 }
1134} 1136}
1135 1137
1136 1138
1137void Zaurus::alarmSound ( ) 1139void Zaurus::alarmSound ( )
1138{ 1140{
1139 buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); 1141 buzzer ( SHARP_BUZ_SCHEDULE_ALARM );
1140} 1142}
1141 1143
1142void Zaurus::touchSound ( ) 1144void Zaurus::touchSound ( )
1143{ 1145{
1144 buzzer ( SHARP_BUZ_TOUCHSOUND ); 1146 buzzer ( SHARP_BUZ_TOUCHSOUND );
1145} 1147}
1146 1148
1147void Zaurus::keySound ( ) 1149void Zaurus::keySound ( )
1148{ 1150{
1149 buzzer ( SHARP_BUZ_KEYSOUND ); 1151 buzzer ( SHARP_BUZ_KEYSOUND );
1150} 1152}
1151 1153
1152 1154
1153QValueList <OLed> Zaurus::ledList ( ) const 1155QValueList <OLed> Zaurus::ledList ( ) const
1154{ 1156{
1155 QValueList <OLed> vl; 1157 QValueList <OLed> vl;
1156 vl << Led_Mail; 1158 vl << Led_Mail;
1157 return vl; 1159 return vl;
1158} 1160}
1159 1161
1160QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const 1162QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const
1161{ 1163{
1162 QValueList <OLedState> vl; 1164 QValueList <OLedState> vl;
1163 1165
1164 if ( l == Led_Mail ) 1166 if ( l == Led_Mail )
1165 vl << Led_Off << Led_On << Led_BlinkSlow; 1167 vl << Led_Off << Led_On << Led_BlinkSlow;
1166 return vl; 1168 return vl;
1167} 1169}
1168 1170
1169OLedState Zaurus::ledState ( OLed which ) const 1171OLedState Zaurus::ledState ( OLed which ) const
1170{ 1172{
1171 if ( which == Led_Mail ) 1173 if ( which == Led_Mail )
1172 return m_leds [0]; 1174 return m_leds [0];
1173 else 1175 else
1174 return Led_Off; 1176 return Led_Off;
1175} 1177}
1176 1178
1177bool Zaurus::setLedState ( OLed which, OLedState st ) 1179bool Zaurus::setLedState ( OLed which, OLedState st )
1178{ 1180{
1179 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); 1181 static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK );
1180 1182
1181 if ( which == Led_Mail ) { 1183 if ( which == Led_Mail ) {
1182 if ( fd >= 0 ) { 1184 if ( fd >= 0 ) {
1183 struct sharp_led_status leds; 1185 struct sharp_led_status leds;
1184 ::memset ( &leds, 0, sizeof( leds )); 1186 ::memset ( &leds, 0, sizeof( leds ));
1185 leds. which = SHARP_LED_MAIL_EXISTS; 1187 leds. which = SHARP_LED_MAIL_EXISTS;
1186 bool ok = true; 1188 bool ok = true;
1187 1189
1188 switch ( st ) { 1190 switch ( st ) {
1189 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; 1191 case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break;
1190 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; 1192 case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break;
1191 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; 1193 case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break;
1192 default : ok = false; 1194 default : ok = false;
1193 } 1195 }
1194 1196
1195 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { 1197 if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) {
1196 m_leds [0] = st; 1198 m_leds [0] = st;
1197 return true; 1199 return true;
1198 } 1200 }
1199 } 1201 }
1200 } 1202 }
1201 return false; 1203 return false;
1202} 1204}
1203 1205
1204bool Zaurus::setSoftSuspend ( bool soft ) 1206bool Zaurus::setSoftSuspend ( bool soft )
1205{ 1207{
1206 bool res = false; 1208 bool res = false;
1207 int fd; 1209 int fd;
1208 1210
1209 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || 1211 if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) ||
1210 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { 1212 (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) {
1211 1213
1212 int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources 1214 int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources
1213 1215
1214 if ( sources >= 0 ) { 1216 if ( sources >= 0 ) {
1215 if ( soft ) 1217 if ( soft )
1216 sources &= ~APM_EVT_POWER_BUTTON; 1218 sources &= ~APM_EVT_POWER_BUTTON;
1217 else 1219 else
1218 sources |= APM_EVT_POWER_BUTTON; 1220 sources |= APM_EVT_POWER_BUTTON;
1219 1221
1220 if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources 1222 if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources
1221 res = true; 1223 res = true;
1222 else 1224 else
1223 perror ( "APM_IOCGEVTSRC" ); 1225 perror ( "APM_IOCGEVTSRC" );
1224 } 1226 }
1225 else 1227 else
1226 perror ( "APM_IOCGEVTSRC" ); 1228 perror ( "APM_IOCGEVTSRC" );
1227 1229
1228 ::close ( fd ); 1230 ::close ( fd );
1229 } 1231 }
1230 else 1232 else
1231 perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); 1233 perror ( "/dev/apm_bios or /dev/misc/apm_bios" );
1232 1234
1233 return res; 1235 return res;
1234} 1236}
1235 1237
1236 1238
1237bool Zaurus::setDisplayBrightness ( int bright ) 1239bool Zaurus::setDisplayBrightness ( int bright )
1238{ 1240{
1239 bool res = false; 1241 bool res = false;
1240 int fd; 1242 int fd;
1241 1243
1242 if ( bright > 255 ) 1244 if ( bright > 255 )
1243 bright = 255; 1245 bright = 255;
1244 if ( bright < 0 ) 1246 if ( bright < 0 )
1245 bright = 0; 1247 bright = 0;
1246 1248
1247 if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { 1249 if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) {
1248 int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus 1250 int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus
1249 if ( bright && !bl ) 1251 if ( bright && !bl )
1250 bl = 1; 1252 bl = 1;
1251 res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); 1253 res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 );
1252 ::close ( fd ); 1254 ::close ( fd );
1253 } 1255 }
1254 return res; 1256 return res;
1255} 1257}
1256 1258
1257 1259
1258int Zaurus::displayBrightnessResolution ( ) const 1260int Zaurus::displayBrightnessResolution ( ) const
1259{ 1261{
1260 return 5; 1262 return 5;
1261} 1263}
1262 1264
1263 1265