-rw-r--r-- | libopie/odevice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 58254a7..71ed9e4 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp | |||
@@ -758,1537 +758,1537 @@ void ODevice::keySound ( ) | |||
758 | } | 758 | } |
759 | 759 | ||
760 | /** | 760 | /** |
761 | * This plays a touch sound | 761 | * This plays a touch sound |
762 | */ | 762 | */ |
763 | void ODevice::touchSound ( ) | 763 | void ODevice::touchSound ( ) |
764 | { | 764 | { |
765 | #ifndef QT_NO_SOUND | 765 | #ifndef QT_NO_SOUND |
766 | static Sound snd ( "touchsound" ); | 766 | static Sound snd ( "touchsound" ); |
767 | 767 | ||
768 | if ( snd. isFinished ( )) | 768 | if ( snd. isFinished ( )) |
769 | snd. play ( ); | 769 | snd. play ( ); |
770 | #endif | 770 | #endif |
771 | } | 771 | } |
772 | 772 | ||
773 | /** | 773 | /** |
774 | * This method will return a list of leds | 774 | * This method will return a list of leds |
775 | * available on this device | 775 | * available on this device |
776 | * @return a list of LEDs. | 776 | * @return a list of LEDs. |
777 | */ | 777 | */ |
778 | QValueList <OLed> ODevice::ledList ( ) const | 778 | QValueList <OLed> ODevice::ledList ( ) const |
779 | { | 779 | { |
780 | return QValueList <OLed> ( ); | 780 | return QValueList <OLed> ( ); |
781 | } | 781 | } |
782 | 782 | ||
783 | /** | 783 | /** |
784 | * This does return the state of the LEDs | 784 | * This does return the state of the LEDs |
785 | */ | 785 | */ |
786 | QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const | 786 | QValueList <OLedState> ODevice::ledStateList ( OLed /*which*/ ) const |
787 | { | 787 | { |
788 | return QValueList <OLedState> ( ); | 788 | return QValueList <OLedState> ( ); |
789 | } | 789 | } |
790 | 790 | ||
791 | /** | 791 | /** |
792 | * @return the state for a given OLed | 792 | * @return the state for a given OLed |
793 | */ | 793 | */ |
794 | OLedState ODevice::ledState ( OLed /*which*/ ) const | 794 | OLedState ODevice::ledState ( OLed /*which*/ ) const |
795 | { | 795 | { |
796 | return Led_Off; | 796 | return Led_Off; |
797 | } | 797 | } |
798 | 798 | ||
799 | /** | 799 | /** |
800 | * Set the state for a LED | 800 | * Set the state for a LED |
801 | * @param which Which OLed to use | 801 | * @param which Which OLed to use |
802 | * @param st The state to set | 802 | * @param st The state to set |
803 | * @return success or failure | 803 | * @return success or failure |
804 | */ | 804 | */ |
805 | bool ODevice::setLedState ( OLed which, OLedState st ) | 805 | bool ODevice::setLedState ( OLed which, OLedState st ) |
806 | { | 806 | { |
807 | Q_UNUSED( which ) | 807 | Q_UNUSED( which ) |
808 | Q_UNUSED( st ) | 808 | Q_UNUSED( st ) |
809 | return false; | 809 | return false; |
810 | } | 810 | } |
811 | 811 | ||
812 | /** | 812 | /** |
813 | * @return if the device has a light sensor | 813 | * @return if the device has a light sensor |
814 | */ | 814 | */ |
815 | bool ODevice::hasLightSensor ( ) const | 815 | bool ODevice::hasLightSensor ( ) const |
816 | { | 816 | { |
817 | return false; | 817 | return false; |
818 | } | 818 | } |
819 | 819 | ||
820 | /** | 820 | /** |
821 | * @return a value from the light senso | 821 | * @return a value from the light senso |
822 | */ | 822 | */ |
823 | int ODevice::readLightSensor ( ) | 823 | int ODevice::readLightSensor ( ) |
824 | { | 824 | { |
825 | return -1; | 825 | return -1; |
826 | } | 826 | } |
827 | 827 | ||
828 | /** | 828 | /** |
829 | * @return the light sensor resolution whatever that is ;) | 829 | * @return the light sensor resolution whatever that is ;) |
830 | */ | 830 | */ |
831 | int ODevice::lightSensorResolution ( ) const | 831 | int ODevice::lightSensorResolution ( ) const |
832 | { | 832 | { |
833 | return 0; | 833 | return 0; |
834 | } | 834 | } |
835 | 835 | ||
836 | /** | 836 | /** |
837 | * @return a list with CPU frequencies supported by the hardware | 837 | * @return a list with CPU frequencies supported by the hardware |
838 | */ | 838 | */ |
839 | const QStrList &ODevice::allowedCpuFrequencies ( ) const | 839 | const QStrList &ODevice::allowedCpuFrequencies ( ) const |
840 | { | 840 | { |
841 | return *d->m_cpu_frequencies; | 841 | return *d->m_cpu_frequencies; |
842 | } | 842 | } |
843 | 843 | ||
844 | 844 | ||
845 | /** | 845 | /** |
846 | * Set desired CPU frequency | 846 | * Set desired CPU frequency |
847 | * | 847 | * |
848 | * @param index index into d->m_cpu_frequencies of the frequency to be set | 848 | * @param index index into d->m_cpu_frequencies of the frequency to be set |
849 | */ | 849 | */ |
850 | bool ODevice::setCurrentCpuFrequency(uint index) | 850 | bool ODevice::setCurrentCpuFrequency(uint index) |
851 | { | 851 | { |
852 | if (index >= d->m_cpu_frequencies->count()) | 852 | if (index >= d->m_cpu_frequencies->count()) |
853 | return false; | 853 | return false; |
854 | 854 | ||
855 | char *freq = d->m_cpu_frequencies->at(index); | 855 | char *freq = d->m_cpu_frequencies->at(index); |
856 | qWarning("set freq to %s", freq); | 856 | qWarning("set freq to %s", freq); |
857 | 857 | ||
858 | int fd; | 858 | int fd; |
859 | 859 | ||
860 | if ((fd = ::open("/proc/sys/cpu/0/speed", O_WRONLY)) >= 0) { | 860 | if ((fd = ::open("/proc/sys/cpu/0/speed", O_WRONLY)) >= 0) { |
861 | char writeCommand[50]; | 861 | char writeCommand[50]; |
862 | const int count = sprintf(writeCommand, "%s\n", freq); | 862 | const int count = sprintf(writeCommand, "%s\n", freq); |
863 | int res = (::write(fd, writeCommand, count) != -1); | 863 | int res = (::write(fd, writeCommand, count) != -1); |
864 | ::close(fd); | 864 | ::close(fd); |
865 | return res; | 865 | return res; |
866 | } | 866 | } |
867 | 867 | ||
868 | return false; | 868 | return false; |
869 | } | 869 | } |
870 | 870 | ||
871 | 871 | ||
872 | /** | 872 | /** |
873 | * @return a list of hardware buttons | 873 | * @return a list of hardware buttons |
874 | */ | 874 | */ |
875 | const QValueList <ODeviceButton> &ODevice::buttons ( ) | 875 | const QValueList <ODeviceButton> &ODevice::buttons ( ) |
876 | { | 876 | { |
877 | initButtons ( ); | 877 | initButtons ( ); |
878 | 878 | ||
879 | return *d-> m_buttons; | 879 | return *d-> m_buttons; |
880 | } | 880 | } |
881 | 881 | ||
882 | /** | 882 | /** |
883 | * @return The amount of time that would count as a hold | 883 | * @return The amount of time that would count as a hold |
884 | */ | 884 | */ |
885 | uint ODevice::buttonHoldTime ( ) const | 885 | uint ODevice::buttonHoldTime ( ) const |
886 | { | 886 | { |
887 | return d-> m_holdtime; | 887 | return d-> m_holdtime; |
888 | } | 888 | } |
889 | 889 | ||
890 | /** | 890 | /** |
891 | * This method return a ODeviceButton for a key code | 891 | * This method return a ODeviceButton for a key code |
892 | * or 0 if no special hardware button is available for the device | 892 | * or 0 if no special hardware button is available for the device |
893 | * | 893 | * |
894 | * @return The devicebutton or 0l | 894 | * @return The devicebutton or 0l |
895 | * @see ODeviceButton | 895 | * @see ODeviceButton |
896 | */ | 896 | */ |
897 | const ODeviceButton *ODevice::buttonForKeycode ( ushort code ) | 897 | const ODeviceButton *ODevice::buttonForKeycode ( ushort code ) |
898 | { | 898 | { |
899 | initButtons ( ); | 899 | initButtons ( ); |
900 | 900 | ||
901 | for ( QValueListConstIterator<ODeviceButton> it = d-> m_buttons-> begin ( ); it != d-> m_buttons-> end ( ); ++it ) { | 901 | for ( QValueListConstIterator<ODeviceButton> it = d-> m_buttons-> begin ( ); it != d-> m_buttons-> end ( ); ++it ) { |
902 | if ( (*it). keycode ( ) == code ) | 902 | if ( (*it). keycode ( ) == code ) |
903 | return &(*it); | 903 | return &(*it); |
904 | } | 904 | } |
905 | return 0; | 905 | return 0; |
906 | } | 906 | } |
907 | 907 | ||
908 | void ODevice::reloadButtonMapping ( ) | 908 | void ODevice::reloadButtonMapping ( ) |
909 | { | 909 | { |
910 | initButtons ( ); | 910 | initButtons ( ); |
911 | 911 | ||
912 | Config cfg ( "ButtonSettings" ); | 912 | Config cfg ( "ButtonSettings" ); |
913 | 913 | ||
914 | for ( uint i = 0; i < d-> m_buttons-> count ( ); i++ ) { | 914 | for ( uint i = 0; i < d-> m_buttons-> count ( ); i++ ) { |
915 | ODeviceButton &b = ( *d-> m_buttons ) [i]; | 915 | ODeviceButton &b = ( *d-> m_buttons ) [i]; |
916 | QString group = "Button" + QString::number ( i ); | 916 | QString group = "Button" + QString::number ( i ); |
917 | 917 | ||
918 | QCString pch, hch; | 918 | QCString pch, hch; |
919 | QCString pm, hm; | 919 | QCString pm, hm; |
920 | QByteArray pdata, hdata; | 920 | QByteArray pdata, hdata; |
921 | 921 | ||
922 | if ( cfg. hasGroup ( group )) { | 922 | if ( cfg. hasGroup ( group )) { |
923 | cfg. setGroup ( group ); | 923 | cfg. setGroup ( group ); |
924 | pch = cfg. readEntry ( "PressedActionChannel" ). latin1 ( ); | 924 | pch = cfg. readEntry ( "PressedActionChannel" ). latin1 ( ); |
925 | pm = cfg. readEntry ( "PressedActionMessage" ). latin1 ( ); | 925 | pm = cfg. readEntry ( "PressedActionMessage" ). latin1 ( ); |
926 | // pdata = decodeBase64 ( buttonFile. readEntry ( "PressedActionArgs" )); | 926 | // pdata = decodeBase64 ( buttonFile. readEntry ( "PressedActionArgs" )); |
927 | 927 | ||
928 | hch = cfg. readEntry ( "HeldActionChannel" ). latin1 ( ); | 928 | hch = cfg. readEntry ( "HeldActionChannel" ). latin1 ( ); |
929 | hm = cfg. readEntry ( "HeldActionMessage" ). latin1 ( ); | 929 | hm = cfg. readEntry ( "HeldActionMessage" ). latin1 ( ); |
930 | // hdata = decodeBase64 ( buttonFile. readEntry ( "HeldActionArgs" )); | 930 | // hdata = decodeBase64 ( buttonFile. readEntry ( "HeldActionArgs" )); |
931 | } | 931 | } |
932 | 932 | ||
933 | b. setPressedAction ( OQCopMessage ( pch, pm, pdata )); | 933 | b. setPressedAction ( OQCopMessage ( pch, pm, pdata )); |
934 | 934 | ||
935 | b. setHeldAction ( OQCopMessage ( hch, hm, hdata )); | 935 | b. setHeldAction ( OQCopMessage ( hch, hm, hdata )); |
936 | } | 936 | } |
937 | } | 937 | } |
938 | 938 | ||
939 | void ODevice::remapPressedAction ( int button, const OQCopMessage &action ) | 939 | void ODevice::remapPressedAction ( int button, const OQCopMessage &action ) |
940 | { | 940 | { |
941 | initButtons ( ); | 941 | initButtons ( ); |
942 | 942 | ||
943 | QString mb_chan; | 943 | QString mb_chan; |
944 | 944 | ||
945 | if ( button >= (int) d-> m_buttons-> count ( )) | 945 | if ( button >= (int) d-> m_buttons-> count ( )) |
946 | return; | 946 | return; |
947 | 947 | ||
948 | ODeviceButton &b = ( *d-> m_buttons ) [button]; | 948 | ODeviceButton &b = ( *d-> m_buttons ) [button]; |
949 | b. setPressedAction ( action ); | 949 | b. setPressedAction ( action ); |
950 | 950 | ||
951 | mb_chan=b. pressedAction ( ). channel ( ); | 951 | mb_chan=b. pressedAction ( ). channel ( ); |
952 | 952 | ||
953 | Config buttonFile ( "ButtonSettings" ); | 953 | Config buttonFile ( "ButtonSettings" ); |
954 | buttonFile. setGroup ( "Button" + QString::number ( button )); | 954 | buttonFile. setGroup ( "Button" + QString::number ( button )); |
955 | buttonFile. writeEntry ( "PressedActionChannel", (const char*) mb_chan); | 955 | buttonFile. writeEntry ( "PressedActionChannel", (const char*) mb_chan); |
956 | buttonFile. writeEntry ( "PressedActionMessage", (const char*) b. pressedAction ( ). message ( )); | 956 | buttonFile. writeEntry ( "PressedActionMessage", (const char*) b. pressedAction ( ). message ( )); |
957 | 957 | ||
958 | //buttonFile. writeEntry ( "PressedActionArgs", encodeBase64 ( b. pressedAction ( ). data ( ))); | 958 | //buttonFile. writeEntry ( "PressedActionArgs", encodeBase64 ( b. pressedAction ( ). data ( ))); |
959 | 959 | ||
960 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); | 960 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); |
961 | } | 961 | } |
962 | 962 | ||
963 | void ODevice::remapHeldAction ( int button, const OQCopMessage &action ) | 963 | void ODevice::remapHeldAction ( int button, const OQCopMessage &action ) |
964 | { | 964 | { |
965 | initButtons ( ); | 965 | initButtons ( ); |
966 | 966 | ||
967 | if ( button >= (int) d-> m_buttons-> count ( )) | 967 | if ( button >= (int) d-> m_buttons-> count ( )) |
968 | return; | 968 | return; |
969 | 969 | ||
970 | ODeviceButton &b = ( *d-> m_buttons ) [button]; | 970 | ODeviceButton &b = ( *d-> m_buttons ) [button]; |
971 | b. setHeldAction ( action ); | 971 | b. setHeldAction ( action ); |
972 | 972 | ||
973 | Config buttonFile ( "ButtonSettings" ); | 973 | Config buttonFile ( "ButtonSettings" ); |
974 | buttonFile. setGroup ( "Button" + QString::number ( button )); | 974 | buttonFile. setGroup ( "Button" + QString::number ( button )); |
975 | buttonFile. writeEntry ( "HeldActionChannel", (const char *) b. heldAction ( ). channel ( )); | 975 | buttonFile. writeEntry ( "HeldActionChannel", (const char *) b. heldAction ( ). channel ( )); |
976 | buttonFile. writeEntry ( "HeldActionMessage", (const char *) b. heldAction ( ). message ( )); | 976 | buttonFile. writeEntry ( "HeldActionMessage", (const char *) b. heldAction ( ). message ( )); |
977 | 977 | ||
978 | //buttonFile. writeEntry ( "HeldActionArgs", decodeBase64 ( b. heldAction ( ). data ( ))); | 978 | //buttonFile. writeEntry ( "HeldActionArgs", decodeBase64 ( b. heldAction ( ). data ( ))); |
979 | 979 | ||
980 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); | 980 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); |
981 | } | 981 | } |
982 | void ODevice::virtual_hook(int, void* ){ | 982 | void ODevice::virtual_hook(int, void* ){ |
983 | 983 | ||
984 | } | 984 | } |
985 | 985 | ||
986 | /************************************************** | 986 | /************************************************** |
987 | * | 987 | * |
988 | * Yopy 3500/3700 | 988 | * Yopy 3500/3700 |
989 | * | 989 | * |
990 | **************************************************/ | 990 | **************************************************/ |
991 | 991 | ||
992 | bool Yopy::isYopy ( ) | 992 | bool Yopy::isYopy ( ) |
993 | { | 993 | { |
994 | QFile f( "/proc/cpuinfo" ); | 994 | QFile f( "/proc/cpuinfo" ); |
995 | if ( f. open ( IO_ReadOnly ) ) { | 995 | if ( f. open ( IO_ReadOnly ) ) { |
996 | QTextStream ts ( &f ); | 996 | QTextStream ts ( &f ); |
997 | QString line; | 997 | QString line; |
998 | while( line = ts. readLine ( ) ) { | 998 | while( line = ts. readLine ( ) ) { |
999 | if ( line. left ( 8 ) == "Hardware" ) { | 999 | if ( line. left ( 8 ) == "Hardware" ) { |
1000 | int loc = line. find ( ":" ); | 1000 | int loc = line. find ( ":" ); |
1001 | if ( loc != -1 ) { | 1001 | if ( loc != -1 ) { |
1002 | QString model = | 1002 | QString model = |
1003 | line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1003 | line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1004 | return ( model == "Yopy" ); | 1004 | return ( model == "Yopy" ); |
1005 | } | 1005 | } |
1006 | } | 1006 | } |
1007 | } | 1007 | } |
1008 | } | 1008 | } |
1009 | return false; | 1009 | return false; |
1010 | } | 1010 | } |
1011 | 1011 | ||
1012 | void Yopy::init ( ) | 1012 | void Yopy::init ( ) |
1013 | { | 1013 | { |
1014 | d-> m_vendorstr = "G.Mate"; | 1014 | d-> m_vendorstr = "G.Mate"; |
1015 | d-> m_vendor = Vendor_GMate; | 1015 | d-> m_vendor = Vendor_GMate; |
1016 | d-> m_modelstr = "Yopy3700"; | 1016 | d-> m_modelstr = "Yopy3700"; |
1017 | d-> m_model = Model_Yopy_3700; | 1017 | d-> m_model = Model_Yopy_3700; |
1018 | d-> m_rotation = Rot0; | 1018 | d-> m_rotation = Rot0; |
1019 | 1019 | ||
1020 | d-> m_systemstr = "Linupy"; | 1020 | d-> m_systemstr = "Linupy"; |
1021 | d-> m_system = System_Linupy; | 1021 | d-> m_system = System_Linupy; |
1022 | 1022 | ||
1023 | QFile f ( "/etc/issue" ); | 1023 | QFile f ( "/etc/issue" ); |
1024 | if ( f. open ( IO_ReadOnly )) { | 1024 | if ( f. open ( IO_ReadOnly )) { |
1025 | QTextStream ts ( &f ); | 1025 | QTextStream ts ( &f ); |
1026 | ts.readLine(); | 1026 | ts.readLine(); |
1027 | d-> m_sysverstr = ts. readLine ( ); | 1027 | d-> m_sysverstr = ts. readLine ( ); |
1028 | f. close ( ); | 1028 | f. close ( ); |
1029 | } | 1029 | } |
1030 | } | 1030 | } |
1031 | 1031 | ||
1032 | void Yopy::initButtons ( ) | 1032 | void Yopy::initButtons ( ) |
1033 | { | 1033 | { |
1034 | if ( d-> m_buttons ) | 1034 | if ( d-> m_buttons ) |
1035 | return; | 1035 | return; |
1036 | 1036 | ||
1037 | d-> m_buttons = new QValueList <ODeviceButton>; | 1037 | d-> m_buttons = new QValueList <ODeviceButton>; |
1038 | 1038 | ||
1039 | for (uint i = 0; i < ( sizeof( yopy_buttons ) / sizeof(yopy_button)); i++) { | 1039 | for (uint i = 0; i < ( sizeof( yopy_buttons ) / sizeof(yopy_button)); i++) { |
1040 | 1040 | ||
1041 | yopy_button *ib = yopy_buttons + i; | 1041 | yopy_button *ib = yopy_buttons + i; |
1042 | 1042 | ||
1043 | ODeviceButton b; | 1043 | ODeviceButton b; |
1044 | 1044 | ||
1045 | b. setKeycode ( ib-> code ); | 1045 | b. setKeycode ( ib-> code ); |
1046 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); | 1046 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); |
1047 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); | 1047 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); |
1048 | b. setFactoryPresetPressedAction | 1048 | b. setFactoryPresetPressedAction |
1049 | (OQCopMessage(makeChannel(ib->fpressedservice), ib->fpressedaction)); | 1049 | (OQCopMessage(makeChannel(ib->fpressedservice), ib->fpressedaction)); |
1050 | b. setFactoryPresetHeldAction | 1050 | b. setFactoryPresetHeldAction |
1051 | (OQCopMessage(makeChannel(ib->fheldservice), ib->fheldaction)); | 1051 | (OQCopMessage(makeChannel(ib->fheldservice), ib->fheldaction)); |
1052 | 1052 | ||
1053 | d-> m_buttons-> append ( b ); | 1053 | d-> m_buttons-> append ( b ); |
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 & )), | 1058 | connect(sysch, SIGNAL(received(const QCString &, const QByteArray & )), |
1059 | this, SLOT(systemMessage(const QCString &, const QByteArray & ))); | 1059 | this, SLOT(systemMessage(const QCString &, const QByteArray & ))); |
1060 | } | 1060 | } |
1061 | 1061 | ||
1062 | bool Yopy::suspend() | 1062 | bool Yopy::suspend() |
1063 | { | 1063 | { |
1064 | /* Opie for Yopy does not implement its own power management at the | 1064 | /* Opie for Yopy does not implement its own power management at the |
1065 | moment. The public version runs parallel to X, and relies on the | 1065 | moment. The public version runs parallel to X, and relies on the |
1066 | existing power management features. */ | 1066 | existing power management features. */ |
1067 | return false; | 1067 | return false; |
1068 | } | 1068 | } |
1069 | 1069 | ||
1070 | bool Yopy::setDisplayBrightness(int bright) | 1070 | bool Yopy::setDisplayBrightness(int bright) |
1071 | { | 1071 | { |
1072 | /* The code here works, but is disabled as the current version runs | 1072 | /* The code here works, but is disabled as the current version runs |
1073 | parallel to X, and relies on the existing backlight demon. */ | 1073 | parallel to X, and relies on the existing backlight demon. */ |
1074 | #if 0 | 1074 | #if 0 |
1075 | if ( QFile::exists("/proc/sys/pm/light") ) { | 1075 | if ( QFile::exists("/proc/sys/pm/light") ) { |
1076 | int fd = ::open("/proc/sys/pm/light", O_WRONLY); | 1076 | int fd = ::open("/proc/sys/pm/light", O_WRONLY); |
1077 | if (fd >= 0 ) { | 1077 | if (fd >= 0 ) { |
1078 | if (bright) | 1078 | if (bright) |
1079 | ::write(fd, "1\n", 2); | 1079 | ::write(fd, "1\n", 2); |
1080 | else | 1080 | else |
1081 | ::write(fd, "0\n", 2); | 1081 | ::write(fd, "0\n", 2); |
1082 | ::close(fd); | 1082 | ::close(fd); |
1083 | return true; | 1083 | return true; |
1084 | } | 1084 | } |
1085 | } | 1085 | } |
1086 | #endif | 1086 | #endif |
1087 | return false; | 1087 | return false; |
1088 | } | 1088 | } |
1089 | 1089 | ||
1090 | int Yopy::displayBrightnessResolution() const | 1090 | int Yopy::displayBrightnessResolution() const |
1091 | { | 1091 | { |
1092 | return 2; | 1092 | return 2; |
1093 | } | 1093 | } |
1094 | 1094 | ||
1095 | /************************************************** | 1095 | /************************************************** |
1096 | * | 1096 | * |
1097 | * iPAQ | 1097 | * iPAQ |
1098 | * | 1098 | * |
1099 | **************************************************/ | 1099 | **************************************************/ |
1100 | 1100 | ||
1101 | void iPAQ::init ( ) | 1101 | void iPAQ::init ( ) |
1102 | { | 1102 | { |
1103 | d-> m_vendorstr = "HP"; | 1103 | d-> m_vendorstr = "HP"; |
1104 | d-> m_vendor = Vendor_HP; | 1104 | d-> m_vendor = Vendor_HP; |
1105 | 1105 | ||
1106 | QFile f ( "/proc/hal/model" ); | 1106 | QFile f ( "/proc/hal/model" ); |
1107 | 1107 | ||
1108 | if ( f. open ( IO_ReadOnly )) { | 1108 | if ( f. open ( IO_ReadOnly )) { |
1109 | QTextStream ts ( &f ); | 1109 | QTextStream ts ( &f ); |
1110 | 1110 | ||
1111 | d-> m_modelstr = "H" + ts. readLine ( ); | 1111 | d-> m_modelstr = "H" + ts. readLine ( ); |
1112 | 1112 | ||
1113 | if ( d-> m_modelstr == "H3100" ) | 1113 | if ( d-> m_modelstr == "H3100" ) |
1114 | d-> m_model = Model_iPAQ_H31xx; | 1114 | d-> m_model = Model_iPAQ_H31xx; |
1115 | else if ( d-> m_modelstr == "H3600" ) | 1115 | else if ( d-> m_modelstr == "H3600" ) |
1116 | d-> m_model = Model_iPAQ_H36xx; | 1116 | d-> m_model = Model_iPAQ_H36xx; |
1117 | else if ( d-> m_modelstr == "H3700" ) | 1117 | else if ( d-> m_modelstr == "H3700" ) |
1118 | d-> m_model = Model_iPAQ_H37xx; | 1118 | d-> m_model = Model_iPAQ_H37xx; |
1119 | else if ( d-> m_modelstr == "H3800" ) | 1119 | else if ( d-> m_modelstr == "H3800" ) |
1120 | d-> m_model = Model_iPAQ_H38xx; | 1120 | d-> m_model = Model_iPAQ_H38xx; |
1121 | else if ( d-> m_modelstr == "H3900" ) | 1121 | else if ( d-> m_modelstr == "H3900" ) |
1122 | d-> m_model = Model_iPAQ_H39xx; | 1122 | d-> m_model = Model_iPAQ_H39xx; |
1123 | else if ( d-> m_modelstr == "H5400" ) | 1123 | else if ( d-> m_modelstr == "H5400" ) |
1124 | d-> m_model = Model_iPAQ_H5xxx; | 1124 | d-> m_model = Model_iPAQ_H5xxx; |
1125 | else | 1125 | else |
1126 | d-> m_model = Model_Unknown; | 1126 | d-> m_model = Model_Unknown; |
1127 | 1127 | ||
1128 | f. close ( ); | 1128 | f. close ( ); |
1129 | } | 1129 | } |
1130 | 1130 | ||
1131 | switch ( d-> m_model ) { | 1131 | switch ( d-> m_model ) { |
1132 | case Model_iPAQ_H31xx: | 1132 | case Model_iPAQ_H31xx: |
1133 | case Model_iPAQ_H38xx: | 1133 | case Model_iPAQ_H38xx: |
1134 | d-> m_rotation = Rot90; | 1134 | d-> m_rotation = Rot90; |
1135 | break; | 1135 | break; |
1136 | case Model_iPAQ_H36xx: | 1136 | case Model_iPAQ_H36xx: |
1137 | case Model_iPAQ_H37xx: | 1137 | case Model_iPAQ_H37xx: |
1138 | case Model_iPAQ_H39xx: | 1138 | case Model_iPAQ_H39xx: |
1139 | 1139 | ||
1140 | default: | 1140 | default: |
1141 | d-> m_rotation = Rot270; | 1141 | d-> m_rotation = Rot270; |
1142 | break; | 1142 | break; |
1143 | case Model_iPAQ_H5xxx: | 1143 | case Model_iPAQ_H5xxx: |
1144 | d-> m_rotation = Rot0; | 1144 | d-> m_rotation = Rot0; |
1145 | } | 1145 | } |
1146 | 1146 | ||
1147 | f. setName ( "/etc/familiar-version" ); | 1147 | f. setName ( "/etc/familiar-version" ); |
1148 | if ( f. open ( IO_ReadOnly )) { | 1148 | if ( f. open ( IO_ReadOnly )) { |
1149 | d-> m_systemstr = "Familiar"; | 1149 | d-> m_systemstr = "Familiar"; |
1150 | d-> m_system = System_Familiar; | 1150 | d-> m_system = System_Familiar; |
1151 | 1151 | ||
1152 | QTextStream ts ( &f ); | 1152 | QTextStream ts ( &f ); |
1153 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); | 1153 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); |
1154 | 1154 | ||
1155 | f. close ( ); | 1155 | f. close ( ); |
1156 | } else { | 1156 | } else { |
1157 | f. setName ( "/etc/oz_version" ); | 1157 | f. setName ( "/etc/oz_version" ); |
1158 | 1158 | ||
1159 | if ( f. open ( IO_ReadOnly )) { | 1159 | if ( f. open ( IO_ReadOnly )) { |
1160 | d-> m_systemstr = "OpenEmbedded/iPaq"; | 1160 | d-> m_systemstr = "OpenEmbedded/iPaq"; |
1161 | d-> m_system = System_Familiar; | 1161 | d-> m_system = System_Familiar; |
1162 | 1162 | ||
1163 | QTextStream ts ( &f ); | 1163 | QTextStream ts ( &f ); |
1164 | ts.setDevice ( &f ); | 1164 | ts.setDevice ( &f ); |
1165 | d-> m_sysverstr = ts. readLine ( ); | 1165 | d-> m_sysverstr = ts. readLine ( ); |
1166 | f. close ( ); | 1166 | f. close ( ); |
1167 | } | 1167 | } |
1168 | } | 1168 | } |
1169 | 1169 | ||
1170 | 1170 | ||
1171 | 1171 | ||
1172 | 1172 | ||
1173 | 1173 | ||
1174 | m_leds [0] = m_leds [1] = Led_Off; | 1174 | m_leds [0] = m_leds [1] = Led_Off; |
1175 | 1175 | ||
1176 | m_power_timer = 0; | 1176 | m_power_timer = 0; |
1177 | 1177 | ||
1178 | } | 1178 | } |
1179 | 1179 | ||
1180 | void iPAQ::initButtons ( ) | 1180 | void iPAQ::initButtons ( ) |
1181 | { | 1181 | { |
1182 | if ( d-> m_buttons ) | 1182 | if ( d-> m_buttons ) |
1183 | return; | 1183 | return; |
1184 | 1184 | ||
1185 | if ( isQWS( ) ) | 1185 | if ( isQWS( ) ) |
1186 | QWSServer::setKeyboardFilter ( this ); | 1186 | QWSServer::setKeyboardFilter ( this ); |
1187 | 1187 | ||
1188 | d-> m_buttons = new QValueList <ODeviceButton>; | 1188 | d-> m_buttons = new QValueList <ODeviceButton>; |
1189 | 1189 | ||
1190 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { | 1190 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { |
1191 | i_button *ib = ipaq_buttons + i; | 1191 | i_button *ib = ipaq_buttons + i; |
1192 | ODeviceButton b; | 1192 | ODeviceButton b; |
1193 | 1193 | ||
1194 | if (( ib-> model & d-> m_model ) == d-> m_model ) { | 1194 | if (( ib-> model & d-> m_model ) == d-> m_model ) { |
1195 | b. setKeycode ( ib-> code ); | 1195 | b. setKeycode ( ib-> code ); |
1196 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); | 1196 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); |
1197 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); | 1197 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); |
1198 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction )); | 1198 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction )); |
1199 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction )); | 1199 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction )); |
1200 | 1200 | ||
1201 | d-> m_buttons-> append ( b ); | 1201 | d-> m_buttons-> append ( b ); |
1202 | } | 1202 | } |
1203 | } | 1203 | } |
1204 | reloadButtonMapping ( ); | 1204 | reloadButtonMapping ( ); |
1205 | 1205 | ||
1206 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 1206 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
1207 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 1207 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
1208 | } | 1208 | } |
1209 | 1209 | ||
1210 | 1210 | ||
1211 | //#include <linux/h3600_ts.h> // including kernel headers is evil ... | 1211 | //#include <linux/h3600_ts.h> // including kernel headers is evil ... |
1212 | 1212 | ||
1213 | typedef struct { | 1213 | typedef struct { |
1214 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ | 1214 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ |
1215 | unsigned char TotalTime; /* Units of 5 seconds */ | 1215 | unsigned char TotalTime; /* Units of 5 seconds */ |
1216 | unsigned char OnTime; /* units of 100m/s */ | 1216 | unsigned char OnTime; /* units of 100m/s */ |
1217 | unsigned char OffTime; /* units of 100m/s */ | 1217 | unsigned char OffTime; /* units of 100m/s */ |
1218 | } LED_IN; | 1218 | } LED_IN; |
1219 | 1219 | ||
1220 | typedef struct { | 1220 | typedef struct { |
1221 | unsigned char mode; | 1221 | unsigned char mode; |
1222 | unsigned char pwr; | 1222 | unsigned char pwr; |
1223 | unsigned char brightness; | 1223 | unsigned char brightness; |
1224 | } FLITE_IN; | 1224 | } FLITE_IN; |
1225 | 1225 | ||
1226 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) | 1226 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) |
1227 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) | 1227 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) |
1228 | 1228 | ||
1229 | 1229 | ||
1230 | QValueList <OLed> iPAQ::ledList ( ) const | 1230 | QValueList <OLed> iPAQ::ledList ( ) const |
1231 | { | 1231 | { |
1232 | QValueList <OLed> vl; | 1232 | QValueList <OLed> vl; |
1233 | vl << Led_Power; | 1233 | vl << Led_Power; |
1234 | 1234 | ||
1235 | if ( d-> m_model == Model_iPAQ_H38xx ) | 1235 | if ( d-> m_model == Model_iPAQ_H38xx ) |
1236 | vl << Led_BlueTooth; | 1236 | vl << Led_BlueTooth; |
1237 | return vl; | 1237 | return vl; |
1238 | } | 1238 | } |
1239 | 1239 | ||
1240 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const | 1240 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const |
1241 | { | 1241 | { |
1242 | QValueList <OLedState> vl; | 1242 | QValueList <OLedState> vl; |
1243 | 1243 | ||
1244 | if ( l == Led_Power ) | 1244 | if ( l == Led_Power ) |
1245 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; | 1245 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; |
1246 | else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) | 1246 | else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) |
1247 | vl << Led_Off; // << Led_On << ??? | 1247 | vl << Led_Off; // << Led_On << ??? |
1248 | 1248 | ||
1249 | return vl; | 1249 | return vl; |
1250 | } | 1250 | } |
1251 | 1251 | ||
1252 | OLedState iPAQ::ledState ( OLed l ) const | 1252 | OLedState iPAQ::ledState ( OLed l ) const |
1253 | { | 1253 | { |
1254 | switch ( l ) { | 1254 | switch ( l ) { |
1255 | case Led_Power: | 1255 | case Led_Power: |
1256 | return m_leds [0]; | 1256 | return m_leds [0]; |
1257 | case Led_BlueTooth: | 1257 | case Led_BlueTooth: |
1258 | return m_leds [1]; | 1258 | return m_leds [1]; |
1259 | default: | 1259 | default: |
1260 | return Led_Off; | 1260 | return Led_Off; |
1261 | } | 1261 | } |
1262 | } | 1262 | } |
1263 | 1263 | ||
1264 | bool iPAQ::setLedState ( OLed l, OLedState st ) | 1264 | bool iPAQ::setLedState ( OLed l, OLedState st ) |
1265 | { | 1265 | { |
1266 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); | 1266 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); |
1267 | 1267 | ||
1268 | if ( l == Led_Power ) { | 1268 | if ( l == Led_Power ) { |
1269 | if ( fd >= 0 ) { | 1269 | if ( fd >= 0 ) { |
1270 | LED_IN leds; | 1270 | LED_IN leds; |
1271 | ::memset ( &leds, 0, sizeof( leds )); | 1271 | ::memset ( &leds, 0, sizeof( leds )); |
1272 | leds. TotalTime = 0; | 1272 | leds. TotalTime = 0; |
1273 | leds. OnTime = 0; | 1273 | leds. OnTime = 0; |
1274 | leds. OffTime = 1; | 1274 | leds. OffTime = 1; |
1275 | leds. OffOnBlink = 2; | 1275 | leds. OffOnBlink = 2; |
1276 | 1276 | ||
1277 | switch ( st ) { | 1277 | switch ( st ) { |
1278 | case Led_Off : leds. OffOnBlink = 0; break; | 1278 | case Led_Off : leds. OffOnBlink = 0; break; |
1279 | case Led_On : leds. OffOnBlink = 1; break; | 1279 | case Led_On : leds. OffOnBlink = 1; break; |
1280 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; | 1280 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; |
1281 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; | 1281 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; |
1282 | } | 1282 | } |
1283 | 1283 | ||
1284 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { | 1284 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { |
1285 | m_leds [0] = st; | 1285 | m_leds [0] = st; |
1286 | return true; | 1286 | return true; |
1287 | } | 1287 | } |
1288 | } | 1288 | } |
1289 | } | 1289 | } |
1290 | return false; | 1290 | return false; |
1291 | } | 1291 | } |
1292 | 1292 | ||
1293 | 1293 | ||
1294 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) | 1294 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) |
1295 | { | 1295 | { |
1296 | int newkeycode = keycode; | 1296 | int newkeycode = keycode; |
1297 | 1297 | ||
1298 | switch ( keycode ) { | 1298 | switch ( keycode ) { |
1299 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key | 1299 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key |
1300 | case HardKey_Menu: { | 1300 | case HardKey_Menu: { |
1301 | if (( d-> m_model == Model_iPAQ_H38xx ) || | 1301 | if (( d-> m_model == Model_iPAQ_H38xx ) || |
1302 | ( d-> m_model == Model_iPAQ_H39xx ) || | 1302 | ( d-> m_model == Model_iPAQ_H39xx ) || |
1303 | ( d-> m_model == Model_iPAQ_H5xxx)) { | 1303 | ( d-> m_model == Model_iPAQ_H5xxx)) { |
1304 | newkeycode = HardKey_Mail; | 1304 | newkeycode = HardKey_Mail; |
1305 | } | 1305 | } |
1306 | break; | 1306 | break; |
1307 | } | 1307 | } |
1308 | 1308 | ||
1309 | // Rotate cursor keys 180° | 1309 | // Rotate cursor keys 180° |
1310 | case Key_Left : | 1310 | case Key_Left : |
1311 | case Key_Right: | 1311 | case Key_Right: |
1312 | case Key_Up : | 1312 | case Key_Up : |
1313 | case Key_Down : { | 1313 | case Key_Down : { |
1314 | if (( d-> m_model == Model_iPAQ_H31xx ) || | 1314 | if (( d-> m_model == Model_iPAQ_H31xx ) || |
1315 | ( d-> m_model == Model_iPAQ_H38xx )) { | 1315 | ( d-> m_model == Model_iPAQ_H38xx )) { |
1316 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; | 1316 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; |
1317 | } | 1317 | } |
1318 | break; | 1318 | break; |
1319 | } | 1319 | } |
1320 | 1320 | ||
1321 | // map Power Button short/long press to F34/F35 | 1321 | // map Power Button short/long press to F34/F35 |
1322 | case Key_SysReq: { | 1322 | case Key_SysReq: { |
1323 | if ( isPress ) { | 1323 | if ( isPress ) { |
1324 | if ( m_power_timer ) | 1324 | if ( m_power_timer ) |
1325 | killTimer ( m_power_timer ); | 1325 | killTimer ( m_power_timer ); |
1326 | m_power_timer = startTimer ( 500 ); | 1326 | m_power_timer = startTimer ( 500 ); |
1327 | } | 1327 | } |
1328 | else if ( m_power_timer ) { | 1328 | else if ( m_power_timer ) { |
1329 | killTimer ( m_power_timer ); | 1329 | killTimer ( m_power_timer ); |
1330 | m_power_timer = 0; | 1330 | m_power_timer = 0; |
1331 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); | 1331 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); |
1332 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); | 1332 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); |
1333 | } | 1333 | } |
1334 | newkeycode = Key_unknown; | 1334 | newkeycode = Key_unknown; |
1335 | break; | 1335 | break; |
1336 | } | 1336 | } |
1337 | } | 1337 | } |
1338 | 1338 | ||
1339 | if ( newkeycode != keycode ) { | 1339 | if ( newkeycode != keycode ) { |
1340 | if ( newkeycode != Key_unknown ) | 1340 | if ( newkeycode != Key_unknown ) |
1341 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); | 1341 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); |
1342 | return true; | 1342 | return true; |
1343 | } | 1343 | } |
1344 | else | 1344 | else |
1345 | return false; | 1345 | return false; |
1346 | } | 1346 | } |
1347 | 1347 | ||
1348 | void iPAQ::timerEvent ( QTimerEvent * ) | 1348 | void iPAQ::timerEvent ( QTimerEvent * ) |
1349 | { | 1349 | { |
1350 | killTimer ( m_power_timer ); | 1350 | killTimer ( m_power_timer ); |
1351 | m_power_timer = 0; | 1351 | m_power_timer = 0; |
1352 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); | 1352 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); |
1353 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); | 1353 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); |
1354 | } | 1354 | } |
1355 | 1355 | ||
1356 | 1356 | ||
1357 | void iPAQ::alarmSound ( ) | 1357 | void iPAQ::alarmSound ( ) |
1358 | { | 1358 | { |
1359 | #ifndef QT_NO_SOUND | 1359 | #ifndef QT_NO_SOUND |
1360 | static Sound snd ( "alarm" ); | 1360 | static Sound snd ( "alarm" ); |
1361 | int fd; | 1361 | int fd; |
1362 | int vol; | 1362 | int vol; |
1363 | bool vol_reset = false; | 1363 | bool vol_reset = false; |
1364 | 1364 | ||
1365 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { | 1365 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { |
1366 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { | 1366 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { |
1367 | Config cfg ( "qpe" ); | 1367 | Config cfg ( "qpe" ); |
1368 | cfg. setGroup ( "Volume" ); | 1368 | cfg. setGroup ( "Volume" ); |
1369 | 1369 | ||
1370 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); | 1370 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); |
1371 | if ( volalarm < 0 ) | 1371 | if ( volalarm < 0 ) |
1372 | volalarm = 0; | 1372 | volalarm = 0; |
1373 | else if ( volalarm > 100 ) | 1373 | else if ( volalarm > 100 ) |
1374 | volalarm = 100; | 1374 | volalarm = 100; |
1375 | volalarm |= ( volalarm << 8 ); | 1375 | volalarm |= ( volalarm << 8 ); |
1376 | 1376 | ||
1377 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) | 1377 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) |
1378 | vol_reset = true; | 1378 | vol_reset = true; |
1379 | } | 1379 | } |
1380 | } | 1380 | } |
1381 | 1381 | ||
1382 | snd. play ( ); | 1382 | snd. play ( ); |
1383 | while ( !snd. isFinished ( )) | 1383 | while ( !snd. isFinished ( )) |
1384 | qApp-> processEvents ( ); | 1384 | qApp-> processEvents ( ); |
1385 | 1385 | ||
1386 | if ( fd >= 0 ) { | 1386 | if ( fd >= 0 ) { |
1387 | if ( vol_reset ) | 1387 | if ( vol_reset ) |
1388 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); | 1388 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); |
1389 | ::close ( fd ); | 1389 | ::close ( fd ); |
1390 | } | 1390 | } |
1391 | #endif | 1391 | #endif |
1392 | } | 1392 | } |
1393 | 1393 | ||
1394 | 1394 | ||
1395 | bool iPAQ::setSoftSuspend ( bool soft ) | 1395 | bool iPAQ::setSoftSuspend ( bool soft ) |
1396 | { | 1396 | { |
1397 | bool res = false; | 1397 | bool res = false; |
1398 | int fd; | 1398 | int fd; |
1399 | 1399 | ||
1400 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { | 1400 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { |
1401 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) | 1401 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) |
1402 | res = true; | 1402 | res = true; |
1403 | else | 1403 | else |
1404 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); | 1404 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); |
1405 | 1405 | ||
1406 | ::close ( fd ); | 1406 | ::close ( fd ); |
1407 | } | 1407 | } |
1408 | else | 1408 | else |
1409 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); | 1409 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); |
1410 | 1410 | ||
1411 | return res; | 1411 | return res; |
1412 | } | 1412 | } |
1413 | 1413 | ||
1414 | 1414 | ||
1415 | bool iPAQ::setDisplayBrightness ( int bright ) | 1415 | bool iPAQ::setDisplayBrightness ( int bright ) |
1416 | { | 1416 | { |
1417 | bool res = false; | 1417 | bool res = false; |
1418 | int fd; | 1418 | int fd; |
1419 | 1419 | ||
1420 | if ( bright > 255 ) | 1420 | if ( bright > 255 ) |
1421 | bright = 255; | 1421 | bright = 255; |
1422 | if ( bright < 0 ) | 1422 | if ( bright < 0 ) |
1423 | bright = 0; | 1423 | bright = 0; |
1424 | 1424 | ||
1425 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { | 1425 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { |
1426 | FLITE_IN bl; | 1426 | FLITE_IN bl; |
1427 | bl. mode = 1; | 1427 | bl. mode = 1; |
1428 | bl. pwr = bright ? 1 : 0; | 1428 | bl. pwr = bright ? 1 : 0; |
1429 | bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; | 1429 | bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; |
1430 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); | 1430 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); |
1431 | ::close ( fd ); | 1431 | ::close ( fd ); |
1432 | } | 1432 | } |
1433 | return res; | 1433 | return res; |
1434 | } | 1434 | } |
1435 | 1435 | ||
1436 | int iPAQ::displayBrightnessResolution ( ) const | 1436 | int iPAQ::displayBrightnessResolution ( ) const |
1437 | { | 1437 | { |
1438 | switch ( model ( )) { | 1438 | switch ( model ( )) { |
1439 | case Model_iPAQ_H31xx: | 1439 | case Model_iPAQ_H31xx: |
1440 | case Model_iPAQ_H36xx: | 1440 | case Model_iPAQ_H36xx: |
1441 | case Model_iPAQ_H37xx: | 1441 | case Model_iPAQ_H37xx: |
1442 | return 128; // really 256, but >128 could damage the LCD | 1442 | return 128; // really 256, but >128 could damage the LCD |
1443 | 1443 | ||
1444 | case Model_iPAQ_H38xx: | 1444 | case Model_iPAQ_H38xx: |
1445 | case Model_iPAQ_H39xx: | 1445 | case Model_iPAQ_H39xx: |
1446 | return 64; | 1446 | return 64; |
1447 | case Model_iPAQ_H5xxx: | 1447 | case Model_iPAQ_H5xxx: |
1448 | return 255; | 1448 | return 255; |
1449 | 1449 | ||
1450 | default: | 1450 | default: |
1451 | return 2; | 1451 | return 2; |
1452 | } | 1452 | } |
1453 | } | 1453 | } |
1454 | 1454 | ||
1455 | 1455 | ||
1456 | bool iPAQ::hasLightSensor ( ) const | 1456 | bool iPAQ::hasLightSensor ( ) const |
1457 | { | 1457 | { |
1458 | return true; | 1458 | return true; |
1459 | } | 1459 | } |
1460 | 1460 | ||
1461 | int iPAQ::readLightSensor ( ) | 1461 | int iPAQ::readLightSensor ( ) |
1462 | { | 1462 | { |
1463 | int fd; | 1463 | int fd; |
1464 | int val = -1; | 1464 | int val = -1; |
1465 | 1465 | ||
1466 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 1466 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
1467 | char buffer [8]; | 1467 | char buffer [8]; |
1468 | 1468 | ||
1469 | if ( ::read ( fd, buffer, 5 ) == 5 ) { | 1469 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
1470 | char *endptr; | 1470 | char *endptr; |
1471 | 1471 | ||
1472 | buffer [4] = 0; | 1472 | buffer [4] = 0; |
1473 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 1473 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
1474 | 1474 | ||
1475 | if ( *endptr != 0 ) | 1475 | if ( *endptr != 0 ) |
1476 | val = -1; | 1476 | val = -1; |
1477 | } | 1477 | } |
1478 | ::close ( fd ); | 1478 | ::close ( fd ); |
1479 | } | 1479 | } |
1480 | 1480 | ||
1481 | return val; | 1481 | return val; |
1482 | } | 1482 | } |
1483 | 1483 | ||
1484 | int iPAQ::lightSensorResolution ( ) const | 1484 | int iPAQ::lightSensorResolution ( ) const |
1485 | { | 1485 | { |
1486 | return 256; | 1486 | return 256; |
1487 | } | 1487 | } |
1488 | 1488 | ||
1489 | /************************************************** | 1489 | /************************************************** |
1490 | * | 1490 | * |
1491 | * Zaurus | 1491 | * Zaurus |
1492 | * | 1492 | * |
1493 | **************************************************/ | 1493 | **************************************************/ |
1494 | 1494 | ||
1495 | // Check whether this device is the sharp zaurus.. | 1495 | // Check whether this device is the sharp zaurus.. |
1496 | bool Zaurus::isZaurus() | 1496 | bool Zaurus::isZaurus() |
1497 | { | 1497 | { |
1498 | 1498 | ||
1499 | // If the special devices by embedix exist, it is quite simple: it is a Zaurus ! | 1499 | // If the special devices by embedix exist, it is quite simple: it is a Zaurus ! |
1500 | if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){ | 1500 | if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){ |
1501 | return true; | 1501 | return true; |
1502 | } | 1502 | } |
1503 | 1503 | ||
1504 | // On non-embedix kernels, we have to look closer. | 1504 | // On non-embedix kernels, we have to look closer. |
1505 | bool is_zaurus = false; | 1505 | bool is_zaurus = false; |
1506 | QFile f ( "/proc/cpuinfo" ); | 1506 | QFile f ( "/proc/cpuinfo" ); |
1507 | if ( f. open ( IO_ReadOnly ) ) { | 1507 | if ( f. open ( IO_ReadOnly ) ) { |
1508 | QString model; | 1508 | QString model; |
1509 | QFile f ( "/proc/cpuinfo" ); | 1509 | QFile f ( "/proc/cpuinfo" ); |
1510 | 1510 | ||
1511 | QTextStream ts ( &f ); | 1511 | QTextStream ts ( &f ); |
1512 | QString line; | 1512 | QString line; |
1513 | while( line = ts. readLine ( ) ) { | 1513 | while( line = ts. readLine ( ) ) { |
1514 | if ( line. left ( 8 ) == "Hardware" ) | 1514 | if ( line. left ( 8 ) == "Hardware" ) |
1515 | break; | 1515 | break; |
1516 | } | 1516 | } |
1517 | int loc = line. find ( ":" ); | 1517 | int loc = line. find ( ":" ); |
1518 | if ( loc != -1 ) | 1518 | if ( loc != -1 ) |
1519 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1519 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1520 | 1520 | ||
1521 | if ( model == "Sharp-Collie" | 1521 | if ( model == "Sharp-Collie" |
1522 | || model == "Collie" | 1522 | || model == "Collie" |
1523 | || model == "SHARP Corgi" | 1523 | || model == "SHARP Corgi" |
1524 | || model == "SHARP Shepherd" | 1524 | || model == "SHARP Shepherd" |
1525 | || model == "SHARP Poodle" | 1525 | || model == "SHARP Poodle" |
1526 | || model == "SHARP Husky" ) | 1526 | || model == "SHARP Husky" |
1527 | ) | 1527 | ) |
1528 | is_zaurus = true; | 1528 | is_zaurus = true; |
1529 | 1529 | ||
1530 | } | 1530 | } |
1531 | return is_zaurus; | 1531 | return is_zaurus; |
1532 | } | 1532 | } |
1533 | 1533 | ||
1534 | 1534 | ||
1535 | void Zaurus::init ( ) | 1535 | void Zaurus::init ( ) |
1536 | { | 1536 | { |
1537 | d-> m_vendorstr = "Sharp"; | 1537 | d-> m_vendorstr = "Sharp"; |
1538 | d-> m_vendor = Vendor_Sharp; | 1538 | d-> m_vendor = Vendor_Sharp; |
1539 | m_embedix = true; // Not openzaurus means: It has an embedix kernel ! | 1539 | m_embedix = true; // Not openzaurus means: It has an embedix kernel ! |
1540 | 1540 | ||
1541 | // QFile f ( "/proc/filesystems" ); | 1541 | // QFile f ( "/proc/filesystems" ); |
1542 | QString model; | 1542 | QString model; |
1543 | 1543 | ||
1544 | // It isn't a good idea to check the system configuration to | 1544 | // It isn't a good idea to check the system configuration to |
1545 | // detect the distribution ! | 1545 | // detect the distribution ! |
1546 | // Otherwise it may happen that any other distribution is detected as openzaurus, just | 1546 | // Otherwise it may happen that any other distribution is detected as openzaurus, just |
1547 | // because it uses a jffs2 filesystem.. | 1547 | // because it uses a jffs2 filesystem.. |
1548 | // (eilers) | 1548 | // (eilers) |
1549 | // if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { | 1549 | // if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { |
1550 | QFile f ("/etc/oz_version"); | 1550 | QFile f ("/etc/oz_version"); |
1551 | if ( f.exists() ){ | 1551 | if ( f.exists() ){ |
1552 | d-> m_vendorstr = "OpenZaurus Team"; | 1552 | d-> m_vendorstr = "OpenZaurus Team"; |
1553 | d-> m_systemstr = "OpenZaurus"; | 1553 | d-> m_systemstr = "OpenZaurus"; |
1554 | d-> m_system = System_OpenZaurus; | 1554 | d-> m_system = System_OpenZaurus; |
1555 | 1555 | ||
1556 | if ( f. open ( IO_ReadOnly )) { | 1556 | if ( f. open ( IO_ReadOnly )) { |
1557 | QTextStream ts ( &f ); | 1557 | QTextStream ts ( &f ); |
1558 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); | 1558 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); |
1559 | f. close ( ); | 1559 | f. close ( ); |
1560 | } | 1560 | } |
1561 | 1561 | ||
1562 | // Openzaurus sometimes uses the embedix kernel! | 1562 | // Openzaurus sometimes uses the embedix kernel! |
1563 | // => Check whether this is an embedix kernel | 1563 | // => Check whether this is an embedix kernel |
1564 | FILE *uname = popen("uname -r", "r"); | 1564 | FILE *uname = popen("uname -r", "r"); |
1565 | QString line; | 1565 | QString line; |
1566 | if ( f.open(IO_ReadOnly, uname) ) { | 1566 | if ( f.open(IO_ReadOnly, uname) ) { |
1567 | QTextStream ts ( &f ); | 1567 | QTextStream ts ( &f ); |
1568 | line = ts. readLine ( ); | 1568 | line = ts. readLine ( ); |
1569 | int loc = line. find ( "embedix" ); | 1569 | int loc = line. find ( "embedix" ); |
1570 | if ( loc != -1 ) | 1570 | if ( loc != -1 ) |
1571 | m_embedix = true; | 1571 | m_embedix = true; |
1572 | else | 1572 | else |
1573 | m_embedix = false; | 1573 | m_embedix = false; |
1574 | f. close ( ); | 1574 | f. close ( ); |
1575 | } | 1575 | } |
1576 | pclose(uname); | 1576 | pclose(uname); |
1577 | } | 1577 | } |
1578 | else { | 1578 | else { |
1579 | d-> m_systemstr = "Zaurus"; | 1579 | d-> m_systemstr = "Zaurus"; |
1580 | d-> m_system = System_Zaurus; | 1580 | d-> m_system = System_Zaurus; |
1581 | } | 1581 | } |
1582 | 1582 | ||
1583 | f. setName ( "/proc/cpuinfo" ); | 1583 | f. setName ( "/proc/cpuinfo" ); |
1584 | if ( f. open ( IO_ReadOnly ) ) { | 1584 | if ( f. open ( IO_ReadOnly ) ) { |
1585 | QTextStream ts ( &f ); | 1585 | QTextStream ts ( &f ); |
1586 | QString line; | 1586 | QString line; |
1587 | while( line = ts. readLine ( ) ) { | 1587 | while( line = ts. readLine ( ) ) { |
1588 | if ( line. left ( 8 ) == "Hardware" ) | 1588 | if ( line. left ( 8 ) == "Hardware" ) |
1589 | break; | 1589 | break; |
1590 | } | 1590 | } |
1591 | int loc = line. find ( ":" ); | 1591 | int loc = line. find ( ":" ); |
1592 | if ( loc != -1 ) | 1592 | if ( loc != -1 ) |
1593 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1593 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1594 | } | 1594 | } |
1595 | 1595 | ||
1596 | if ( model == "SHARP Corgi" ) { | 1596 | if ( model == "SHARP Corgi" ) { |
1597 | d-> m_model = Model_Zaurus_SLC7x0; | 1597 | d-> m_model = Model_Zaurus_SLC7x0; |
1598 | d-> m_modelstr = "Zaurus SL-C700"; | 1598 | d-> m_modelstr = "Zaurus SL-C700"; |
1599 | } else if ( model == "SHARP Shepherd" ) { | 1599 | } else if ( model == "SHARP Shepherd" ) { |
1600 | d-> m_model = Model_Zaurus_SLC7x0; | 1600 | d-> m_model = Model_Zaurus_SLC7x0; |
1601 | d-> m_modelstr = "Zaurus SL-C750"; | 1601 | d-> m_modelstr = "Zaurus SL-C750"; |
1602 | } else if ( model == "SHARP Husky" ) { | 1602 | } else if ( model == "SHARP Husky" ) { |
1603 | d-> m_model = Model_Zaurus_SLC7x0; | 1603 | d-> m_model = Model_Zaurus_SLC7x0; |
1604 | d-> m_modelstr = "Zaurus SL-C760"; | 1604 | d-> m_modelstr = "Zaurus SL-C760"; |
1605 | } else if ( model == "SHARP Poodle" ) { | 1605 | } else if ( model == "SHARP Poodle" ) { |
1606 | d-> m_model = Model_Zaurus_SLB600; | 1606 | d-> m_model = Model_Zaurus_SLB600; |
1607 | d-> m_modelstr = "Zaurus SL-B500 or SL-5600"; | 1607 | d-> m_modelstr = "Zaurus SL-B500 or SL-5600"; |
1608 | } else if ( model == "Sharp-Collie" || model == "Collie" ) { | 1608 | } else if ( model == "Sharp-Collie" || model == "Collie" ) { |
1609 | d-> m_model = Model_Zaurus_SL5500; | 1609 | d-> m_model = Model_Zaurus_SL5500; |
1610 | d-> m_modelstr = "Zaurus SL-5500 or SL-5000d"; | 1610 | d-> m_modelstr = "Zaurus SL-5500 or SL-5000d"; |
1611 | } else { | 1611 | } else { |
1612 | d-> m_model = Model_Zaurus_SL5500; | 1612 | d-> m_model = Model_Zaurus_SL5500; |
1613 | d-> m_modelstr = "Zaurus (Model unknown)"; | 1613 | d-> m_modelstr = "Zaurus (Model unknown)"; |
1614 | } | 1614 | } |
1615 | 1615 | ||
1616 | bool flipstate = false; | 1616 | bool flipstate = false; |
1617 | switch ( d-> m_model ) { | 1617 | switch ( d-> m_model ) { |
1618 | case Model_Zaurus_SLA300: | 1618 | case Model_Zaurus_SLA300: |
1619 | d-> m_rotation = Rot0; | 1619 | d-> m_rotation = Rot0; |
1620 | break; | 1620 | break; |
1621 | case Model_Zaurus_SLC7x0: | 1621 | case Model_Zaurus_SLC7x0: |
1622 | // Note: need to 1) set flipstate based on physical screen orientation | 1622 | // Note: need to 1) set flipstate based on physical screen orientation |
1623 | // and 2) check to see if the user overrode the rotation direction | 1623 | // and 2) check to see if the user overrode the rotation direction |
1624 | // using appearance, and if so, remove that item from the Config to | 1624 | // using appearance, and if so, remove that item from the Config to |
1625 | // ensure the rotate applet flips us back to the previous state. | 1625 | // ensure the rotate applet flips us back to the previous state. |
1626 | if ( flipstate ) { | 1626 | if ( flipstate ) { |
1627 | // 480x640 | 1627 | // 480x640 |
1628 | d-> m_rotation = Rot0; | 1628 | d-> m_rotation = Rot0; |
1629 | d-> m_direction = CW; | 1629 | d-> m_direction = CW; |
1630 | } else { | 1630 | } else { |
1631 | // 640x480 | 1631 | // 640x480 |
1632 | d-> m_rotation = Rot270; | 1632 | d-> m_rotation = Rot270; |
1633 | d-> m_direction = CCW; | 1633 | d-> m_direction = CCW; |
1634 | } | 1634 | } |
1635 | break; | 1635 | break; |
1636 | case Model_Zaurus_SLB600: | 1636 | case Model_Zaurus_SLB600: |
1637 | case Model_Zaurus_SL5500: | 1637 | case Model_Zaurus_SL5500: |
1638 | case Model_Zaurus_SL5000: | 1638 | case Model_Zaurus_SL5000: |
1639 | default: | 1639 | default: |
1640 | d-> m_rotation = Rot270; | 1640 | d-> m_rotation = Rot270; |
1641 | break; | 1641 | break; |
1642 | } | 1642 | } |
1643 | m_leds [0] = Led_Off; | 1643 | m_leds [0] = Led_Off; |
1644 | } | 1644 | } |
1645 | 1645 | ||
1646 | void Zaurus::initButtons ( ) | 1646 | void Zaurus::initButtons ( ) |
1647 | { | 1647 | { |
1648 | if ( d-> m_buttons ) | 1648 | if ( d-> m_buttons ) |
1649 | return; | 1649 | return; |
1650 | 1650 | ||
1651 | d-> m_buttons = new QValueList <ODeviceButton>; | 1651 | d-> m_buttons = new QValueList <ODeviceButton>; |
1652 | 1652 | ||
1653 | struct z_button * pz_buttons; | 1653 | struct z_button * pz_buttons; |
1654 | int buttoncount; | 1654 | int buttoncount; |
1655 | switch ( d-> m_model ) { | 1655 | switch ( d-> m_model ) { |
1656 | case Model_Zaurus_SLC7x0: | 1656 | case Model_Zaurus_SLC7x0: |
1657 | pz_buttons = z_buttons_c700; | 1657 | pz_buttons = z_buttons_c700; |
1658 | buttoncount = ARRAY_SIZE(z_buttons_c700); | 1658 | buttoncount = ARRAY_SIZE(z_buttons_c700); |
1659 | break; | 1659 | break; |
1660 | default: | 1660 | default: |
1661 | pz_buttons = z_buttons; | 1661 | pz_buttons = z_buttons; |
1662 | buttoncount = ARRAY_SIZE(z_buttons); | 1662 | buttoncount = ARRAY_SIZE(z_buttons); |
1663 | break; | 1663 | break; |
1664 | } | 1664 | } |
1665 | 1665 | ||
1666 | for ( int i = 0; i < buttoncount; i++ ) { | 1666 | for ( int i = 0; i < buttoncount; i++ ) { |
1667 | struct z_button *zb = pz_buttons + i; | 1667 | struct z_button *zb = pz_buttons + i; |
1668 | ODeviceButton b; | 1668 | ODeviceButton b; |
1669 | 1669 | ||
1670 | b. setKeycode ( zb-> code ); | 1670 | b. setKeycode ( zb-> code ); |
1671 | b. setUserText ( QObject::tr ( "Button", zb-> utext )); | 1671 | b. setUserText ( QObject::tr ( "Button", zb-> utext )); |
1672 | b. setPixmap ( Resource::loadPixmap ( zb-> pix )); | 1672 | b. setPixmap ( Resource::loadPixmap ( zb-> pix )); |
1673 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), | 1673 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), |
1674 | zb-> fpressedaction )); | 1674 | zb-> fpressedaction )); |
1675 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), | 1675 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), |
1676 | zb-> fheldaction )); | 1676 | zb-> fheldaction )); |
1677 | 1677 | ||
1678 | d-> m_buttons-> append ( b ); | 1678 | d-> m_buttons-> append ( b ); |
1679 | } | 1679 | } |
1680 | 1680 | ||
1681 | reloadButtonMapping ( ); | 1681 | reloadButtonMapping ( ); |
1682 | 1682 | ||
1683 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 1683 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
1684 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), | 1684 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), |
1685 | this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 1685 | this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
1686 | } | 1686 | } |
1687 | 1687 | ||
1688 | #include <unistd.h> | 1688 | #include <unistd.h> |
1689 | #include <fcntl.h> | 1689 | #include <fcntl.h> |
1690 | #include <sys/ioctl.h> | 1690 | #include <sys/ioctl.h> |
1691 | 1691 | ||
1692 | //#include <asm/sharp_char.h> // including kernel headers is evil ... | 1692 | //#include <asm/sharp_char.h> // including kernel headers is evil ... |
1693 | 1693 | ||
1694 | #define SHARP_DEV_IOCTL_COMMAND_START 0x5680 | 1694 | #define SHARP_DEV_IOCTL_COMMAND_START 0x5680 |
1695 | 1695 | ||
1696 | #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 1696 | #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
1697 | #define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) | 1697 | #define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) |
1698 | 1698 | ||
1699 | #define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ | 1699 | #define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ |
1700 | #define SHARP_BUZ_KEYSOUND 2 /* key sound */ | 1700 | #define SHARP_BUZ_KEYSOUND 2 /* key sound */ |
1701 | #define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ | 1701 | #define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ |
1702 | 1702 | ||
1703 | /* --- for SHARP_BUZZER device --- */ | 1703 | /* --- for SHARP_BUZZER device --- */ |
1704 | 1704 | ||
1705 | //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 1705 | //#defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
1706 | //#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) | 1706 | //#define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) |
1707 | 1707 | ||
1708 | #define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) | 1708 | #define SHARP_BUZZER_SETVOLUME (SHARP_BUZZER_IOCTL_START+1) |
1709 | #define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) | 1709 | #define SHARP_BUZZER_GETVOLUME (SHARP_BUZZER_IOCTL_START+2) |
1710 | #define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) | 1710 | #define SHARP_BUZZER_ISSUPPORTED (SHARP_BUZZER_IOCTL_START+3) |
1711 | #define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) | 1711 | #define SHARP_BUZZER_SETMUTE (SHARP_BUZZER_IOCTL_START+4) |
1712 | #define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) | 1712 | #define SHARP_BUZZER_STOPSOUND (SHARP_BUZZER_IOCTL_START+5) |
1713 | 1713 | ||
1714 | //#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ | 1714 | //#define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ |
1715 | //#define SHARP_BUZ_KEYSOUND 2 /* key sound */ | 1715 | //#define SHARP_BUZ_KEYSOUND 2 /* key sound */ |
1716 | 1716 | ||
1717 | //#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ | 1717 | //#define SHARP_PDA_ILLCLICKSOUND 3 /* illegal click */ |
1718 | //#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ | 1718 | //#define SHARP_PDA_WARNSOUND 4 /* warning occurred */ |
1719 | //#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ | 1719 | //#define SHARP_PDA_ERRORSOUND 5 /* error occurred */ |
1720 | //#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ | 1720 | //#define SHARP_PDA_CRITICALSOUND 6 /* critical error occurred */ |
1721 | //#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ | 1721 | //#define SHARP_PDA_SYSSTARTSOUND 7 /* system start */ |
1722 | //#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ | 1722 | //#define SHARP_PDA_SYSTEMENDSOUND 8 /* system shutdown */ |
1723 | //#define SHARP_PDA_APPSTART 9 /* application start */ | 1723 | //#define SHARP_PDA_APPSTART 9 /* application start */ |
1724 | //#define SHARP_PDA_APPQUIT 10 /* application ends */ | 1724 | //#define SHARP_PDA_APPQUIT 10 /* application ends */ |
1725 | 1725 | ||
1726 | //#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ | 1726 | //#define SHARP_BUZ_SCHEDULE_ALARM 11 /* schedule alarm */ |
1727 | //#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ | 1727 | //#define SHARP_BUZ_DAILY_ALARM 12 /* daily alarm */ |
1728 | //#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ | 1728 | //#define SHARP_BUZ_GOT_PHONE_CALL 13 /* phone call sound */ |
1729 | //#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ | 1729 | //#define SHARP_BUZ_GOT_MAIL 14 /* mail sound */ |
1730 | // | 1730 | // |
1731 | 1731 | ||
1732 | #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 1732 | #defineSHARP_LED_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
1733 | #define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) | 1733 | #define SHARP_LED_SETSTATUS (SHARP_LED_IOCTL_START+1) |
1734 | 1734 | ||
1735 | typedef struct sharp_led_status { | 1735 | typedef struct sharp_led_status { |
1736 | int which; /* select which LED status is wanted. */ | 1736 | int which; /* select which LED status is wanted. */ |
1737 | int status; /* set new led status if you call SHARP_LED_SETSTATUS */ | 1737 | int status; /* set new led status if you call SHARP_LED_SETSTATUS */ |
1738 | } sharp_led_status; | 1738 | } sharp_led_status; |
1739 | 1739 | ||
1740 | #define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ | 1740 | #define SHARP_LED_MAIL_EXISTS 9 /* mail status (exists or not) */ |
1741 | 1741 | ||
1742 | #define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ | 1742 | #define LED_MAIL_NO_UNREAD_MAIL 0 /* for SHARP_LED_MAIL_EXISTS */ |
1743 | #define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ | 1743 | #define LED_MAIL_NEWMAIL_EXISTS 1 /* for SHARP_LED_MAIL_EXISTS */ |
1744 | #define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ | 1744 | #define LED_MAIL_UNREAD_MAIL_EX 2 /* for SHARP_LED_MAIL_EXISTS */ |
1745 | 1745 | ||
1746 | // #include <asm/sharp_apm.h> // including kernel headers is evil ... | 1746 | // #include <asm/sharp_apm.h> // including kernel headers is evil ... |
1747 | 1747 | ||
1748 | #define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) | 1748 | #define APM_IOCGEVTSRC OD_IOR( 'A', 203, int ) |
1749 | #define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) | 1749 | #define APM_IOCSEVTSRC OD_IORW( 'A', 204, int ) |
1750 | #define APM_EVT_POWER_BUTTON (1 << 0) | 1750 | #define APM_EVT_POWER_BUTTON (1 << 0) |
1751 | 1751 | ||
1752 | #define FL_IOCTL_STEP_CONTRAST 100 | 1752 | #define FL_IOCTL_STEP_CONTRAST 100 |
1753 | 1753 | ||
1754 | 1754 | ||
1755 | void Zaurus::buzzer ( int sound ) | 1755 | void Zaurus::buzzer ( int sound ) |
1756 | { | 1756 | { |
1757 | #ifndef QT_NO_SOUND | 1757 | #ifndef QT_NO_SOUND |
1758 | QString soundname; | 1758 | QString soundname; |
1759 | 1759 | ||
1760 | // Not all devices have real sound | 1760 | // Not all devices have real sound |
1761 | if ( d->m_model == Model_Zaurus_SLC7x0 | 1761 | if ( d->m_model == Model_Zaurus_SLC7x0 |
1762 | || d->m_model == Model_Zaurus_SLB600 ){ | 1762 | || d->m_model == Model_Zaurus_SLB600 ){ |
1763 | 1763 | ||
1764 | switch ( sound ){ | 1764 | switch ( sound ){ |
1765 | case SHARP_BUZ_SCHEDULE_ALARM: | 1765 | case SHARP_BUZ_SCHEDULE_ALARM: |
1766 | soundname = "alarm"; | 1766 | soundname = "alarm"; |
1767 | break; | 1767 | break; |
1768 | case SHARP_BUZ_TOUCHSOUND: | 1768 | case SHARP_BUZ_TOUCHSOUND: |
1769 | soundname = "touchsound"; | 1769 | soundname = "touchsound"; |
1770 | break; | 1770 | break; |
1771 | case SHARP_BUZ_KEYSOUND: | 1771 | case SHARP_BUZ_KEYSOUND: |
1772 | soundname = "keysound"; | 1772 | soundname = "keysound"; |
1773 | break; | 1773 | break; |
1774 | default: | 1774 | default: |
1775 | soundname = "alarm"; | 1775 | soundname = "alarm"; |
1776 | 1776 | ||
1777 | } | 1777 | } |
1778 | } | 1778 | } |
1779 | 1779 | ||
1780 | // If a soundname is defined, we expect that this device has | 1780 | // If a soundname is defined, we expect that this device has |
1781 | // sound capabilities.. Otherwise we expect to have the buzzer | 1781 | // sound capabilities.. Otherwise we expect to have the buzzer |
1782 | // device.. | 1782 | // device.. |
1783 | if ( !soundname.isEmpty() ){ | 1783 | if ( !soundname.isEmpty() ){ |
1784 | int fd; | 1784 | int fd; |
1785 | int vol; | 1785 | int vol; |
1786 | bool vol_reset = false; | 1786 | bool vol_reset = false; |
1787 | 1787 | ||
1788 | Sound snd ( soundname ); | 1788 | Sound snd ( soundname ); |
1789 | 1789 | ||
1790 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { | 1790 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { |
1791 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { | 1791 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { |
1792 | Config cfg ( "qpe" ); | 1792 | Config cfg ( "qpe" ); |
1793 | cfg. setGroup ( "Volume" ); | 1793 | cfg. setGroup ( "Volume" ); |
1794 | 1794 | ||
1795 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); | 1795 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); |
1796 | if ( volalarm < 0 ) | 1796 | if ( volalarm < 0 ) |
1797 | volalarm = 0; | 1797 | volalarm = 0; |
1798 | else if ( volalarm > 100 ) | 1798 | else if ( volalarm > 100 ) |
1799 | volalarm = 100; | 1799 | volalarm = 100; |
1800 | volalarm |= ( volalarm << 8 ); | 1800 | volalarm |= ( volalarm << 8 ); |
1801 | 1801 | ||
1802 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) | 1802 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) |
1803 | vol_reset = true; | 1803 | vol_reset = true; |
1804 | } | 1804 | } |
1805 | } | 1805 | } |
1806 | 1806 | ||
1807 | snd. play ( ); | 1807 | snd. play ( ); |
1808 | while ( !snd. isFinished ( )) | 1808 | while ( !snd. isFinished ( )) |
1809 | qApp-> processEvents ( ); | 1809 | qApp-> processEvents ( ); |
1810 | 1810 | ||
1811 | if ( fd >= 0 ) { | 1811 | if ( fd >= 0 ) { |
1812 | if ( vol_reset ) | 1812 | if ( vol_reset ) |
1813 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); | 1813 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); |
1814 | ::close ( fd ); | 1814 | ::close ( fd ); |
1815 | } | 1815 | } |
1816 | } else { | 1816 | } else { |
1817 | int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK ); | 1817 | int fd = ::open ( "/dev/sharp_buz", O_WRONLY|O_NONBLOCK ); |
1818 | 1818 | ||
1819 | if ( fd >= 0 ) { | 1819 | if ( fd >= 0 ) { |
1820 | ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); | 1820 | ::ioctl ( fd, SHARP_BUZZER_MAKESOUND, sound ); |
1821 | ::close ( fd ); | 1821 | ::close ( fd ); |
1822 | } | 1822 | } |
1823 | 1823 | ||
1824 | } | 1824 | } |
1825 | #endif | 1825 | #endif |
1826 | } | 1826 | } |
1827 | 1827 | ||
1828 | 1828 | ||
1829 | void Zaurus::alarmSound ( ) | 1829 | void Zaurus::alarmSound ( ) |
1830 | { | 1830 | { |
1831 | buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); | 1831 | buzzer ( SHARP_BUZ_SCHEDULE_ALARM ); |
1832 | } | 1832 | } |
1833 | 1833 | ||
1834 | void Zaurus::touchSound ( ) | 1834 | void Zaurus::touchSound ( ) |
1835 | { | 1835 | { |
1836 | buzzer ( SHARP_BUZ_TOUCHSOUND ); | 1836 | buzzer ( SHARP_BUZ_TOUCHSOUND ); |
1837 | } | 1837 | } |
1838 | 1838 | ||
1839 | void Zaurus::keySound ( ) | 1839 | void Zaurus::keySound ( ) |
1840 | { | 1840 | { |
1841 | buzzer ( SHARP_BUZ_KEYSOUND ); | 1841 | buzzer ( SHARP_BUZ_KEYSOUND ); |
1842 | } | 1842 | } |
1843 | 1843 | ||
1844 | 1844 | ||
1845 | QValueList <OLed> Zaurus::ledList ( ) const | 1845 | QValueList <OLed> Zaurus::ledList ( ) const |
1846 | { | 1846 | { |
1847 | QValueList <OLed> vl; | 1847 | QValueList <OLed> vl; |
1848 | vl << Led_Mail; | 1848 | vl << Led_Mail; |
1849 | return vl; | 1849 | return vl; |
1850 | } | 1850 | } |
1851 | 1851 | ||
1852 | QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const | 1852 | QValueList <OLedState> Zaurus::ledStateList ( OLed l ) const |
1853 | { | 1853 | { |
1854 | QValueList <OLedState> vl; | 1854 | QValueList <OLedState> vl; |
1855 | 1855 | ||
1856 | if ( l == Led_Mail ) | 1856 | if ( l == Led_Mail ) |
1857 | vl << Led_Off << Led_On << Led_BlinkSlow; | 1857 | vl << Led_Off << Led_On << Led_BlinkSlow; |
1858 | return vl; | 1858 | return vl; |
1859 | } | 1859 | } |
1860 | 1860 | ||
1861 | OLedState Zaurus::ledState ( OLed which ) const | 1861 | OLedState Zaurus::ledState ( OLed which ) const |
1862 | { | 1862 | { |
1863 | if ( which == Led_Mail ) | 1863 | if ( which == Led_Mail ) |
1864 | return m_leds [0]; | 1864 | return m_leds [0]; |
1865 | else | 1865 | else |
1866 | return Led_Off; | 1866 | return Led_Off; |
1867 | } | 1867 | } |
1868 | 1868 | ||
1869 | bool Zaurus::setLedState ( OLed which, OLedState st ) | 1869 | bool Zaurus::setLedState ( OLed which, OLedState st ) |
1870 | { | 1870 | { |
1871 | if (!m_embedix) // Currently not supported on non_embedix kernels | 1871 | if (!m_embedix) // Currently not supported on non_embedix kernels |
1872 | return false; | 1872 | return false; |
1873 | 1873 | ||
1874 | static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); | 1874 | static int fd = ::open ( "/dev/sharp_led", O_RDWR|O_NONBLOCK ); |
1875 | 1875 | ||
1876 | if ( which == Led_Mail ) { | 1876 | if ( which == Led_Mail ) { |
1877 | if ( fd >= 0 ) { | 1877 | if ( fd >= 0 ) { |
1878 | struct sharp_led_status leds; | 1878 | struct sharp_led_status leds; |
1879 | ::memset ( &leds, 0, sizeof( leds )); | 1879 | ::memset ( &leds, 0, sizeof( leds )); |
1880 | leds. which = SHARP_LED_MAIL_EXISTS; | 1880 | leds. which = SHARP_LED_MAIL_EXISTS; |
1881 | bool ok = true; | 1881 | bool ok = true; |
1882 | 1882 | ||
1883 | switch ( st ) { | 1883 | switch ( st ) { |
1884 | case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; | 1884 | case Led_Off : leds. status = LED_MAIL_NO_UNREAD_MAIL; break; |
1885 | case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; | 1885 | case Led_On : leds. status = LED_MAIL_NEWMAIL_EXISTS; break; |
1886 | case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; | 1886 | case Led_BlinkSlow: leds. status = LED_MAIL_UNREAD_MAIL_EX; break; |
1887 | default : ok = false; | 1887 | default : ok = false; |
1888 | } | 1888 | } |
1889 | 1889 | ||
1890 | if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { | 1890 | if ( ok && ( ::ioctl ( fd, SHARP_LED_SETSTATUS, &leds ) >= 0 )) { |
1891 | m_leds [0] = st; | 1891 | m_leds [0] = st; |
1892 | return true; | 1892 | return true; |
1893 | } | 1893 | } |
1894 | } | 1894 | } |
1895 | } | 1895 | } |
1896 | return false; | 1896 | return false; |
1897 | } | 1897 | } |
1898 | 1898 | ||
1899 | bool Zaurus::setSoftSuspend ( bool soft ) | 1899 | bool Zaurus::setSoftSuspend ( bool soft ) |
1900 | { | 1900 | { |
1901 | if (!m_embedix) { | 1901 | if (!m_embedix) { |
1902 | /* non-Embedix kernels dont have kernel autosuspend */ | 1902 | /* non-Embedix kernels dont have kernel autosuspend */ |
1903 | return ODevice::setSoftSuspend( soft ); | 1903 | return ODevice::setSoftSuspend( soft ); |
1904 | } | 1904 | } |
1905 | 1905 | ||
1906 | bool res = false; | 1906 | bool res = false; |
1907 | int fd; | 1907 | int fd; |
1908 | 1908 | ||
1909 | if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || | 1909 | if ((( fd = ::open ( "/dev/apm_bios", O_RDWR )) >= 0 ) || |
1910 | (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { | 1910 | (( fd = ::open ( "/dev/misc/apm_bios",O_RDWR )) >= 0 )) { |
1911 | 1911 | ||
1912 | int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources | 1912 | int sources = ::ioctl ( fd, APM_IOCGEVTSRC, 0 ); // get current event sources |
1913 | 1913 | ||
1914 | if ( sources >= 0 ) { | 1914 | if ( sources >= 0 ) { |
1915 | if ( soft ) | 1915 | if ( soft ) |
1916 | sources &= ~APM_EVT_POWER_BUTTON; | 1916 | sources &= ~APM_EVT_POWER_BUTTON; |
1917 | else | 1917 | else |
1918 | sources |= APM_EVT_POWER_BUTTON; | 1918 | sources |= APM_EVT_POWER_BUTTON; |
1919 | 1919 | ||
1920 | if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources | 1920 | if ( ::ioctl ( fd, APM_IOCSEVTSRC, sources ) >= 0 ) // set new event sources |
1921 | res = true; | 1921 | res = true; |
1922 | else | 1922 | else |
1923 | perror ( "APM_IOCGEVTSRC" ); | 1923 | perror ( "APM_IOCGEVTSRC" ); |
1924 | } | 1924 | } |
1925 | else | 1925 | else |
1926 | perror ( "APM_IOCGEVTSRC" ); | 1926 | perror ( "APM_IOCGEVTSRC" ); |
1927 | 1927 | ||
1928 | ::close ( fd ); | 1928 | ::close ( fd ); |
1929 | } | 1929 | } |
1930 | else | 1930 | else |
1931 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); | 1931 | perror ( "/dev/apm_bios or /dev/misc/apm_bios" ); |
1932 | 1932 | ||
1933 | return res; | 1933 | return res; |
1934 | } | 1934 | } |
1935 | 1935 | ||
1936 | 1936 | ||
1937 | bool Zaurus::setDisplayBrightness ( int bright ) | 1937 | bool Zaurus::setDisplayBrightness ( int bright ) |
1938 | { | 1938 | { |
1939 | bool res = false; | 1939 | bool res = false; |
1940 | int fd; | 1940 | int fd; |
1941 | 1941 | ||
1942 | if ( bright > 255 ) | 1942 | if ( bright > 255 ) |
1943 | bright = 255; | 1943 | bright = 255; |
1944 | if ( bright < 0 ) | 1944 | if ( bright < 0 ) |
1945 | bright = 0; | 1945 | bright = 0; |
1946 | 1946 | ||
1947 | if (m_embedix) { | 1947 | if (m_embedix) { |
1948 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { | 1948 | if (( fd = ::open ( "/dev/fl", O_WRONLY )) >= 0 ) { |
1949 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus | 1949 | int bl = ( bright * 4 + 127 ) / 255; // only 4 steps on zaurus |
1950 | if ( bright && !bl ) | 1950 | if ( bright && !bl ) |
1951 | bl = 1; | 1951 | bl = 1; |
1952 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); | 1952 | res = ( ::ioctl ( fd, FL_IOCTL_STEP_CONTRAST, bl ) == 0 ); |
1953 | ::close ( fd ); | 1953 | ::close ( fd ); |
1954 | } | 1954 | } |
1955 | } else { | 1955 | } else { |
1956 | #define FB_BACKLIGHT_SET_BRIGHTNESS _IOW('F', 1, u_int) /* set brightness */ | 1956 | #define FB_BACKLIGHT_SET_BRIGHTNESS _IOW('F', 1, u_int) /* set brightness */ |
1957 | if (( fd = ::open ( "/dev/fb0", O_WRONLY )) >= 0 ) { | 1957 | if (( fd = ::open ( "/dev/fb0", O_WRONLY )) >= 0 ) { |
1958 | res = ( ::ioctl ( fd , FB_BACKLIGHT_SET_BRIGHTNESS, bright ) == 0 ); | 1958 | res = ( ::ioctl ( fd , FB_BACKLIGHT_SET_BRIGHTNESS, bright ) == 0 ); |
1959 | ::close ( fd ); | 1959 | ::close ( fd ); |
1960 | } | 1960 | } |
1961 | } | 1961 | } |
1962 | return res; | 1962 | return res; |
1963 | } | 1963 | } |
1964 | 1964 | ||
1965 | 1965 | ||
1966 | int Zaurus::displayBrightnessResolution ( ) const | 1966 | int Zaurus::displayBrightnessResolution ( ) const |
1967 | { | 1967 | { |
1968 | if (m_embedix) | 1968 | if (m_embedix) |
1969 | return 5; | 1969 | return 5; |
1970 | else | 1970 | else |
1971 | return 256; | 1971 | return 256; |
1972 | } | 1972 | } |
1973 | 1973 | ||
1974 | /************************************************** | 1974 | /************************************************** |
1975 | * | 1975 | * |
1976 | * SIMpad | 1976 | * SIMpad |
1977 | * | 1977 | * |
1978 | **************************************************/ | 1978 | **************************************************/ |
1979 | 1979 | ||
1980 | void SIMpad::init ( ) | 1980 | void SIMpad::init ( ) |
1981 | { | 1981 | { |
1982 | d-> m_vendorstr = "SIEMENS"; | 1982 | d-> m_vendorstr = "SIEMENS"; |
1983 | d-> m_vendor = Vendor_SIEMENS; | 1983 | d-> m_vendor = Vendor_SIEMENS; |
1984 | 1984 | ||
1985 | QFile f ( "/proc/hal/model" ); | 1985 | QFile f ( "/proc/hal/model" ); |
1986 | 1986 | ||
1987 | //TODO Implement model checking | 1987 | //TODO Implement model checking |
1988 | //FIXME For now we assume an SL4 | 1988 | //FIXME For now we assume an SL4 |
1989 | 1989 | ||
1990 | d-> m_modelstr = "SL4"; | 1990 | d-> m_modelstr = "SL4"; |
1991 | d-> m_model = Model_SIMpad_SL4; | 1991 | d-> m_model = Model_SIMpad_SL4; |
1992 | 1992 | ||
1993 | switch ( d-> m_model ) { | 1993 | switch ( d-> m_model ) { |
1994 | default: | 1994 | default: |
1995 | d-> m_rotation = Rot0; | 1995 | d-> m_rotation = Rot0; |
1996 | d-> m_direction = CCW; | 1996 | d-> m_direction = CCW; |
1997 | d-> m_holdtime = 1000; // 1000ms | 1997 | d-> m_holdtime = 1000; // 1000ms |
1998 | 1998 | ||
1999 | break; | 1999 | break; |
2000 | } | 2000 | } |
2001 | 2001 | ||
2002 | f. setName ( "/etc/familiar-version" ); | 2002 | f. setName ( "/etc/familiar-version" ); |
2003 | if ( f. open ( IO_ReadOnly )) { | 2003 | if ( f. open ( IO_ReadOnly )) { |
2004 | d-> m_systemstr = "Familiar"; | 2004 | d-> m_systemstr = "Familiar"; |
2005 | d-> m_system = System_Familiar; | 2005 | d-> m_system = System_Familiar; |
2006 | 2006 | ||
2007 | QTextStream ts ( &f ); | 2007 | QTextStream ts ( &f ); |
2008 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); | 2008 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); |
2009 | 2009 | ||
2010 | f. close ( ); | 2010 | f. close ( ); |
2011 | } else { | 2011 | } else { |
2012 | f. setName ( "/etc/oz_version" ); | 2012 | f. setName ( "/etc/oz_version" ); |
2013 | 2013 | ||
2014 | if ( f. open ( IO_ReadOnly )) { | 2014 | if ( f. open ( IO_ReadOnly )) { |
2015 | d-> m_systemstr = "OpenEmbedded/SIMpad"; | 2015 | d-> m_systemstr = "OpenEmbedded/SIMpad"; |
2016 | d-> m_system = System_OpenZaurus; | 2016 | d-> m_system = System_OpenZaurus; |
2017 | 2017 | ||
2018 | QTextStream ts ( &f ); | 2018 | QTextStream ts ( &f ); |
2019 | ts.setDevice ( &f ); | 2019 | ts.setDevice ( &f ); |
2020 | d-> m_sysverstr = ts. readLine ( ); | 2020 | d-> m_sysverstr = ts. readLine ( ); |
2021 | f. close ( ); | 2021 | f. close ( ); |
2022 | } | 2022 | } |
2023 | } | 2023 | } |
2024 | 2024 | ||
2025 | m_leds [0] = m_leds [1] = Led_Off; | 2025 | m_leds [0] = m_leds [1] = Led_Off; |
2026 | 2026 | ||
2027 | m_power_timer = 0; | 2027 | m_power_timer = 0; |
2028 | 2028 | ||
2029 | } | 2029 | } |
2030 | 2030 | ||
2031 | void SIMpad::initButtons ( ) | 2031 | void SIMpad::initButtons ( ) |
2032 | { | 2032 | { |
2033 | if ( d-> m_buttons ) | 2033 | if ( d-> m_buttons ) |
2034 | return; | 2034 | return; |
2035 | 2035 | ||
2036 | if ( isQWS( ) ) | 2036 | if ( isQWS( ) ) |
2037 | QWSServer::setKeyboardFilter ( this ); | 2037 | QWSServer::setKeyboardFilter ( this ); |
2038 | 2038 | ||
2039 | d-> m_buttons = new QValueList <ODeviceButton>; | 2039 | d-> m_buttons = new QValueList <ODeviceButton>; |
2040 | 2040 | ||
2041 | for ( uint i = 0; i < ( sizeof( simpad_buttons ) / sizeof( s_button )); i++ ) { | 2041 | for ( uint i = 0; i < ( sizeof( simpad_buttons ) / sizeof( s_button )); i++ ) { |
2042 | s_button *sb = simpad_buttons + i; | 2042 | s_button *sb = simpad_buttons + i; |
2043 | ODeviceButton b; | 2043 | ODeviceButton b; |
2044 | 2044 | ||
2045 | if (( sb-> model & d-> m_model ) == d-> m_model ) { | 2045 | if (( sb-> model & d-> m_model ) == d-> m_model ) { |
2046 | b. setKeycode ( sb-> code ); | 2046 | b. setKeycode ( sb-> code ); |
2047 | b. setUserText ( QObject::tr ( "Button", sb-> utext )); | 2047 | b. setUserText ( QObject::tr ( "Button", sb-> utext )); |
2048 | b. setPixmap ( Resource::loadPixmap ( sb-> pix )); | 2048 | b. setPixmap ( Resource::loadPixmap ( sb-> pix )); |
2049 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( sb-> fpressedservice ), sb-> fpressedaction )); | 2049 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( sb-> fpressedservice ), sb-> fpressedaction )); |
2050 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( sb-> fheldservice ), sb-> fheldaction )); | 2050 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( sb-> fheldservice ), sb-> fheldaction )); |
2051 | 2051 | ||
2052 | d-> m_buttons-> append ( b ); | 2052 | d-> m_buttons-> append ( b ); |
2053 | } | 2053 | } |
2054 | } | 2054 | } |
2055 | reloadButtonMapping ( ); | 2055 | reloadButtonMapping ( ); |
2056 | 2056 | ||
2057 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 2057 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
2058 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 2058 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
2059 | } | 2059 | } |
2060 | 2060 | ||
2061 | // SIMpad boardcontrol register CS3 | 2061 | // SIMpad boardcontrol register CS3 |
2062 | #define SIMPAD_BOARDCONTROL "/proc/cs3" | 2062 | #define SIMPAD_BOARDCONTROL "/proc/cs3" |
2063 | #define SIMPAD_VCC_5V_EN 0x0001 // For 5V PCMCIA | 2063 | #define SIMPAD_VCC_5V_EN 0x0001 // For 5V PCMCIA |
2064 | #define SIMPAD_VCC_3V_EN 0x0002 // FOR 3.3V PCMCIA | 2064 | #define SIMPAD_VCC_3V_EN 0x0002 // FOR 3.3V PCMCIA |
2065 | #define SIMPAD_EN1 0x0004 // This is only for EPROM's | 2065 | #define SIMPAD_EN1 0x0004 // This is only for EPROM's |
2066 | #define SIMPAD_EN0 0x0008 // Both should be enable for 3.3V or 5V | 2066 | #define SIMPAD_EN0 0x0008 // Both should be enable for 3.3V or 5V |
2067 | #define SIMPAD_DISPLAY_ON 0x0010 | 2067 | #define SIMPAD_DISPLAY_ON 0x0010 |
2068 | #define SIMPAD_PCMCIA_BUFF_DIS 0x0020 | 2068 | #define SIMPAD_PCMCIA_BUFF_DIS 0x0020 |
2069 | #define SIMPAD_MQ_RESET 0x0040 | 2069 | #define SIMPAD_MQ_RESET 0x0040 |
2070 | #define SIMPAD_PCMCIA_RESET 0x0080 | 2070 | #define SIMPAD_PCMCIA_RESET 0x0080 |
2071 | #define SIMPAD_DECT_POWER_ON 0x0100 | 2071 | #define SIMPAD_DECT_POWER_ON 0x0100 |
2072 | #define SIMPAD_IRDA_SD 0x0200 // Shutdown for powersave | 2072 | #define SIMPAD_IRDA_SD 0x0200 // Shutdown for powersave |
2073 | #define SIMPAD_RS232_ON 0x0400 | 2073 | #define SIMPAD_RS232_ON 0x0400 |
2074 | #define SIMPAD_SD_MEDIAQ 0x0800 // Shutdown for powersave | 2074 | #define SIMPAD_SD_MEDIAQ 0x0800 // Shutdown for powersave |
2075 | #define SIMPAD_LED2_ON 0x1000 | 2075 | #define SIMPAD_LED2_ON 0x1000 |
2076 | #define SIMPAD_IRDA_MODE 0x2000 // Fast/Slow IrDA mode | 2076 | #define SIMPAD_IRDA_MODE 0x2000 // Fast/Slow IrDA mode |
2077 | #define SIMPAD_ENABLE_5V 0x4000 // Enable 5V circuit | 2077 | #define SIMPAD_ENABLE_5V 0x4000 // Enable 5V circuit |
2078 | #define SIMPAD_RESET_SIMCARD 0x8000 | 2078 | #define SIMPAD_RESET_SIMCARD 0x8000 |
2079 | 2079 | ||
2080 | //SIMpad touchscreen backlight strength control | 2080 | //SIMpad touchscreen backlight strength control |
2081 | #define SIMPAD_BACKLIGHT_CONTROL "/proc/driver/mq200/registers/PWM_CONTROL" | 2081 | #define SIMPAD_BACKLIGHT_CONTROL "/proc/driver/mq200/registers/PWM_CONTROL" |
2082 | #define SIMPAD_BACKLIGHT_MASK 0x00a10044 | 2082 | #define SIMPAD_BACKLIGHT_MASK 0x00a10044 |
2083 | 2083 | ||
2084 | QValueList <OLed> SIMpad::ledList ( ) const | 2084 | QValueList <OLed> SIMpad::ledList ( ) const |
2085 | { | 2085 | { |
2086 | QValueList <OLed> vl; | 2086 | QValueList <OLed> vl; |
2087 | vl << Led_Power; //FIXME which LED is LED2 ? The green one or the amber one? | 2087 | vl << Led_Power; //FIXME which LED is LED2 ? The green one or the amber one? |
2088 | //vl << Led_Mail; //TODO find out if LED1 is accessible anyway | 2088 | //vl << Led_Mail; //TODO find out if LED1 is accessible anyway |
2089 | return vl; | 2089 | return vl; |
2090 | } | 2090 | } |
2091 | 2091 | ||
2092 | QValueList <OLedState> SIMpad::ledStateList ( OLed l ) const | 2092 | QValueList <OLedState> SIMpad::ledStateList ( OLed l ) const |
2093 | { | 2093 | { |
2094 | QValueList <OLedState> vl; | 2094 | QValueList <OLedState> vl; |
2095 | 2095 | ||
2096 | if ( l == Led_Power ) //FIXME which LED is LED2 ? The green one or the amber one? | 2096 | if ( l == Led_Power ) //FIXME which LED is LED2 ? The green one or the amber one? |
2097 | vl << Led_Off << Led_On; | 2097 | vl << Led_Off << Led_On; |
2098 | //else if ( l == Led_Mail ) //TODO find out if LED1 is accessible anyway | 2098 | //else if ( l == Led_Mail ) //TODO find out if LED1 is accessible anyway |
2099 | //vl << Led_Off; | 2099 | //vl << Led_Off; |
2100 | return vl; | 2100 | return vl; |
2101 | } | 2101 | } |
2102 | 2102 | ||
2103 | OLedState SIMpad::ledState ( OLed l ) const | 2103 | OLedState SIMpad::ledState ( OLed l ) const |
2104 | { | 2104 | { |
2105 | switch ( l ) { | 2105 | switch ( l ) { |
2106 | case Led_Power: | 2106 | case Led_Power: |
2107 | return m_leds [0]; | 2107 | return m_leds [0]; |
2108 | //case Led_Mail: | 2108 | //case Led_Mail: |
2109 | //return m_leds [1]; | 2109 | //return m_leds [1]; |
2110 | default: | 2110 | default: |
2111 | return Led_Off; | 2111 | return Led_Off; |
2112 | } | 2112 | } |
2113 | } | 2113 | } |
2114 | 2114 | ||
2115 | bool SIMpad::setLedState ( OLed l, OLedState st ) | 2115 | bool SIMpad::setLedState ( OLed l, OLedState st ) |
2116 | { | 2116 | { |
2117 | static int fd = ::open ( SIMPAD_BOARDCONTROL, O_RDWR | O_NONBLOCK ); | 2117 | static int fd = ::open ( SIMPAD_BOARDCONTROL, O_RDWR | O_NONBLOCK ); |
2118 | 2118 | ||
2119 | if ( l == Led_Power ) { | 2119 | if ( l == Led_Power ) { |
2120 | if ( fd >= 0 ) { | 2120 | if ( fd >= 0 ) { |
2121 | LED_IN leds; | 2121 | LED_IN leds; |
2122 | ::memset ( &leds, 0, sizeof( leds )); | 2122 | ::memset ( &leds, 0, sizeof( leds )); |
2123 | leds. TotalTime = 0; | 2123 | leds. TotalTime = 0; |
2124 | leds. OnTime = 0; | 2124 | leds. OnTime = 0; |
2125 | leds. OffTime = 1; | 2125 | leds. OffTime = 1; |
2126 | leds. OffOnBlink = 2; | 2126 | leds. OffOnBlink = 2; |
2127 | 2127 | ||
2128 | switch ( st ) { | 2128 | switch ( st ) { |
2129 | case Led_Off : leds. OffOnBlink = 0; break; | 2129 | case Led_Off : leds. OffOnBlink = 0; break; |
2130 | case Led_On : leds. OffOnBlink = 1; break; | 2130 | case Led_On : leds. OffOnBlink = 1; break; |
2131 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; | 2131 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; |
2132 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; | 2132 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; |
2133 | } | 2133 | } |
2134 | 2134 | ||
2135 | { | 2135 | { |
2136 | /*TODO Implement this like that: | 2136 | /*TODO Implement this like that: |
2137 | read from cs3 | 2137 | read from cs3 |
2138 | && with SIMPAD_LED2_ON | 2138 | && with SIMPAD_LED2_ON |
2139 | write to cs3 */ | 2139 | write to cs3 */ |
2140 | m_leds [0] = st; | 2140 | m_leds [0] = st; |
2141 | return true; | 2141 | return true; |
2142 | } | 2142 | } |
2143 | } | 2143 | } |
2144 | } | 2144 | } |
2145 | return false; | 2145 | return false; |
2146 | } | 2146 | } |
2147 | 2147 | ||
2148 | 2148 | ||
2149 | bool SIMpad::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) | 2149 | bool SIMpad::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) |
2150 | { | 2150 | { |
2151 | //TODO | 2151 | //TODO |
2152 | return false; | 2152 | return false; |
2153 | } | 2153 | } |
2154 | 2154 | ||
2155 | void SIMpad::timerEvent ( QTimerEvent * ) | 2155 | void SIMpad::timerEvent ( QTimerEvent * ) |
2156 | { | 2156 | { |
2157 | killTimer ( m_power_timer ); | 2157 | killTimer ( m_power_timer ); |
2158 | m_power_timer = 0; | 2158 | m_power_timer = 0; |
2159 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); | 2159 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); |
2160 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); | 2160 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); |
2161 | } | 2161 | } |
2162 | 2162 | ||
2163 | 2163 | ||
2164 | void SIMpad::alarmSound ( ) | 2164 | void SIMpad::alarmSound ( ) |
2165 | { | 2165 | { |
2166 | #ifndef QT_NO_SOUND | 2166 | #ifndef QT_NO_SOUND |
2167 | static Sound snd ( "alarm" ); | 2167 | static Sound snd ( "alarm" ); |
2168 | int fd; | 2168 | int fd; |
2169 | int vol; | 2169 | int vol; |
2170 | bool vol_reset = false; | 2170 | bool vol_reset = false; |
2171 | 2171 | ||
2172 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { | 2172 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { |
2173 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { | 2173 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { |
2174 | Config cfg ( "qpe" ); | 2174 | Config cfg ( "qpe" ); |
2175 | cfg. setGroup ( "Volume" ); | 2175 | cfg. setGroup ( "Volume" ); |
2176 | 2176 | ||
2177 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); | 2177 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); |
2178 | if ( volalarm < 0 ) | 2178 | if ( volalarm < 0 ) |
2179 | volalarm = 0; | 2179 | volalarm = 0; |
2180 | else if ( volalarm > 100 ) | 2180 | else if ( volalarm > 100 ) |
2181 | volalarm = 100; | 2181 | volalarm = 100; |
2182 | volalarm |= ( volalarm << 8 ); | 2182 | volalarm |= ( volalarm << 8 ); |
2183 | 2183 | ||
2184 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) | 2184 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) |
2185 | vol_reset = true; | 2185 | vol_reset = true; |
2186 | } | 2186 | } |
2187 | } | 2187 | } |
2188 | 2188 | ||
2189 | snd. play ( ); | 2189 | snd. play ( ); |
2190 | while ( !snd. isFinished ( )) | 2190 | while ( !snd. isFinished ( )) |
2191 | qApp-> processEvents ( ); | 2191 | qApp-> processEvents ( ); |
2192 | 2192 | ||
2193 | if ( fd >= 0 ) { | 2193 | if ( fd >= 0 ) { |
2194 | if ( vol_reset ) | 2194 | if ( vol_reset ) |
2195 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); | 2195 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); |
2196 | ::close ( fd ); | 2196 | ::close ( fd ); |
2197 | } | 2197 | } |
2198 | #endif | 2198 | #endif |
2199 | } | 2199 | } |
2200 | 2200 | ||
2201 | 2201 | ||
2202 | bool SIMpad::suspend ( ) // Must override because SIMpad does NOT have apm | 2202 | bool SIMpad::suspend ( ) // Must override because SIMpad does NOT have apm |
2203 | { | 2203 | { |
2204 | qDebug( "ODevice for SIMpad: suspend()" ); | 2204 | qDebug( "ODevice for SIMpad: suspend()" ); |
2205 | if ( !isQWS( ) ) // only qwsserver is allowed to suspend | 2205 | if ( !isQWS( ) ) // only qwsserver is allowed to suspend |
2206 | return false; | 2206 | return false; |
2207 | 2207 | ||
2208 | bool res = false; | 2208 | bool res = false; |
2209 | 2209 | ||
2210 | struct timeval tvs, tvn; | 2210 | struct timeval tvs, tvn; |
2211 | ::gettimeofday ( &tvs, 0 ); | 2211 | ::gettimeofday ( &tvs, 0 ); |
2212 | 2212 | ||
2213 | ::sync ( ); // flush fs caches | 2213 | ::sync ( ); // flush fs caches |
2214 | res = ( ::system ( "cat /dev/fb/0 >/tmp/.buffer; echo > /proc/sys/pm/suspend; cat /tmp/.buffer >/dev/fb/0" ) == 0 ); //TODO make better :) | 2214 | res = ( ::system ( "cat /dev/fb/0 >/tmp/.buffer; echo > /proc/sys/pm/suspend; cat /tmp/.buffer >/dev/fb/0" ) == 0 ); //TODO make better :) |
2215 | 2215 | ||
2216 | return res; | 2216 | return res; |
2217 | } | 2217 | } |
2218 | 2218 | ||
2219 | 2219 | ||
2220 | bool SIMpad::setSoftSuspend ( bool soft ) | 2220 | bool SIMpad::setSoftSuspend ( bool soft ) |
2221 | { | 2221 | { |
2222 | qDebug( "ODevice for SIMpad: UNHANDLED setSoftSuspend(%s)", soft? "on" : "off" ); | 2222 | qDebug( "ODevice for SIMpad: UNHANDLED setSoftSuspend(%s)", soft? "on" : "off" ); |
2223 | return false; | 2223 | return false; |
2224 | } | 2224 | } |
2225 | 2225 | ||
2226 | 2226 | ||
2227 | bool SIMpad::setDisplayStatus ( bool on ) | 2227 | bool SIMpad::setDisplayStatus ( bool on ) |
2228 | { | 2228 | { |
2229 | qDebug( "ODevice for SIMpad: setDisplayStatus(%s)", on? "on" : "off" ); | 2229 | qDebug( "ODevice for SIMpad: setDisplayStatus(%s)", on? "on" : "off" ); |
2230 | 2230 | ||
2231 | bool res = false; | 2231 | bool res = false; |
2232 | int fd; | 2232 | int fd; |
2233 | 2233 | ||
2234 | QString cmdline = QString().sprintf( "echo %s > /proc/cs3", on ? "0xd41a" : "0xd40a" ); //TODO make better :) | 2234 | QString cmdline = QString().sprintf( "echo %s > /proc/cs3", on ? "0xd41a" : "0xd40a" ); //TODO make better :) |
2235 | 2235 | ||
2236 | res = ( ::system( (const char*) cmdline ) == 0 ); | 2236 | res = ( ::system( (const char*) cmdline ) == 0 ); |
2237 | 2237 | ||
2238 | return res; | 2238 | return res; |
2239 | } | 2239 | } |
2240 | 2240 | ||
2241 | 2241 | ||
2242 | bool SIMpad::setDisplayBrightness ( int bright ) | 2242 | bool SIMpad::setDisplayBrightness ( int bright ) |
2243 | { | 2243 | { |
2244 | qDebug( "ODevice for SIMpad: setDisplayBrightness( %d )", bright ); | 2244 | qDebug( "ODevice for SIMpad: setDisplayBrightness( %d )", bright ); |
2245 | bool res = false; | 2245 | bool res = false; |
2246 | int fd; | 2246 | int fd; |
2247 | 2247 | ||
2248 | if ( bright > 255 ) | 2248 | if ( bright > 255 ) |
2249 | bright = 255; | 2249 | bright = 255; |
2250 | if ( bright < 1 ) | 2250 | if ( bright < 1 ) |
2251 | bright = 0; | 2251 | bright = 0; |
2252 | 2252 | ||
2253 | if (( fd = ::open ( SIMPAD_BACKLIGHT_CONTROL, O_WRONLY )) >= 0 ) { | 2253 | if (( fd = ::open ( SIMPAD_BACKLIGHT_CONTROL, O_WRONLY )) >= 0 ) { |
2254 | int value = 255 - bright; | 2254 | int value = 255 - bright; |
2255 | const int mask = SIMPAD_BACKLIGHT_MASK; | 2255 | const int mask = SIMPAD_BACKLIGHT_MASK; |
2256 | value = value << 8; | 2256 | value = value << 8; |
2257 | value += mask; | 2257 | value += mask; |
2258 | char writeCommand[100]; | 2258 | char writeCommand[100]; |
2259 | const int count = sprintf( writeCommand, "0x%x\n", value ); | 2259 | const int count = sprintf( writeCommand, "0x%x\n", value ); |
2260 | res = ( ::write ( fd, writeCommand, count ) != -1 ); | 2260 | res = ( ::write ( fd, writeCommand, count ) != -1 ); |
2261 | ::close ( fd ); | 2261 | ::close ( fd ); |
2262 | } | 2262 | } |
2263 | return res; | 2263 | return res; |
2264 | } | 2264 | } |
2265 | 2265 | ||
2266 | 2266 | ||
2267 | int SIMpad::displayBrightnessResolution ( ) const | 2267 | int SIMpad::displayBrightnessResolution ( ) const |
2268 | { | 2268 | { |
2269 | return 255; // All SIMpad models share the same display | 2269 | return 255; // All SIMpad models share the same display |
2270 | } | 2270 | } |
2271 | 2271 | ||
2272 | /************************************************** | 2272 | /************************************************** |
2273 | * | 2273 | * |
2274 | * Ramses | 2274 | * Ramses |
2275 | * | 2275 | * |
2276 | **************************************************/ | 2276 | **************************************************/ |
2277 | 2277 | ||
2278 | void Ramses::init() | 2278 | void Ramses::init() |
2279 | { | 2279 | { |
2280 | d->m_vendorstr = "M und N"; | 2280 | d->m_vendorstr = "M und N"; |
2281 | d->m_vendor = Vendor_MundN; | 2281 | d->m_vendor = Vendor_MundN; |
2282 | 2282 | ||
2283 | QFile f("/proc/sys/board/ramses"); | 2283 | QFile f("/proc/sys/board/ramses"); |
2284 | 2284 | ||
2285 | d->m_modelstr = "Ramses"; | 2285 | d->m_modelstr = "Ramses"; |
2286 | d->m_model = Model_Ramses_MNCI; | 2286 | d->m_model = Model_Ramses_MNCI; |
2287 | 2287 | ||
2288 | d->m_rotation = Rot0; | 2288 | d->m_rotation = Rot0; |
2289 | d->m_holdtime = 1000; | 2289 | d->m_holdtime = 1000; |
2290 | 2290 | ||
2291 | f.setName("/etc/oz_version"); | 2291 | f.setName("/etc/oz_version"); |
2292 | 2292 | ||
2293 | if (f.open(IO_ReadOnly)) { | 2293 | if (f.open(IO_ReadOnly)) { |
2294 | d->m_systemstr = "OpenEmbedded/Ramses"; | 2294 | d->m_systemstr = "OpenEmbedded/Ramses"; |