-rw-r--r-- | noncore/settings/networksettings/ppp/TODO | 2 | ||||
-rw-r--r-- | noncore/settings/networksettings/ppp/pppdata.cpp | 5 | ||||
-rw-r--r-- | noncore/settings/networksettings/ppp/pppmodule.cpp | 11 |
3 files changed, 9 insertions, 9 deletions
diff --git a/noncore/settings/networksettings/ppp/TODO b/noncore/settings/networksettings/ppp/TODO index 529d236..5635438 100644 --- a/noncore/settings/networksettings/ppp/TODO +++ b/noncore/settings/networksettings/ppp/TODO | |||
@@ -1,7 +1,7 @@ | |||
1 | - add possibility to input username and password ;) | 1 | - add possibility to input username and password ;) |
2 | - impl. PPPData::copyaccount & PPPData::deleteAccount | 2 | - impl. PPPData::copyaccount & PPPData::deleteAccount |
3 | - update modem attribute inputs when modem has changed | 3 | - update modem attribute inputs when modem has changed |
4 | - fix layout of edit account, i.e. get it shown maximised | 4 | - fix layout of edit account, i.e. get it shown maximised |
5 | - popup configure modem with the correct account prselected | 5 | - popup configure modem with the correct account prselected |
6 | not quite shure why it does not work... IMHO it should work | 6 | not quite shure why it does not work... IMHO it should work |
7 | - remove interfaces | 7 | |
diff --git a/noncore/settings/networksettings/ppp/pppdata.cpp b/noncore/settings/networksettings/ppp/pppdata.cpp index 517dd8b..23db409 100644 --- a/noncore/settings/networksettings/ppp/pppdata.cpp +++ b/noncore/settings/networksettings/ppp/pppdata.cpp | |||
@@ -1056,240 +1056,243 @@ bool PPPData::autoDNS() { | |||
1056 | 1056 | ||
1057 | void PPPData::setAutoDNS(bool set) { | 1057 | void PPPData::setAutoDNS(bool set) { |
1058 | writeConfig(cgroup, AUTODNS_KEY, (int) set); | 1058 | writeConfig(cgroup, AUTODNS_KEY, (int) set); |
1059 | } | 1059 | } |
1060 | 1060 | ||
1061 | 1061 | ||
1062 | void PPPData::setExDNSDisabled(bool set) { | 1062 | void PPPData::setExDNSDisabled(bool set) { |
1063 | writeConfig(cgroup, EXDNSDISABLED_KEY, (int) set); | 1063 | writeConfig(cgroup, EXDNSDISABLED_KEY, (int) set); |
1064 | } | 1064 | } |
1065 | 1065 | ||
1066 | 1066 | ||
1067 | bool PPPData::exDNSDisabled() { | 1067 | bool PPPData::exDNSDisabled() { |
1068 | return (bool) readNumConfig(cgroup, EXDNSDISABLED_KEY,0); | 1068 | return (bool) readNumConfig(cgroup, EXDNSDISABLED_KEY,0); |
1069 | } | 1069 | } |
1070 | 1070 | ||
1071 | 1071 | ||
1072 | QStringList &PPPData::dns() { | 1072 | QStringList &PPPData::dns() { |
1073 | static QStringList dnslist; | 1073 | static QStringList dnslist; |
1074 | 1074 | ||
1075 | readListConfig(cgroup, DNS_KEY, dnslist); | 1075 | readListConfig(cgroup, DNS_KEY, dnslist); |
1076 | while(dnslist.count() > MAX_DNS_ENTRIES) | 1076 | while(dnslist.count() > MAX_DNS_ENTRIES) |
1077 | dnslist.remove(dnslist.last()); | 1077 | dnslist.remove(dnslist.last()); |
1078 | 1078 | ||
1079 | return dnslist; | 1079 | return dnslist; |
1080 | } | 1080 | } |
1081 | 1081 | ||
1082 | 1082 | ||
1083 | void PPPData::setDns(QStringList &list) { | 1083 | void PPPData::setDns(QStringList &list) { |
1084 | writeListConfig(cgroup, DNS_KEY, list); | 1084 | writeListConfig(cgroup, DNS_KEY, list); |
1085 | } | 1085 | } |
1086 | 1086 | ||
1087 | 1087 | ||
1088 | const QString PPPData::domain() { | 1088 | const QString PPPData::domain() { |
1089 | return readConfig(cgroup, DOMAIN_KEY); | 1089 | return readConfig(cgroup, DOMAIN_KEY); |
1090 | } | 1090 | } |
1091 | 1091 | ||
1092 | 1092 | ||
1093 | void PPPData::setDomain(const QString &n ) { | 1093 | void PPPData::setDomain(const QString &n ) { |
1094 | writeConfig(cgroup, DOMAIN_KEY, n); | 1094 | writeConfig(cgroup, DOMAIN_KEY, n); |
1095 | } | 1095 | } |
1096 | 1096 | ||
1097 | 1097 | ||
1098 | QStringList &PPPData::scriptType() { | 1098 | QStringList &PPPData::scriptType() { |
1099 | static QStringList typelist; | 1099 | static QStringList typelist; |
1100 | 1100 | ||
1101 | readListConfig(cgroup, SCRIPTCOM_KEY, typelist); | 1101 | readListConfig(cgroup, SCRIPTCOM_KEY, typelist); |
1102 | while(typelist.count() > MAX_SCRIPT_ENTRIES) | 1102 | while(typelist.count() > MAX_SCRIPT_ENTRIES) |
1103 | typelist.remove(typelist.last()); | 1103 | typelist.remove(typelist.last()); |
1104 | 1104 | ||
1105 | return typelist; | 1105 | return typelist; |
1106 | } | 1106 | } |
1107 | 1107 | ||
1108 | 1108 | ||
1109 | void PPPData::setScriptType(QStringList &list) { | 1109 | void PPPData::setScriptType(QStringList &list) { |
1110 | writeListConfig(cgroup, SCRIPTCOM_KEY, list); | 1110 | writeListConfig(cgroup, SCRIPTCOM_KEY, list); |
1111 | } | 1111 | } |
1112 | 1112 | ||
1113 | 1113 | ||
1114 | QStringList &PPPData::script() { | 1114 | QStringList &PPPData::script() { |
1115 | static QStringList scriptlist; | 1115 | static QStringList scriptlist; |
1116 | 1116 | ||
1117 | readListConfig(cgroup, SCRIPTARG_KEY, scriptlist); | 1117 | readListConfig(cgroup, SCRIPTARG_KEY, scriptlist); |
1118 | while(scriptlist.count() > MAX_SCRIPT_ENTRIES) | 1118 | while(scriptlist.count() > MAX_SCRIPT_ENTRIES) |
1119 | scriptlist.remove(scriptlist.last()); | 1119 | scriptlist.remove(scriptlist.last()); |
1120 | 1120 | ||
1121 | return scriptlist; | 1121 | return scriptlist; |
1122 | } | 1122 | } |
1123 | 1123 | ||
1124 | 1124 | ||
1125 | void PPPData::setScript(QStringList &list) { | 1125 | void PPPData::setScript(QStringList &list) { |
1126 | writeListConfig(cgroup, SCRIPTARG_KEY, list); | 1126 | writeListConfig(cgroup, SCRIPTARG_KEY, list); |
1127 | } | 1127 | } |
1128 | 1128 | ||
1129 | 1129 | ||
1130 | // const QString PPPData::accountingFile() { | 1130 | // const QString PPPData::accountingFile() { |
1131 | // return readConfig(cgroup, ACCTFILE_KEY); | 1131 | // return readConfig(cgroup, ACCTFILE_KEY); |
1132 | // } | 1132 | // } |
1133 | 1133 | ||
1134 | 1134 | ||
1135 | // void PPPData::setAccountingFile(const QString &n) { | 1135 | // void PPPData::setAccountingFile(const QString &n) { |
1136 | // writeConfig(cgroup, ACCTFILE_KEY, n); | 1136 | // writeConfig(cgroup, ACCTFILE_KEY, n); |
1137 | // } | 1137 | // } |
1138 | 1138 | ||
1139 | 1139 | ||
1140 | // const QString PPPData::totalCosts() { | 1140 | // const QString PPPData::totalCosts() { |
1141 | // return readConfig(cgroup, TOTALCOSTS_KEY); | 1141 | // return readConfig(cgroup, TOTALCOSTS_KEY); |
1142 | // } | 1142 | // } |
1143 | 1143 | ||
1144 | 1144 | ||
1145 | // void PPPData::setTotalCosts(const QString &n) { | 1145 | // void PPPData::setTotalCosts(const QString &n) { |
1146 | // writeConfig(cgroup, TOTALCOSTS_KEY, n); | 1146 | // writeConfig(cgroup, TOTALCOSTS_KEY, n); |
1147 | // } | 1147 | // } |
1148 | 1148 | ||
1149 | 1149 | ||
1150 | // int PPPData::totalBytes() { | 1150 | // int PPPData::totalBytes() { |
1151 | // return readNumConfig(cgroup, TOTALBYTES_KEY, 0); | 1151 | // return readNumConfig(cgroup, TOTALBYTES_KEY, 0); |
1152 | // } | 1152 | // } |
1153 | 1153 | ||
1154 | // void PPPData::setTotalBytes(int n) { | 1154 | // void PPPData::setTotalBytes(int n) { |
1155 | // writeConfig(cgroup, TOTALBYTES_KEY, n); | 1155 | // writeConfig(cgroup, TOTALBYTES_KEY, n); |
1156 | // } | 1156 | // } |
1157 | 1157 | ||
1158 | 1158 | ||
1159 | QStringList &PPPData::pppdArgument() { | 1159 | QStringList &PPPData::pppdArgument() { |
1160 | static QStringList arglist; | 1160 | static QStringList arglist; |
1161 | 1161 | ||
1162 | while(arglist.count() > MAX_PPPD_ARGUMENTS) | 1162 | while(arglist.count() > MAX_PPPD_ARGUMENTS) |
1163 | arglist.remove(arglist.last()); | 1163 | arglist.remove(arglist.last()); |
1164 | readListConfig(cgroup, PPPDARG_KEY, arglist); | 1164 | readListConfig(cgroup, PPPDARG_KEY, arglist); |
1165 | 1165 | ||
1166 | return arglist; | 1166 | return arglist; |
1167 | } | 1167 | } |
1168 | 1168 | ||
1169 | 1169 | ||
1170 | void PPPData::setpppdArgument(QStringList &args) { | 1170 | void PPPData::setpppdArgument(QStringList &args) { |
1171 | writeListConfig(cgroup, PPPDARG_KEY, args); | 1171 | writeListConfig(cgroup, PPPDARG_KEY, args); |
1172 | } | 1172 | } |
1173 | 1173 | ||
1174 | 1174 | ||
1175 | void PPPData::setpppdArgumentDefaults() { | 1175 | void PPPData::setpppdArgumentDefaults() { |
1176 | QStringList arg; | 1176 | QStringList arg; |
1177 | setpppdArgument(arg); | 1177 | setpppdArgument(arg); |
1178 | } | 1178 | } |
1179 | 1179 | ||
1180 | 1180 | ||
1181 | // // graphing widget | 1181 | // // graphing widget |
1182 | // void PPPData::setGraphingOptions(bool enable, | 1182 | // void PPPData::setGraphingOptions(bool enable, |
1183 | // QColor bg, | 1183 | // QColor bg, |
1184 | // QColor text, | 1184 | // QColor text, |
1185 | // QColor in, | 1185 | // QColor in, |
1186 | // QColor out) | 1186 | // QColor out) |
1187 | // { | 1187 | // { |
1188 | // if(config) { | 1188 | // if(config) { |
1189 | // config->setGroup(GRAPH_GRP); | 1189 | // config->setGroup(GRAPH_GRP); |
1190 | // config->writeEntry(GENABLED, enable); | 1190 | // config->writeEntry(GENABLED, enable); |
1191 | // // config->writeEntry(GCOLOR_BG, bg); | 1191 | // // config->writeEntry(GCOLOR_BG, bg); |
1192 | // // config->writeEntry(GCOLOR_TEXT, text); | 1192 | // // config->writeEntry(GCOLOR_TEXT, text); |
1193 | // // config->writeEntry(GCOLOR_IN, in); | 1193 | // // config->writeEntry(GCOLOR_IN, in); |
1194 | // // config->writeEntry(GCOLOR_OUT, out); | 1194 | // // config->writeEntry(GCOLOR_OUT, out); |
1195 | // } | 1195 | // } |
1196 | // } | 1196 | // } |
1197 | 1197 | ||
1198 | // void PPPData::graphingOptions(bool &enable, | 1198 | // void PPPData::graphingOptions(bool &enable, |
1199 | // QColor &bg, | 1199 | // QColor &bg, |
1200 | // QColor &text, | 1200 | // QColor &text, |
1201 | // QColor &in, | 1201 | // QColor &in, |
1202 | // QColor &out) | 1202 | // QColor &out) |
1203 | // { | 1203 | // { |
1204 | // QColor c; | 1204 | // QColor c; |
1205 | 1205 | ||
1206 | // if(config) { | 1206 | // if(config) { |
1207 | // config->setGroup(GRAPH_GRP); | 1207 | // config->setGroup(GRAPH_GRP); |
1208 | // enable = config->readBoolEntry(GENABLED, true); | 1208 | // enable = config->readBoolEntry(GENABLED, true); |
1209 | // bg = Qt::white; | 1209 | // bg = Qt::white; |
1210 | // //bg = config->readColorEntry(GCOLOR_BG, &c); | 1210 | // //bg = config->readColorEntry(GCOLOR_BG, &c); |
1211 | // text = Qt::black; | 1211 | // text = Qt::black; |
1212 | // //text = config->readColorEntry(GCOLOR_TEXT, &c); | 1212 | // //text = config->readColorEntry(GCOLOR_TEXT, &c); |
1213 | // in = Qt::blue; | 1213 | // in = Qt::blue; |
1214 | // //in = config->readColorEntry(GCOLOR_IN, &c); | 1214 | // //in = config->readColorEntry(GCOLOR_IN, &c); |
1215 | // out = Qt::red; | 1215 | // out = Qt::red; |
1216 | // //out = config->readColorEntry(GCOLOR_OUT, &c); | 1216 | // //out = config->readColorEntry(GCOLOR_OUT, &c); |
1217 | // } | 1217 | // } |
1218 | // } | 1218 | // } |
1219 | 1219 | ||
1220 | 1220 | ||
1221 | // bool PPPData::graphingEnabled() { | 1221 | // bool PPPData::graphingEnabled() { |
1222 | // return (bool) readNumConfig(GRAPH_GRP, GENABLED, true); | 1222 | // return (bool) readNumConfig(GRAPH_GRP, GENABLED, true); |
1223 | // } | 1223 | // } |
1224 | 1224 | ||
1225 | 1225 | ||
1226 | 1226 | ||
1227 | // | 1227 | // |
1228 | //functions to change/set the child pppd process info | 1228 | //functions to change/set the child pppd process info |
1229 | // | 1229 | // |
1230 | bool PPPData::pppdRunning() const { | 1230 | bool PPPData::pppdRunning() const { |
1231 | return pppdisrunning; | 1231 | return pppdisrunning; |
1232 | } | 1232 | } |
1233 | 1233 | ||
1234 | void PPPData::setpppdRunning(bool set) { | 1234 | void PPPData::setpppdRunning(bool set) { |
1235 | pppdisrunning = set; | 1235 | pppdisrunning = set; |
1236 | } | 1236 | } |
1237 | 1237 | ||
1238 | int PPPData::pppdError() const { | 1238 | int PPPData::pppdError() const { |
1239 | return pppderror; | 1239 | return pppderror; |
1240 | } | 1240 | } |
1241 | 1241 | ||
1242 | void PPPData::setpppdError(int err) { | 1242 | void PPPData::setpppdError(int err) { |
1243 | pppderror = err; | 1243 | pppderror = err; |
1244 | } | 1244 | } |
1245 | 1245 | ||
1246 | QString PPPData::modemGroup() | 1246 | QString PPPData::modemGroup() |
1247 | { | 1247 | { |
1248 | if (modemDeviceGroup<0)qFatal("wrong modem %i",modemDeviceGroup); | 1248 | if (modemDeviceGroup<0){ |
1249 | qDebug("wrong modem %i\n using 0",modemDeviceGroup); | ||
1250 | modemDeviceGroup = 0; //FIXME! | ||
1251 | } | ||
1249 | return QString("%1_%1").arg(MODEM_GRP).arg(modemDeviceGroup); | 1252 | return QString("%1_%1").arg(MODEM_GRP).arg(modemDeviceGroup); |
1250 | } | 1253 | } |
1251 | 1254 | ||
1252 | 1255 | ||
1253 | QMap<QString,QString> PPPData::getConfiguredInterfaces() | 1256 | QMap<QString,QString> PPPData::getConfiguredInterfaces() |
1254 | { | 1257 | { |
1255 | QMap<QString,QString> ifaces; | 1258 | QMap<QString,QString> ifaces; |
1256 | Config config = PPPData::config(); | 1259 | Config config = PPPData::config(); |
1257 | config.setGroup(ACCLIST_GRP); | 1260 | config.setGroup(ACCLIST_GRP); |
1258 | int count = config.readNumEntry( ACCOUNTS_COUNT, -1 ); | 1261 | int count = config.readNumEntry( ACCOUNTS_COUNT, -1 ); |
1259 | QString accGrp, dev, acc; | 1262 | QString accGrp, dev, acc; |
1260 | for (int i = 0; i < count; i++){ | 1263 | for (int i = 0; i < count; i++){ |
1261 | accGrp = QString("%1_%1").arg(ACCLIST_GRP).arg(i); | 1264 | accGrp = QString("%1_%1").arg(ACCLIST_GRP).arg(i); |
1262 | config.setGroup(accGrp); | 1265 | config.setGroup(accGrp); |
1263 | dev = config.readEntry( ACOUNTS_DEV, "error" ); | 1266 | dev = config.readEntry( ACOUNTS_DEV, "error" ); |
1264 | acc = config.readEntry( ACOUNTS_ACC, "error" ); | 1267 | acc = config.readEntry( ACOUNTS_ACC, "error" ); |
1265 | ifaces.insert( dev, acc ); | 1268 | ifaces.insert( dev, acc ); |
1266 | } | 1269 | } |
1267 | 1270 | ||
1268 | return ifaces; | 1271 | return ifaces; |
1269 | } | 1272 | } |
1270 | 1273 | ||
1271 | void PPPData::setConfiguredInterfaces( QMap<QString,QString> ifaces ) | 1274 | void PPPData::setConfiguredInterfaces( QMap<QString,QString> ifaces ) |
1272 | { | 1275 | { |
1273 | QMap<QString,QString>::Iterator it; | 1276 | QMap<QString,QString>::Iterator it; |
1274 | int i = 0; | 1277 | int i = 0; |
1275 | Config cfg = config(); | 1278 | Config cfg = config(); |
1276 | for( it = ifaces.begin(); it != ifaces.end(); ++it, ++i ){ | 1279 | for( it = ifaces.begin(); it != ifaces.end(); ++it, ++i ){ |
1277 | cfg.setGroup(QString("%1_%1").arg(ACCLIST_GRP).arg(i)); | 1280 | cfg.setGroup(QString("%1_%1").arg(ACCLIST_GRP).arg(i)); |
1278 | cfg.writeEntry( ACOUNTS_DEV, it.key() ); | 1281 | cfg.writeEntry( ACOUNTS_DEV, it.key() ); |
1279 | cfg.writeEntry( ACOUNTS_ACC, it.data() ); | 1282 | cfg.writeEntry( ACOUNTS_ACC, it.data() ); |
1280 | } | 1283 | } |
1281 | cfg.setGroup( ACCLIST_GRP ); | 1284 | cfg.setGroup( ACCLIST_GRP ); |
1282 | cfg.writeEntry( ACCOUNTS_COUNT, i ); | 1285 | cfg.writeEntry( ACCOUNTS_COUNT, i ); |
1283 | 1286 | ||
1284 | } | 1287 | } |
1285 | 1288 | ||
1286 | /** | 1289 | /** |
1287 | * pppd's getword() function knows about escape characters. | 1290 | * pppd's getword() function knows about escape characters. |
1288 | * If we write the username and password to the secrets file | 1291 | * If we write the username and password to the secrets file |
1289 | * we'll therefore have to escape back slashes. | 1292 | * we'll therefore have to escape back slashes. |
1290 | */ | 1293 | */ |
1291 | QString PPPData::encodeWord(const QString &s) { | 1294 | QString PPPData::encodeWord(const QString &s) { |
1292 | QString r = s; | 1295 | QString r = s; |
1293 | r.replace(QRegExp("\\"), "\\\\"); | 1296 | r.replace(QRegExp("\\"), "\\\\"); |
1294 | return r; | 1297 | return r; |
1295 | } | 1298 | } |
diff --git a/noncore/settings/networksettings/ppp/pppmodule.cpp b/noncore/settings/networksettings/ppp/pppmodule.cpp index 95df068..8c401a9 100644 --- a/noncore/settings/networksettings/ppp/pppmodule.cpp +++ b/noncore/settings/networksettings/ppp/pppmodule.cpp | |||
@@ -1,142 +1,139 @@ | |||
1 | 1 | ||
2 | #include "pppconfig.h" | 2 | #include "pppconfig.h" |
3 | #include "pppmodule.h" | 3 | #include "pppmodule.h" |
4 | #include "pppdata.h" | 4 | #include "pppdata.h" |
5 | #include "interfaceinformationppp.h" | 5 | #include "interfaceinformationppp.h" |
6 | #include "interfaceppp.h" | 6 | #include "interfaceppp.h" |
7 | 7 | ||
8 | 8 | ||
9 | /** | 9 | /** |
10 | * Constructor, find all of the possible interfaces | 10 | * Constructor, find all of the possible interfaces |
11 | */ | 11 | */ |
12 | PPPModule::PPPModule() : Module() | 12 | PPPModule::PPPModule() : Module() |
13 | { | 13 | { |
14 | QMap<QString,QString> ifaces = PPPData::getConfiguredInterfaces(); | 14 | QMap<QString,QString> ifaces = PPPData::getConfiguredInterfaces(); |
15 | QMap<QString,QString>::Iterator it; | 15 | QMap<QString,QString>::Iterator it; |
16 | InterfacePPP *iface; | 16 | InterfacePPP *iface; |
17 | qDebug("getting interfaces"); | 17 | qDebug("getting interfaces"); |
18 | for( it = ifaces.begin(); it != ifaces.end(); ++it ){ | 18 | for( it = ifaces.begin(); it != ifaces.end(); ++it ){ |
19 | qDebug("ifaces %s", it.key().latin1()); | 19 | qDebug("ifaces %s", it.key().latin1()); |
20 | iface = new InterfacePPP( 0, it.key() ); | 20 | iface = new InterfacePPP( 0, it.key() ); |
21 | iface->setHardwareName( it.data() ); | 21 | iface->setHardwareName( it.data() ); |
22 | list.append( (Interface*)iface ); | 22 | list.append( (Interface*)iface ); |
23 | } | 23 | } |
24 | } | 24 | } |
25 | 25 | ||
26 | /** | 26 | /** |
27 | * Delete any interfaces that we own. | 27 | * Delete any interfaces that we own. |
28 | */ | 28 | */ |
29 | PPPModule::~PPPModule(){ | 29 | PPPModule::~PPPModule(){ |
30 | QMap<QString,QString> ifaces; | 30 | QMap<QString,QString> ifaces; |
31 | Interface *i; | 31 | Interface *i; |
32 | for ( i=list.first(); i != 0; i=list.next() ){ | 32 | for ( i=list.first(); i != 0; i=list.next() ){ |
33 | ifaces.insert( i->getInterfaceName(), i->getHardwareName() ); | 33 | ifaces.insert( i->getInterfaceName(), i->getHardwareName() ); |
34 | delete i; | 34 | delete i; |
35 | } | 35 | } |
36 | PPPData::setConfiguredInterfaces( ifaces ); | 36 | PPPData::setConfiguredInterfaces( ifaces ); |
37 | } | 37 | } |
38 | 38 | ||
39 | /** | 39 | /** |
40 | * Change the current profile | 40 | * Change the current profile |
41 | */ | 41 | */ |
42 | void PPPModule::setProfile(const QString &newProfile){ | 42 | void PPPModule::setProfile(const QString &newProfile){ |
43 | profile = newProfile; | 43 | profile = newProfile; |
44 | } | 44 | } |
45 | 45 | ||
46 | /** | 46 | /** |
47 | * get the icon name for this device. | 47 | * get the icon name for this device. |
48 | * @param Interface* can be used in determining the icon. | 48 | * @param Interface* can be used in determining the icon. |
49 | * @return QString the icon name (minus .png, .gif etc) | 49 | * @return QString the icon name (minus .png, .gif etc) |
50 | */ | 50 | */ |
51 | QString PPPModule::getPixmapName(Interface* ){ | 51 | QString PPPModule::getPixmapName(Interface* ){ |
52 | return "ppp"; | 52 | return "ppp"; |
53 | } | 53 | } |
54 | 54 | ||
55 | /** | 55 | /** |
56 | * Check to see if the interface i is owned by this module. | 56 | * Check to see if the interface i is owned by this module. |
57 | * @param Interface* interface to check against | 57 | * @param Interface* interface to check against |
58 | * @return bool true if i is owned by this module, false otherwise. | 58 | * @return bool true if i is owned by this module, false otherwise. |
59 | */ | 59 | */ |
60 | bool PPPModule::isOwner(Interface *i){ | 60 | bool PPPModule::isOwner(Interface *i){ |
61 | return list.find( i ) != -1; | 61 | return list.find( i ) != -1; |
62 | } | 62 | } |
63 | 63 | ||
64 | /** | 64 | /** |
65 | * Create, and return the WLANConfigure Module | 65 | * Create, and return the WLANConfigure Module |
66 | * @return QWidget* pointer to this modules configure. | 66 | * @return QWidget* pointer to this modules configure. |
67 | */ | 67 | */ |
68 | QWidget *PPPModule::configure(Interface *i){ | 68 | QWidget *PPPModule::configure(Interface *i){ |
69 | qDebug("return ModemWidget"); | 69 | qDebug("return ModemWidget"); |
70 | PPPConfigWidget *pppconfig = new PPPConfigWidget( (InterfacePPP*)i, | 70 | PPPConfigWidget *pppconfig = new PPPConfigWidget( (InterfacePPP*)i, |
71 | 0, "PPPConfig", false, | 71 | 0, "PPPConfig", false, |
72 | Qt::WDestructiveClose ); | 72 | Qt::WDestructiveClose ); |
73 | return pppconfig; | 73 | return pppconfig; |
74 | } | 74 | } |
75 | 75 | ||
76 | /** | 76 | /** |
77 | * Create, and return the Information Module | 77 | * Create, and return the Information Module |
78 | * @return QWidget* pointer to this modules info. | 78 | * @return QWidget* pointer to this modules info. |
79 | */ | 79 | */ |
80 | QWidget *PPPModule::information(Interface *i){ | 80 | QWidget *PPPModule::information(Interface *i){ |
81 | // We don't have any advanced pppd information widget yet :-D | 81 | // We don't have any advanced pppd information widget yet :-D |
82 | // TODO ^ | 82 | // TODO ^ |
83 | qDebug("return PPPModule::information"); | 83 | qDebug("return PPPModule::information"); |
84 | // InterfaceInformationImp *information = new InterfaceInformationImp( 0, "InterfaceSetupImp", i); | 84 | // InterfaceInformationImp *information = new InterfaceInformationImp( 0, "InterfaceSetupImp", i); |
85 | InterfaceInformationPPP *information = new InterfaceInformationPPP( 0, "InterfaceInformationPPP", i ); | 85 | InterfaceInformationPPP *information = new InterfaceInformationPPP( 0, "InterfaceInformationPPP", i ); |
86 | return information; | 86 | return information; |
87 | } | 87 | } |
88 | 88 | ||
89 | /** | 89 | /** |
90 | * Get all active (up or down) interfaces | 90 | * Get all active (up or down) interfaces |
91 | * @return QList<Interface> A list of interfaces that exsist that havn't | 91 | * @return QList<Interface> A list of interfaces that exsist that havn't |
92 | * been called by isOwner() | 92 | * been called by isOwner() |
93 | */ | 93 | */ |
94 | QList<Interface> PPPModule::getInterfaces(){ | 94 | QList<Interface> PPPModule::getInterfaces(){ |
95 | // List all of the files in the peer directory | 95 | // List all of the files in the peer directory |
96 | qDebug("PPPModule::getInterfaces"); | 96 | qDebug("PPPModule::getInterfaces"); |
97 | return list; | 97 | return list; |
98 | } | 98 | } |
99 | 99 | ||
100 | /** | 100 | /** |
101 | * Attempt to add a new interface as defined by name | 101 | * Attempt to add a new interface as defined by name |
102 | * @param name the name of the type of interface that should be created given | 102 | * @param name the name of the type of interface that should be created given |
103 | * by possibleNewInterfaces(); | 103 | * by possibleNewInterfaces(); |
104 | * @return Interface* NULL if it was unable to be created. | 104 | * @return Interface* NULL if it was unable to be created. |
105 | */ | 105 | */ |
106 | Interface *PPPModule::addNewInterface(const QString &newInterface){ | 106 | Interface *PPPModule::addNewInterface(const QString &newInterface){ |
107 | 107 | ||
108 | qDebug("try to add iface %s",newInterface.latin1()); | ||
109 | |||
110 | InterfacePPP *ifaceppp; | 108 | InterfacePPP *ifaceppp; |
111 | Interface *iface; | 109 | Interface *iface; |
112 | ifaceppp = new InterfacePPP(); | 110 | ifaceppp = new InterfacePPP(); |
113 | PPPConfigWidget imp(ifaceppp, 0, "PPPConfigImp", true); | 111 | PPPConfigWidget imp(ifaceppp, 0, "PPPConfigImp", true); |
114 | imp.showMaximized(); | 112 | imp.showMaximized(); |
115 | if(imp.exec() == QDialog::Accepted ){ | 113 | if(imp.exec() == QDialog::Accepted ){ |
114 | iface = (InterfacePPP*) ifaceppp; | ||
116 | iface->setModuleOwner( this ); | 115 | iface->setModuleOwner( this ); |
117 | iface = ifaceppp; | ||
118 | list.append( iface ); | 116 | list.append( iface ); |
119 | return iface; | 117 | return iface; |
120 | }else { | 118 | }else { |
121 | delete iface; | 119 | delete ifaceppp; |
122 | iface = NULL; | 120 | iface = NULL; |
123 | } | 121 | } |
124 | return iface; | 122 | return iface; |
125 | } | 123 | } |
126 | 124 | ||
127 | /** | 125 | /** |
128 | * Attempts to remove the interface, doesn't delete i | 126 | * Attempts to remove the interface, doesn't delete i |
129 | * @return bool true if successfull, false otherwise. | 127 | * @return bool true if successfull, false otherwise. |
130 | */ | 128 | */ |
131 | bool PPPModule::remove(Interface*){ | 129 | bool PPPModule::remove(Interface *i){ |
132 | // Can't remove a hardware device, you can stop it though. | 130 | return list.remove(i); |
133 | return false; | ||
134 | } | 131 | } |
135 | 132 | ||
136 | void PPPModule::possibleNewInterfaces(QMap<QString, QString> &newIfaces) | 133 | void PPPModule::possibleNewInterfaces(QMap<QString, QString> &newIfaces) |
137 | { | 134 | { |
138 | newIfaces.insert(QObject::tr("PPP") , | 135 | newIfaces.insert(QObject::tr("PPP") , |
139 | QObject::tr("generic ppp device")); | 136 | QObject::tr("generic ppp device")); |
140 | } | 137 | } |
141 | 138 | ||
142 | 139 | ||