You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tdeadmin/knetworkconf/knetworkconf/knetworkconfmodule.cpp

124 lines
4.4 KiB

/***************************************************************************
knetworkconfmodule.cpp - description
-------------------
begin : Tue Apr 1 2003
copyright : (C) 2003 by Juan Luis Baptiste
email : juancho@linuxmail.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <tdelocale.h>
#include <tdecmodule.h>
#include <tqlayout.h>
#include <version.h>
#include "knetworkconfmodule.h"
KNetworkConfModule::KNetworkConfModule(TQWidget* parent, const char *name/*, TQStringList list*/)
: TDECModule(parent,name)
{
TQVBoxLayout *top = new TQVBoxLayout(this);
conf = new KNetworkConf(this);
conf->setVersion(TQString(VERSION));
conf->setReadOnly(false);
top->addWidget(conf);
if (getuid() != 0){
conf->setReadOnlySlot(true);
conf->setReadOnly(true);
}
connect(conf,TQ_SIGNAL(networkStateChanged(bool)),TQ_SLOT(configChanged(bool)));
setButtons(TDECModule::Apply|TDECModule::Help);
}
KNetworkConfModule::~KNetworkConfModule()
{
}
void KNetworkConfModule::configChanged(bool b)
{
emit changed(b);
}
void KNetworkConfModule::load()
{
// conf->loadNetworkDevicesInfo();
//conf->loadRoutingAndDNSInfo();
//conf->loadDNSInfoTab();
}
void KNetworkConfModule::save()
{
conf->saveInfoSlot();
}
/*
int KNetworkConfModule::buttons()
{
return TDECModule::Ok|TDECModule::Apply|TDECModule::Help;
}
*/
bool KNetworkConfModule::useRootOnlyMsg() const
{
return true;
}
TQString KNetworkConfModule::rootOnlyMsg() const
{
return "Changing the network configuration requires root access";
}
TDEAboutData* KNetworkConfModule::aboutData() const
{
/*TDEAboutData* data = new TDEAboutData( "knetworkconf", I18N_NOOP("KNetworkConf"),
VERSION, description, TDEAboutData::License_GPL,
"(c) 2003, Juan Luis Baptiste", 0, "http://www.merlinux.org/knetworkconf/", "jbaptiste@merlinux.org");
data->addAuthor("Juan Luis Baptiste",I18N_NOOP("Lead Developer"),
"jbaptiste@merlinux.org");
data->addCredit("David Sansome",I18N_NOOP("Various bugfixes and features"),
"me@davidsansome.com");
return data; // Memory leak, oh well...*/
TDEAboutData *aboutData = new TDEAboutData( "knetworkconf", I18N_NOOP("KNetworkConf"),
VERSION, description, TDEAboutData::License_GPL,
"(c) 2003 - 2005, Juan Luis Baptiste", 0, "http://www.merlinux.org/knetworkconf/", "juan.baptiste@kdemail.net");
aboutData->addAuthor("Juan Luis Baptiste",I18N_NOOP("Lead Developer"),
"juan.baptiste@kdemail.net");
aboutData->addCredit("Carlos Garnacho and the Gnome System Tools Team",I18N_NOOP("Provided the Network backend which KNetworkConf relies on."),
"garnacho@tuxerver.net","http://www.gnome.org/projects/gst/");
aboutData->addCredit("Helio Chissini de Castro",I18N_NOOP("Conectiva Linux Support"),
"helio@conectiva.com.br");
aboutData->addCredit("Christoph Eckert",I18N_NOOP("Documentation maintainer, and German translator"),
"mchristoph.eckert@t-online.de ");
aboutData->addCredit("David Sansome",I18N_NOOP("Various bugfixes and features"),
"me@davidsansome.com");
aboutData->addCredit("Gustavo Pichorim Boiko",I18N_NOOP("Various bugfixes and Brazilian Portuguese translator"),"gustavo.boiko@kdemail.net");
return aboutData;// Memory leak, oh well...
}
TQString KNetworkConfModule::quickHelp() const
{
return i18n("%1Network configuration%2This module allows you to configure your TCP/IP settings.%3").arg("<h1>").arg("</h1><p>").arg("</p>");
}
TQString KNetworkConfModule::handbookDocPath() const
{
return conf->handbookDocPath();
}
//#include "knetworkconfmodule.moc"
#include "knetworkconfmodule.moc"