summaryrefslogtreecommitdiff
authorbenmeyer <benmeyer>2002-12-16 16:21:51 (UTC)
committer benmeyer <benmeyer>2002-12-16 16:21:51 (UTC)
commitdabe9c5ee8c2d51fe13b4e3a8b160afacf0f539f (patch) (unidiff)
tree2c9a68097931a6f603be4a62e4ea002dad560dcd
parentc7c8bf3d2fd133fa05ff7a5daed977c05429c4c1 (diff)
downloadopie-dabe9c5ee8c2d51fe13b4e3a8b160afacf0f539f.zip
opie-dabe9c5ee8c2d51fe13b4e3a8b160afacf0f539f.tar.gz
opie-dabe9c5ee8c2d51fe13b4e3a8b160afacf0f539f.tar.bz2
Fixed icon bug, removed some extra uneeded code, fixed WEP config bug
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/networksetup/interfaces/interface.cpp4
-rw-r--r--noncore/net/networksetup/mainwindowimp.cpp10
-rw-r--r--noncore/net/networksetup/wlan/wlanimp.cpp8
-rw-r--r--noncore/settings/networksettings/interfaces/interface.cpp4
-rw-r--r--noncore/settings/networksettings/mainwindowimp.cpp10
-rw-r--r--noncore/settings/networksettings/wlan/wlanimp.cpp8
6 files changed, 18 insertions, 26 deletions
diff --git a/noncore/net/networksetup/interfaces/interface.cpp b/noncore/net/networksetup/interfaces/interface.cpp
index 7ffa76f..d964961 100644
--- a/noncore/net/networksetup/interfaces/interface.cpp
+++ b/noncore/net/networksetup/interfaces/interface.cpp
@@ -1,191 +1,191 @@
1#include "interface.h" 1#include "interface.h"
2#include <qdatetime.h> 2#include <qdatetime.h>
3#include <qfile.h> 3#include <qfile.h>
4#include <qdir.h> 4#include <qdir.h>
5#include <qfileinfo.h> 5#include <qfileinfo.h>
6#include <qtextstream.h> 6#include <qtextstream.h>
7 7
8#define IFCONFIG "/sbin/ifconfig" 8#define IFCONFIG "/sbin/ifconfig"
9#define DHCP_INFO_DIR "/etc/dhcpc" 9#define DHCP_INFO_DIR "/etc/dhcpc"
10 10
11#include <stdio.h> 11#include <stdio.h>
12#include <stdlib.h> 12#include <stdlib.h>
13 13
14Interface::Interface(QObject * parent, const char * name, bool newSatus): QObject(parent, name), hardwareName("Unknown"), moduleOwner(NULL), status(newSatus), attached(false), dhcp(false), macAddress(""), ip("0.0.0.0"), broadcast(""), subnetMask("0.0.0.0"){ 14Interface::Interface(QObject * parent, const char * name, bool newSatus): QObject(parent, name), hardwareName("Unknown"), moduleOwner(NULL), status(newSatus), attached(false), dhcp(false), macAddress(""), ip("0.0.0.0"), broadcast(""), subnetMask("0.0.0.0"){
15 refresh(); 15 refresh();
16} 16}
17 17
18/** 18/**
19 * Set status 19 * Set status
20 * @param newStatus - the new status 20 * @param newStatus - the new status
21 * emit updateInterface 21 * emit updateInterface
22 */ 22 */
23void Interface::setStatus(bool newStatus){ 23void Interface::setStatus(bool newStatus){
24 if(status != newStatus){ 24 if(status != newStatus){
25 status = newStatus; 25 status = newStatus;
26 refresh(); 26 refresh();
27 } 27 }
28}; 28};
29 29
30/** 30/**
31 * Set if attached or not (802.11 card pulled out for example) 31 * Set if attached or not (802.11 card pulled out for example)
32 * @param isAttached - if attached 32 * @param isAttached - if attached
33 * emit updateInterface 33 * emit updateInterface
34 */ 34 */
35void Interface::setAttached(bool isAttached){ 35void Interface::setAttached(bool isAttached){
36 attached = isAttached; 36 attached = isAttached;
37 emit(updateInterface(this)); 37 emit(updateInterface(this));
38}; 38};
39 39
40/** 40/**
41 * Set Hardware name 41 * Set Hardware name
42 * @param name - the new name 42 * @param name - the new name
43 * emit updateInterface 43 * emit updateInterface
44 */ 44 */
45void Interface::setHardwareName(const QString &name){ 45void Interface::setHardwareName(const QString &name){
46 hardwareName = name; 46 hardwareName = name;
47 emit(updateInterface(this)); 47 emit(updateInterface(this));
48}; 48};
49 49
50/** 50/**
51 * Set Module owner 51 * Set Module owner
52 * @param owner - the new owner 52 * @param owner - the new owner
53 * emit updateInterface 53 * emit updateInterface
54 */ 54 */
55void Interface::setModuleOwner(Module *owner){ 55void Interface::setModuleOwner(Module *owner){
56 moduleOwner = owner; 56 moduleOwner = owner;
57 emit(updateInterface(this)); 57 emit(updateInterface(this));
58}; 58};
59 59
60 60
61/** 61/**
62 * Try to start the interface. 62 * Try to start the interface.
63 */ 63 */
64void Interface::start(){ 64void Interface::start(){
65 // check to see if we are already running. 65 // check to see if we are already running.
66 if(true == status){ 66 if(true == status){
67 emit (updateMessage("Unable to start interface,\n already started")); 67 emit (updateMessage("Unable to start interface,\n already started"));
68 return; 68 return;
69 } 69 }
70 70
71 int ret = system(QString("%1 %2 up").arg(IFCONFIG).arg(this->name()).latin1()); 71 int ret = system(QString("%1 %2 up").arg(IFCONFIG).arg(this->name()).latin1());
72 // See if it was successfull... 72 // See if it was successfull...
73 if(ret != 0){ 73 if(ret != 0){
74 emit (updateMessage("Starting interface failed.")); 74 emit (updateMessage("Starting interface failed"));
75 return; 75 return;
76 } 76 }
77 77
78 status = true; 78 status = true;
79 refresh(); 79 refresh();
80 emit (updateMessage("Start successfull")); 80 emit (updateMessage("Start successfull"));
81} 81}
82 82
83/** 83/**
84 * Try to stop the interface. 84 * Try to stop the interface.
85 */ 85 */
86void Interface::stop(){ 86void Interface::stop(){
87 // check to see if we are already stopped. 87 // check to see if we are already stopped.
88 if(false == status){ 88 if(false == status){
89 emit (updateMessage("Unable to stop interface,\n already stopped")); 89 emit (updateMessage("Unable to stop interface,\n already stopped"));
90 return; 90 return;
91 } 91 }
92 92
93 int ret = system(QString("%1 %2 down").arg(IFCONFIG).arg(this->name()).latin1()); 93 int ret = system(QString("%1 %2 down").arg(IFCONFIG).arg(this->name()).latin1());
94 if(ret != 0){ 94 if(ret != 0){
95 emit (updateMessage("Stopping interface failed.")); 95 emit (updateMessage("Stopping interface failed"));
96 return; 96 return;
97 } 97 }
98 98
99 status = false; 99 status = false;
100 refresh(); 100 refresh();
101 emit (updateMessage("Stop successfull")); 101 emit (updateMessage("Stop successfull"));
102} 102}
103 103
104/** 104/**
105 * Try to restart the interface. 105 * Try to restart the interface.
106 */ 106 */
107void Interface::restart(){ 107void Interface::restart(){
108 stop(); 108 stop();
109 start(); 109 start();
110} 110}
111 111
112/** 112/**
113 * Try to refresh the information about the interface. 113 * Try to refresh the information about the interface.
114 * First call ifconfig, then check the dhcp-info file 114 * First call ifconfig, then check the dhcp-info file
115 * @return bool true if successfull. 115 * @return bool true if successfull.
116 */ 116 */
117bool Interface::refresh(){ 117bool Interface::refresh(){
118 // See if we are up. 118 // See if we are up.
119 if(status == false){ 119 if(status == false){
120 macAddress = ""; 120 macAddress = "";
121 ip = "0.0.0.0"; 121 ip = "0.0.0.0";
122 subnetMask = "0.0.0.0"; 122 subnetMask = "0.0.0.0";
123 broadcast = ""; 123 broadcast = "";
124 dhcp = false; 124 dhcp = false;
125 dhcpServerIp = ""; 125 dhcpServerIp = "";
126 leaseObtained = ""; 126 leaseObtained = "";
127 leaseExpires = ""; 127 leaseExpires = "";
128 emit(updateInterface(this)); 128 emit(updateInterface(this));
129 return true; 129 return true;
130 } 130 }
131 131
132 QString fileName = QString("/tmp/%1_ifconfig_info").arg(this->name()); 132 QString fileName = QString("/tmp/%1_ifconfig_info").arg(this->name());
133 int ret = system(QString("%1 %2 > %3").arg(IFCONFIG).arg(this->name()).arg(fileName).latin1()); 133 int ret = system(QString("%1 %2 > %3").arg(IFCONFIG).arg(this->name()).arg(fileName).latin1());
134 if(ret != 0){ 134 if(ret != 0){
135 qDebug(QString("Interface: Ifconfig return value: %1, is not 0").arg(ret).latin1()); 135 qDebug(QString("Interface: Ifconfig return value: %1, is not 0").arg(ret).latin1());
136 return false; 136 return false;
137 } 137 }
138 138
139 QFile file(fileName); 139 QFile file(fileName);
140 if (!file.open(IO_ReadOnly)){ 140 if (!file.open(IO_ReadOnly)){
141 qDebug(QString("Interface: Can't open file: %1").arg(fileName).latin1()); 141 qDebug(QString("Interface: Can't open file: %1").arg(fileName).latin1());
142 return false; 142 return false;
143 } 143 }
144 144
145 // Set to the defaults 145 // Set to the defaults
146 macAddress = ""; 146 macAddress = "";
147 ip = "0.0.0.0"; 147 ip = "0.0.0.0";
148 subnetMask = "0.0.0.0"; 148 subnetMask = "0.0.0.0";
149 broadcast = ""; 149 broadcast = "";
150 150
151 QTextStream stream( &file ); 151 QTextStream stream( &file );
152 QString line; 152 QString line;
153 while ( !stream.eof() ) { 153 while ( !stream.eof() ) {
154 line = stream.readLine(); 154 line = stream.readLine();
155 if(line.contains("HWaddr")){ 155 if(line.contains("HWaddr")){
156 int mac = line.find("HWaddr"); 156 int mac = line.find("HWaddr");
157 macAddress = line.mid(mac+7, line.length()); 157 macAddress = line.mid(mac+7, line.length());
158 } 158 }
159 if(line.contains("inet addr")){ 159 if(line.contains("inet addr")){
160 int ipl = line.find("inet addr"); 160 int ipl = line.find("inet addr");
161 int space = line.find(" ", ipl+10); 161 int space = line.find(" ", ipl+10);
162 ip = line.mid(ipl+10, space-ipl-10); 162 ip = line.mid(ipl+10, space-ipl-10);
163 } 163 }
164 if(line.contains("Mask")){ 164 if(line.contains("Mask")){
165 int mask = line.find("Mask"); 165 int mask = line.find("Mask");
166 subnetMask = line.mid(mask+5, line.length()); 166 subnetMask = line.mid(mask+5, line.length());
167 } 167 }
168 if(line.contains("Bcast")){ 168 if(line.contains("Bcast")){
169 int mask = line.find("Bcast"); 169 int mask = line.find("Bcast");
170 int space = line.find(" ", mask+6); 170 int space = line.find(" ", mask+6);
171 broadcast = line.mid(mask+6, space-mask-6); 171 broadcast = line.mid(mask+6, space-mask-6);
172 } 172 }
173 } 173 }
174 file.close(); 174 file.close();
175 QFile::remove(fileName); 175 QFile::remove(fileName);
176 176
177 // DHCP TESTING 177 // DHCP TESTING
178 // reset DHCP info 178 // reset DHCP info
179 dhcpServerIp = ""; 179 dhcpServerIp = "";
180 leaseObtained = ""; 180 leaseObtained = "";
181 leaseExpires = ""; 181 leaseExpires = "";
182 dhcp = false; 182 dhcp = false;
183 183
184 QString dhcpDirectory(DHCP_INFO_DIR); 184 QString dhcpDirectory(DHCP_INFO_DIR);
185 QDir d(dhcpDirectory); 185 QDir d(dhcpDirectory);
186 if(!d.exists(dhcpDirectory)) 186 if(!d.exists(dhcpDirectory))
187 dhcpDirectory = "/var/run"; 187 dhcpDirectory = "/var/run";
188 188
189 // See if we have 189 // See if we have
190 QString dhcpFile(QString(dhcpDirectory+"/dhcpcd-%1.info").arg(this->name())); 190 QString dhcpFile(QString(dhcpDirectory+"/dhcpcd-%1.info").arg(this->name()));
191 // If there is no DHCP information then exit now with no errors. 191 // If there is no DHCP information then exit now with no errors.
diff --git a/noncore/net/networksetup/mainwindowimp.cpp b/noncore/net/networksetup/mainwindowimp.cpp
index 7b93554..9a17743 100644
--- a/noncore/net/networksetup/mainwindowimp.cpp
+++ b/noncore/net/networksetup/mainwindowimp.cpp
@@ -227,284 +227,280 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString &
227 // Try to get an object. 227 // Try to get an object.
228 Module *object = ((Module* (*)()) functionPointer)(); 228 Module *object = ((Module* (*)()) functionPointer)();
229 if(object == NULL){ 229 if(object == NULL){
230 qDebug("MainWindowImp: Couldn't create object, but did load library!"); 230 qDebug("MainWindowImp: Couldn't create object, but did load library!");
231 delete lib; 231 delete lib;
232 return NULL; 232 return NULL;
233 } 233 }
234 234
235 // Store for deletion later 235 // Store for deletion later
236 libraries.insert(object, lib); 236 libraries.insert(object, lib);
237 return object; 237 return object;
238} 238}
239 239
240/** 240/**
241 * The Add button was clicked. Bring up the add dialog and if OK is hit 241 * The Add button was clicked. Bring up the add dialog and if OK is hit
242 * load the plugin and append it to the list 242 * load the plugin and append it to the list
243 */ 243 */
244void MainWindowImp::addClicked(){ 244void MainWindowImp::addClicked(){
245 QMap<Module*, QLibrary*>::Iterator it; 245 QMap<Module*, QLibrary*>::Iterator it;
246 QMap<QString, QString> list; 246 QMap<QString, QString> list;
247 QMap<QString, Module*> newInterfaceOwners; 247 QMap<QString, Module*> newInterfaceOwners;
248 //list.insert("USB (PPP) / (ADD_TEST)", "A dialup connection over the USB port"); 248 //list.insert("USB (PPP) / (ADD_TEST)", "A dialup connection over the USB port");
249 //list.insert("IrDa (PPP) / (ADD_TEST)", "A dialup connection over the IdDa port"); 249 //list.insert("IrDa (PPP) / (ADD_TEST)", "A dialup connection over the IdDa port");
250 for( it = libraries.begin(); it != libraries.end(); ++it ){ 250 for( it = libraries.begin(); it != libraries.end(); ++it ){
251 if(it.key()){ 251 if(it.key()){
252 (it.key())->possibleNewInterfaces(list); 252 (it.key())->possibleNewInterfaces(list);
253 } 253 }
254 } 254 }
255 // See if the list has anything that we can add. 255 // See if the list has anything that we can add.
256 if(list.count() == 0){ 256 if(list.count() == 0){
257 QMessageBox::information(this, "Sorry", "Nothing to add.", QMessageBox::Ok); 257 QMessageBox::information(this, "Sorry", "Nothing to add.", QMessageBox::Ok);
258 return; 258 return;
259 } 259 }
260 AddConnectionImp addNewConnection(this, "AddConnectionImp", true); 260 AddConnectionImp addNewConnection(this, "AddConnectionImp", true);
261 addNewConnection.addConnections(list); 261 addNewConnection.addConnections(list);
262 addNewConnection.showMaximized(); 262 addNewConnection.showMaximized();
263 if(QDialog::Accepted == addNewConnection.exec()){ 263 if(QDialog::Accepted == addNewConnection.exec()){
264 QListViewItem *item = addNewConnection.registeredServicesList->currentItem(); 264 QListViewItem *item = addNewConnection.registeredServicesList->currentItem();
265 if(!item) 265 if(!item)
266 return; 266 return;
267 267
268 for( it = libraries.begin(); it != libraries.end(); ++it ){ 268 for( it = libraries.begin(); it != libraries.end(); ++it ){
269 if(it.key()){ 269 if(it.key()){
270 Interface *i = (it.key())->addNewInterface(item->text(0)); 270 Interface *i = (it.key())->addNewInterface(item->text(0));
271 if(i){ 271 if(i){
272 interfaceNames.insert(i->getInterfaceName(), i); 272 interfaceNames.insert(i->getInterfaceName(), i);
273 updateInterface(i); 273 updateInterface(i);
274 } 274 }
275 } 275 }
276 } 276 }
277 } 277 }
278} 278}
279 279
280/** 280/**
281 * Prompt the user to see if they really want to do this. 281 * Prompt the user to see if they really want to do this.
282 * If they do then remove from the list and unload. 282 * If they do then remove from the list and unload.
283 */ 283 */
284void MainWindowImp::removeClicked(){ 284void MainWindowImp::removeClicked(){
285 QListViewItem *item = connectionList->currentItem(); 285 QListViewItem *item = connectionList->currentItem();
286 if(!item) { 286 if(!item) {
287 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok); 287 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok);
288 return; 288 return;
289 } 289 }
290 290
291 Interface *i = interfaceItems[item]; 291 Interface *i = interfaceItems[item];
292 if(i->getModuleOwner() == NULL){ 292 if(i->getModuleOwner() == NULL){
293 QMessageBox::information(this, "Can't remove interface.", "Interface is built in.", QMessageBox::Ok); 293 QMessageBox::information(this, "Can't remove interface.", "Interface is built in.", QMessageBox::Ok);
294 } 294 }
295 else{ 295 else{
296 if(!i->getModuleOwner()->remove(i)) 296 if(!i->getModuleOwner()->remove(i))
297 QMessageBox::information(this, "Error", "Unable to remove.", QMessageBox::Ok); 297 QMessageBox::information(this, "Error", "Unable to remove.", QMessageBox::Ok);
298 else{ 298 else{
299 QMessageBox::information(this, "Success", "Interface was removed.", QMessageBox::Ok); 299 QMessageBox::information(this, "Success", "Interface was removed.", QMessageBox::Ok);
300 // TODO memory managment.... 300 // TODO memory managment....
301 // who deletes the interface? 301 // who deletes the interface?
302 } 302 }
303 } 303 }
304} 304}
305 305
306/** 306/**
307 * Pull up the configure about the currently selected interface. 307 * Pull up the configure about the currently selected interface.
308 * Report an error if no interface is selected. 308 * Report an error if no interface is selected.
309 * If the interface has a module owner then request its configure. 309 * If the interface has a module owner then request its configure.
310 */ 310 */
311void MainWindowImp::configureClicked(){ 311void MainWindowImp::configureClicked(){
312 QListViewItem *item = connectionList->currentItem(); 312 QListViewItem *item = connectionList->currentItem();
313 if(!item){ 313 if(!item){
314 QMessageBox::information(this, "Sorry","Please select an interface first.", QMessageBox::Ok); 314 QMessageBox::information(this, "Sorry","Please select an interface first.", QMessageBox::Ok);
315 return; 315 return;
316 } 316 }
317 317
318 Interface *i = interfaceItems[item]; 318 Interface *i = interfaceItems[item];
319 if(i->getModuleOwner()){ 319 if(i->getModuleOwner()){
320 QWidget *moduleConfigure = i->getModuleOwner()->configure(i); 320 QWidget *moduleConfigure = i->getModuleOwner()->configure(i);
321 if(moduleConfigure != NULL){ 321 if(moduleConfigure != NULL){
322 moduleConfigure->showMaximized(); 322 moduleConfigure->showMaximized();
323 moduleConfigure->show();
324 return; 323 return;
325 } 324 }
326 } 325 }
327 326
328 InterfaceSetupImpDialog *configure = new InterfaceSetupImpDialog(0, "InterfaceSetupImp", i, true, Qt::WDestructiveClose); 327 InterfaceSetupImpDialog *configure = new InterfaceSetupImpDialog(0, "InterfaceSetupImp", i, true, Qt::WDestructiveClose);
329 QString currentProfileText = currentProfileLabel->text(); 328 QString currentProfileText = currentProfileLabel->text();
330 if(currentProfileText.upper() == "ALL"); 329 if(currentProfileText.upper() == "ALL");
331 currentProfileText = ""; 330 currentProfileText = "";
332 configure->setProfile(currentProfileText); 331 configure->setProfile(currentProfileText);
333 configure->showMaximized(); 332 configure->showMaximized();
334 configure->show();
335} 333}
336 334
337/** 335/**
338 * Pull up the information about the currently selected interface. 336 * Pull up the information about the currently selected interface.
339 * Report an error if no interface is selected. 337 * Report an error if no interface is selected.
340 * If the interface has a module owner then request its configure. 338 * If the interface has a module owner then request its configure.
341 */ 339 */
342void MainWindowImp::informationClicked(){ 340void MainWindowImp::informationClicked(){
343 QListViewItem *item = connectionList->currentItem(); 341 QListViewItem *item = connectionList->currentItem();
344 if(!item){ 342 if(!item){
345 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok); 343 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok);
346 return; 344 return;
347 } 345 }
348 346
349 Interface *i = interfaceItems[item]; 347 Interface *i = interfaceItems[item];
350 if(!i->isAttached()){ 348 if(!i->isAttached()){
351 QMessageBox::information(this, "Sorry","No information about\na disconnected interface.", QMessageBox::Ok); 349 QMessageBox::information(this, "Sorry","No information about\na disconnected interface.", QMessageBox::Ok);
352 return; 350 return;
353 } 351 }
354 352
355 if(i->getModuleOwner()){ 353 if(i->getModuleOwner()){
356 QWidget *moduleInformation = i->getModuleOwner()->information(i); 354 QWidget *moduleInformation = i->getModuleOwner()->information(i);
357 if(moduleInformation != NULL){ 355 if(moduleInformation != NULL){
358 moduleInformation->showMaximized(); 356 moduleInformation->showMaximized();
359 moduleInformation->show();
360 return; 357 return;
361 } 358 }
362 } 359 }
363 InterfaceInformationImp *information = new InterfaceInformationImp(0, "InterfaceSetupImp", i, true); 360 InterfaceInformationImp information(0, "InterfaceSetupImp", i);
364 information->showMaximized(); 361 information.showMaximized();
365 information->show();
366} 362}
367 363
368/** 364/**
369 * Update this interface. If no QListViewItem exists create one. 365 * Update this interface. If no QListViewItem exists create one.
370 * @param Interface* pointer to the interface that needs to be updated. 366 * @param Interface* pointer to the interface that needs to be updated.
371 */ 367 */
372void MainWindowImp::updateInterface(Interface *i){ 368void MainWindowImp::updateInterface(Interface *i){
373 if(!advancedUserMode){ 369 if(!advancedUserMode){
374 if(i->getInterfaceName() == "lo") 370 if(i->getInterfaceName() == "lo")
375 return; 371 return;
376 } 372 }
377 373
378 QListViewItem *item = NULL; 374 QListViewItem *item = NULL;
379 375
380 // Find the interface, making it if needed. 376 // Find the interface, making it if needed.
381 if(items.find(i) == items.end()){ 377 if(items.find(i) == items.end()){
382 item = new QListViewItem(connectionList, "", "", ""); 378 item = new QListViewItem(connectionList, "", "", "");
383 // See if you can't find a module owner for this interface 379 // See if you can't find a module owner for this interface
384 QMap<Module*, QLibrary*>::Iterator it; 380 QMap<Module*, QLibrary*>::Iterator it;
385 for( it = libraries.begin(); it != libraries.end(); ++it ){ 381 for( it = libraries.begin(); it != libraries.end(); ++it ){
386 if(it.key()->isOwner(i)) 382 if(it.key()->isOwner(i))
387 i->setModuleOwner(it.key()); 383 i->setModuleOwner(it.key());
388 } 384 }
389 items.insert(i, item); 385 items.insert(i, item);
390 interfaceItems.insert(item, i); 386 interfaceItems.insert(item, i);
391 } 387 }
392 else 388 else
393 item = items[i]; 389 item = items[i];
394 390
395 // Update the icons and information 391 // Update the icons and information
396 item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down"))); 392 item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down")));
397 393
398 QString typeName = "lan"; 394 QString typeName = "lan";
399 if(i->getHardwareName().contains("Local Loopback")) 395 if(i->getHardwareName().contains("Local Loopback"))
400 typeName = "lo"; 396 typeName = "lo";
401 if(i->getInterfaceName().contains("irda")) 397 if(i->getInterfaceName().contains("irda"))
402 typeName = "irda"; 398 typeName = "irda";
403 if(i->getInterfaceName().contains("wlan")) 399 if(i->getInterfaceName().contains("wlan"))
404 typeName = "wlan"; 400 typeName = "wlan";
405 if(i->getInterfaceName().contains("usb")) 401 if(i->getInterfaceName().contains("usb"))
406 typeName = "usb"; 402 typeName = "usb";
407 403
408 if(!i->isAttached()) 404 if(!i->isAttached())
409 typeName = "connect_no"; 405 typeName = "connect_no";
410 // Actually try to use the Module 406 // Actually try to use the Module
411 if(i->getModuleOwner() != NULL) 407 if(i->getModuleOwner() != NULL)
412 typeName = i->getModuleOwner()->getPixmapName(i); 408 typeName = i->getModuleOwner()->getPixmapName(i);
413 409
414 item->setPixmap(1, (Resource::loadPixmap(typeName))); 410 item->setPixmap(1, (Resource::loadPixmap(QString("networksetup/") + typeName)));
415 item->setText(2, i->getHardwareName()); 411 item->setText(2, i->getHardwareName());
416 item->setText(3, QString("(%1)").arg(i->getInterfaceName())); 412 item->setText(3, QString("(%1)").arg(i->getInterfaceName()));
417 item->setText(4, (i->getStatus()) ? i->getIp() : QString("")); 413 item->setText(4, (i->getStatus()) ? i->getIp() : QString(""));
418} 414}
419 415
420void MainWindowImp::newProfileChanged(const QString& newText){ 416void MainWindowImp::newProfileChanged(const QString& newText){
421 if(newText.length() > 0) 417 if(newText.length() > 0)
422 newProfileButton->setEnabled(true); 418 newProfileButton->setEnabled(true);
423 else 419 else
424 newProfileButton->setEnabled(false); 420 newProfileButton->setEnabled(false);
425} 421}
426 422
427/** 423/**
428 * Adds a new profile to the list of profiles. 424 * Adds a new profile to the list of profiles.
429 * Don't add profiles that already exists. 425 * Don't add profiles that already exists.
430 * Appends to the list and QStringList 426 * Appends to the list and QStringList
431 */ 427 */
432void MainWindowImp::addProfile(){ 428void MainWindowImp::addProfile(){
433 QString newProfileName = newProfile->text(); 429 QString newProfileName = newProfile->text();
434 if(profiles.grep(newProfileName).count() > 0){ 430 if(profiles.grep(newProfileName).count() > 0){
435 QMessageBox::information(this, "Can't Add","Profile already exists.", QMessageBox::Ok); 431 QMessageBox::information(this, "Can't Add","Profile already exists.", QMessageBox::Ok);
436 return; 432 return;
437 } 433 }
438 profiles.append(newProfileName); 434 profiles.append(newProfileName);
439 profilesList->insertItem(newProfileName); 435 profilesList->insertItem(newProfileName);
440} 436}
441 437
442/** 438/**
443 * Removes the currently selected profile in the combo. 439 * Removes the currently selected profile in the combo.
444 * Doesn't delete if there are less then 2 profiles. 440 * Doesn't delete if there are less then 2 profiles.
445 */ 441 */
446void MainWindowImp::removeProfile(){ 442void MainWindowImp::removeProfile(){
447 if(profilesList->count() <= 1){ 443 if(profilesList->count() <= 1){
448 QMessageBox::information(this, "Can't remove.","At least one profile\nis needed.", QMessageBox::Ok); 444 QMessageBox::information(this, "Can't remove.","At least one profile\nis needed.", QMessageBox::Ok);
449 return; 445 return;
450 } 446 }
451 QString profileToRemove = profilesList->currentText(); 447 QString profileToRemove = profilesList->currentText();
452 if(profileToRemove == "All"){ 448 if(profileToRemove == "All"){
453 QMessageBox::information(this, "Can't remove.","Can't remove default.", QMessageBox::Ok); 449 QMessageBox::information(this, "Can't remove.","Can't remove default.", QMessageBox::Ok);
454 return; 450 return;
455 } 451 }
456 // Can't remove the curent profile 452 // Can't remove the curent profile
457 if(profileToRemove == currentProfileLabel->text()){ 453 if(profileToRemove == currentProfileLabel->text()){
458 QMessageBox::information(this, "Can't remove.",QString("%1 is the current profile.").arg(profileToRemove), QMessageBox::Ok); 454 QMessageBox::information(this, "Can't remove.",QString("%1 is the current profile.").arg(profileToRemove), QMessageBox::Ok);
459 return; 455 return;
460 456
461 } 457 }
462 458
463 if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){ 459 if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){
464 profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), "")); 460 profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), ""));
465 profilesList->clear(); 461 profilesList->clear();
466 for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) 462 for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it)
467 profilesList->insertItem((*it)); 463 profilesList->insertItem((*it));
468 464
469 // Remove any interface settings and mappings. 465 // Remove any interface settings and mappings.
470 Interfaces interfaces; 466 Interfaces interfaces;
471 // Go through them one by one 467 // Go through them one by one
472 QMap<Interface*, QListViewItem*>::Iterator it; 468 QMap<Interface*, QListViewItem*>::Iterator it;
473 for( it = items.begin(); it != items.end(); ++it ){ 469 for( it = items.begin(); it != items.end(); ++it ){
474 QString interfaceName = it.key()->getInterfaceName(); 470 QString interfaceName = it.key()->getInterfaceName();
475 qDebug(interfaceName.latin1()); 471 qDebug(interfaceName.latin1());
476 if(interfaces.setInterface(interfaceName + "_" + profileToRemove)){ 472 if(interfaces.setInterface(interfaceName + "_" + profileToRemove)){
477 interfaces.removeInterface(); 473 interfaces.removeInterface();
478 if(interfaces.setMapping(interfaceName)){ 474 if(interfaces.setMapping(interfaceName)){
479 if(profilesList->count() == 1) 475 if(profilesList->count() == 1)
480 interfaces.removeMapping(); 476 interfaces.removeMapping();
481 else{ 477 else{
482 interfaces.removeMap("map", interfaceName + "_" + profileToRemove); 478 interfaces.removeMap("map", interfaceName + "_" + profileToRemove);
483 } 479 }
484 } 480 }
485 interfaces.write(); 481 interfaces.write();
486 break; 482 break;
487 } 483 }
488 } 484 }
489 } 485 }
490} 486}
491 487
492/** 488/**
493 * A new profile has been selected, change. 489 * A new profile has been selected, change.
494 * @param newProfile the new profile. 490 * @param newProfile the new profile.
495 */ 491 */
496void MainWindowImp::changeProfile(){ 492void MainWindowImp::changeProfile(){
497 if(profilesList->currentItem() == -1){ 493 if(profilesList->currentItem() == -1){
498 QMessageBox::information(this, "Can't Change.","Please select a profile.", QMessageBox::Ok); 494 QMessageBox::information(this, "Can't Change.","Please select a profile.", QMessageBox::Ok);
499 return; 495 return;
500 } 496 }
501 QString newProfile = profilesList->text(profilesList->currentItem()); 497 QString newProfile = profilesList->text(profilesList->currentItem());
502 if(newProfile != currentProfileLabel->text()){ 498 if(newProfile != currentProfileLabel->text()){
503 currentProfileLabel->setText(newProfile); 499 currentProfileLabel->setText(newProfile);
504 QFile::remove(scheme); 500 QFile::remove(scheme);
505 QFile file(scheme); 501 QFile file(scheme);
506 if ( file.open(IO_ReadWrite) ) { 502 if ( file.open(IO_ReadWrite) ) {
507 QTextStream stream( &file ); 503 QTextStream stream( &file );
508 stream << QString("SCHEME=%1").arg(newProfile); 504 stream << QString("SCHEME=%1").arg(newProfile);
509 file.close(); 505 file.close();
510 } 506 }
diff --git a/noncore/net/networksetup/wlan/wlanimp.cpp b/noncore/net/networksetup/wlan/wlanimp.cpp
index cc18fba..648932f 100644
--- a/noncore/net/networksetup/wlan/wlanimp.cpp
+++ b/noncore/net/networksetup/wlan/wlanimp.cpp
@@ -6,199 +6,199 @@
6#include <qtextstream.h> 6#include <qtextstream.h>
7#include <qmessagebox.h> 7#include <qmessagebox.h>
8#include <qlineedit.h> 8#include <qlineedit.h>
9#include <qlabel.h> 9#include <qlabel.h>
10#include <qspinbox.h> 10#include <qspinbox.h>
11#include <qradiobutton.h> 11#include <qradiobutton.h>
12#include <qcheckbox.h> 12#include <qcheckbox.h>
13#include <qtabwidget.h> 13#include <qtabwidget.h>
14#include <qcombobox.h> 14#include <qcombobox.h>
15 15
16/* system() */ 16/* system() */
17#include <stdlib.h> 17#include <stdlib.h>
18 18
19#define WIRELESS_OPTS "/etc/pcmcia/wireless.opts" 19#define WIRELESS_OPTS "/etc/pcmcia/wireless.opts"
20 20
21/** 21/**
22 * Constructor, read in the wireless.opts file for parsing later. 22 * Constructor, read in the wireless.opts file for parsing later.
23 */ 23 */
24WLANImp::WLANImp( QWidget* parent, const char* name, Interface *i, bool modal, WFlags fl):WLAN(parent, name, modal, fl), currentProfile("*") { 24WLANImp::WLANImp( QWidget* parent, const char* name, Interface *i, bool modal, WFlags fl):WLAN(parent, name, modal, fl), currentProfile("*") {
25 interfaceSetup = new InterfaceSetupImp(tabWidget, "InterfaceSetupImp", i); 25 interfaceSetup = new InterfaceSetupImp(tabWidget, "InterfaceSetupImp", i);
26 tabWidget->insertTab(interfaceSetup, "TCP/IP"); 26 tabWidget->insertTab(interfaceSetup, "TCP/IP");
27 27
28 // Read in the config file. 28 // Read in the config file.
29 QString wlanFile = WIRELESS_OPTS; 29 QString wlanFile = WIRELESS_OPTS;
30 QFile file(wlanFile); 30 QFile file(wlanFile);
31 if (file.open(IO_ReadOnly)){ 31 if (file.open(IO_ReadOnly)){
32 QTextStream stream( &file ); 32 QTextStream stream( &file );
33 QString line = ""; 33 QString line = "";
34 while ( !stream.eof() ) { 34 while ( !stream.eof() ) {
35 line += stream.readLine(); 35 line += stream.readLine();
36 line += "\n"; 36 line += "\n";
37 } 37 }
38 file.close(); 38 file.close();
39 settingsFileText = QStringList::split("\n", line, true); 39 settingsFileText = QStringList::split("\n", line, true);
40 parseSettingFile(); 40 parseSettingFile();
41 } 41 }
42 else 42 else
43 qDebug(QString("WLANImp: Can't open file: %1 for reading.").arg(wlanFile).latin1()); 43 qDebug(QString("WLANImp: Can't open file: %1 for reading.").arg(wlanFile).latin1());
44 connect(networkType, SIGNAL(activated(int)), this, SLOT(typeChanged(int))); 44 connect(networkType, SIGNAL(activated(int)), this, SLOT(typeChanged(int)));
45} 45}
46 46
47void WLANImp::typeChanged(int mod){ 47void WLANImp::typeChanged(int mod){
48 networkChannel->setEnabled(mod); 48 networkChannel->setEnabled(mod);
49 channelLabel->setEnabled(mod); 49 channelLabel->setEnabled(mod);
50} 50}
51 51
52/** 52/**
53 * Change the profile for both wireless settings and network settings. 53 * Change the profile for both wireless settings and network settings.
54 */ 54 */
55void WLANImp::setProfile(const QString &profile){ 55void WLANImp::setProfile(const QString &profile){
56 interfaceSetup->setProfile(profile); 56 interfaceSetup->setProfile(profile);
57 parseSettingFile(); 57 parseSettingFile();
58} 58}
59 59
60/** 60/**
61 * Parses the settings file that was read in and gets any setting from it. 61 * Parses the settings file that was read in and gets any setting from it.
62 */ 62 */
63void WLANImp::parseSettingFile(){ 63void WLANImp::parseSettingFile(){
64 bool foundCase = false; 64 bool foundCase = false;
65 bool found = false; 65 bool found = false;
66 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { 66 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) {
67 QString line = (*it).simplifyWhiteSpace(); 67 QString line = (*it).simplifyWhiteSpace();
68 if(line.contains("case")) 68 if(line.contains("case"))
69 foundCase = true; 69 foundCase = true;
70 // See if we found our scheme to write or the sceme couldn't be found 70 // See if we found our scheme to write or the sceme couldn't be found
71 if((foundCase && line.contains("esac")) || 71 if((foundCase && line.contains("esac")) ||
72 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')) 72 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#'))
73 found = true; 73 found = true;
74 74
75 if(line.contains(";;")) 75 if(line.contains(";;"))
76 found = false; 76 found = false;
77 if(found){ 77 if(found){
78 // write out scheme 78 // write out scheme
79 if(line.contains("ESSID=")){ 79 if(line.contains("ESSID=")){
80 QString id = line.mid(line.find("ESSID=")+6, line.length()); 80 QString id = line.mid(line.find("ESSID=")+6, line.length());
81 if(id == "any"){ 81 if(id == "any"){
82 essAny->setChecked(false); 82 essAny->setChecked(false);
83 }else{ 83 }else{
84 essAny->setChecked(true); 84 essAny->setChecked(true);
85 essSpecificLineEdit->setText(id); 85 essSpecificLineEdit->setText(id);
86 } 86 }
87 } 87 }
88 if(line.contains("MODE=")){ 88 if(line.contains("MODE=")){
89 QString mode = line.mid(line.find("MODE=")+5, line.length()); 89 QString mode = line.mid(line.find("MODE=")+5, line.length());
90 if(mode == "Managed"){ 90 if(mode == "Managed"){
91 networkType->setCurrentItem(0); 91 networkType->setCurrentItem(0);
92 channelLabel->setEnabled(false); 92 channelLabel->setEnabled(false);
93 networkChannel->setEnabled(false); 93 networkChannel->setEnabled(false);
94 } 94 }
95 else{ 95 else{
96 networkType->setCurrentItem(1); 96 networkType->setCurrentItem(1);
97 networkChannel->setEnabled(true); 97 networkChannel->setEnabled(true);
98 channelLabel->setEnabled(true); 98 channelLabel->setEnabled(true);
99 } 99 }
100 } 100 }
101 if(line.contains("#KEY0=")) 101 if(line.contains("#KEY0="))
102 keyLineEdit0->setText(line.mid(5, line.length())); 102 keyLineEdit0->setText(line.mid(6, line.length()));
103 if(line.contains("#KEY1=")) 103 if(line.contains("#KEY1="))
104 keyLineEdit1->setText(line.mid(5, line.length())); 104 keyLineEdit1->setText(line.mid(6, line.length()));
105 if(line.contains("#KEY2=")) 105 if(line.contains("#KEY2="))
106 keyLineEdit2->setText(line.mid(5, line.length())); 106 keyLineEdit2->setText(line.mid(6, line.length()));
107 if(line.contains("#KEY3=")) 107 if(line.contains("#KEY3="))
108 keyLineEdit3->setText(line.mid(5, line.length())); 108 keyLineEdit3->setText(line.mid(6, line.length()));
109 109
110 if(line.contains("KEY=")){ 110 if(line.contains("KEY=")){
111 wepEnabled->setChecked(true); 111 wepEnabled->setChecked(true);
112 QString key; 112 QString key;
113 if(line.right(5) == (" open")){ 113 if(line.right(5) == (" open")){
114 key = line.mid(4, line.length()-5); 114 key = line.mid(4, line.length()-5);
115 authOpen->setChecked(true); 115 authOpen->setChecked(true);
116 authShared->setChecked(false); 116 authShared->setChecked(false);
117 } 117 }
118 else{ 118 else{
119 authOpen->setChecked(false); 119 authOpen->setChecked(false);
120 authShared->setChecked(true); 120 authShared->setChecked(true);
121 key = line.mid(4, line.length()); 121 key = line.mid(4, line.length());
122 } 122 }
123 if(key == keyLineEdit0->text()) keyRadio0->setChecked(true); 123 if(key == keyLineEdit0->text()) keyRadio0->setChecked(true);
124 if(key == keyLineEdit1->text()) keyRadio1->setChecked(true); 124 if(key == keyLineEdit1->text()) keyRadio1->setChecked(true);
125 if(key == keyLineEdit2->text()) keyRadio2->setChecked(true); 125 if(key == keyLineEdit2->text()) keyRadio2->setChecked(true);
126 if(key == keyLineEdit3->text()) keyRadio3->setChecked(true); 126 if(key == keyLineEdit3->text()) keyRadio3->setChecked(true);
127 } 127 }
128 if(line.contains("CHANNEL=")){ 128 if(line.contains("CHANNEL=")){
129 networkChannel->setValue(line.mid(line.find("CHANNEL=")+8, line.length()).toInt()); 129 networkChannel->setValue(line.mid(line.find("CHANNEL=")+8, line.length()).toInt());
130 } 130 }
131 } 131 }
132 } 132 }
133} 133}
134 134
135/** 135/**
136 * Saves settings to the wireless.opts file using the current profile 136 * Saves settings to the wireless.opts file using the current profile
137 */ 137 */
138void WLANImp::changeAndSaveSettingFile(){ 138void WLANImp::changeAndSaveSettingFile(){
139 QString wlanFile = WIRELESS_OPTS; 139 QString wlanFile = WIRELESS_OPTS;
140 QFile::remove(wlanFile); 140 QFile::remove(wlanFile);
141 QFile file(wlanFile); 141 QFile file(wlanFile);
142 142
143 if (!file.open(IO_ReadWrite)){ 143 if (!file.open(IO_ReadWrite)){
144 qDebug(QString("WLANImp::changeAndSaveSettingFile(): Can't open file: %1 for writing.").arg(wlanFile).latin1()); 144 qDebug(QString("WLANImp::changeAndSaveSettingFile(): Can't open file: %1 for writing.").arg(wlanFile).latin1());
145 return; 145 return;
146 } 146 }
147 147
148 QTextStream stream( &file ); 148 QTextStream stream( &file );
149 bool foundCase = false; 149 bool foundCase = false;
150 bool found = false; 150 bool found = false;
151 bool output = true; 151 bool output = true;
152 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { 152 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) {
153 QString line = (*it).simplifyWhiteSpace(); 153 QString line = (*it).simplifyWhiteSpace();
154 if(line.contains("case")) 154 if(line.contains("case"))
155 foundCase = true; 155 foundCase = true;
156 // See if we found our scheme to write or the sceme couldn't be found 156 // See if we found our scheme to write or the sceme couldn't be found
157 if((foundCase && line.contains("esac") && !found) || 157 if((foundCase && line.contains("esac") && !found) ||
158 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')){ 158 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')){
159 // write out scheme 159 // write out scheme
160 found = true; 160 found = true;
161 output = false; 161 output = false;
162 162
163 if(!line.contains("esac")) 163 if(!line.contains("esac"))
164 stream << line << "\n"; 164 stream << line << "\n";
165 if(!essAny->isChecked() == true){ 165 if(!essAny->isChecked() == true){
166 stream << "\tESSID=any\n"; 166 stream << "\tESSID=any\n";
167 stream << "\tMODE=Managed\n"; 167 stream << "\tMODE=Managed\n";
168 } 168 }
169 else{ 169 else{
170 stream << "\tESSID=" << essSpecificLineEdit->text() << '\n'; 170 stream << "\tESSID=" << essSpecificLineEdit->text() << '\n';
171 stream << "\tMODE=" << ( networkType->currentItem() == 0 ? "Managed" : "ad-hoc") << '\n'; 171 stream << "\tMODE=" << ( networkType->currentItem() == 0 ? "Managed" : "ad-hoc") << '\n';
172 stream << "\tCHANNEL=" << networkChannel->value() << "\n"; 172 stream << "\tCHANNEL=" << networkChannel->value() << "\n";
173 } 173 }
174 174
175 stream << "\t#KEY0=" << keyLineEdit0->text() << "\n"; 175 stream << "\t#KEY0=" << keyLineEdit0->text() << "\n";
176 stream << "\t#KEY1=" << keyLineEdit1->text() << "\n"; 176 stream << "\t#KEY1=" << keyLineEdit1->text() << "\n";
177 stream << "\t#KEY2=" << keyLineEdit2->text() << "\n"; 177 stream << "\t#KEY2=" << keyLineEdit2->text() << "\n";
178 stream << "\t#KEY3=" << keyLineEdit3->text() << "\n"; 178 stream << "\t#KEY3=" << keyLineEdit3->text() << "\n";
179 179
180 if(wepEnabled->isChecked()){ 180 if(wepEnabled->isChecked()){
181 stream << "\tKEY=\""; 181 stream << "\tKEY=\"";
182 if(keyRadio0->isChecked()) stream << keyLineEdit0->text(); 182 if(keyRadio0->isChecked()) stream << keyLineEdit0->text();
183 if(keyRadio1->isChecked()) stream << keyLineEdit1->text(); 183 if(keyRadio1->isChecked()) stream << keyLineEdit1->text();
184 if(keyRadio2->isChecked()) stream << keyLineEdit2->text(); 184 if(keyRadio2->isChecked()) stream << keyLineEdit2->text();
185 if(keyRadio3->isChecked()) stream << keyLineEdit3->text(); 185 if(keyRadio3->isChecked()) stream << keyLineEdit3->text();
186 if(authOpen->isChecked()) 186 if(authOpen->isChecked())
187 stream << " open"; 187 stream << " open";
188 else 188 else
189 stream << " restricted"; 189 stream << " restricted";
190 stream << "\"\n"; 190 stream << "\"\n";
191 } 191 }
192 stream << "\tRATE=auto\n"; 192 stream << "\tRATE=auto\n";
193 if(line.contains("esac")) 193 if(line.contains("esac"))
194 stream << line << "\n"; 194 stream << line << "\n";
195 } 195 }
196 if(line.contains(";;")) 196 if(line.contains(";;"))
197 output = true; 197 output = true;
198 if(output && (*it).length() ) 198 if(output && (*it).length() )
199 stream << (*it) << '\n'; 199 stream << (*it) << '\n';
200 } 200 }
201 file.close(); 201 file.close();
202} 202}
203 203
204/** 204/**
diff --git a/noncore/settings/networksettings/interfaces/interface.cpp b/noncore/settings/networksettings/interfaces/interface.cpp
index 7ffa76f..d964961 100644
--- a/noncore/settings/networksettings/interfaces/interface.cpp
+++ b/noncore/settings/networksettings/interfaces/interface.cpp
@@ -1,191 +1,191 @@
1#include "interface.h" 1#include "interface.h"
2#include <qdatetime.h> 2#include <qdatetime.h>
3#include <qfile.h> 3#include <qfile.h>
4#include <qdir.h> 4#include <qdir.h>
5#include <qfileinfo.h> 5#include <qfileinfo.h>
6#include <qtextstream.h> 6#include <qtextstream.h>
7 7
8#define IFCONFIG "/sbin/ifconfig" 8#define IFCONFIG "/sbin/ifconfig"
9#define DHCP_INFO_DIR "/etc/dhcpc" 9#define DHCP_INFO_DIR "/etc/dhcpc"
10 10
11#include <stdio.h> 11#include <stdio.h>
12#include <stdlib.h> 12#include <stdlib.h>
13 13
14Interface::Interface(QObject * parent, const char * name, bool newSatus): QObject(parent, name), hardwareName("Unknown"), moduleOwner(NULL), status(newSatus), attached(false), dhcp(false), macAddress(""), ip("0.0.0.0"), broadcast(""), subnetMask("0.0.0.0"){ 14Interface::Interface(QObject * parent, const char * name, bool newSatus): QObject(parent, name), hardwareName("Unknown"), moduleOwner(NULL), status(newSatus), attached(false), dhcp(false), macAddress(""), ip("0.0.0.0"), broadcast(""), subnetMask("0.0.0.0"){
15 refresh(); 15 refresh();
16} 16}
17 17
18/** 18/**
19 * Set status 19 * Set status
20 * @param newStatus - the new status 20 * @param newStatus - the new status
21 * emit updateInterface 21 * emit updateInterface
22 */ 22 */
23void Interface::setStatus(bool newStatus){ 23void Interface::setStatus(bool newStatus){
24 if(status != newStatus){ 24 if(status != newStatus){
25 status = newStatus; 25 status = newStatus;
26 refresh(); 26 refresh();
27 } 27 }
28}; 28};
29 29
30/** 30/**
31 * Set if attached or not (802.11 card pulled out for example) 31 * Set if attached or not (802.11 card pulled out for example)
32 * @param isAttached - if attached 32 * @param isAttached - if attached
33 * emit updateInterface 33 * emit updateInterface
34 */ 34 */
35void Interface::setAttached(bool isAttached){ 35void Interface::setAttached(bool isAttached){
36 attached = isAttached; 36 attached = isAttached;
37 emit(updateInterface(this)); 37 emit(updateInterface(this));
38}; 38};
39 39
40/** 40/**
41 * Set Hardware name 41 * Set Hardware name
42 * @param name - the new name 42 * @param name - the new name
43 * emit updateInterface 43 * emit updateInterface
44 */ 44 */
45void Interface::setHardwareName(const QString &name){ 45void Interface::setHardwareName(const QString &name){
46 hardwareName = name; 46 hardwareName = name;
47 emit(updateInterface(this)); 47 emit(updateInterface(this));
48}; 48};
49 49
50/** 50/**
51 * Set Module owner 51 * Set Module owner
52 * @param owner - the new owner 52 * @param owner - the new owner
53 * emit updateInterface 53 * emit updateInterface
54 */ 54 */
55void Interface::setModuleOwner(Module *owner){ 55void Interface::setModuleOwner(Module *owner){
56 moduleOwner = owner; 56 moduleOwner = owner;
57 emit(updateInterface(this)); 57 emit(updateInterface(this));
58}; 58};
59 59
60 60
61/** 61/**
62 * Try to start the interface. 62 * Try to start the interface.
63 */ 63 */
64void Interface::start(){ 64void Interface::start(){
65 // check to see if we are already running. 65 // check to see if we are already running.
66 if(true == status){ 66 if(true == status){
67 emit (updateMessage("Unable to start interface,\n already started")); 67 emit (updateMessage("Unable to start interface,\n already started"));
68 return; 68 return;
69 } 69 }
70 70
71 int ret = system(QString("%1 %2 up").arg(IFCONFIG).arg(this->name()).latin1()); 71 int ret = system(QString("%1 %2 up").arg(IFCONFIG).arg(this->name()).latin1());
72 // See if it was successfull... 72 // See if it was successfull...
73 if(ret != 0){ 73 if(ret != 0){
74 emit (updateMessage("Starting interface failed.")); 74 emit (updateMessage("Starting interface failed"));
75 return; 75 return;
76 } 76 }
77 77
78 status = true; 78 status = true;
79 refresh(); 79 refresh();
80 emit (updateMessage("Start successfull")); 80 emit (updateMessage("Start successfull"));
81} 81}
82 82
83/** 83/**
84 * Try to stop the interface. 84 * Try to stop the interface.
85 */ 85 */
86void Interface::stop(){ 86void Interface::stop(){
87 // check to see if we are already stopped. 87 // check to see if we are already stopped.
88 if(false == status){ 88 if(false == status){
89 emit (updateMessage("Unable to stop interface,\n already stopped")); 89 emit (updateMessage("Unable to stop interface,\n already stopped"));
90 return; 90 return;
91 } 91 }
92 92
93 int ret = system(QString("%1 %2 down").arg(IFCONFIG).arg(this->name()).latin1()); 93 int ret = system(QString("%1 %2 down").arg(IFCONFIG).arg(this->name()).latin1());
94 if(ret != 0){ 94 if(ret != 0){
95 emit (updateMessage("Stopping interface failed.")); 95 emit (updateMessage("Stopping interface failed"));
96 return; 96 return;
97 } 97 }
98 98
99 status = false; 99 status = false;
100 refresh(); 100 refresh();
101 emit (updateMessage("Stop successfull")); 101 emit (updateMessage("Stop successfull"));
102} 102}
103 103
104/** 104/**
105 * Try to restart the interface. 105 * Try to restart the interface.
106 */ 106 */
107void Interface::restart(){ 107void Interface::restart(){
108 stop(); 108 stop();
109 start(); 109 start();
110} 110}
111 111
112/** 112/**
113 * Try to refresh the information about the interface. 113 * Try to refresh the information about the interface.
114 * First call ifconfig, then check the dhcp-info file 114 * First call ifconfig, then check the dhcp-info file
115 * @return bool true if successfull. 115 * @return bool true if successfull.
116 */ 116 */
117bool Interface::refresh(){ 117bool Interface::refresh(){
118 // See if we are up. 118 // See if we are up.
119 if(status == false){ 119 if(status == false){
120 macAddress = ""; 120 macAddress = "";
121 ip = "0.0.0.0"; 121 ip = "0.0.0.0";
122 subnetMask = "0.0.0.0"; 122 subnetMask = "0.0.0.0";
123 broadcast = ""; 123 broadcast = "";
124 dhcp = false; 124 dhcp = false;
125 dhcpServerIp = ""; 125 dhcpServerIp = "";
126 leaseObtained = ""; 126 leaseObtained = "";
127 leaseExpires = ""; 127 leaseExpires = "";
128 emit(updateInterface(this)); 128 emit(updateInterface(this));
129 return true; 129 return true;
130 } 130 }
131 131
132 QString fileName = QString("/tmp/%1_ifconfig_info").arg(this->name()); 132 QString fileName = QString("/tmp/%1_ifconfig_info").arg(this->name());
133 int ret = system(QString("%1 %2 > %3").arg(IFCONFIG).arg(this->name()).arg(fileName).latin1()); 133 int ret = system(QString("%1 %2 > %3").arg(IFCONFIG).arg(this->name()).arg(fileName).latin1());
134 if(ret != 0){ 134 if(ret != 0){
135 qDebug(QString("Interface: Ifconfig return value: %1, is not 0").arg(ret).latin1()); 135 qDebug(QString("Interface: Ifconfig return value: %1, is not 0").arg(ret).latin1());
136 return false; 136 return false;
137 } 137 }
138 138
139 QFile file(fileName); 139 QFile file(fileName);
140 if (!file.open(IO_ReadOnly)){ 140 if (!file.open(IO_ReadOnly)){
141 qDebug(QString("Interface: Can't open file: %1").arg(fileName).latin1()); 141 qDebug(QString("Interface: Can't open file: %1").arg(fileName).latin1());
142 return false; 142 return false;
143 } 143 }
144 144
145 // Set to the defaults 145 // Set to the defaults
146 macAddress = ""; 146 macAddress = "";
147 ip = "0.0.0.0"; 147 ip = "0.0.0.0";
148 subnetMask = "0.0.0.0"; 148 subnetMask = "0.0.0.0";
149 broadcast = ""; 149 broadcast = "";
150 150
151 QTextStream stream( &file ); 151 QTextStream stream( &file );
152 QString line; 152 QString line;
153 while ( !stream.eof() ) { 153 while ( !stream.eof() ) {
154 line = stream.readLine(); 154 line = stream.readLine();
155 if(line.contains("HWaddr")){ 155 if(line.contains("HWaddr")){
156 int mac = line.find("HWaddr"); 156 int mac = line.find("HWaddr");
157 macAddress = line.mid(mac+7, line.length()); 157 macAddress = line.mid(mac+7, line.length());
158 } 158 }
159 if(line.contains("inet addr")){ 159 if(line.contains("inet addr")){
160 int ipl = line.find("inet addr"); 160 int ipl = line.find("inet addr");
161 int space = line.find(" ", ipl+10); 161 int space = line.find(" ", ipl+10);
162 ip = line.mid(ipl+10, space-ipl-10); 162 ip = line.mid(ipl+10, space-ipl-10);
163 } 163 }
164 if(line.contains("Mask")){ 164 if(line.contains("Mask")){
165 int mask = line.find("Mask"); 165 int mask = line.find("Mask");
166 subnetMask = line.mid(mask+5, line.length()); 166 subnetMask = line.mid(mask+5, line.length());
167 } 167 }
168 if(line.contains("Bcast")){ 168 if(line.contains("Bcast")){
169 int mask = line.find("Bcast"); 169 int mask = line.find("Bcast");
170 int space = line.find(" ", mask+6); 170 int space = line.find(" ", mask+6);
171 broadcast = line.mid(mask+6, space-mask-6); 171 broadcast = line.mid(mask+6, space-mask-6);
172 } 172 }
173 } 173 }
174 file.close(); 174 file.close();
175 QFile::remove(fileName); 175 QFile::remove(fileName);
176 176
177 // DHCP TESTING 177 // DHCP TESTING
178 // reset DHCP info 178 // reset DHCP info
179 dhcpServerIp = ""; 179 dhcpServerIp = "";
180 leaseObtained = ""; 180 leaseObtained = "";
181 leaseExpires = ""; 181 leaseExpires = "";
182 dhcp = false; 182 dhcp = false;
183 183
184 QString dhcpDirectory(DHCP_INFO_DIR); 184 QString dhcpDirectory(DHCP_INFO_DIR);
185 QDir d(dhcpDirectory); 185 QDir d(dhcpDirectory);
186 if(!d.exists(dhcpDirectory)) 186 if(!d.exists(dhcpDirectory))
187 dhcpDirectory = "/var/run"; 187 dhcpDirectory = "/var/run";
188 188
189 // See if we have 189 // See if we have
190 QString dhcpFile(QString(dhcpDirectory+"/dhcpcd-%1.info").arg(this->name())); 190 QString dhcpFile(QString(dhcpDirectory+"/dhcpcd-%1.info").arg(this->name()));
191 // If there is no DHCP information then exit now with no errors. 191 // If there is no DHCP information then exit now with no errors.
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp
index 7b93554..9a17743 100644
--- a/noncore/settings/networksettings/mainwindowimp.cpp
+++ b/noncore/settings/networksettings/mainwindowimp.cpp
@@ -227,284 +227,280 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString &
227 // Try to get an object. 227 // Try to get an object.
228 Module *object = ((Module* (*)()) functionPointer)(); 228 Module *object = ((Module* (*)()) functionPointer)();
229 if(object == NULL){ 229 if(object == NULL){
230 qDebug("MainWindowImp: Couldn't create object, but did load library!"); 230 qDebug("MainWindowImp: Couldn't create object, but did load library!");
231 delete lib; 231 delete lib;
232 return NULL; 232 return NULL;
233 } 233 }
234 234
235 // Store for deletion later 235 // Store for deletion later
236 libraries.insert(object, lib); 236 libraries.insert(object, lib);
237 return object; 237 return object;
238} 238}
239 239
240/** 240/**
241 * The Add button was clicked. Bring up the add dialog and if OK is hit 241 * The Add button was clicked. Bring up the add dialog and if OK is hit
242 * load the plugin and append it to the list 242 * load the plugin and append it to the list
243 */ 243 */
244void MainWindowImp::addClicked(){ 244void MainWindowImp::addClicked(){
245 QMap<Module*, QLibrary*>::Iterator it; 245 QMap<Module*, QLibrary*>::Iterator it;
246 QMap<QString, QString> list; 246 QMap<QString, QString> list;
247 QMap<QString, Module*> newInterfaceOwners; 247 QMap<QString, Module*> newInterfaceOwners;
248 //list.insert("USB (PPP) / (ADD_TEST)", "A dialup connection over the USB port"); 248 //list.insert("USB (PPP) / (ADD_TEST)", "A dialup connection over the USB port");
249 //list.insert("IrDa (PPP) / (ADD_TEST)", "A dialup connection over the IdDa port"); 249 //list.insert("IrDa (PPP) / (ADD_TEST)", "A dialup connection over the IdDa port");
250 for( it = libraries.begin(); it != libraries.end(); ++it ){ 250 for( it = libraries.begin(); it != libraries.end(); ++it ){
251 if(it.key()){ 251 if(it.key()){
252 (it.key())->possibleNewInterfaces(list); 252 (it.key())->possibleNewInterfaces(list);
253 } 253 }
254 } 254 }
255 // See if the list has anything that we can add. 255 // See if the list has anything that we can add.
256 if(list.count() == 0){ 256 if(list.count() == 0){
257 QMessageBox::information(this, "Sorry", "Nothing to add.", QMessageBox::Ok); 257 QMessageBox::information(this, "Sorry", "Nothing to add.", QMessageBox::Ok);
258 return; 258 return;
259 } 259 }
260 AddConnectionImp addNewConnection(this, "AddConnectionImp", true); 260 AddConnectionImp addNewConnection(this, "AddConnectionImp", true);
261 addNewConnection.addConnections(list); 261 addNewConnection.addConnections(list);
262 addNewConnection.showMaximized(); 262 addNewConnection.showMaximized();
263 if(QDialog::Accepted == addNewConnection.exec()){ 263 if(QDialog::Accepted == addNewConnection.exec()){
264 QListViewItem *item = addNewConnection.registeredServicesList->currentItem(); 264 QListViewItem *item = addNewConnection.registeredServicesList->currentItem();
265 if(!item) 265 if(!item)
266 return; 266 return;
267 267
268 for( it = libraries.begin(); it != libraries.end(); ++it ){ 268 for( it = libraries.begin(); it != libraries.end(); ++it ){
269 if(it.key()){ 269 if(it.key()){
270 Interface *i = (it.key())->addNewInterface(item->text(0)); 270 Interface *i = (it.key())->addNewInterface(item->text(0));
271 if(i){ 271 if(i){
272 interfaceNames.insert(i->getInterfaceName(), i); 272 interfaceNames.insert(i->getInterfaceName(), i);
273 updateInterface(i); 273 updateInterface(i);
274 } 274 }
275 } 275 }
276 } 276 }
277 } 277 }
278} 278}
279 279
280/** 280/**
281 * Prompt the user to see if they really want to do this. 281 * Prompt the user to see if they really want to do this.
282 * If they do then remove from the list and unload. 282 * If they do then remove from the list and unload.
283 */ 283 */
284void MainWindowImp::removeClicked(){ 284void MainWindowImp::removeClicked(){
285 QListViewItem *item = connectionList->currentItem(); 285 QListViewItem *item = connectionList->currentItem();
286 if(!item) { 286 if(!item) {
287 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok); 287 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok);
288 return; 288 return;
289 } 289 }
290 290
291 Interface *i = interfaceItems[item]; 291 Interface *i = interfaceItems[item];
292 if(i->getModuleOwner() == NULL){ 292 if(i->getModuleOwner() == NULL){
293 QMessageBox::information(this, "Can't remove interface.", "Interface is built in.", QMessageBox::Ok); 293 QMessageBox::information(this, "Can't remove interface.", "Interface is built in.", QMessageBox::Ok);
294 } 294 }
295 else{ 295 else{
296 if(!i->getModuleOwner()->remove(i)) 296 if(!i->getModuleOwner()->remove(i))
297 QMessageBox::information(this, "Error", "Unable to remove.", QMessageBox::Ok); 297 QMessageBox::information(this, "Error", "Unable to remove.", QMessageBox::Ok);
298 else{ 298 else{
299 QMessageBox::information(this, "Success", "Interface was removed.", QMessageBox::Ok); 299 QMessageBox::information(this, "Success", "Interface was removed.", QMessageBox::Ok);
300 // TODO memory managment.... 300 // TODO memory managment....
301 // who deletes the interface? 301 // who deletes the interface?
302 } 302 }
303 } 303 }
304} 304}
305 305
306/** 306/**
307 * Pull up the configure about the currently selected interface. 307 * Pull up the configure about the currently selected interface.
308 * Report an error if no interface is selected. 308 * Report an error if no interface is selected.
309 * If the interface has a module owner then request its configure. 309 * If the interface has a module owner then request its configure.
310 */ 310 */
311void MainWindowImp::configureClicked(){ 311void MainWindowImp::configureClicked(){
312 QListViewItem *item = connectionList->currentItem(); 312 QListViewItem *item = connectionList->currentItem();
313 if(!item){ 313 if(!item){
314 QMessageBox::information(this, "Sorry","Please select an interface first.", QMessageBox::Ok); 314 QMessageBox::information(this, "Sorry","Please select an interface first.", QMessageBox::Ok);
315 return; 315 return;
316 } 316 }
317 317
318 Interface *i = interfaceItems[item]; 318 Interface *i = interfaceItems[item];
319 if(i->getModuleOwner()){ 319 if(i->getModuleOwner()){
320 QWidget *moduleConfigure = i->getModuleOwner()->configure(i); 320 QWidget *moduleConfigure = i->getModuleOwner()->configure(i);
321 if(moduleConfigure != NULL){ 321 if(moduleConfigure != NULL){
322 moduleConfigure->showMaximized(); 322 moduleConfigure->showMaximized();
323 moduleConfigure->show();
324 return; 323 return;
325 } 324 }
326 } 325 }
327 326
328 InterfaceSetupImpDialog *configure = new InterfaceSetupImpDialog(0, "InterfaceSetupImp", i, true, Qt::WDestructiveClose); 327 InterfaceSetupImpDialog *configure = new InterfaceSetupImpDialog(0, "InterfaceSetupImp", i, true, Qt::WDestructiveClose);
329 QString currentProfileText = currentProfileLabel->text(); 328 QString currentProfileText = currentProfileLabel->text();
330 if(currentProfileText.upper() == "ALL"); 329 if(currentProfileText.upper() == "ALL");
331 currentProfileText = ""; 330 currentProfileText = "";
332 configure->setProfile(currentProfileText); 331 configure->setProfile(currentProfileText);
333 configure->showMaximized(); 332 configure->showMaximized();
334 configure->show();
335} 333}
336 334
337/** 335/**
338 * Pull up the information about the currently selected interface. 336 * Pull up the information about the currently selected interface.
339 * Report an error if no interface is selected. 337 * Report an error if no interface is selected.
340 * If the interface has a module owner then request its configure. 338 * If the interface has a module owner then request its configure.
341 */ 339 */
342void MainWindowImp::informationClicked(){ 340void MainWindowImp::informationClicked(){
343 QListViewItem *item = connectionList->currentItem(); 341 QListViewItem *item = connectionList->currentItem();
344 if(!item){ 342 if(!item){
345 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok); 343 QMessageBox::information(this, "Sorry","Please select an interface First.", QMessageBox::Ok);
346 return; 344 return;
347 } 345 }
348 346
349 Interface *i = interfaceItems[item]; 347 Interface *i = interfaceItems[item];
350 if(!i->isAttached()){ 348 if(!i->isAttached()){
351 QMessageBox::information(this, "Sorry","No information about\na disconnected interface.", QMessageBox::Ok); 349 QMessageBox::information(this, "Sorry","No information about\na disconnected interface.", QMessageBox::Ok);
352 return; 350 return;
353 } 351 }
354 352
355 if(i->getModuleOwner()){ 353 if(i->getModuleOwner()){
356 QWidget *moduleInformation = i->getModuleOwner()->information(i); 354 QWidget *moduleInformation = i->getModuleOwner()->information(i);
357 if(moduleInformation != NULL){ 355 if(moduleInformation != NULL){
358 moduleInformation->showMaximized(); 356 moduleInformation->showMaximized();
359 moduleInformation->show();
360 return; 357 return;
361 } 358 }
362 } 359 }
363 InterfaceInformationImp *information = new InterfaceInformationImp(0, "InterfaceSetupImp", i, true); 360 InterfaceInformationImp information(0, "InterfaceSetupImp", i);
364 information->showMaximized(); 361 information.showMaximized();
365 information->show();
366} 362}
367 363
368/** 364/**
369 * Update this interface. If no QListViewItem exists create one. 365 * Update this interface. If no QListViewItem exists create one.
370 * @param Interface* pointer to the interface that needs to be updated. 366 * @param Interface* pointer to the interface that needs to be updated.
371 */ 367 */
372void MainWindowImp::updateInterface(Interface *i){ 368void MainWindowImp::updateInterface(Interface *i){
373 if(!advancedUserMode){ 369 if(!advancedUserMode){
374 if(i->getInterfaceName() == "lo") 370 if(i->getInterfaceName() == "lo")
375 return; 371 return;
376 } 372 }
377 373
378 QListViewItem *item = NULL; 374 QListViewItem *item = NULL;
379 375
380 // Find the interface, making it if needed. 376 // Find the interface, making it if needed.
381 if(items.find(i) == items.end()){ 377 if(items.find(i) == items.end()){
382 item = new QListViewItem(connectionList, "", "", ""); 378 item = new QListViewItem(connectionList, "", "", "");
383 // See if you can't find a module owner for this interface 379 // See if you can't find a module owner for this interface
384 QMap<Module*, QLibrary*>::Iterator it; 380 QMap<Module*, QLibrary*>::Iterator it;
385 for( it = libraries.begin(); it != libraries.end(); ++it ){ 381 for( it = libraries.begin(); it != libraries.end(); ++it ){
386 if(it.key()->isOwner(i)) 382 if(it.key()->isOwner(i))
387 i->setModuleOwner(it.key()); 383 i->setModuleOwner(it.key());
388 } 384 }
389 items.insert(i, item); 385 items.insert(i, item);
390 interfaceItems.insert(item, i); 386 interfaceItems.insert(item, i);
391 } 387 }
392 else 388 else
393 item = items[i]; 389 item = items[i];
394 390
395 // Update the icons and information 391 // Update the icons and information
396 item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down"))); 392 item->setPixmap(0, (Resource::loadPixmap(i->getStatus() ? "up": "down")));
397 393
398 QString typeName = "lan"; 394 QString typeName = "lan";
399 if(i->getHardwareName().contains("Local Loopback")) 395 if(i->getHardwareName().contains("Local Loopback"))
400 typeName = "lo"; 396 typeName = "lo";
401 if(i->getInterfaceName().contains("irda")) 397 if(i->getInterfaceName().contains("irda"))
402 typeName = "irda"; 398 typeName = "irda";
403 if(i->getInterfaceName().contains("wlan")) 399 if(i->getInterfaceName().contains("wlan"))
404 typeName = "wlan"; 400 typeName = "wlan";
405 if(i->getInterfaceName().contains("usb")) 401 if(i->getInterfaceName().contains("usb"))
406 typeName = "usb"; 402 typeName = "usb";
407 403
408 if(!i->isAttached()) 404 if(!i->isAttached())
409 typeName = "connect_no"; 405 typeName = "connect_no";
410 // Actually try to use the Module 406 // Actually try to use the Module
411 if(i->getModuleOwner() != NULL) 407 if(i->getModuleOwner() != NULL)
412 typeName = i->getModuleOwner()->getPixmapName(i); 408 typeName = i->getModuleOwner()->getPixmapName(i);
413 409
414 item->setPixmap(1, (Resource::loadPixmap(typeName))); 410 item->setPixmap(1, (Resource::loadPixmap(QString("networksetup/") + typeName)));
415 item->setText(2, i->getHardwareName()); 411 item->setText(2, i->getHardwareName());
416 item->setText(3, QString("(%1)").arg(i->getInterfaceName())); 412 item->setText(3, QString("(%1)").arg(i->getInterfaceName()));
417 item->setText(4, (i->getStatus()) ? i->getIp() : QString("")); 413 item->setText(4, (i->getStatus()) ? i->getIp() : QString(""));
418} 414}
419 415
420void MainWindowImp::newProfileChanged(const QString& newText){ 416void MainWindowImp::newProfileChanged(const QString& newText){
421 if(newText.length() > 0) 417 if(newText.length() > 0)
422 newProfileButton->setEnabled(true); 418 newProfileButton->setEnabled(true);
423 else 419 else
424 newProfileButton->setEnabled(false); 420 newProfileButton->setEnabled(false);
425} 421}
426 422
427/** 423/**
428 * Adds a new profile to the list of profiles. 424 * Adds a new profile to the list of profiles.
429 * Don't add profiles that already exists. 425 * Don't add profiles that already exists.
430 * Appends to the list and QStringList 426 * Appends to the list and QStringList
431 */ 427 */
432void MainWindowImp::addProfile(){ 428void MainWindowImp::addProfile(){
433 QString newProfileName = newProfile->text(); 429 QString newProfileName = newProfile->text();
434 if(profiles.grep(newProfileName).count() > 0){ 430 if(profiles.grep(newProfileName).count() > 0){
435 QMessageBox::information(this, "Can't Add","Profile already exists.", QMessageBox::Ok); 431 QMessageBox::information(this, "Can't Add","Profile already exists.", QMessageBox::Ok);
436 return; 432 return;
437 } 433 }
438 profiles.append(newProfileName); 434 profiles.append(newProfileName);
439 profilesList->insertItem(newProfileName); 435 profilesList->insertItem(newProfileName);
440} 436}
441 437
442/** 438/**
443 * Removes the currently selected profile in the combo. 439 * Removes the currently selected profile in the combo.
444 * Doesn't delete if there are less then 2 profiles. 440 * Doesn't delete if there are less then 2 profiles.
445 */ 441 */
446void MainWindowImp::removeProfile(){ 442void MainWindowImp::removeProfile(){
447 if(profilesList->count() <= 1){ 443 if(profilesList->count() <= 1){
448 QMessageBox::information(this, "Can't remove.","At least one profile\nis needed.", QMessageBox::Ok); 444 QMessageBox::information(this, "Can't remove.","At least one profile\nis needed.", QMessageBox::Ok);
449 return; 445 return;
450 } 446 }
451 QString profileToRemove = profilesList->currentText(); 447 QString profileToRemove = profilesList->currentText();
452 if(profileToRemove == "All"){ 448 if(profileToRemove == "All"){
453 QMessageBox::information(this, "Can't remove.","Can't remove default.", QMessageBox::Ok); 449 QMessageBox::information(this, "Can't remove.","Can't remove default.", QMessageBox::Ok);
454 return; 450 return;
455 } 451 }
456 // Can't remove the curent profile 452 // Can't remove the curent profile
457 if(profileToRemove == currentProfileLabel->text()){ 453 if(profileToRemove == currentProfileLabel->text()){
458 QMessageBox::information(this, "Can't remove.",QString("%1 is the current profile.").arg(profileToRemove), QMessageBox::Ok); 454 QMessageBox::information(this, "Can't remove.",QString("%1 is the current profile.").arg(profileToRemove), QMessageBox::Ok);
459 return; 455 return;
460 456
461 } 457 }
462 458
463 if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){ 459 if(QMessageBox::information(this, "Question",QString("Remove profile: %1").arg(profileToRemove), QMessageBox::Ok, QMessageBox::Cancel) == QMessageBox::Ok){
464 profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), "")); 460 profiles = QStringList::split(" ", profiles.join(" ").replace(QRegExp(profileToRemove), ""));
465 profilesList->clear(); 461 profilesList->clear();
466 for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it) 462 for ( QStringList::Iterator it = profiles.begin(); it != profiles.end(); ++it)
467 profilesList->insertItem((*it)); 463 profilesList->insertItem((*it));
468 464
469 // Remove any interface settings and mappings. 465 // Remove any interface settings and mappings.
470 Interfaces interfaces; 466 Interfaces interfaces;
471 // Go through them one by one 467 // Go through them one by one
472 QMap<Interface*, QListViewItem*>::Iterator it; 468 QMap<Interface*, QListViewItem*>::Iterator it;
473 for( it = items.begin(); it != items.end(); ++it ){ 469 for( it = items.begin(); it != items.end(); ++it ){
474 QString interfaceName = it.key()->getInterfaceName(); 470 QString interfaceName = it.key()->getInterfaceName();
475 qDebug(interfaceName.latin1()); 471 qDebug(interfaceName.latin1());
476 if(interfaces.setInterface(interfaceName + "_" + profileToRemove)){ 472 if(interfaces.setInterface(interfaceName + "_" + profileToRemove)){
477 interfaces.removeInterface(); 473 interfaces.removeInterface();
478 if(interfaces.setMapping(interfaceName)){ 474 if(interfaces.setMapping(interfaceName)){
479 if(profilesList->count() == 1) 475 if(profilesList->count() == 1)
480 interfaces.removeMapping(); 476 interfaces.removeMapping();
481 else{ 477 else{
482 interfaces.removeMap("map", interfaceName + "_" + profileToRemove); 478 interfaces.removeMap("map", interfaceName + "_" + profileToRemove);
483 } 479 }
484 } 480 }
485 interfaces.write(); 481 interfaces.write();
486 break; 482 break;
487 } 483 }
488 } 484 }
489 } 485 }
490} 486}
491 487
492/** 488/**
493 * A new profile has been selected, change. 489 * A new profile has been selected, change.
494 * @param newProfile the new profile. 490 * @param newProfile the new profile.
495 */ 491 */
496void MainWindowImp::changeProfile(){ 492void MainWindowImp::changeProfile(){
497 if(profilesList->currentItem() == -1){ 493 if(profilesList->currentItem() == -1){
498 QMessageBox::information(this, "Can't Change.","Please select a profile.", QMessageBox::Ok); 494 QMessageBox::information(this, "Can't Change.","Please select a profile.", QMessageBox::Ok);
499 return; 495 return;
500 } 496 }
501 QString newProfile = profilesList->text(profilesList->currentItem()); 497 QString newProfile = profilesList->text(profilesList->currentItem());
502 if(newProfile != currentProfileLabel->text()){ 498 if(newProfile != currentProfileLabel->text()){
503 currentProfileLabel->setText(newProfile); 499 currentProfileLabel->setText(newProfile);
504 QFile::remove(scheme); 500 QFile::remove(scheme);
505 QFile file(scheme); 501 QFile file(scheme);
506 if ( file.open(IO_ReadWrite) ) { 502 if ( file.open(IO_ReadWrite) ) {
507 QTextStream stream( &file ); 503 QTextStream stream( &file );
508 stream << QString("SCHEME=%1").arg(newProfile); 504 stream << QString("SCHEME=%1").arg(newProfile);
509 file.close(); 505 file.close();
510 } 506 }
diff --git a/noncore/settings/networksettings/wlan/wlanimp.cpp b/noncore/settings/networksettings/wlan/wlanimp.cpp
index cc18fba..648932f 100644
--- a/noncore/settings/networksettings/wlan/wlanimp.cpp
+++ b/noncore/settings/networksettings/wlan/wlanimp.cpp
@@ -6,199 +6,199 @@
6#include <qtextstream.h> 6#include <qtextstream.h>
7#include <qmessagebox.h> 7#include <qmessagebox.h>
8#include <qlineedit.h> 8#include <qlineedit.h>
9#include <qlabel.h> 9#include <qlabel.h>
10#include <qspinbox.h> 10#include <qspinbox.h>
11#include <qradiobutton.h> 11#include <qradiobutton.h>
12#include <qcheckbox.h> 12#include <qcheckbox.h>
13#include <qtabwidget.h> 13#include <qtabwidget.h>
14#include <qcombobox.h> 14#include <qcombobox.h>
15 15
16/* system() */ 16/* system() */
17#include <stdlib.h> 17#include <stdlib.h>
18 18
19#define WIRELESS_OPTS "/etc/pcmcia/wireless.opts" 19#define WIRELESS_OPTS "/etc/pcmcia/wireless.opts"
20 20
21/** 21/**
22 * Constructor, read in the wireless.opts file for parsing later. 22 * Constructor, read in the wireless.opts file for parsing later.
23 */ 23 */
24WLANImp::WLANImp( QWidget* parent, const char* name, Interface *i, bool modal, WFlags fl):WLAN(parent, name, modal, fl), currentProfile("*") { 24WLANImp::WLANImp( QWidget* parent, const char* name, Interface *i, bool modal, WFlags fl):WLAN(parent, name, modal, fl), currentProfile("*") {
25 interfaceSetup = new InterfaceSetupImp(tabWidget, "InterfaceSetupImp", i); 25 interfaceSetup = new InterfaceSetupImp(tabWidget, "InterfaceSetupImp", i);
26 tabWidget->insertTab(interfaceSetup, "TCP/IP"); 26 tabWidget->insertTab(interfaceSetup, "TCP/IP");
27 27
28 // Read in the config file. 28 // Read in the config file.
29 QString wlanFile = WIRELESS_OPTS; 29 QString wlanFile = WIRELESS_OPTS;
30 QFile file(wlanFile); 30 QFile file(wlanFile);
31 if (file.open(IO_ReadOnly)){ 31 if (file.open(IO_ReadOnly)){
32 QTextStream stream( &file ); 32 QTextStream stream( &file );
33 QString line = ""; 33 QString line = "";
34 while ( !stream.eof() ) { 34 while ( !stream.eof() ) {
35 line += stream.readLine(); 35 line += stream.readLine();
36 line += "\n"; 36 line += "\n";
37 } 37 }
38 file.close(); 38 file.close();
39 settingsFileText = QStringList::split("\n", line, true); 39 settingsFileText = QStringList::split("\n", line, true);
40 parseSettingFile(); 40 parseSettingFile();
41 } 41 }
42 else 42 else
43 qDebug(QString("WLANImp: Can't open file: %1 for reading.").arg(wlanFile).latin1()); 43 qDebug(QString("WLANImp: Can't open file: %1 for reading.").arg(wlanFile).latin1());
44 connect(networkType, SIGNAL(activated(int)), this, SLOT(typeChanged(int))); 44 connect(networkType, SIGNAL(activated(int)), this, SLOT(typeChanged(int)));
45} 45}
46 46
47void WLANImp::typeChanged(int mod){ 47void WLANImp::typeChanged(int mod){
48 networkChannel->setEnabled(mod); 48 networkChannel->setEnabled(mod);
49 channelLabel->setEnabled(mod); 49 channelLabel->setEnabled(mod);
50} 50}
51 51
52/** 52/**
53 * Change the profile for both wireless settings and network settings. 53 * Change the profile for both wireless settings and network settings.
54 */ 54 */
55void WLANImp::setProfile(const QString &profile){ 55void WLANImp::setProfile(const QString &profile){
56 interfaceSetup->setProfile(profile); 56 interfaceSetup->setProfile(profile);
57 parseSettingFile(); 57 parseSettingFile();
58} 58}
59 59
60/** 60/**
61 * Parses the settings file that was read in and gets any setting from it. 61 * Parses the settings file that was read in and gets any setting from it.
62 */ 62 */
63void WLANImp::parseSettingFile(){ 63void WLANImp::parseSettingFile(){
64 bool foundCase = false; 64 bool foundCase = false;
65 bool found = false; 65 bool found = false;
66 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { 66 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) {
67 QString line = (*it).simplifyWhiteSpace(); 67 QString line = (*it).simplifyWhiteSpace();
68 if(line.contains("case")) 68 if(line.contains("case"))
69 foundCase = true; 69 foundCase = true;
70 // See if we found our scheme to write or the sceme couldn't be found 70 // See if we found our scheme to write or the sceme couldn't be found
71 if((foundCase && line.contains("esac")) || 71 if((foundCase && line.contains("esac")) ||
72 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')) 72 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#'))
73 found = true; 73 found = true;
74 74
75 if(line.contains(";;")) 75 if(line.contains(";;"))
76 found = false; 76 found = false;
77 if(found){ 77 if(found){
78 // write out scheme 78 // write out scheme
79 if(line.contains("ESSID=")){ 79 if(line.contains("ESSID=")){
80 QString id = line.mid(line.find("ESSID=")+6, line.length()); 80 QString id = line.mid(line.find("ESSID=")+6, line.length());
81 if(id == "any"){ 81 if(id == "any"){
82 essAny->setChecked(false); 82 essAny->setChecked(false);
83 }else{ 83 }else{
84 essAny->setChecked(true); 84 essAny->setChecked(true);
85 essSpecificLineEdit->setText(id); 85 essSpecificLineEdit->setText(id);
86 } 86 }
87 } 87 }
88 if(line.contains("MODE=")){ 88 if(line.contains("MODE=")){
89 QString mode = line.mid(line.find("MODE=")+5, line.length()); 89 QString mode = line.mid(line.find("MODE=")+5, line.length());
90 if(mode == "Managed"){ 90 if(mode == "Managed"){
91 networkType->setCurrentItem(0); 91 networkType->setCurrentItem(0);
92 channelLabel->setEnabled(false); 92 channelLabel->setEnabled(false);
93 networkChannel->setEnabled(false); 93 networkChannel->setEnabled(false);
94 } 94 }
95 else{ 95 else{
96 networkType->setCurrentItem(1); 96 networkType->setCurrentItem(1);
97 networkChannel->setEnabled(true); 97 networkChannel->setEnabled(true);
98 channelLabel->setEnabled(true); 98 channelLabel->setEnabled(true);
99 } 99 }
100 } 100 }
101 if(line.contains("#KEY0=")) 101 if(line.contains("#KEY0="))
102 keyLineEdit0->setText(line.mid(5, line.length())); 102 keyLineEdit0->setText(line.mid(6, line.length()));
103 if(line.contains("#KEY1=")) 103 if(line.contains("#KEY1="))
104 keyLineEdit1->setText(line.mid(5, line.length())); 104 keyLineEdit1->setText(line.mid(6, line.length()));
105 if(line.contains("#KEY2=")) 105 if(line.contains("#KEY2="))
106 keyLineEdit2->setText(line.mid(5, line.length())); 106 keyLineEdit2->setText(line.mid(6, line.length()));
107 if(line.contains("#KEY3=")) 107 if(line.contains("#KEY3="))
108 keyLineEdit3->setText(line.mid(5, line.length())); 108 keyLineEdit3->setText(line.mid(6, line.length()));
109 109
110 if(line.contains("KEY=")){ 110 if(line.contains("KEY=")){
111 wepEnabled->setChecked(true); 111 wepEnabled->setChecked(true);
112 QString key; 112 QString key;
113 if(line.right(5) == (" open")){ 113 if(line.right(5) == (" open")){
114 key = line.mid(4, line.length()-5); 114 key = line.mid(4, line.length()-5);
115 authOpen->setChecked(true); 115 authOpen->setChecked(true);
116 authShared->setChecked(false); 116 authShared->setChecked(false);
117 } 117 }
118 else{ 118 else{
119 authOpen->setChecked(false); 119 authOpen->setChecked(false);
120 authShared->setChecked(true); 120 authShared->setChecked(true);
121 key = line.mid(4, line.length()); 121 key = line.mid(4, line.length());
122 } 122 }
123 if(key == keyLineEdit0->text()) keyRadio0->setChecked(true); 123 if(key == keyLineEdit0->text()) keyRadio0->setChecked(true);
124 if(key == keyLineEdit1->text()) keyRadio1->setChecked(true); 124 if(key == keyLineEdit1->text()) keyRadio1->setChecked(true);
125 if(key == keyLineEdit2->text()) keyRadio2->setChecked(true); 125 if(key == keyLineEdit2->text()) keyRadio2->setChecked(true);
126 if(key == keyLineEdit3->text()) keyRadio3->setChecked(true); 126 if(key == keyLineEdit3->text()) keyRadio3->setChecked(true);
127 } 127 }
128 if(line.contains("CHANNEL=")){ 128 if(line.contains("CHANNEL=")){
129 networkChannel->setValue(line.mid(line.find("CHANNEL=")+8, line.length()).toInt()); 129 networkChannel->setValue(line.mid(line.find("CHANNEL=")+8, line.length()).toInt());
130 } 130 }
131 } 131 }
132 } 132 }
133} 133}
134 134
135/** 135/**
136 * Saves settings to the wireless.opts file using the current profile 136 * Saves settings to the wireless.opts file using the current profile
137 */ 137 */
138void WLANImp::changeAndSaveSettingFile(){ 138void WLANImp::changeAndSaveSettingFile(){
139 QString wlanFile = WIRELESS_OPTS; 139 QString wlanFile = WIRELESS_OPTS;
140 QFile::remove(wlanFile); 140 QFile::remove(wlanFile);
141 QFile file(wlanFile); 141 QFile file(wlanFile);
142 142
143 if (!file.open(IO_ReadWrite)){ 143 if (!file.open(IO_ReadWrite)){
144 qDebug(QString("WLANImp::changeAndSaveSettingFile(): Can't open file: %1 for writing.").arg(wlanFile).latin1()); 144 qDebug(QString("WLANImp::changeAndSaveSettingFile(): Can't open file: %1 for writing.").arg(wlanFile).latin1());
145 return; 145 return;
146 } 146 }
147 147
148 QTextStream stream( &file ); 148 QTextStream stream( &file );
149 bool foundCase = false; 149 bool foundCase = false;
150 bool found = false; 150 bool found = false;
151 bool output = true; 151 bool output = true;
152 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) { 152 for ( QStringList::Iterator it = settingsFileText.begin(); it != settingsFileText.end(); ++it ) {
153 QString line = (*it).simplifyWhiteSpace(); 153 QString line = (*it).simplifyWhiteSpace();
154 if(line.contains("case")) 154 if(line.contains("case"))
155 foundCase = true; 155 foundCase = true;
156 // See if we found our scheme to write or the sceme couldn't be found 156 // See if we found our scheme to write or the sceme couldn't be found
157 if((foundCase && line.contains("esac") && !found) || 157 if((foundCase && line.contains("esac") && !found) ||
158 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')){ 158 (foundCase && line.left(currentProfile.length()+7) == currentProfile + ",*,*,*)" && line.at(0) != '#')){
159 // write out scheme 159 // write out scheme
160 found = true; 160 found = true;
161 output = false; 161 output = false;
162 162
163 if(!line.contains("esac")) 163 if(!line.contains("esac"))
164 stream << line << "\n"; 164 stream << line << "\n";
165 if(!essAny->isChecked() == true){ 165 if(!essAny->isChecked() == true){
166 stream << "\tESSID=any\n"; 166 stream << "\tESSID=any\n";
167 stream << "\tMODE=Managed\n"; 167 stream << "\tMODE=Managed\n";
168 } 168 }
169 else{ 169 else{
170 stream << "\tESSID=" << essSpecificLineEdit->text() << '\n'; 170 stream << "\tESSID=" << essSpecificLineEdit->text() << '\n';
171 stream << "\tMODE=" << ( networkType->currentItem() == 0 ? "Managed" : "ad-hoc") << '\n'; 171 stream << "\tMODE=" << ( networkType->currentItem() == 0 ? "Managed" : "ad-hoc") << '\n';
172 stream << "\tCHANNEL=" << networkChannel->value() << "\n"; 172 stream << "\tCHANNEL=" << networkChannel->value() << "\n";
173 } 173 }
174 174
175 stream << "\t#KEY0=" << keyLineEdit0->text() << "\n"; 175 stream << "\t#KEY0=" << keyLineEdit0->text() << "\n";
176 stream << "\t#KEY1=" << keyLineEdit1->text() << "\n"; 176 stream << "\t#KEY1=" << keyLineEdit1->text() << "\n";
177 stream << "\t#KEY2=" << keyLineEdit2->text() << "\n"; 177 stream << "\t#KEY2=" << keyLineEdit2->text() << "\n";
178 stream << "\t#KEY3=" << keyLineEdit3->text() << "\n"; 178 stream << "\t#KEY3=" << keyLineEdit3->text() << "\n";
179 179
180 if(wepEnabled->isChecked()){ 180 if(wepEnabled->isChecked()){
181 stream << "\tKEY=\""; 181 stream << "\tKEY=\"";
182 if(keyRadio0->isChecked()) stream << keyLineEdit0->text(); 182 if(keyRadio0->isChecked()) stream << keyLineEdit0->text();
183 if(keyRadio1->isChecked()) stream << keyLineEdit1->text(); 183 if(keyRadio1->isChecked()) stream << keyLineEdit1->text();
184 if(keyRadio2->isChecked()) stream << keyLineEdit2->text(); 184 if(keyRadio2->isChecked()) stream << keyLineEdit2->text();
185 if(keyRadio3->isChecked()) stream << keyLineEdit3->text(); 185 if(keyRadio3->isChecked()) stream << keyLineEdit3->text();
186 if(authOpen->isChecked()) 186 if(authOpen->isChecked())
187 stream << " open"; 187 stream << " open";
188 else 188 else
189 stream << " restricted"; 189 stream << " restricted";
190 stream << "\"\n"; 190 stream << "\"\n";
191 } 191 }
192 stream << "\tRATE=auto\n"; 192 stream << "\tRATE=auto\n";
193 if(line.contains("esac")) 193 if(line.contains("esac"))
194 stream << line << "\n"; 194 stream << line << "\n";
195 } 195 }
196 if(line.contains(";;")) 196 if(line.contains(";;"))
197 output = true; 197 output = true;
198 if(output && (*it).length() ) 198 if(output && (*it).length() )
199 stream << (*it) << '\n'; 199 stream << (*it) << '\n';
200 } 200 }
201 file.close(); 201 file.close();
202} 202}
203 203
204/** 204/**