summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings/ppp/pppmodule.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings/ppp/pppmodule.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings/ppp/pppmodule.cpp48
1 files changed, 28 insertions, 20 deletions
diff --git a/noncore/settings/networksettings/ppp/pppmodule.cpp b/noncore/settings/networksettings/ppp/pppmodule.cpp
index 72cd45e..40d2455 100644
--- a/noncore/settings/networksettings/ppp/pppmodule.cpp
+++ b/noncore/settings/networksettings/ppp/pppmodule.cpp
@@ -2,8 +2,9 @@
#include "pppimp.h"
#include "interfaceinformationimp.h"
+//#include "devices.h"
/**
* Constructor, find all of the possible interfaces
- */
+ */
PPPModule::PPPModule() : Module() {
}
@@ -11,5 +12,5 @@ PPPModule::PPPModule() : Module() {
/**
* Delete any interfaces that we own.
- */
+ */
PPPModule::~PPPModule(){
Interface *i;
@@ -20,5 +21,5 @@ PPPModule::~PPPModule(){
/**
* Change the current profile
- */
+ */
void PPPModule::setProfile(const QString &newProfile){
profile = newProfile;
@@ -28,6 +29,6 @@ void PPPModule::setProfile(const QString &newProfile){
* get the icon name for this device.
* @param Interface* can be used in determining the icon.
- * @return QString the icon name (minus .png, .gif etc)
- */
+ * @return QString the icon name (minus .png, .gif etc)
+ */
QString PPPModule::getPixmapName(Interface* ){
return "ppp";
@@ -38,9 +39,9 @@ QString PPPModule::getPixmapName(Interface* ){
* @param Interface* interface to check against
* @return bool true if i is owned by this module, false otherwise.
- */
+ */
bool PPPModule::isOwner(Interface *i){
if(!i->getInterfaceName().upper().contains("PPP"))
return false;
-
+
i->setHardwareName("PPP");
list.append(i);
@@ -51,10 +52,9 @@ bool PPPModule::isOwner(Interface *i){
* Create, and return the WLANConfigure Module
* @return QWidget* pointer to this modules configure.
- */
+ */
QWidget *PPPModule::configure(Interface *i){
- return NULL;
- //PPPConfigureImp *pppconfig = new PPPConfigureImp(0, "PPPConfig", i, false, Qt::WDestructiveClose);
- //pppconfig->setProfile(profile);
- //return wlanconfig;
+ PPPConfigureImp *pppconfig = new PPPConfigureImp(0, "PPPConfig", /* i,*/ false, Qt::WDestructiveClose);
+// pppconfig->setProfile(profile);
+ return pppconfig;
}
@@ -62,5 +62,5 @@ QWidget *PPPModule::configure(Interface *i){
* Create, and return the Information Module
* @return QWidget* pointer to this modules info.
- */
+ */
QWidget *PPPModule::information(Interface *i){
// We don't have any advanced pppd information widget yet :-D
@@ -85,12 +85,15 @@ QList<Interface> PPPModule::getInterfaces(){
* by possibleNewInterfaces();
* @return Interface* NULL if it was unable to be created.
- */
+ */
Interface *PPPModule::addNewInterface(const QString &newInterface){
- // If the
+ // If the
+ qDebug("try to add iface %s",newInterface.latin1());
PPPConfigureImp imp(0, "PPPConfigImp");
+ imp.showMaximized();
if(imp.exec() == QDialog::Accepted ){
-
+ qDebug("ACCEPTED");
+ return new Interface( 0, newInterface );
}
- return NULL;
+ return NULL;
}
@@ -98,10 +101,15 @@ Interface *PPPModule::addNewInterface(const QString &newInterface){
* Attempts to remove the interface, doesn't delete i
* @return bool true if successfull, false otherwise.
- */
+ */
bool PPPModule::remove(Interface*){
// Can't remove a hardware device, you can stop it though.
- return false;
+ return false;
+}
+
+void PPPModule::possibleNewInterfaces(QMap<QString, QString> &newIfaces)
+{
+ qDebug("here");
+ newIfaces.insert(QObject::tr("PPP") ,QObject::tr("generic ppp device"));
}
-// pppmodule.cpp