summaryrefslogtreecommitdiff
authorbenmeyer <benmeyer>2002-10-17 15:29:40 (UTC)
committer benmeyer <benmeyer>2002-10-17 15:29:40 (UTC)
commite1005c586b436d8edb7958632c7d71b4f5b00c2f (patch) (side-by-side diff)
treee39830884da8238cc355f96cde39c002eb1d7ed3
parent8a9b63594f8500ffbb5e58a74e98504bcf20fcb9 (diff)
downloadopie-e1005c586b436d8edb7958632c7d71b4f5b00c2f.zip
opie-e1005c586b436d8edb7958632c7d71b4f5b00c2f.tar.gz
opie-e1005c586b436d8edb7958632c7d71b4f5b00c2f.tar.bz2
usb now supported
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/networksetup/mainwindowimp.cpp24
-rw-r--r--noncore/settings/networksettings/mainwindowimp.cpp24
2 files changed, 34 insertions, 14 deletions
diff --git a/noncore/net/networksetup/mainwindowimp.cpp b/noncore/net/networksetup/mainwindowimp.cpp
index 24af1ec..b46362f 100644
--- a/noncore/net/networksetup/mainwindowimp.cpp
+++ b/noncore/net/networksetup/mainwindowimp.cpp
@@ -241,4 +241,8 @@ void MainWindowImp::informationClicked(){
Interface *i = interfaceItems[item];
+ if(!i->isAttached()){
+ QMessageBox::information(this, "Error","No information about\na disconnected interface.", QMessageBox::Ok);
+ return;
+ }
if(i->getModuleOwner()){
QTabWidget *tabWidget = NULL;
@@ -270,5 +274,4 @@ void MainWindowImp::getInterfaceList(){
this, SLOT(jobDone(KProcess *)));
threads.insert(processAll, TEMP_ALL);
- processAll->start(KShellProcess::NotifyOnExit);
KShellProcess *process = new KShellProcess();
@@ -277,4 +280,6 @@ void MainWindowImp::getInterfaceList(){
this, SLOT(jobDone(KProcess *)));
threads.insert(process, TEMP_UP);
+
+ processAll->start(KShellProcess::NotifyOnExit);
process->start(KShellProcess::NotifyOnExit);
}
@@ -299,8 +304,4 @@ void MainWindowImp::jobDone(KProcess *process){
// We have found an interface
QString interfaceName = line.mid(0, space);
- if(!advancedUserMode){
- if(interfaceName == "lo")
- break;
- }
Interface *i;
// See if we already have it
@@ -335,4 +336,5 @@ void MainWindowImp::jobDone(KProcess *process){
file.close();
QFile::remove(fileName);
+
if(threads.count() == 0){
Interfaces i;
@@ -340,6 +342,10 @@ void MainWindowImp::jobDone(KProcess *process){
QMap<QString, Interface*>::Iterator it;
for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) {
+ bool found = false;
for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){
- if(it.key() == (*ni)){
+ if(it.key() == (*ni))
+ found = true;
+ }
+ if(!found){
Interface *i = new Interface(*ni, false);
i->setAttached(false);
@@ -352,5 +358,4 @@ void MainWindowImp::jobDone(KProcess *process){
}
}
-}
/**
@@ -359,4 +364,9 @@ void MainWindowImp::jobDone(KProcess *process){
*/
void MainWindowImp::updateInterface(Interface *i){
+ if(!advancedUserMode){
+ if(i->getInterfaceName() == "lo")
+ return;
+ }
+
QListViewItem *item = NULL;
diff --git a/noncore/settings/networksettings/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindowimp.cpp
index 24af1ec..b46362f 100644
--- a/noncore/settings/networksettings/mainwindowimp.cpp
+++ b/noncore/settings/networksettings/mainwindowimp.cpp
@@ -241,4 +241,8 @@ void MainWindowImp::informationClicked(){
Interface *i = interfaceItems[item];
+ if(!i->isAttached()){
+ QMessageBox::information(this, "Error","No information about\na disconnected interface.", QMessageBox::Ok);
+ return;
+ }
if(i->getModuleOwner()){
QTabWidget *tabWidget = NULL;
@@ -270,5 +274,4 @@ void MainWindowImp::getInterfaceList(){
this, SLOT(jobDone(KProcess *)));
threads.insert(processAll, TEMP_ALL);
- processAll->start(KShellProcess::NotifyOnExit);
KShellProcess *process = new KShellProcess();
@@ -277,4 +280,6 @@ void MainWindowImp::getInterfaceList(){
this, SLOT(jobDone(KProcess *)));
threads.insert(process, TEMP_UP);
+
+ processAll->start(KShellProcess::NotifyOnExit);
process->start(KShellProcess::NotifyOnExit);
}
@@ -299,8 +304,4 @@ void MainWindowImp::jobDone(KProcess *process){
// We have found an interface
QString interfaceName = line.mid(0, space);
- if(!advancedUserMode){
- if(interfaceName == "lo")
- break;
- }
Interface *i;
// See if we already have it
@@ -335,4 +336,5 @@ void MainWindowImp::jobDone(KProcess *process){
file.close();
QFile::remove(fileName);
+
if(threads.count() == 0){
Interfaces i;
@@ -340,6 +342,10 @@ void MainWindowImp::jobDone(KProcess *process){
QMap<QString, Interface*>::Iterator it;
for ( QStringList::Iterator ni = list.begin(); ni != list.end(); ++ni ) {
+ bool found = false;
for( it = interfaceNames.begin(); it != interfaceNames.end(); ++it ){
- if(it.key() == (*ni)){
+ if(it.key() == (*ni))
+ found = true;
+ }
+ if(!found){
Interface *i = new Interface(*ni, false);
i->setAttached(false);
@@ -352,5 +358,4 @@ void MainWindowImp::jobDone(KProcess *process){
}
}
-}
/**
@@ -359,4 +364,9 @@ void MainWindowImp::jobDone(KProcess *process){
*/
void MainWindowImp::updateInterface(Interface *i){
+ if(!advancedUserMode){
+ if(i->getInterfaceName() == "lo")
+ return;
+ }
+
QListViewItem *item = NULL;