-rw-r--r-- | libopie/odevice.cpp | 9 | ||||
-rw-r--r-- | libopie2/opiecore/device/odevice_ipaq.cpp | 8 |
2 files changed, 15 insertions, 2 deletions
diff --git a/libopie/odevice.cpp b/libopie/odevice.cpp index 35d6cb4..c5a916b 100644 --- a/libopie/odevice.cpp +++ b/libopie/odevice.cpp | |||
@@ -949,777 +949,784 @@ void ODevice::reloadButtonMapping ( ) | |||
949 | pm = cfg. readEntry ( "PressedActionMessage" ). latin1 ( ); | 949 | pm = cfg. readEntry ( "PressedActionMessage" ). latin1 ( ); |
950 | // pdata = decodeBase64 ( buttonFile. readEntry ( "PressedActionArgs" )); | 950 | // pdata = decodeBase64 ( buttonFile. readEntry ( "PressedActionArgs" )); |
951 | 951 | ||
952 | hch = cfg. readEntry ( "HeldActionChannel" ). latin1 ( ); | 952 | hch = cfg. readEntry ( "HeldActionChannel" ). latin1 ( ); |
953 | hm = cfg. readEntry ( "HeldActionMessage" ). latin1 ( ); | 953 | hm = cfg. readEntry ( "HeldActionMessage" ). latin1 ( ); |
954 | // hdata = decodeBase64 ( buttonFile. readEntry ( "HeldActionArgs" )); | 954 | // hdata = decodeBase64 ( buttonFile. readEntry ( "HeldActionArgs" )); |
955 | } | 955 | } |
956 | 956 | ||
957 | b. setPressedAction ( OQCopMessage ( pch, pm, pdata )); | 957 | b. setPressedAction ( OQCopMessage ( pch, pm, pdata )); |
958 | 958 | ||
959 | b. setHeldAction ( OQCopMessage ( hch, hm, hdata )); | 959 | b. setHeldAction ( OQCopMessage ( hch, hm, hdata )); |
960 | } | 960 | } |
961 | } | 961 | } |
962 | 962 | ||
963 | void ODevice::remapPressedAction ( int button, const OQCopMessage &action ) | 963 | void ODevice::remapPressedAction ( int button, const OQCopMessage &action ) |
964 | { | 964 | { |
965 | initButtons ( ); | 965 | initButtons ( ); |
966 | 966 | ||
967 | QString mb_chan; | 967 | QString mb_chan; |
968 | 968 | ||
969 | if ( button >= (int) d-> m_buttons-> count ( )) | 969 | if ( button >= (int) d-> m_buttons-> count ( )) |
970 | return; | 970 | return; |
971 | 971 | ||
972 | ODeviceButton &b = ( *d-> m_buttons ) [button]; | 972 | ODeviceButton &b = ( *d-> m_buttons ) [button]; |
973 | b. setPressedAction ( action ); | 973 | b. setPressedAction ( action ); |
974 | 974 | ||
975 | mb_chan=b. pressedAction ( ). channel ( ); | 975 | mb_chan=b. pressedAction ( ). channel ( ); |
976 | 976 | ||
977 | Config buttonFile ( "ButtonSettings" ); | 977 | Config buttonFile ( "ButtonSettings" ); |
978 | buttonFile. setGroup ( "Button" + QString::number ( button )); | 978 | buttonFile. setGroup ( "Button" + QString::number ( button )); |
979 | buttonFile. writeEntry ( "PressedActionChannel", (const char*) mb_chan); | 979 | buttonFile. writeEntry ( "PressedActionChannel", (const char*) mb_chan); |
980 | buttonFile. writeEntry ( "PressedActionMessage", (const char*) b. pressedAction ( ). message ( )); | 980 | buttonFile. writeEntry ( "PressedActionMessage", (const char*) b. pressedAction ( ). message ( )); |
981 | 981 | ||
982 | //buttonFile. writeEntry ( "PressedActionArgs", encodeBase64 ( b. pressedAction ( ). data ( ))); | 982 | //buttonFile. writeEntry ( "PressedActionArgs", encodeBase64 ( b. pressedAction ( ). data ( ))); |
983 | 983 | ||
984 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); | 984 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); |
985 | } | 985 | } |
986 | 986 | ||
987 | void ODevice::remapHeldAction ( int button, const OQCopMessage &action ) | 987 | void ODevice::remapHeldAction ( int button, const OQCopMessage &action ) |
988 | { | 988 | { |
989 | initButtons ( ); | 989 | initButtons ( ); |
990 | 990 | ||
991 | if ( button >= (int) d-> m_buttons-> count ( )) | 991 | if ( button >= (int) d-> m_buttons-> count ( )) |
992 | return; | 992 | return; |
993 | 993 | ||
994 | ODeviceButton &b = ( *d-> m_buttons ) [button]; | 994 | ODeviceButton &b = ( *d-> m_buttons ) [button]; |
995 | b. setHeldAction ( action ); | 995 | b. setHeldAction ( action ); |
996 | 996 | ||
997 | Config buttonFile ( "ButtonSettings" ); | 997 | Config buttonFile ( "ButtonSettings" ); |
998 | buttonFile. setGroup ( "Button" + QString::number ( button )); | 998 | buttonFile. setGroup ( "Button" + QString::number ( button )); |
999 | buttonFile. writeEntry ( "HeldActionChannel", (const char *) b. heldAction ( ). channel ( )); | 999 | buttonFile. writeEntry ( "HeldActionChannel", (const char *) b. heldAction ( ). channel ( )); |
1000 | buttonFile. writeEntry ( "HeldActionMessage", (const char *) b. heldAction ( ). message ( )); | 1000 | buttonFile. writeEntry ( "HeldActionMessage", (const char *) b. heldAction ( ). message ( )); |
1001 | 1001 | ||
1002 | //buttonFile. writeEntry ( "HeldActionArgs", decodeBase64 ( b. heldAction ( ). data ( ))); | 1002 | //buttonFile. writeEntry ( "HeldActionArgs", decodeBase64 ( b. heldAction ( ). data ( ))); |
1003 | 1003 | ||
1004 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); | 1004 | QCopEnvelope ( "QPE/System", "deviceButtonMappingChanged()" ); |
1005 | } | 1005 | } |
1006 | void ODevice::virtual_hook(int, void* ){ | 1006 | void ODevice::virtual_hook(int, void* ){ |
1007 | 1007 | ||
1008 | } | 1008 | } |
1009 | 1009 | ||
1010 | /************************************************** | 1010 | /************************************************** |
1011 | * | 1011 | * |
1012 | * Yopy 3500/3700 | 1012 | * Yopy 3500/3700 |
1013 | * | 1013 | * |
1014 | **************************************************/ | 1014 | **************************************************/ |
1015 | 1015 | ||
1016 | bool Yopy::isYopy ( ) | 1016 | bool Yopy::isYopy ( ) |
1017 | { | 1017 | { |
1018 | QFile f( "/proc/cpuinfo" ); | 1018 | QFile f( "/proc/cpuinfo" ); |
1019 | if ( f. open ( IO_ReadOnly ) ) { | 1019 | if ( f. open ( IO_ReadOnly ) ) { |
1020 | QTextStream ts ( &f ); | 1020 | QTextStream ts ( &f ); |
1021 | QString line; | 1021 | QString line; |
1022 | while( line = ts. readLine ( ) ) { | 1022 | while( line = ts. readLine ( ) ) { |
1023 | if ( line. left ( 8 ) == "Hardware" ) { | 1023 | if ( line. left ( 8 ) == "Hardware" ) { |
1024 | int loc = line. find ( ":" ); | 1024 | int loc = line. find ( ":" ); |
1025 | if ( loc != -1 ) { | 1025 | if ( loc != -1 ) { |
1026 | QString model = | 1026 | QString model = |
1027 | line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1027 | line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1028 | return ( model == "Yopy" ); | 1028 | return ( model == "Yopy" ); |
1029 | } | 1029 | } |
1030 | } | 1030 | } |
1031 | } | 1031 | } |
1032 | } | 1032 | } |
1033 | return false; | 1033 | return false; |
1034 | } | 1034 | } |
1035 | 1035 | ||
1036 | void Yopy::init ( ) | 1036 | void Yopy::init ( ) |
1037 | { | 1037 | { |
1038 | d-> m_vendorstr = "G.Mate"; | 1038 | d-> m_vendorstr = "G.Mate"; |
1039 | d-> m_vendor = Vendor_GMate; | 1039 | d-> m_vendor = Vendor_GMate; |
1040 | d-> m_modelstr = "Yopy3700"; | 1040 | d-> m_modelstr = "Yopy3700"; |
1041 | d-> m_model = Model_Yopy_3700; | 1041 | d-> m_model = Model_Yopy_3700; |
1042 | d-> m_rotation = Rot0; | 1042 | d-> m_rotation = Rot0; |
1043 | 1043 | ||
1044 | d-> m_systemstr = "Linupy"; | 1044 | d-> m_systemstr = "Linupy"; |
1045 | d-> m_system = System_Linupy; | 1045 | d-> m_system = System_Linupy; |
1046 | 1046 | ||
1047 | QFile f ( "/etc/issue" ); | 1047 | QFile f ( "/etc/issue" ); |
1048 | if ( f. open ( IO_ReadOnly )) { | 1048 | if ( f. open ( IO_ReadOnly )) { |
1049 | QTextStream ts ( &f ); | 1049 | QTextStream ts ( &f ); |
1050 | ts.readLine(); | 1050 | ts.readLine(); |
1051 | d-> m_sysverstr = ts. readLine ( ); | 1051 | d-> m_sysverstr = ts. readLine ( ); |
1052 | f. close ( ); | 1052 | f. close ( ); |
1053 | } | 1053 | } |
1054 | } | 1054 | } |
1055 | 1055 | ||
1056 | void Yopy::initButtons ( ) | 1056 | void Yopy::initButtons ( ) |
1057 | { | 1057 | { |
1058 | if ( d-> m_buttons ) | 1058 | if ( d-> m_buttons ) |
1059 | return; | 1059 | return; |
1060 | 1060 | ||
1061 | d-> m_buttons = new QValueList <ODeviceButton>; | 1061 | d-> m_buttons = new QValueList <ODeviceButton>; |
1062 | 1062 | ||
1063 | for (uint i = 0; i < ( sizeof( yopy_buttons ) / sizeof(yopy_button)); i++) { | 1063 | for (uint i = 0; i < ( sizeof( yopy_buttons ) / sizeof(yopy_button)); i++) { |
1064 | 1064 | ||
1065 | yopy_button *ib = yopy_buttons + i; | 1065 | yopy_button *ib = yopy_buttons + i; |
1066 | 1066 | ||
1067 | ODeviceButton b; | 1067 | ODeviceButton b; |
1068 | 1068 | ||
1069 | b. setKeycode ( ib-> code ); | 1069 | b. setKeycode ( ib-> code ); |
1070 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); | 1070 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); |
1071 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); | 1071 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); |
1072 | b. setFactoryPresetPressedAction | 1072 | b. setFactoryPresetPressedAction |
1073 | (OQCopMessage(makeChannel(ib->fpressedservice), ib->fpressedaction)); | 1073 | (OQCopMessage(makeChannel(ib->fpressedservice), ib->fpressedaction)); |
1074 | b. setFactoryPresetHeldAction | 1074 | b. setFactoryPresetHeldAction |
1075 | (OQCopMessage(makeChannel(ib->fheldservice), ib->fheldaction)); | 1075 | (OQCopMessage(makeChannel(ib->fheldservice), ib->fheldaction)); |
1076 | 1076 | ||
1077 | d-> m_buttons-> append ( b ); | 1077 | d-> m_buttons-> append ( b ); |
1078 | } | 1078 | } |
1079 | reloadButtonMapping ( ); | 1079 | reloadButtonMapping ( ); |
1080 | 1080 | ||
1081 | QCopChannel *sysch = new QCopChannel("QPE/System", this); | 1081 | QCopChannel *sysch = new QCopChannel("QPE/System", this); |
1082 | connect(sysch, SIGNAL(received(const QCString &, const QByteArray & )), | 1082 | connect(sysch, SIGNAL(received(const QCString &, const QByteArray & )), |
1083 | this, SLOT(systemMessage(const QCString &, const QByteArray & ))); | 1083 | this, SLOT(systemMessage(const QCString &, const QByteArray & ))); |
1084 | } | 1084 | } |
1085 | 1085 | ||
1086 | bool Yopy::suspend() | 1086 | bool Yopy::suspend() |
1087 | { | 1087 | { |
1088 | /* Opie for Yopy does not implement its own power management at the | 1088 | /* Opie for Yopy does not implement its own power management at the |
1089 | moment. The public version runs parallel to X, and relies on the | 1089 | moment. The public version runs parallel to X, and relies on the |
1090 | existing power management features. */ | 1090 | existing power management features. */ |
1091 | return false; | 1091 | return false; |
1092 | } | 1092 | } |
1093 | 1093 | ||
1094 | bool Yopy::setDisplayBrightness(int bright) | 1094 | bool Yopy::setDisplayBrightness(int bright) |
1095 | { | 1095 | { |
1096 | /* The code here works, but is disabled as the current version runs | 1096 | /* The code here works, but is disabled as the current version runs |
1097 | parallel to X, and relies on the existing backlight demon. */ | 1097 | parallel to X, and relies on the existing backlight demon. */ |
1098 | #if 0 | 1098 | #if 0 |
1099 | if ( QFile::exists("/proc/sys/pm/light") ) { | 1099 | if ( QFile::exists("/proc/sys/pm/light") ) { |
1100 | int fd = ::open("/proc/sys/pm/light", O_WRONLY); | 1100 | int fd = ::open("/proc/sys/pm/light", O_WRONLY); |
1101 | if (fd >= 0 ) { | 1101 | if (fd >= 0 ) { |
1102 | if (bright) | 1102 | if (bright) |
1103 | ::write(fd, "1\n", 2); | 1103 | ::write(fd, "1\n", 2); |
1104 | else | 1104 | else |
1105 | ::write(fd, "0\n", 2); | 1105 | ::write(fd, "0\n", 2); |
1106 | ::close(fd); | 1106 | ::close(fd); |
1107 | return true; | 1107 | return true; |
1108 | } | 1108 | } |
1109 | } | 1109 | } |
1110 | #endif | 1110 | #endif |
1111 | return false; | 1111 | return false; |
1112 | } | 1112 | } |
1113 | 1113 | ||
1114 | int Yopy::displayBrightnessResolution() const | 1114 | int Yopy::displayBrightnessResolution() const |
1115 | { | 1115 | { |
1116 | return 2; | 1116 | return 2; |
1117 | } | 1117 | } |
1118 | 1118 | ||
1119 | /************************************************** | 1119 | /************************************************** |
1120 | * | 1120 | * |
1121 | * iPAQ | 1121 | * iPAQ |
1122 | * | 1122 | * |
1123 | **************************************************/ | 1123 | **************************************************/ |
1124 | 1124 | ||
1125 | void iPAQ::init ( ) | 1125 | void iPAQ::init ( ) |
1126 | { | 1126 | { |
1127 | d-> m_vendorstr = "HP"; | 1127 | d-> m_vendorstr = "HP"; |
1128 | d-> m_vendor = Vendor_HP; | 1128 | d-> m_vendor = Vendor_HP; |
1129 | 1129 | ||
1130 | QFile f ( "/proc/hal/model" ); | 1130 | QFile f ( "/proc/hal/model" ); |
1131 | 1131 | ||
1132 | if ( f. open ( IO_ReadOnly )) { | 1132 | if ( f. open ( IO_ReadOnly )) { |
1133 | QTextStream ts ( &f ); | 1133 | QTextStream ts ( &f ); |
1134 | 1134 | ||
1135 | d-> m_modelstr = "H" + ts. readLine ( ); | 1135 | d-> m_modelstr = "H" + ts. readLine ( ); |
1136 | 1136 | ||
1137 | if ( d-> m_modelstr == "H3100" ) | 1137 | if ( d-> m_modelstr == "H3100" ) |
1138 | d-> m_model = Model_iPAQ_H31xx; | 1138 | d-> m_model = Model_iPAQ_H31xx; |
1139 | else if ( d-> m_modelstr == "H3600" ) | 1139 | else if ( d-> m_modelstr == "H3600" ) |
1140 | d-> m_model = Model_iPAQ_H36xx; | 1140 | d-> m_model = Model_iPAQ_H36xx; |
1141 | else if ( d-> m_modelstr == "H3700" ) | 1141 | else if ( d-> m_modelstr == "H3700" ) |
1142 | d-> m_model = Model_iPAQ_H37xx; | 1142 | d-> m_model = Model_iPAQ_H37xx; |
1143 | else if ( d-> m_modelstr == "H3800" ) | 1143 | else if ( d-> m_modelstr == "H3800" ) |
1144 | d-> m_model = Model_iPAQ_H38xx; | 1144 | d-> m_model = Model_iPAQ_H38xx; |
1145 | else if ( d-> m_modelstr == "H3900" ) | 1145 | else if ( d-> m_modelstr == "H3900" ) |
1146 | d-> m_model = Model_iPAQ_H39xx; | 1146 | d-> m_model = Model_iPAQ_H39xx; |
1147 | else if ( d-> m_modelstr == "H5400" ) | 1147 | else if ( d-> m_modelstr == "H5400" ) |
1148 | d-> m_model = Model_iPAQ_H5xxx; | 1148 | d-> m_model = Model_iPAQ_H5xxx; |
1149 | else | 1149 | else |
1150 | d-> m_model = Model_Unknown; | 1150 | d-> m_model = Model_Unknown; |
1151 | 1151 | ||
1152 | f. close ( ); | 1152 | f. close ( ); |
1153 | } | 1153 | } |
1154 | 1154 | ||
1155 | switch ( d-> m_model ) { | 1155 | switch ( d-> m_model ) { |
1156 | case Model_iPAQ_H31xx: | 1156 | case Model_iPAQ_H31xx: |
1157 | case Model_iPAQ_H38xx: | 1157 | case Model_iPAQ_H38xx: |
1158 | d-> m_rotation = Rot90; | 1158 | d-> m_rotation = Rot90; |
1159 | break; | 1159 | break; |
1160 | case Model_iPAQ_H36xx: | 1160 | case Model_iPAQ_H36xx: |
1161 | case Model_iPAQ_H37xx: | 1161 | case Model_iPAQ_H37xx: |
1162 | case Model_iPAQ_H39xx: | 1162 | case Model_iPAQ_H39xx: |
1163 | 1163 | ||
1164 | default: | 1164 | default: |
1165 | d-> m_rotation = Rot270; | 1165 | d-> m_rotation = Rot270; |
1166 | break; | 1166 | break; |
1167 | case Model_iPAQ_H5xxx: | 1167 | case Model_iPAQ_H5xxx: |
1168 | d-> m_rotation = Rot0; | 1168 | d-> m_rotation = Rot0; |
1169 | } | 1169 | } |
1170 | 1170 | ||
1171 | f. setName ( "/etc/familiar-version" ); | 1171 | f. setName ( "/etc/familiar-version" ); |
1172 | if ( f. open ( IO_ReadOnly )) { | 1172 | if ( f. open ( IO_ReadOnly )) { |
1173 | d-> m_systemstr = "Familiar"; | 1173 | d-> m_systemstr = "Familiar"; |
1174 | d-> m_system = System_Familiar; | 1174 | d-> m_system = System_Familiar; |
1175 | 1175 | ||
1176 | QTextStream ts ( &f ); | 1176 | QTextStream ts ( &f ); |
1177 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); | 1177 | d-> m_sysverstr = ts. readLine ( ). mid ( 10 ); |
1178 | 1178 | ||
1179 | f. close ( ); | 1179 | f. close ( ); |
1180 | } else { | 1180 | } else { |
1181 | f. setName ( "/etc/oz_version" ); | 1181 | f. setName ( "/etc/oz_version" ); |
1182 | 1182 | ||
1183 | if ( f. open ( IO_ReadOnly )) { | 1183 | if ( f. open ( IO_ReadOnly )) { |
1184 | d-> m_systemstr = "OpenEmbedded/iPaq"; | 1184 | d-> m_systemstr = "OpenEmbedded/iPaq"; |
1185 | d-> m_system = System_Familiar; | 1185 | d-> m_system = System_Familiar; |
1186 | 1186 | ||
1187 | QTextStream ts ( &f ); | 1187 | QTextStream ts ( &f ); |
1188 | ts.setDevice ( &f ); | 1188 | ts.setDevice ( &f ); |
1189 | d-> m_sysverstr = ts. readLine ( ); | 1189 | d-> m_sysverstr = ts. readLine ( ); |
1190 | f. close ( ); | 1190 | f. close ( ); |
1191 | } | 1191 | } |
1192 | } | 1192 | } |
1193 | 1193 | ||
1194 | 1194 | ||
1195 | 1195 | ||
1196 | 1196 | ||
1197 | 1197 | ||
1198 | m_leds [0] = m_leds [1] = Led_Off; | 1198 | m_leds [0] = m_leds [1] = Led_Off; |
1199 | 1199 | ||
1200 | m_power_timer = 0; | 1200 | m_power_timer = 0; |
1201 | 1201 | ||
1202 | } | 1202 | } |
1203 | 1203 | ||
1204 | void iPAQ::initButtons ( ) | 1204 | void iPAQ::initButtons ( ) |
1205 | { | 1205 | { |
1206 | if ( d-> m_buttons ) | 1206 | if ( d-> m_buttons ) |
1207 | return; | 1207 | return; |
1208 | 1208 | ||
1209 | if ( isQWS( ) ) | 1209 | if ( isQWS( ) ) |
1210 | QWSServer::setKeyboardFilter ( this ); | 1210 | QWSServer::setKeyboardFilter ( this ); |
1211 | 1211 | ||
1212 | d-> m_buttons = new QValueList <ODeviceButton>; | 1212 | d-> m_buttons = new QValueList <ODeviceButton>; |
1213 | 1213 | ||
1214 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { | 1214 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { |
1215 | i_button *ib = ipaq_buttons + i; | 1215 | i_button *ib = ipaq_buttons + i; |
1216 | ODeviceButton b; | 1216 | ODeviceButton b; |
1217 | 1217 | ||
1218 | if (( ib-> model & d-> m_model ) == d-> m_model ) { | 1218 | if (( ib-> model & d-> m_model ) == d-> m_model ) { |
1219 | b. setKeycode ( ib-> code ); | 1219 | b. setKeycode ( ib-> code ); |
1220 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); | 1220 | b. setUserText ( QObject::tr ( "Button", ib-> utext )); |
1221 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); | 1221 | b. setPixmap ( Resource::loadPixmap ( ib-> pix )); |
1222 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction )); | 1222 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib-> fpressedservice ), ib-> fpressedaction )); |
1223 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction )); | 1223 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib-> fheldservice ), ib-> fheldaction )); |
1224 | 1224 | ||
1225 | d-> m_buttons-> append ( b ); | 1225 | d-> m_buttons-> append ( b ); |
1226 | } | 1226 | } |
1227 | } | 1227 | } |
1228 | reloadButtonMapping ( ); | 1228 | reloadButtonMapping ( ); |
1229 | 1229 | ||
1230 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 1230 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
1231 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 1231 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
1232 | } | 1232 | } |
1233 | 1233 | ||
1234 | 1234 | ||
1235 | //#include <linux/h3600_ts.h> // including kernel headers is evil ... | 1235 | //#include <linux/h3600_ts.h> // including kernel headers is evil ... |
1236 | 1236 | ||
1237 | typedef struct { | 1237 | typedef struct { |
1238 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ | 1238 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ |
1239 | unsigned char TotalTime; /* Units of 5 seconds */ | 1239 | unsigned char TotalTime; /* Units of 5 seconds */ |
1240 | unsigned char OnTime; /* units of 100m/s */ | 1240 | unsigned char OnTime; /* units of 100m/s */ |
1241 | unsigned char OffTime; /* units of 100m/s */ | 1241 | unsigned char OffTime; /* units of 100m/s */ |
1242 | } LED_IN; | 1242 | } LED_IN; |
1243 | 1243 | ||
1244 | typedef struct { | 1244 | typedef struct { |
1245 | unsigned char mode; | 1245 | unsigned char mode; |
1246 | unsigned char pwr; | 1246 | unsigned char pwr; |
1247 | unsigned char brightness; | 1247 | unsigned char brightness; |
1248 | } FLITE_IN; | 1248 | } FLITE_IN; |
1249 | 1249 | ||
1250 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) | 1250 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) |
1251 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) | 1251 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) |
1252 | 1252 | ||
1253 | 1253 | ||
1254 | QValueList <OLed> iPAQ::ledList ( ) const | 1254 | QValueList <OLed> iPAQ::ledList ( ) const |
1255 | { | 1255 | { |
1256 | QValueList <OLed> vl; | 1256 | QValueList <OLed> vl; |
1257 | vl << Led_Power; | 1257 | vl << Led_Power; |
1258 | 1258 | ||
1259 | if ( d-> m_model == Model_iPAQ_H38xx ) | 1259 | if ( d-> m_model == Model_iPAQ_H38xx ) |
1260 | vl << Led_BlueTooth; | 1260 | vl << Led_BlueTooth; |
1261 | return vl; | 1261 | return vl; |
1262 | } | 1262 | } |
1263 | 1263 | ||
1264 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const | 1264 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const |
1265 | { | 1265 | { |
1266 | QValueList <OLedState> vl; | 1266 | QValueList <OLedState> vl; |
1267 | 1267 | ||
1268 | if ( l == Led_Power ) | 1268 | if ( l == Led_Power ) |
1269 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; | 1269 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; |
1270 | else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) | 1270 | else if ( l == Led_BlueTooth && d-> m_model == Model_iPAQ_H38xx ) |
1271 | vl << Led_Off; // << Led_On << ??? | 1271 | vl << Led_Off; // << Led_On << ??? |
1272 | 1272 | ||
1273 | return vl; | 1273 | return vl; |
1274 | } | 1274 | } |
1275 | 1275 | ||
1276 | OLedState iPAQ::ledState ( OLed l ) const | 1276 | OLedState iPAQ::ledState ( OLed l ) const |
1277 | { | 1277 | { |
1278 | switch ( l ) { | 1278 | switch ( l ) { |
1279 | case Led_Power: | 1279 | case Led_Power: |
1280 | return m_leds [0]; | 1280 | return m_leds [0]; |
1281 | case Led_BlueTooth: | 1281 | case Led_BlueTooth: |
1282 | return m_leds [1]; | 1282 | return m_leds [1]; |
1283 | default: | 1283 | default: |
1284 | return Led_Off; | 1284 | return Led_Off; |
1285 | } | 1285 | } |
1286 | } | 1286 | } |
1287 | 1287 | ||
1288 | bool iPAQ::setLedState ( OLed l, OLedState st ) | 1288 | bool iPAQ::setLedState ( OLed l, OLedState st ) |
1289 | { | 1289 | { |
1290 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); | 1290 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); |
1291 | 1291 | ||
1292 | if ( l == Led_Power ) { | 1292 | if ( l == Led_Power ) { |
1293 | if ( fd >= 0 ) { | 1293 | if ( fd >= 0 ) { |
1294 | LED_IN leds; | 1294 | LED_IN leds; |
1295 | ::memset ( &leds, 0, sizeof( leds )); | 1295 | ::memset ( &leds, 0, sizeof( leds )); |
1296 | leds. TotalTime = 0; | 1296 | leds. TotalTime = 0; |
1297 | leds. OnTime = 0; | 1297 | leds. OnTime = 0; |
1298 | leds. OffTime = 1; | 1298 | leds. OffTime = 1; |
1299 | leds. OffOnBlink = 2; | 1299 | leds. OffOnBlink = 2; |
1300 | 1300 | ||
1301 | switch ( st ) { | 1301 | switch ( st ) { |
1302 | case Led_Off : leds. OffOnBlink = 0; break; | 1302 | case Led_Off : leds. OffOnBlink = 0; break; |
1303 | case Led_On : leds. OffOnBlink = 1; break; | 1303 | case Led_On : leds. OffOnBlink = 1; break; |
1304 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; | 1304 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; |
1305 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; | 1305 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; |
1306 | } | 1306 | } |
1307 | 1307 | ||
1308 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { | 1308 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { |
1309 | m_leds [0] = st; | 1309 | m_leds [0] = st; |
1310 | return true; | 1310 | return true; |
1311 | } | 1311 | } |
1312 | } | 1312 | } |
1313 | } | 1313 | } |
1314 | return false; | 1314 | return false; |
1315 | } | 1315 | } |
1316 | 1316 | ||
1317 | 1317 | ||
1318 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) | 1318 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) |
1319 | { | 1319 | { |
1320 | int newkeycode = keycode; | 1320 | int newkeycode = keycode; |
1321 | 1321 | ||
1322 | switch ( keycode ) { | 1322 | switch ( keycode ) { |
1323 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key | 1323 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key |
1324 | case HardKey_Menu: { | 1324 | case HardKey_Menu: { |
1325 | if (( d-> m_model == Model_iPAQ_H38xx ) || | 1325 | if (( d-> m_model == Model_iPAQ_H38xx ) || |
1326 | ( d-> m_model == Model_iPAQ_H39xx ) || | 1326 | ( d-> m_model == Model_iPAQ_H39xx ) || |
1327 | ( d-> m_model == Model_iPAQ_H5xxx)) { | 1327 | ( d-> m_model == Model_iPAQ_H5xxx)) { |
1328 | newkeycode = HardKey_Mail; | 1328 | newkeycode = HardKey_Mail; |
1329 | } | 1329 | } |
1330 | break; | 1330 | break; |
1331 | } | 1331 | } |
1332 | 1332 | ||
1333 | // Rotate cursor keys 180° | 1333 | // Rotate cursor keys 180° or 270° |
1334 | case Key_Left : | 1334 | case Key_Left : |
1335 | case Key_Right: | 1335 | case Key_Right: |
1336 | case Key_Up : | 1336 | case Key_Up : |
1337 | case Key_Down : { | 1337 | case Key_Down : { |
1338 | |||
1338 | if (( d-> m_model == Model_iPAQ_H31xx ) || | 1339 | if (( d-> m_model == Model_iPAQ_H31xx ) || |
1339 | ( d-> m_model == Model_iPAQ_H38xx )) { | 1340 | ( d-> m_model == Model_iPAQ_H38xx )) { |
1340 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; | 1341 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; |
1341 | } | 1342 | } |
1343 | // Rotate the cursor keys by 270° | ||
1344 | // keycode - Key_Left = position of the button starting from left clockwise | ||
1345 | // add the rotation to it and modolo. No we've the original offset | ||
1346 | // add the offset to the Key_Left key | ||
1347 | if ( d-> m_model == Model_iPAQ_H5xxx ) | ||
1348 | newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4; | ||
1342 | break; | 1349 | break; |
1343 | } | 1350 | } |
1344 | 1351 | ||
1345 | // map Power Button short/long press to F34/F35 | 1352 | // map Power Button short/long press to F34/F35 |
1346 | case Key_SysReq: { | 1353 | case Key_SysReq: { |
1347 | if ( isPress ) { | 1354 | if ( isPress ) { |
1348 | if ( m_power_timer ) | 1355 | if ( m_power_timer ) |
1349 | killTimer ( m_power_timer ); | 1356 | killTimer ( m_power_timer ); |
1350 | m_power_timer = startTimer ( 500 ); | 1357 | m_power_timer = startTimer ( 500 ); |
1351 | } | 1358 | } |
1352 | else if ( m_power_timer ) { | 1359 | else if ( m_power_timer ) { |
1353 | killTimer ( m_power_timer ); | 1360 | killTimer ( m_power_timer ); |
1354 | m_power_timer = 0; | 1361 | m_power_timer = 0; |
1355 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); | 1362 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); |
1356 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); | 1363 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); |
1357 | } | 1364 | } |
1358 | newkeycode = Key_unknown; | 1365 | newkeycode = Key_unknown; |
1359 | break; | 1366 | break; |
1360 | } | 1367 | } |
1361 | } | 1368 | } |
1362 | 1369 | ||
1363 | if ( newkeycode != keycode ) { | 1370 | if ( newkeycode != keycode ) { |
1364 | if ( newkeycode != Key_unknown ) | 1371 | if ( newkeycode != Key_unknown ) |
1365 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); | 1372 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); |
1366 | return true; | 1373 | return true; |
1367 | } | 1374 | } |
1368 | else | 1375 | else |
1369 | return false; | 1376 | return false; |
1370 | } | 1377 | } |
1371 | 1378 | ||
1372 | void iPAQ::timerEvent ( QTimerEvent * ) | 1379 | void iPAQ::timerEvent ( QTimerEvent * ) |
1373 | { | 1380 | { |
1374 | killTimer ( m_power_timer ); | 1381 | killTimer ( m_power_timer ); |
1375 | m_power_timer = 0; | 1382 | m_power_timer = 0; |
1376 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); | 1383 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); |
1377 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); | 1384 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); |
1378 | } | 1385 | } |
1379 | 1386 | ||
1380 | 1387 | ||
1381 | void iPAQ::alarmSound ( ) | 1388 | void iPAQ::alarmSound ( ) |
1382 | { | 1389 | { |
1383 | #ifndef QT_NO_SOUND | 1390 | #ifndef QT_NO_SOUND |
1384 | static Sound snd ( "alarm" ); | 1391 | static Sound snd ( "alarm" ); |
1385 | int fd; | 1392 | int fd; |
1386 | int vol; | 1393 | int vol; |
1387 | bool vol_reset = false; | 1394 | bool vol_reset = false; |
1388 | 1395 | ||
1389 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { | 1396 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { |
1390 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { | 1397 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { |
1391 | Config cfg ( "qpe" ); | 1398 | Config cfg ( "qpe" ); |
1392 | cfg. setGroup ( "Volume" ); | 1399 | cfg. setGroup ( "Volume" ); |
1393 | 1400 | ||
1394 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); | 1401 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); |
1395 | if ( volalarm < 0 ) | 1402 | if ( volalarm < 0 ) |
1396 | volalarm = 0; | 1403 | volalarm = 0; |
1397 | else if ( volalarm > 100 ) | 1404 | else if ( volalarm > 100 ) |
1398 | volalarm = 100; | 1405 | volalarm = 100; |
1399 | volalarm |= ( volalarm << 8 ); | 1406 | volalarm |= ( volalarm << 8 ); |
1400 | 1407 | ||
1401 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) | 1408 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) |
1402 | vol_reset = true; | 1409 | vol_reset = true; |
1403 | } | 1410 | } |
1404 | } | 1411 | } |
1405 | 1412 | ||
1406 | snd. play ( ); | 1413 | snd. play ( ); |
1407 | while ( !snd. isFinished ( )) | 1414 | while ( !snd. isFinished ( )) |
1408 | qApp-> processEvents ( ); | 1415 | qApp-> processEvents ( ); |
1409 | 1416 | ||
1410 | if ( fd >= 0 ) { | 1417 | if ( fd >= 0 ) { |
1411 | if ( vol_reset ) | 1418 | if ( vol_reset ) |
1412 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); | 1419 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); |
1413 | ::close ( fd ); | 1420 | ::close ( fd ); |
1414 | } | 1421 | } |
1415 | #endif | 1422 | #endif |
1416 | } | 1423 | } |
1417 | 1424 | ||
1418 | 1425 | ||
1419 | bool iPAQ::setSoftSuspend ( bool soft ) | 1426 | bool iPAQ::setSoftSuspend ( bool soft ) |
1420 | { | 1427 | { |
1421 | bool res = false; | 1428 | bool res = false; |
1422 | int fd; | 1429 | int fd; |
1423 | 1430 | ||
1424 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { | 1431 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { |
1425 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) | 1432 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) |
1426 | res = true; | 1433 | res = true; |
1427 | else | 1434 | else |
1428 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); | 1435 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); |
1429 | 1436 | ||
1430 | ::close ( fd ); | 1437 | ::close ( fd ); |
1431 | } | 1438 | } |
1432 | else | 1439 | else |
1433 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); | 1440 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); |
1434 | 1441 | ||
1435 | return res; | 1442 | return res; |
1436 | } | 1443 | } |
1437 | 1444 | ||
1438 | 1445 | ||
1439 | bool iPAQ::setDisplayBrightness ( int bright ) | 1446 | bool iPAQ::setDisplayBrightness ( int bright ) |
1440 | { | 1447 | { |
1441 | bool res = false; | 1448 | bool res = false; |
1442 | int fd; | 1449 | int fd; |
1443 | 1450 | ||
1444 | if ( bright > 255 ) | 1451 | if ( bright > 255 ) |
1445 | bright = 255; | 1452 | bright = 255; |
1446 | if ( bright < 0 ) | 1453 | if ( bright < 0 ) |
1447 | bright = 0; | 1454 | bright = 0; |
1448 | 1455 | ||
1449 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { | 1456 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { |
1450 | FLITE_IN bl; | 1457 | FLITE_IN bl; |
1451 | bl. mode = 1; | 1458 | bl. mode = 1; |
1452 | bl. pwr = bright ? 1 : 0; | 1459 | bl. pwr = bright ? 1 : 0; |
1453 | bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; | 1460 | bl. brightness = ( bright * ( displayBrightnessResolution ( ) - 1 ) + 127 ) / 255; |
1454 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); | 1461 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); |
1455 | ::close ( fd ); | 1462 | ::close ( fd ); |
1456 | } | 1463 | } |
1457 | return res; | 1464 | return res; |
1458 | } | 1465 | } |
1459 | 1466 | ||
1460 | int iPAQ::displayBrightnessResolution ( ) const | 1467 | int iPAQ::displayBrightnessResolution ( ) const |
1461 | { | 1468 | { |
1462 | switch ( model ( )) { | 1469 | switch ( model ( )) { |
1463 | case Model_iPAQ_H31xx: | 1470 | case Model_iPAQ_H31xx: |
1464 | case Model_iPAQ_H36xx: | 1471 | case Model_iPAQ_H36xx: |
1465 | case Model_iPAQ_H37xx: | 1472 | case Model_iPAQ_H37xx: |
1466 | return 128; // really 256, but >128 could damage the LCD | 1473 | return 128; // really 256, but >128 could damage the LCD |
1467 | 1474 | ||
1468 | case Model_iPAQ_H38xx: | 1475 | case Model_iPAQ_H38xx: |
1469 | case Model_iPAQ_H39xx: | 1476 | case Model_iPAQ_H39xx: |
1470 | return 64; | 1477 | return 64; |
1471 | case Model_iPAQ_H5xxx: | 1478 | case Model_iPAQ_H5xxx: |
1472 | return 255; | 1479 | return 255; |
1473 | 1480 | ||
1474 | default: | 1481 | default: |
1475 | return 2; | 1482 | return 2; |
1476 | } | 1483 | } |
1477 | } | 1484 | } |
1478 | 1485 | ||
1479 | 1486 | ||
1480 | bool iPAQ::hasLightSensor ( ) const | 1487 | bool iPAQ::hasLightSensor ( ) const |
1481 | { | 1488 | { |
1482 | return true; | 1489 | return true; |
1483 | } | 1490 | } |
1484 | 1491 | ||
1485 | int iPAQ::readLightSensor ( ) | 1492 | int iPAQ::readLightSensor ( ) |
1486 | { | 1493 | { |
1487 | int fd; | 1494 | int fd; |
1488 | int val = -1; | 1495 | int val = -1; |
1489 | 1496 | ||
1490 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 1497 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
1491 | char buffer [8]; | 1498 | char buffer [8]; |
1492 | 1499 | ||
1493 | if ( ::read ( fd, buffer, 5 ) == 5 ) { | 1500 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
1494 | char *endptr; | 1501 | char *endptr; |
1495 | 1502 | ||
1496 | buffer [4] = 0; | 1503 | buffer [4] = 0; |
1497 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 1504 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
1498 | 1505 | ||
1499 | if ( *endptr != 0 ) | 1506 | if ( *endptr != 0 ) |
1500 | val = -1; | 1507 | val = -1; |
1501 | } | 1508 | } |
1502 | ::close ( fd ); | 1509 | ::close ( fd ); |
1503 | } | 1510 | } |
1504 | 1511 | ||
1505 | return val; | 1512 | return val; |
1506 | } | 1513 | } |
1507 | 1514 | ||
1508 | int iPAQ::lightSensorResolution ( ) const | 1515 | int iPAQ::lightSensorResolution ( ) const |
1509 | { | 1516 | { |
1510 | return 256; | 1517 | return 256; |
1511 | } | 1518 | } |
1512 | 1519 | ||
1513 | /************************************************** | 1520 | /************************************************** |
1514 | * | 1521 | * |
1515 | * Zaurus | 1522 | * Zaurus |
1516 | * | 1523 | * |
1517 | **************************************************/ | 1524 | **************************************************/ |
1518 | 1525 | ||
1519 | // Check whether this device is the sharp zaurus.. | 1526 | // Check whether this device is the sharp zaurus.. |
1520 | // FIXME This gets unnecessary complicated. We should think about splitting the Zaurus | 1527 | // FIXME This gets unnecessary complicated. We should think about splitting the Zaurus |
1521 | // class up into individual classes. We need three classes | 1528 | // class up into individual classes. We need three classes |
1522 | // | 1529 | // |
1523 | // Zaurus-Collie (SA-model w/ 320x240 lcd, for SL5500 and SL5000) | 1530 | // Zaurus-Collie (SA-model w/ 320x240 lcd, for SL5500 and SL5000) |
1524 | // Zaurus-Poodle (PXA-model w/ 320x240 lcd, for SL5600) | 1531 | // Zaurus-Poodle (PXA-model w/ 320x240 lcd, for SL5600) |
1525 | // Zaurus-Corgi (PXA-model w/ 640x480 lcd, for C700, C750, C760, and C860) | 1532 | // Zaurus-Corgi (PXA-model w/ 640x480 lcd, for C700, C750, C760, and C860) |
1526 | // | 1533 | // |
1527 | // Only question right now is: Do we really need to do it? Because as soon | 1534 | // Only question right now is: Do we really need to do it? Because as soon |
1528 | // as the OpenZaurus kernel is ready, there will be a unified interface for all | 1535 | // as the OpenZaurus kernel is ready, there will be a unified interface for all |
1529 | // Zaurus models (concerning apm, backlight, buttons, etc.) | 1536 | // Zaurus models (concerning apm, backlight, buttons, etc.) |
1530 | // | 1537 | // |
1531 | // Comments? - mickeyl. | 1538 | // Comments? - mickeyl. |
1532 | 1539 | ||
1533 | bool Zaurus::isZaurus() | 1540 | bool Zaurus::isZaurus() |
1534 | { | 1541 | { |
1535 | 1542 | ||
1536 | // If the special devices by embedix exist, it is quite simple: it is a Zaurus ! | 1543 | // If the special devices by embedix exist, it is quite simple: it is a Zaurus ! |
1537 | if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){ | 1544 | if ( QFile::exists ( "/dev/sharp_buz" ) || QFile::exists ( "/dev/sharp_led" ) ){ |
1538 | return true; | 1545 | return true; |
1539 | } | 1546 | } |
1540 | 1547 | ||
1541 | // On non-embedix kernels, we have to look closer. | 1548 | // On non-embedix kernels, we have to look closer. |
1542 | bool is_zaurus = false; | 1549 | bool is_zaurus = false; |
1543 | QFile f ( "/proc/cpuinfo" ); | 1550 | QFile f ( "/proc/cpuinfo" ); |
1544 | if ( f. open ( IO_ReadOnly ) ) { | 1551 | if ( f. open ( IO_ReadOnly ) ) { |
1545 | QString model; | 1552 | QString model; |
1546 | QFile f ( "/proc/cpuinfo" ); | 1553 | QFile f ( "/proc/cpuinfo" ); |
1547 | 1554 | ||
1548 | QTextStream ts ( &f ); | 1555 | QTextStream ts ( &f ); |
1549 | QString line; | 1556 | QString line; |
1550 | while( line = ts. readLine ( ) ) { | 1557 | while( line = ts. readLine ( ) ) { |
1551 | if ( line. left ( 8 ) == "Hardware" ) | 1558 | if ( line. left ( 8 ) == "Hardware" ) |
1552 | break; | 1559 | break; |
1553 | } | 1560 | } |
1554 | int loc = line. find ( ":" ); | 1561 | int loc = line. find ( ":" ); |
1555 | if ( loc != -1 ) | 1562 | if ( loc != -1 ) |
1556 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1563 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1557 | 1564 | ||
1558 | if ( model == "Sharp-Collie" | 1565 | if ( model == "Sharp-Collie" |
1559 | || model == "Collie" | 1566 | || model == "Collie" |
1560 | || model == "SHARP Corgi" | 1567 | || model == "SHARP Corgi" |
1561 | || model == "SHARP Shepherd" | 1568 | || model == "SHARP Shepherd" |
1562 | || model == "SHARP Poodle" | 1569 | || model == "SHARP Poodle" |
1563 | || model == "SHARP Husky" | 1570 | || model == "SHARP Husky" |
1564 | ) | 1571 | ) |
1565 | is_zaurus = true; | 1572 | is_zaurus = true; |
1566 | 1573 | ||
1567 | } | 1574 | } |
1568 | return is_zaurus; | 1575 | return is_zaurus; |
1569 | } | 1576 | } |
1570 | 1577 | ||
1571 | 1578 | ||
1572 | void Zaurus::init ( ) | 1579 | void Zaurus::init ( ) |
1573 | { | 1580 | { |
1574 | d-> m_vendorstr = "Sharp"; | 1581 | d-> m_vendorstr = "Sharp"; |
1575 | d-> m_vendor = Vendor_Sharp; | 1582 | d-> m_vendor = Vendor_Sharp; |
1576 | m_embedix = true; // Not openzaurus means: It has an embedix kernel ! | 1583 | m_embedix = true; // Not openzaurus means: It has an embedix kernel ! |
1577 | 1584 | ||
1578 | // QFile f ( "/proc/filesystems" ); | 1585 | // QFile f ( "/proc/filesystems" ); |
1579 | QString model; | 1586 | QString model; |
1580 | 1587 | ||
1581 | // It isn't a good idea to check the system configuration to | 1588 | // It isn't a good idea to check the system configuration to |
1582 | // detect the distribution ! | 1589 | // detect the distribution ! |
1583 | // Otherwise it may happen that any other distribution is detected as openzaurus, just | 1590 | // Otherwise it may happen that any other distribution is detected as openzaurus, just |
1584 | // because it uses a jffs2 filesystem.. | 1591 | // because it uses a jffs2 filesystem.. |
1585 | // (eilers) | 1592 | // (eilers) |
1586 | // if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { | 1593 | // if ( f. open ( IO_ReadOnly ) && ( QTextStream ( &f ). read ( ). find ( "\tjffs2\n" ) >= 0 )) { |
1587 | QFile f ("/etc/oz_version"); | 1594 | QFile f ("/etc/oz_version"); |
1588 | if ( f.exists() ){ | 1595 | if ( f.exists() ){ |
1589 | d-> m_vendorstr = "OpenZaurus Team"; | 1596 | d-> m_vendorstr = "OpenZaurus Team"; |
1590 | d-> m_systemstr = "OpenZaurus"; | 1597 | d-> m_systemstr = "OpenZaurus"; |
1591 | d-> m_system = System_OpenZaurus; | 1598 | d-> m_system = System_OpenZaurus; |
1592 | 1599 | ||
1593 | if ( f. open ( IO_ReadOnly )) { | 1600 | if ( f. open ( IO_ReadOnly )) { |
1594 | QTextStream ts ( &f ); | 1601 | QTextStream ts ( &f ); |
1595 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); | 1602 | d-> m_sysverstr = ts. readLine ( );//. mid ( 10 ); |
1596 | f. close ( ); | 1603 | f. close ( ); |
1597 | } | 1604 | } |
1598 | 1605 | ||
1599 | // Openzaurus sometimes uses the embedix kernel! | 1606 | // Openzaurus sometimes uses the embedix kernel! |
1600 | // => Check whether this is an embedix kernel | 1607 | // => Check whether this is an embedix kernel |
1601 | FILE *uname = popen("uname -r", "r"); | 1608 | FILE *uname = popen("uname -r", "r"); |
1602 | QString line; | 1609 | QString line; |
1603 | if ( f.open(IO_ReadOnly, uname) ) { | 1610 | if ( f.open(IO_ReadOnly, uname) ) { |
1604 | QTextStream ts ( &f ); | 1611 | QTextStream ts ( &f ); |
1605 | line = ts. readLine ( ); | 1612 | line = ts. readLine ( ); |
1606 | int loc = line. find ( "embedix" ); | 1613 | int loc = line. find ( "embedix" ); |
1607 | if ( loc != -1 ) | 1614 | if ( loc != -1 ) |
1608 | m_embedix = true; | 1615 | m_embedix = true; |
1609 | else | 1616 | else |
1610 | m_embedix = false; | 1617 | m_embedix = false; |
1611 | f. close ( ); | 1618 | f. close ( ); |
1612 | } | 1619 | } |
1613 | pclose(uname); | 1620 | pclose(uname); |
1614 | } | 1621 | } |
1615 | else { | 1622 | else { |
1616 | d-> m_systemstr = "Zaurus"; | 1623 | d-> m_systemstr = "Zaurus"; |
1617 | d-> m_system = System_Zaurus; | 1624 | d-> m_system = System_Zaurus; |
1618 | } | 1625 | } |
1619 | 1626 | ||
1620 | f. setName ( "/proc/cpuinfo" ); | 1627 | f. setName ( "/proc/cpuinfo" ); |
1621 | if ( f. open ( IO_ReadOnly ) ) { | 1628 | if ( f. open ( IO_ReadOnly ) ) { |
1622 | QTextStream ts ( &f ); | 1629 | QTextStream ts ( &f ); |
1623 | QString line; | 1630 | QString line; |
1624 | while( line = ts. readLine ( ) ) { | 1631 | while( line = ts. readLine ( ) ) { |
1625 | if ( line. left ( 8 ) == "Hardware" ) | 1632 | if ( line. left ( 8 ) == "Hardware" ) |
1626 | break; | 1633 | break; |
1627 | } | 1634 | } |
1628 | int loc = line. find ( ":" ); | 1635 | int loc = line. find ( ":" ); |
1629 | if ( loc != -1 ) | 1636 | if ( loc != -1 ) |
1630 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); | 1637 | model = line. mid ( loc + 2 ). simplifyWhiteSpace( ); |
1631 | } | 1638 | } |
1632 | 1639 | ||
1633 | if ( model == "SHARP Corgi" ) { | 1640 | if ( model == "SHARP Corgi" ) { |
1634 | d-> m_model = Model_Zaurus_SLC7x0; | 1641 | d-> m_model = Model_Zaurus_SLC7x0; |
1635 | d-> m_modelstr = "Zaurus SL-C700"; | 1642 | d-> m_modelstr = "Zaurus SL-C700"; |
1636 | } else if ( model == "SHARP Shepherd" ) { | 1643 | } else if ( model == "SHARP Shepherd" ) { |
1637 | d-> m_model = Model_Zaurus_SLC7x0; | 1644 | d-> m_model = Model_Zaurus_SLC7x0; |
1638 | d-> m_modelstr = "Zaurus SL-C750"; | 1645 | d-> m_modelstr = "Zaurus SL-C750"; |
1639 | } else if ( model == "SHARP Husky" ) { | 1646 | } else if ( model == "SHARP Husky" ) { |
1640 | d-> m_model = Model_Zaurus_SLC7x0; | 1647 | d-> m_model = Model_Zaurus_SLC7x0; |
1641 | d-> m_modelstr = "Zaurus SL-C760"; | 1648 | d-> m_modelstr = "Zaurus SL-C760"; |
1642 | } else if ( model == "SHARP Poodle" ) { | 1649 | } else if ( model == "SHARP Poodle" ) { |
1643 | d-> m_model = Model_Zaurus_SLB600; | 1650 | d-> m_model = Model_Zaurus_SLB600; |
1644 | d-> m_modelstr = "Zaurus SL-B500 or SL-5600"; | 1651 | d-> m_modelstr = "Zaurus SL-B500 or SL-5600"; |
1645 | } else if ( model == "Sharp-Collie" || model == "Collie" ) { | 1652 | } else if ( model == "Sharp-Collie" || model == "Collie" ) { |
1646 | d-> m_model = Model_Zaurus_SL5500; | 1653 | d-> m_model = Model_Zaurus_SL5500; |
1647 | d-> m_modelstr = "Zaurus SL-5500 or SL-5000d"; | 1654 | d-> m_modelstr = "Zaurus SL-5500 or SL-5000d"; |
1648 | } else { | 1655 | } else { |
1649 | d-> m_model = Model_Zaurus_SL5500; | 1656 | d-> m_model = Model_Zaurus_SL5500; |
1650 | d-> m_modelstr = "Zaurus (Model unknown)"; | 1657 | d-> m_modelstr = "Zaurus (Model unknown)"; |
1651 | } | 1658 | } |
1652 | 1659 | ||
1653 | bool flipstate = false; | 1660 | bool flipstate = false; |
1654 | switch ( d-> m_model ) { | 1661 | switch ( d-> m_model ) { |
1655 | case Model_Zaurus_SLA300: | 1662 | case Model_Zaurus_SLA300: |
1656 | d-> m_rotation = Rot0; | 1663 | d-> m_rotation = Rot0; |
1657 | break; | 1664 | break; |
1658 | case Model_Zaurus_SLC7x0: | 1665 | case Model_Zaurus_SLC7x0: |
1659 | d-> m_rotation = rotation(); | 1666 | d-> m_rotation = rotation(); |
1660 | d-> m_direction = direction(); | 1667 | d-> m_direction = direction(); |
1661 | break; | 1668 | break; |
1662 | case Model_Zaurus_SLB600: | 1669 | case Model_Zaurus_SLB600: |
1663 | case Model_Zaurus_SL5500: | 1670 | case Model_Zaurus_SL5500: |
1664 | case Model_Zaurus_SL5000: | 1671 | case Model_Zaurus_SL5000: |
1665 | default: | 1672 | default: |
1666 | d-> m_rotation = Rot270; | 1673 | d-> m_rotation = Rot270; |
1667 | break; | 1674 | break; |
1668 | } | 1675 | } |
1669 | m_leds [0] = Led_Off; | 1676 | m_leds [0] = Led_Off; |
1670 | } | 1677 | } |
1671 | 1678 | ||
1672 | void Zaurus::initButtons ( ) | 1679 | void Zaurus::initButtons ( ) |
1673 | { | 1680 | { |
1674 | if ( d-> m_buttons ) | 1681 | if ( d-> m_buttons ) |
1675 | return; | 1682 | return; |
1676 | 1683 | ||
1677 | d-> m_buttons = new QValueList <ODeviceButton>; | 1684 | d-> m_buttons = new QValueList <ODeviceButton>; |
1678 | 1685 | ||
1679 | struct z_button * pz_buttons; | 1686 | struct z_button * pz_buttons; |
1680 | int buttoncount; | 1687 | int buttoncount; |
1681 | switch ( d-> m_model ) { | 1688 | switch ( d-> m_model ) { |
1682 | case Model_Zaurus_SLC7x0: | 1689 | case Model_Zaurus_SLC7x0: |
1683 | pz_buttons = z_buttons_c700; | 1690 | pz_buttons = z_buttons_c700; |
1684 | buttoncount = ARRAY_SIZE(z_buttons_c700); | 1691 | buttoncount = ARRAY_SIZE(z_buttons_c700); |
1685 | break; | 1692 | break; |
1686 | default: | 1693 | default: |
1687 | pz_buttons = z_buttons; | 1694 | pz_buttons = z_buttons; |
1688 | buttoncount = ARRAY_SIZE(z_buttons); | 1695 | buttoncount = ARRAY_SIZE(z_buttons); |
1689 | break; | 1696 | break; |
1690 | } | 1697 | } |
1691 | 1698 | ||
1692 | for ( int i = 0; i < buttoncount; i++ ) { | 1699 | for ( int i = 0; i < buttoncount; i++ ) { |
1693 | struct z_button *zb = pz_buttons + i; | 1700 | struct z_button *zb = pz_buttons + i; |
1694 | ODeviceButton b; | 1701 | ODeviceButton b; |
1695 | 1702 | ||
1696 | b. setKeycode ( zb-> code ); | 1703 | b. setKeycode ( zb-> code ); |
1697 | b. setUserText ( QObject::tr ( "Button", zb-> utext )); | 1704 | b. setUserText ( QObject::tr ( "Button", zb-> utext )); |
1698 | b. setPixmap ( Resource::loadPixmap ( zb-> pix )); | 1705 | b. setPixmap ( Resource::loadPixmap ( zb-> pix )); |
1699 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), | 1706 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( zb-> fpressedservice ), |
1700 | zb-> fpressedaction )); | 1707 | zb-> fpressedaction )); |
1701 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), | 1708 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( zb-> fheldservice ), |
1702 | zb-> fheldaction )); | 1709 | zb-> fheldaction )); |
1703 | 1710 | ||
1704 | d-> m_buttons-> append ( b ); | 1711 | d-> m_buttons-> append ( b ); |
1705 | } | 1712 | } |
1706 | 1713 | ||
1707 | reloadButtonMapping ( ); | 1714 | reloadButtonMapping ( ); |
1708 | 1715 | ||
1709 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 1716 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
1710 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), | 1717 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), |
1711 | this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 1718 | this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
1712 | } | 1719 | } |
1713 | 1720 | ||
1714 | #include <unistd.h> | 1721 | #include <unistd.h> |
1715 | #include <fcntl.h> | 1722 | #include <fcntl.h> |
1716 | #include <sys/ioctl.h> | 1723 | #include <sys/ioctl.h> |
1717 | 1724 | ||
1718 | //#include <asm/sharp_char.h> // including kernel headers is evil ... | 1725 | //#include <asm/sharp_char.h> // including kernel headers is evil ... |
1719 | 1726 | ||
1720 | #define SHARP_DEV_IOCTL_COMMAND_START 0x5680 | 1727 | #define SHARP_DEV_IOCTL_COMMAND_START 0x5680 |
1721 | 1728 | ||
1722 | #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) | 1729 | #defineSHARP_BUZZER_IOCTL_START (SHARP_DEV_IOCTL_COMMAND_START) |
1723 | #define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) | 1730 | #define SHARP_BUZZER_MAKESOUND (SHARP_BUZZER_IOCTL_START) |
1724 | 1731 | ||
1725 | #define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ | 1732 | #define SHARP_BUZ_TOUCHSOUND 1 /* touch panel sound */ |
diff --git a/libopie2/opiecore/device/odevice_ipaq.cpp b/libopie2/opiecore/device/odevice_ipaq.cpp index d20ea4d..cc4b01a 100644 --- a/libopie2/opiecore/device/odevice_ipaq.cpp +++ b/libopie2/opiecore/device/odevice_ipaq.cpp | |||
@@ -1,475 +1,481 @@ | |||
1 | /* | 1 | /* |
2 | This file is part of the Opie Project | 2 | This file is part of the Opie Project |
3 | Copyright (C) The Opie Team <opie-devel@handhelds.org> | 3 | Copyright (C) The Opie Team <opie-devel@handhelds.org> |
4 | =. | 4 | =. |
5 | .=l. | 5 | .=l. |
6 | .>+-= | 6 | .>+-= |
7 | _;:, .> :=|. This program is free software; you can | 7 | _;:, .> :=|. This program is free software; you can |
8 | .> <`_, > . <= redistribute it and/or modify it under | 8 | .> <`_, > . <= redistribute it and/or modify it under |
9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | 9 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public |
10 | .="- .-=="i, .._ License as published by the Free Software | 10 | .="- .-=="i, .._ License as published by the Free Software |
11 | - . .-<_> .<> Foundation; either version 2 of the License, | 11 | - . .-<_> .<> Foundation; either version 2 of the License, |
12 | ._= =} : or (at your option) any later version. | 12 | ._= =} : or (at your option) any later version. |
13 | .%`+i> _;_. | 13 | .%`+i> _;_. |
14 | .i_,=:_. -<s. This program is distributed in the hope that | 14 | .i_,=:_. -<s. This program is distributed in the hope that |
15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | 15 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; |
16 | : .. .:, . . . without even the implied warranty of | 16 | : .. .:, . . . without even the implied warranty of |
17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | 17 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A |
18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | 18 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU |
19 | ..}^=.= = ; Library General Public License for more | 19 | ..}^=.= = ; Library General Public License for more |
20 | ++= -. .` .: details. | 20 | ++= -. .` .: details. |
21 | : = ...= . :.=- | 21 | : = ...= . :.=- |
22 | -. .:....=;==+<; You should have received a copy of the GNU | 22 | -. .:....=;==+<; You should have received a copy of the GNU |
23 | -_. . . )=. = Library General Public License along with | 23 | -_. . . )=. = Library General Public License along with |
24 | -- :-=` this library; see the file COPYING.LIB. | 24 | -- :-=` this library; see the file COPYING.LIB. |
25 | If not, write to the Free Software Foundation, | 25 | If not, write to the Free Software Foundation, |
26 | Inc., 59 Temple Place - Suite 330, | 26 | Inc., 59 Temple Place - Suite 330, |
27 | Boston, MA 02111-1307, USA. | 27 | Boston, MA 02111-1307, USA. |
28 | */ | 28 | */ |
29 | 29 | ||
30 | #include "odevice_ipaq.h" | 30 | #include "odevice_ipaq.h" |
31 | 31 | ||
32 | /* QT */ | 32 | /* QT */ |
33 | #include <qapplication.h> | 33 | #include <qapplication.h> |
34 | #include <qfile.h> | 34 | #include <qfile.h> |
35 | #include <qtextstream.h> | 35 | #include <qtextstream.h> |
36 | #include <qwindowsystem_qws.h> | 36 | #include <qwindowsystem_qws.h> |
37 | 37 | ||
38 | /* OPIE */ | 38 | /* OPIE */ |
39 | #include <qpe/config.h> | 39 | #include <qpe/config.h> |
40 | #include <qpe/resource.h> | 40 | #include <qpe/resource.h> |
41 | #include <qpe/sound.h> | 41 | #include <qpe/sound.h> |
42 | #include <qpe/qcopenvelope_qws.h> | 42 | #include <qpe/qcopenvelope_qws.h> |
43 | 43 | ||
44 | /* STD */ | 44 | /* STD */ |
45 | #include <fcntl.h> | 45 | #include <fcntl.h> |
46 | #include <math.h> | 46 | #include <math.h> |
47 | #include <stdlib.h> | 47 | #include <stdlib.h> |
48 | #include <signal.h> | 48 | #include <signal.h> |
49 | #include <sys/ioctl.h> | 49 | #include <sys/ioctl.h> |
50 | #include <sys/time.h> | 50 | #include <sys/time.h> |
51 | #include <unistd.h> | 51 | #include <unistd.h> |
52 | #ifndef QT_NO_SOUND | 52 | #ifndef QT_NO_SOUND |
53 | #include <linux/soundcard.h> | 53 | #include <linux/soundcard.h> |
54 | #endif | 54 | #endif |
55 | 55 | ||
56 | /* KERNEL */ | 56 | /* KERNEL */ |
57 | #define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) | 57 | #define OD_IOC(dir,type,number,size) (( dir << 30 ) | ( type << 8 ) | ( number ) | ( size << 16 )) |
58 | 58 | ||
59 | #define OD_IO(type,number) OD_IOC(0,type,number,0) | 59 | #define OD_IO(type,number) OD_IOC(0,type,number,0) |
60 | #define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) | 60 | #define OD_IOW(type,number,size) OD_IOC(1,type,number,sizeof(size)) |
61 | #define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) | 61 | #define OD_IOR(type,number,size) OD_IOC(2,type,number,sizeof(size)) |
62 | #define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) | 62 | #define OD_IORW(type,number,size) OD_IOC(3,type,number,sizeof(size)) |
63 | 63 | ||
64 | typedef struct { | 64 | typedef struct { |
65 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ | 65 | unsigned char OffOnBlink; /* 0=off 1=on 2=Blink */ |
66 | unsigned char TotalTime; /* Units of 5 seconds */ | 66 | unsigned char TotalTime; /* Units of 5 seconds */ |
67 | unsigned char OnTime; /* units of 100m/s */ | 67 | unsigned char OnTime; /* units of 100m/s */ |
68 | unsigned char OffTime; /* units of 100m/s */ | 68 | unsigned char OffTime; /* units of 100m/s */ |
69 | } LED_IN; | 69 | } LED_IN; |
70 | 70 | ||
71 | typedef struct { | 71 | typedef struct { |
72 | unsigned char mode; | 72 | unsigned char mode; |
73 | unsigned char pwr; | 73 | unsigned char pwr; |
74 | unsigned char brightness; | 74 | unsigned char brightness; |
75 | } FLITE_IN; | 75 | } FLITE_IN; |
76 | 76 | ||
77 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) | 77 | #define LED_ON OD_IOW( 'f', 5, LED_IN ) |
78 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) | 78 | #define FLITE_ON OD_IOW( 'f', 7, FLITE_IN ) |
79 | 79 | ||
80 | struct i_button ipaq_buttons [] = { | 80 | struct i_button ipaq_buttons [] = { |
81 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 81 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
82 | Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), | 82 | Qt::Key_F9, QT_TRANSLATE_NOOP("Button", "Calendar Button"), |
83 | "devicebuttons/ipaq_calendar", | 83 | "devicebuttons/ipaq_calendar", |
84 | "datebook", "nextView()", | 84 | "datebook", "nextView()", |
85 | "today", "raise()" }, | 85 | "today", "raise()" }, |
86 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 86 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
87 | Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), | 87 | Qt::Key_F10, QT_TRANSLATE_NOOP("Button", "Contacts Button"), |
88 | "devicebuttons/ipaq_contact", | 88 | "devicebuttons/ipaq_contact", |
89 | "addressbook", "raise()", | 89 | "addressbook", "raise()", |
90 | "addressbook", "beamBusinessCard()" }, | 90 | "addressbook", "beamBusinessCard()" }, |
91 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx, | 91 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx, |
92 | Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), | 92 | Qt::Key_F11, QT_TRANSLATE_NOOP("Button", "Menu Button"), |
93 | "devicebuttons/ipaq_menu", | 93 | "devicebuttons/ipaq_menu", |
94 | "QPE/TaskBar", "toggleMenu()", | 94 | "QPE/TaskBar", "toggleMenu()", |
95 | "QPE/TaskBar", "toggleStartMenu()" }, | 95 | "QPE/TaskBar", "toggleStartMenu()" }, |
96 | { Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 96 | { Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
97 | Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), | 97 | Qt::Key_F13, QT_TRANSLATE_NOOP("Button", "Mail Button"), |
98 | "devicebuttons/ipaq_mail", | 98 | "devicebuttons/ipaq_mail", |
99 | "mail", "raise()", | 99 | "mail", "raise()", |
100 | "mail", "newMail()" }, | 100 | "mail", "newMail()" }, |
101 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 101 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
102 | Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), | 102 | Qt::Key_F12, QT_TRANSLATE_NOOP("Button", "Home Button"), |
103 | "devicebuttons/ipaq_home", | 103 | "devicebuttons/ipaq_home", |
104 | "QPE/Launcher", "home()", | 104 | "QPE/Launcher", "home()", |
105 | "buttonsettings", "raise()" }, | 105 | "buttonsettings", "raise()" }, |
106 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, | 106 | { Model_iPAQ_H31xx | Model_iPAQ_H36xx | Model_iPAQ_H37xx | Model_iPAQ_H38xx | Model_iPAQ_H39xx | Model_iPAQ_H5xxx, |
107 | Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"), | 107 | Qt::Key_F24, QT_TRANSLATE_NOOP("Button", "Record Button"), |
108 | "devicebuttons/ipaq_record", | 108 | "devicebuttons/ipaq_record", |
109 | "QPE/VMemo", "toggleRecord()", | 109 | "QPE/VMemo", "toggleRecord()", |
110 | "sound", "raise()" }, | 110 | "sound", "raise()" }, |
111 | }; | 111 | }; |
112 | 112 | ||
113 | void iPAQ::init() | 113 | void iPAQ::init() |
114 | { | 114 | { |
115 | d->m_vendorstr = "HP"; | 115 | d->m_vendorstr = "HP"; |
116 | d->m_vendor = Vendor_HP; | 116 | d->m_vendor = Vendor_HP; |
117 | 117 | ||
118 | QFile f ( "/proc/hal/model" ); | 118 | QFile f ( "/proc/hal/model" ); |
119 | 119 | ||
120 | if ( f. open ( IO_ReadOnly )) { | 120 | if ( f. open ( IO_ReadOnly )) { |
121 | QTextStream ts ( &f ); | 121 | QTextStream ts ( &f ); |
122 | 122 | ||
123 | d->m_modelstr = "H" + ts. readLine(); | 123 | d->m_modelstr = "H" + ts. readLine(); |
124 | 124 | ||
125 | if ( d->m_modelstr == "H3100" ) | 125 | if ( d->m_modelstr == "H3100" ) |
126 | d->m_model = Model_iPAQ_H31xx; | 126 | d->m_model = Model_iPAQ_H31xx; |
127 | else if ( d->m_modelstr == "H3600" ) | 127 | else if ( d->m_modelstr == "H3600" ) |
128 | d->m_model = Model_iPAQ_H36xx; | 128 | d->m_model = Model_iPAQ_H36xx; |
129 | else if ( d->m_modelstr == "H3700" ) | 129 | else if ( d->m_modelstr == "H3700" ) |
130 | d->m_model = Model_iPAQ_H37xx; | 130 | d->m_model = Model_iPAQ_H37xx; |
131 | else if ( d->m_modelstr == "H3800" ) | 131 | else if ( d->m_modelstr == "H3800" ) |
132 | d->m_model = Model_iPAQ_H38xx; | 132 | d->m_model = Model_iPAQ_H38xx; |
133 | else if ( d->m_modelstr == "H3900" ) | 133 | else if ( d->m_modelstr == "H3900" ) |
134 | d->m_model = Model_iPAQ_H39xx; | 134 | d->m_model = Model_iPAQ_H39xx; |
135 | else if ( d->m_modelstr == "H5400" ) | 135 | else if ( d->m_modelstr == "H5400" ) |
136 | d->m_model = Model_iPAQ_H5xxx; | 136 | d->m_model = Model_iPAQ_H5xxx; |
137 | else | 137 | else |
138 | d->m_model = Model_Unknown; | 138 | d->m_model = Model_Unknown; |
139 | 139 | ||
140 | f. close(); | 140 | f. close(); |
141 | } | 141 | } |
142 | 142 | ||
143 | switch ( d->m_model ) { | 143 | switch ( d->m_model ) { |
144 | case Model_iPAQ_H31xx: | 144 | case Model_iPAQ_H31xx: |
145 | case Model_iPAQ_H38xx: | 145 | case Model_iPAQ_H38xx: |
146 | d->m_rotation = Rot90; | 146 | d->m_rotation = Rot90; |
147 | break; | 147 | break; |
148 | case Model_iPAQ_H36xx: | 148 | case Model_iPAQ_H36xx: |
149 | case Model_iPAQ_H37xx: | 149 | case Model_iPAQ_H37xx: |
150 | case Model_iPAQ_H39xx: | 150 | case Model_iPAQ_H39xx: |
151 | 151 | ||
152 | default: | 152 | default: |
153 | d->m_rotation = Rot270; | 153 | d->m_rotation = Rot270; |
154 | break; | 154 | break; |
155 | case Model_iPAQ_H5xxx: | 155 | case Model_iPAQ_H5xxx: |
156 | d->m_rotation = Rot0; | 156 | d->m_rotation = Rot0; |
157 | } | 157 | } |
158 | 158 | ||
159 | f. setName ( "/etc/familiar-version" ); | 159 | f. setName ( "/etc/familiar-version" ); |
160 | if ( f. open ( IO_ReadOnly )) { | 160 | if ( f. open ( IO_ReadOnly )) { |
161 | d->m_systemstr = "Familiar"; | 161 | d->m_systemstr = "Familiar"; |
162 | d->m_system = System_Familiar; | 162 | d->m_system = System_Familiar; |
163 | 163 | ||
164 | QTextStream ts ( &f ); | 164 | QTextStream ts ( &f ); |
165 | d->m_sysverstr = ts. readLine(). mid ( 10 ); | 165 | d->m_sysverstr = ts. readLine(). mid ( 10 ); |
166 | 166 | ||
167 | f. close(); | 167 | f. close(); |
168 | } else { | 168 | } else { |
169 | f. setName ( "/etc/oz_version" ); | 169 | f. setName ( "/etc/oz_version" ); |
170 | 170 | ||
171 | if ( f. open ( IO_ReadOnly )) { | 171 | if ( f. open ( IO_ReadOnly )) { |
172 | d->m_systemstr = "OpenEmbedded/iPaq"; | 172 | d->m_systemstr = "OpenEmbedded/iPaq"; |
173 | d->m_system = System_Familiar; | 173 | d->m_system = System_Familiar; |
174 | 174 | ||
175 | QTextStream ts ( &f ); | 175 | QTextStream ts ( &f ); |
176 | ts.setDevice ( &f ); | 176 | ts.setDevice ( &f ); |
177 | d->m_sysverstr = ts. readLine(); | 177 | d->m_sysverstr = ts. readLine(); |
178 | f. close(); | 178 | f. close(); |
179 | } | 179 | } |
180 | } | 180 | } |
181 | 181 | ||
182 | m_leds [0] = m_leds [1] = Led_Off; | 182 | m_leds [0] = m_leds [1] = Led_Off; |
183 | 183 | ||
184 | m_power_timer = 0; | 184 | m_power_timer = 0; |
185 | 185 | ||
186 | } | 186 | } |
187 | 187 | ||
188 | void iPAQ::initButtons() | 188 | void iPAQ::initButtons() |
189 | { | 189 | { |
190 | if ( d->m_buttons ) | 190 | if ( d->m_buttons ) |
191 | return; | 191 | return; |
192 | 192 | ||
193 | if ( isQWS( ) ) | 193 | if ( isQWS( ) ) |
194 | QWSServer::setKeyboardFilter ( this ); | 194 | QWSServer::setKeyboardFilter ( this ); |
195 | 195 | ||
196 | d->m_buttons = new QValueList <ODeviceButton>; | 196 | d->m_buttons = new QValueList <ODeviceButton>; |
197 | 197 | ||
198 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { | 198 | for ( uint i = 0; i < ( sizeof( ipaq_buttons ) / sizeof( i_button )); i++ ) { |
199 | i_button *ib = ipaq_buttons + i; | 199 | i_button *ib = ipaq_buttons + i; |
200 | ODeviceButton b; | 200 | ODeviceButton b; |
201 | 201 | ||
202 | if (( ib->model & d->m_model ) == d->m_model ) { | 202 | if (( ib->model & d->m_model ) == d->m_model ) { |
203 | b. setKeycode ( ib->code ); | 203 | b. setKeycode ( ib->code ); |
204 | b. setUserText ( QObject::tr ( "Button", ib->utext )); | 204 | b. setUserText ( QObject::tr ( "Button", ib->utext )); |
205 | b. setPixmap ( Resource::loadPixmap ( ib->pix )); | 205 | b. setPixmap ( Resource::loadPixmap ( ib->pix )); |
206 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction )); | 206 | b. setFactoryPresetPressedAction ( OQCopMessage ( makeChannel ( ib->fpressedservice ), ib->fpressedaction )); |
207 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction )); | 207 | b. setFactoryPresetHeldAction ( OQCopMessage ( makeChannel ( ib->fheldservice ), ib->fheldaction )); |
208 | 208 | ||
209 | d->m_buttons->append ( b ); | 209 | d->m_buttons->append ( b ); |
210 | } | 210 | } |
211 | } | 211 | } |
212 | reloadButtonMapping(); | 212 | reloadButtonMapping(); |
213 | 213 | ||
214 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); | 214 | QCopChannel *sysch = new QCopChannel ( "QPE/System", this ); |
215 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); | 215 | connect ( sysch, SIGNAL( received( const QCString &, const QByteArray & )), this, SLOT( systemMessage ( const QCString &, const QByteArray & ))); |
216 | } | 216 | } |
217 | 217 | ||
218 | QValueList <OLed> iPAQ::ledList() const | 218 | QValueList <OLed> iPAQ::ledList() const |
219 | { | 219 | { |
220 | QValueList <OLed> vl; | 220 | QValueList <OLed> vl; |
221 | vl << Led_Power; | 221 | vl << Led_Power; |
222 | 222 | ||
223 | if ( d->m_model == Model_iPAQ_H38xx ) | 223 | if ( d->m_model == Model_iPAQ_H38xx ) |
224 | vl << Led_BlueTooth; | 224 | vl << Led_BlueTooth; |
225 | return vl; | 225 | return vl; |
226 | } | 226 | } |
227 | 227 | ||
228 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const | 228 | QValueList <OLedState> iPAQ::ledStateList ( OLed l ) const |
229 | { | 229 | { |
230 | QValueList <OLedState> vl; | 230 | QValueList <OLedState> vl; |
231 | 231 | ||
232 | if ( l == Led_Power ) | 232 | if ( l == Led_Power ) |
233 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; | 233 | vl << Led_Off << Led_On << Led_BlinkSlow << Led_BlinkFast; |
234 | else if ( l == Led_BlueTooth && d->m_model == Model_iPAQ_H38xx ) | 234 | else if ( l == Led_BlueTooth && d->m_model == Model_iPAQ_H38xx ) |
235 | vl << Led_Off; // << Led_On << ??? | 235 | vl << Led_Off; // << Led_On << ??? |
236 | 236 | ||
237 | return vl; | 237 | return vl; |
238 | } | 238 | } |
239 | 239 | ||
240 | OLedState iPAQ::ledState ( OLed l ) const | 240 | OLedState iPAQ::ledState ( OLed l ) const |
241 | { | 241 | { |
242 | switch ( l ) { | 242 | switch ( l ) { |
243 | case Led_Power: | 243 | case Led_Power: |
244 | return m_leds [0]; | 244 | return m_leds [0]; |
245 | case Led_BlueTooth: | 245 | case Led_BlueTooth: |
246 | return m_leds [1]; | 246 | return m_leds [1]; |
247 | default: | 247 | default: |
248 | return Led_Off; | 248 | return Led_Off; |
249 | } | 249 | } |
250 | } | 250 | } |
251 | 251 | ||
252 | bool iPAQ::setLedState ( OLed l, OLedState st ) | 252 | bool iPAQ::setLedState ( OLed l, OLedState st ) |
253 | { | 253 | { |
254 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); | 254 | static int fd = ::open ( "/dev/touchscreen/0", O_RDWR | O_NONBLOCK ); |
255 | 255 | ||
256 | if ( l == Led_Power ) { | 256 | if ( l == Led_Power ) { |
257 | if ( fd >= 0 ) { | 257 | if ( fd >= 0 ) { |
258 | LED_IN leds; | 258 | LED_IN leds; |
259 | ::memset ( &leds, 0, sizeof( leds )); | 259 | ::memset ( &leds, 0, sizeof( leds )); |
260 | leds. TotalTime = 0; | 260 | leds. TotalTime = 0; |
261 | leds. OnTime = 0; | 261 | leds. OnTime = 0; |
262 | leds. OffTime = 1; | 262 | leds. OffTime = 1; |
263 | leds. OffOnBlink = 2; | 263 | leds. OffOnBlink = 2; |
264 | 264 | ||
265 | switch ( st ) { | 265 | switch ( st ) { |
266 | case Led_Off : leds. OffOnBlink = 0; break; | 266 | case Led_Off : leds. OffOnBlink = 0; break; |
267 | case Led_On : leds. OffOnBlink = 1; break; | 267 | case Led_On : leds. OffOnBlink = 1; break; |
268 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; | 268 | case Led_BlinkSlow: leds. OnTime = 10; leds. OffTime = 10; break; |
269 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; | 269 | case Led_BlinkFast: leds. OnTime = 5; leds. OffTime = 5; break; |
270 | } | 270 | } |
271 | 271 | ||
272 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { | 272 | if ( ::ioctl ( fd, LED_ON, &leds ) >= 0 ) { |
273 | m_leds [0] = st; | 273 | m_leds [0] = st; |
274 | return true; | 274 | return true; |
275 | } | 275 | } |
276 | } | 276 | } |
277 | } | 277 | } |
278 | return false; | 278 | return false; |
279 | } | 279 | } |
280 | 280 | ||
281 | 281 | ||
282 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) | 282 | bool iPAQ::filter ( int /*unicode*/, int keycode, int modifiers, bool isPress, bool autoRepeat ) |
283 | { | 283 | { |
284 | int newkeycode = keycode; | 284 | int newkeycode = keycode; |
285 | 285 | ||
286 | switch ( keycode ) { | 286 | switch ( keycode ) { |
287 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key | 287 | // H38xx/H39xx have no "Q" key anymore - this is now the Mail key |
288 | case HardKey_Menu: { | 288 | case HardKey_Menu: { |
289 | if (( d->m_model == Model_iPAQ_H38xx ) || | 289 | if (( d->m_model == Model_iPAQ_H38xx ) || |
290 | ( d->m_model == Model_iPAQ_H39xx ) || | 290 | ( d->m_model == Model_iPAQ_H39xx ) || |
291 | ( d->m_model == Model_iPAQ_H5xxx)) { | 291 | ( d->m_model == Model_iPAQ_H5xxx)) { |
292 | newkeycode = HardKey_Mail; | 292 | newkeycode = HardKey_Mail; |
293 | } | 293 | } |
294 | break; | 294 | break; |
295 | } | 295 | } |
296 | 296 | ||
297 | // Rotate cursor keys 180° | 297 | // Rotate cursor keys 180° or 270° |
298 | case Key_Left : | 298 | case Key_Left : |
299 | case Key_Right: | 299 | case Key_Right: |
300 | case Key_Up : | 300 | case Key_Up : |
301 | case Key_Down : { | 301 | case Key_Down : { |
302 | if (( d->m_model == Model_iPAQ_H31xx ) || | 302 | if (( d->m_model == Model_iPAQ_H31xx ) || |
303 | ( d->m_model == Model_iPAQ_H38xx )) { | 303 | ( d->m_model == Model_iPAQ_H38xx )) { |
304 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; | 304 | newkeycode = Key_Left + ( keycode - Key_Left + 2 ) % 4; |
305 | } | 305 | } |
306 | // Rotate the cursor keys by 270° | ||
307 | // keycode - Key_Left = position of the button starting from left clockwise | ||
308 | // add the rotation to it and modolo. No we've the original offset | ||
309 | // add the offset to the Key_Left key | ||
310 | if ( d-> m_model == Model_iPAQ_H5xxx ) | ||
311 | newkeycode = Key_Left + ( keycode - Key_Left + 3 ) % 4; | ||
306 | break; | 312 | break; |
307 | } | 313 | } |
308 | 314 | ||
309 | // map Power Button short/long press to F34/F35 | 315 | // map Power Button short/long press to F34/F35 |
310 | case Key_SysReq: { | 316 | case Key_SysReq: { |
311 | if ( isPress ) { | 317 | if ( isPress ) { |
312 | if ( m_power_timer ) | 318 | if ( m_power_timer ) |
313 | killTimer ( m_power_timer ); | 319 | killTimer ( m_power_timer ); |
314 | m_power_timer = startTimer ( 500 ); | 320 | m_power_timer = startTimer ( 500 ); |
315 | } | 321 | } |
316 | else if ( m_power_timer ) { | 322 | else if ( m_power_timer ) { |
317 | killTimer ( m_power_timer ); | 323 | killTimer ( m_power_timer ); |
318 | m_power_timer = 0; | 324 | m_power_timer = 0; |
319 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); | 325 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, true, false ); |
320 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); | 326 | QWSServer::sendKeyEvent ( -1, HardKey_Suspend, 0, false, false ); |
321 | } | 327 | } |
322 | newkeycode = Key_unknown; | 328 | newkeycode = Key_unknown; |
323 | break; | 329 | break; |
324 | } | 330 | } |
325 | } | 331 | } |
326 | 332 | ||
327 | if ( newkeycode != keycode ) { | 333 | if ( newkeycode != keycode ) { |
328 | if ( newkeycode != Key_unknown ) | 334 | if ( newkeycode != Key_unknown ) |
329 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); | 335 | QWSServer::sendKeyEvent ( -1, newkeycode, modifiers, isPress, autoRepeat ); |
330 | return true; | 336 | return true; |
331 | } | 337 | } |
332 | else | 338 | else |
333 | return false; | 339 | return false; |
334 | } | 340 | } |
335 | 341 | ||
336 | void iPAQ::timerEvent ( QTimerEvent * ) | 342 | void iPAQ::timerEvent ( QTimerEvent * ) |
337 | { | 343 | { |
338 | killTimer ( m_power_timer ); | 344 | killTimer ( m_power_timer ); |
339 | m_power_timer = 0; | 345 | m_power_timer = 0; |
340 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); | 346 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, true, false ); |
341 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); | 347 | QWSServer::sendKeyEvent ( -1, HardKey_Backlight, 0, false, false ); |
342 | } | 348 | } |
343 | 349 | ||
344 | 350 | ||
345 | void iPAQ::playAlarmSound() | 351 | void iPAQ::playAlarmSound() |
346 | { | 352 | { |
347 | #ifndef QT_NO_SOUND | 353 | #ifndef QT_NO_SOUND |
348 | static Sound snd ( "alarm" ); | 354 | static Sound snd ( "alarm" ); |
349 | int fd; | 355 | int fd; |
350 | int vol; | 356 | int vol; |
351 | bool vol_reset = false; | 357 | bool vol_reset = false; |
352 | 358 | ||
353 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { | 359 | if (( fd = ::open ( "/dev/sound/mixer", O_RDWR )) >= 0 ) { |
354 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { | 360 | if ( ::ioctl ( fd, MIXER_READ( 0 ), &vol ) >= 0 ) { |
355 | Config cfg ( "qpe" ); | 361 | Config cfg ( "qpe" ); |
356 | cfg. setGroup ( "Volume" ); | 362 | cfg. setGroup ( "Volume" ); |
357 | 363 | ||
358 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); | 364 | int volalarm = cfg. readNumEntry ( "AlarmPercent", 50 ); |
359 | if ( volalarm < 0 ) | 365 | if ( volalarm < 0 ) |
360 | volalarm = 0; | 366 | volalarm = 0; |
361 | else if ( volalarm > 100 ) | 367 | else if ( volalarm > 100 ) |
362 | volalarm = 100; | 368 | volalarm = 100; |
363 | volalarm |= ( volalarm << 8 ); | 369 | volalarm |= ( volalarm << 8 ); |
364 | 370 | ||
365 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) | 371 | if ( ::ioctl ( fd, MIXER_WRITE( 0 ), &volalarm ) >= 0 ) |
366 | vol_reset = true; | 372 | vol_reset = true; |
367 | } | 373 | } |
368 | } | 374 | } |
369 | 375 | ||
370 | snd. play(); | 376 | snd. play(); |
371 | while ( !snd. isFinished()) | 377 | while ( !snd. isFinished()) |
372 | qApp->processEvents(); | 378 | qApp->processEvents(); |
373 | 379 | ||
374 | if ( fd >= 0 ) { | 380 | if ( fd >= 0 ) { |
375 | if ( vol_reset ) | 381 | if ( vol_reset ) |
376 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); | 382 | ::ioctl ( fd, MIXER_WRITE( 0 ), &vol ); |
377 | ::close ( fd ); | 383 | ::close ( fd ); |
378 | } | 384 | } |
379 | #endif | 385 | #endif |
380 | } | 386 | } |
381 | 387 | ||
382 | 388 | ||
383 | bool iPAQ::setSoftSuspend ( bool soft ) | 389 | bool iPAQ::setSoftSuspend ( bool soft ) |
384 | { | 390 | { |
385 | bool res = false; | 391 | bool res = false; |
386 | int fd; | 392 | int fd; |
387 | 393 | ||
388 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { | 394 | if (( fd = ::open ( "/proc/sys/ts/suspend_button_mode", O_WRONLY )) >= 0 ) { |
389 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) | 395 | if ( ::write ( fd, soft ? "1" : "0", 1 ) == 1 ) |
390 | res = true; | 396 | res = true; |
391 | else | 397 | else |
392 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); | 398 | ::perror ( "write to /proc/sys/ts/suspend_button_mode" ); |
393 | 399 | ||
394 | ::close ( fd ); | 400 | ::close ( fd ); |
395 | } | 401 | } |
396 | else | 402 | else |
397 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); | 403 | ::perror ( "/proc/sys/ts/suspend_button_mode" ); |
398 | 404 | ||
399 | return res; | 405 | return res; |
400 | } | 406 | } |
401 | 407 | ||
402 | 408 | ||
403 | bool iPAQ::setDisplayBrightness ( int bright ) | 409 | bool iPAQ::setDisplayBrightness ( int bright ) |
404 | { | 410 | { |
405 | bool res = false; | 411 | bool res = false; |
406 | int fd; | 412 | int fd; |
407 | 413 | ||
408 | if ( bright > 255 ) | 414 | if ( bright > 255 ) |
409 | bright = 255; | 415 | bright = 255; |
410 | if ( bright < 0 ) | 416 | if ( bright < 0 ) |
411 | bright = 0; | 417 | bright = 0; |
412 | 418 | ||
413 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { | 419 | if (( fd = ::open ( "/dev/touchscreen/0", O_WRONLY )) >= 0 ) { |
414 | FLITE_IN bl; | 420 | FLITE_IN bl; |
415 | bl. mode = 1; | 421 | bl. mode = 1; |
416 | bl. pwr = bright ? 1 : 0; | 422 | bl. pwr = bright ? 1 : 0; |
417 | bl. brightness = ( bright * ( displayBrightnessResolution() - 1 ) + 127 ) / 255; | 423 | bl. brightness = ( bright * ( displayBrightnessResolution() - 1 ) + 127 ) / 255; |
418 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); | 424 | res = ( ::ioctl ( fd, FLITE_ON, &bl ) == 0 ); |
419 | ::close ( fd ); | 425 | ::close ( fd ); |
420 | } | 426 | } |
421 | return res; | 427 | return res; |
422 | } | 428 | } |
423 | 429 | ||
424 | int iPAQ::displayBrightnessResolution() const | 430 | int iPAQ::displayBrightnessResolution() const |
425 | { | 431 | { |
426 | switch ( model()) { | 432 | switch ( model()) { |
427 | case Model_iPAQ_H31xx: | 433 | case Model_iPAQ_H31xx: |
428 | case Model_iPAQ_H36xx: | 434 | case Model_iPAQ_H36xx: |
429 | case Model_iPAQ_H37xx: | 435 | case Model_iPAQ_H37xx: |
430 | return 128; // really 256, but >128 could damage the LCD | 436 | return 128; // really 256, but >128 could damage the LCD |
431 | 437 | ||
432 | case Model_iPAQ_H38xx: | 438 | case Model_iPAQ_H38xx: |
433 | case Model_iPAQ_H39xx: | 439 | case Model_iPAQ_H39xx: |
434 | return 64; | 440 | return 64; |
435 | case Model_iPAQ_H5xxx: | 441 | case Model_iPAQ_H5xxx: |
436 | return 255; | 442 | return 255; |
437 | 443 | ||
438 | default: | 444 | default: |
439 | return 2; | 445 | return 2; |
440 | } | 446 | } |
441 | } | 447 | } |
442 | 448 | ||
443 | 449 | ||
444 | bool iPAQ::hasLightSensor() const | 450 | bool iPAQ::hasLightSensor() const |
445 | { | 451 | { |
446 | return true; | 452 | return true; |
447 | } | 453 | } |
448 | 454 | ||
449 | int iPAQ::readLightSensor() | 455 | int iPAQ::readLightSensor() |
450 | { | 456 | { |
451 | int fd; | 457 | int fd; |
452 | int val = -1; | 458 | int val = -1; |
453 | 459 | ||
454 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { | 460 | if (( fd = ::open ( "/proc/hal/light_sensor", O_RDONLY )) >= 0 ) { |
455 | char buffer [8]; | 461 | char buffer [8]; |
456 | 462 | ||
457 | if ( ::read ( fd, buffer, 5 ) == 5 ) { | 463 | if ( ::read ( fd, buffer, 5 ) == 5 ) { |
458 | char *endptr; | 464 | char *endptr; |
459 | 465 | ||
460 | buffer [4] = 0; | 466 | buffer [4] = 0; |
461 | val = ::strtol ( buffer + 2, &endptr, 16 ); | 467 | val = ::strtol ( buffer + 2, &endptr, 16 ); |
462 | 468 | ||
463 | if ( *endptr != 0 ) | 469 | if ( *endptr != 0 ) |
464 | val = -1; | 470 | val = -1; |
465 | } | 471 | } |
466 | ::close ( fd ); | 472 | ::close ( fd ); |
467 | } | 473 | } |
468 | 474 | ||
469 | return val; | 475 | return val; |
470 | } | 476 | } |
471 | 477 | ||
472 | int iPAQ::lightSensorResolution() const | 478 | int iPAQ::lightSensorResolution() const |
473 | { | 479 | { |
474 | return 256; | 480 | return 256; |
475 | } | 481 | } |