author | ar <ar> | 2004-08-20 21:16:56 (UTC) |
---|---|---|
committer | ar <ar> | 2004-08-20 21:16:56 (UTC) |
commit | da08f45abfb5e74c390d12736d3db9e8050068a2 (patch) (side-by-side diff) | |
tree | 121d6a2e1ee83ffa8d568eb633c0ab3bb2510dd2 | |
parent | a0520b8e1012bec8a2f2e7fe1d15e6fd1d38f0b0 (diff) | |
download | opie-da08f45abfb5e74c390d12736d3db9e8050068a2.zip opie-da08f45abfb5e74c390d12736d3db9e8050068a2.tar.gz opie-da08f45abfb5e74c390d12736d3db9e8050068a2.tar.bz2 |
- remove unnecessary tab.
this hack is only a dirty work-around to prevent some confusion. networksetting is unmaintained and should be replaced by networksettings2, when it's done.
-rw-r--r-- | noncore/settings/networksettings/mainwindow/mainwindowimp.cpp | 48 |
1 files changed, 21 insertions, 27 deletions
diff --git a/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp b/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp index 5184630..a4a2875 100644 --- a/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp +++ b/noncore/settings/networksettings/mainwindow/mainwindowimp.cpp @@ -51,12 +51,6 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name, WFlags) : MainWi connect(configureConnectionButton, SIGNAL(clicked()), this, SLOT(configureClicked())); - connect(newProfileButton, SIGNAL(clicked()), this, SLOT(addProfile())); - connect(removeProfileButton, SIGNAL(clicked()), this, SLOT(removeProfile())); - connect(setCurrentProfileButton, SIGNAL(clicked()), this, SLOT(changeProfile())); - - connect(newProfile, SIGNAL(textChanged(const QString&)), this, SLOT(newProfileChanged(const QString&))); - - //FIXME: disable profiles for the moment: - tabWidget->setTabEnabled( tab, false ); + //remove tab with no function + tabWidget->removePage( tab ); // Load connections. @@ -81,5 +75,5 @@ MainWindowImp::MainWindowImp(QWidget *parent, const char *name, WFlags) : MainWi if (m_handledIfaces.contains( *ni) ) { - odebug << "Not up iface handled by module" << oendl; + odebug << "Not up iface handled by module" << oendl; continue; } @@ -221,5 +215,5 @@ void MainWindowImp::getAllInterfaces() if ( m_handledIfaces.contains( (*it) ) ) { - odebug << " " << (*it).latin1() << " is handled by a module" << oendl; + odebug << " " << (*it).latin1() << " is handled by a module" << oendl; continue; } @@ -251,5 +245,5 @@ void MainWindowImp::getAllInterfaces() i->setHardwareName("Unknown"); - owarn << "Adding interface " << ifr.ifr_name << " to interfaceNames\n" << oendl; + owarn << "Adding interface " << ifr.ifr_name << " to interfaceNames\n" << oendl; interfaceNames.insert(i->getInterfaceName(), i); updateInterface(i); @@ -267,5 +261,5 @@ void MainWindowImp::getAllInterfaces() for( i = ilist.first(); i != 0; i = ilist.next() ) { - owarn << "Adding interface " << i->getInterfaceName().latin1() << " to interfaceNames\n" << oendl; + owarn << "Adding interface " << i->getInterfaceName().latin1() << " to interfaceNames\n" << oendl; interfaceNames.insert(i->getInterfaceName(), i); updateInterface(i); @@ -285,5 +279,5 @@ void MainWindowImp::loadModules(const QString &path) { #ifdef DEBUG - odebug << "MainWindowImp::loadModules: " << path.latin1() << "" << oendl; + odebug << "MainWindowImp::loadModules: " << path.latin1() << "" << oendl; #endif QDir d(path); @@ -306,5 +300,5 @@ void MainWindowImp::loadModules(const QString &path) #endif loadPlugin(path + "/" + fi->fileName()); - odebug << "loaded plugin: >" << QString(path + "/" + fi->fileName()).latin1() << "< " << oendl; + odebug << "loaded plugin: >" << QString(path + "/" + fi->fileName()).latin1() << "< " << oendl; } ++it; @@ -321,5 +315,5 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString & { #ifdef DEBUG - odebug << "MainWindowImp::loadPlugin: " << pluginFileName.latin1() << ": resolving " << resolveString.latin1() << "" << oendl; + odebug << "MainWindowImp::loadPlugin: " << pluginFileName.latin1() << ": resolving " << resolveString.latin1() << "" << oendl; #endif #ifdef QWS @@ -329,5 +323,5 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString & { #ifdef DEBUG - odebug << "MainWindowImp::loadPlugin: Warning: " << pluginFileName.latin1() << " is not a plugin" << oendl; + odebug << "MainWindowImp::loadPlugin: Warning: " << pluginFileName.latin1() << " is not a plugin" << oendl; #endif delete lib; @@ -339,5 +333,5 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString & { #ifdef DEBUG - odebug << "MainWindowImp: Couldn't create object, but did load library!" << oendl; + odebug << "MainWindowImp: Couldn't create object, but did load library!" << oendl; #endif delete lib; @@ -354,5 +348,5 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString & if( !lib || !lib->hasSymbol(resolveString) ) { - odebug << QString("MainWindowImp::loadPlugin: File: %1 is not a plugin, but though was.").arg(pluginFileName).latin1() << oendl; + odebug << QString("MainWindowImp::loadPlugin: File: %1 is not a plugin, but though was.").arg(pluginFileName).latin1() << oendl; return NULL; } @@ -362,10 +356,10 @@ Module* MainWindowImp::loadPlugin(const QString &pluginFileName, const QString & { #ifdef DEBUG - odebug << "MainWindowImp: Couldn't create object, but did load library!" << oendl; + odebug << "MainWindowImp: Couldn't create object, but did load library!" << oendl; #endif return NULL; } #ifdef DEBUG - odebug << "MainWindowImp::loadPlugin:: Found object, storing." << oendl; + odebug << "MainWindowImp::loadPlugin:: Found object, storing." << oendl; #endif // Store for deletion later @@ -413,5 +407,5 @@ void MainWindowImp::addClicked() if(i) { - odebug << "iface name " << i->getInterfaceName().latin1() << "" << oendl; + odebug << "iface name " << i->getInterfaceName().latin1() << "" << oendl; interfaceNames.insert(i->getInterfaceName(), i); updateInterface(i); @@ -515,5 +509,5 @@ void MainWindowImp::informationClicked() QPEApplication::showWidget( moduleInformation ); #ifdef DEBUG - odebug << "MainWindowImp::informationClicked:: Module owner has created, we showed." << oendl; + odebug << "MainWindowImp::informationClicked:: Module owner has created, we showed." << oendl; #endif return; @@ -652,5 +646,5 @@ void MainWindowImp::removeProfile() { QString interfaceName = it.key()->getInterfaceName(); - odebug << interfaceName.latin1() << oendl; + odebug << interfaceName.latin1() << oendl; if(interfaces.setInterface(interfaceName + "_" + profileToRemove)) { @@ -721,5 +715,5 @@ void MainWindowImp::receive(const QCString &msg, const QByteArray &arg) { bool found = false; - odebug << "MainWindowImp::receive QCop msg >"+msg+"<" << oendl; + odebug << "MainWindowImp::receive QCop msg >"+msg+"<" << oendl; if (msg == "raise") { @@ -731,10 +725,10 @@ void MainWindowImp::receive(const QCString &msg, const QByteArray &arg) QCString param = msg.right(msg.length() - msg.find("(") - 1); param = param.left( param.length() - 1 ); - odebug << "dest >" << dest.latin1() << "< param >"+param+"<" << oendl; + odebug << "dest >" << dest.latin1() << "< param >"+param+"<" << oendl; QMap<Module*, QLibrary*>::Iterator it; for( it = libraries.begin(); it != libraries.end(); ++it ) { - odebug << "plugin >" << it.key()->type().latin1() << "<" << oendl; + odebug << "plugin >" << it.key()->type().latin1() << "<" << oendl; if(it.key()->type() == dest) { @@ -746,4 +740,4 @@ void MainWindowImp::receive(const QCString &msg, const QByteArray &arg) if (found) QPEApplication::setKeepRunning(); - else odebug << "Huh what do ya want" << oendl; + else odebug << "Huh what do ya want" << oendl; } |