author | zecke <zecke> | 2004-02-08 20:25:39 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-02-08 20:25:39 (UTC) |
commit | b2c64a5e4b3bed21b1aea091625a3846b2b87d47 (patch) (side-by-side diff) | |
tree | e469488e20911e75a593ab89c74c2ae99e2b7d60 /examples/networksettings/examplemodule.cpp | |
parent | 4a3ca9b1d175df6eea1f38db4feb10c564af29f3 (diff) | |
download | opie-b2c64a5e4b3bed21b1aea091625a3846b2b87d47.zip opie-b2c64a5e4b3bed21b1aea091625a3846b2b87d47.tar.gz opie-b2c64a5e4b3bed21b1aea091625a3846b2b87d47.tar.bz2 |
Example network settings plugin
Fake VPN stuff
Diffstat (limited to 'examples/networksettings/examplemodule.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r-- | examples/networksettings/examplemodule.cpp | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/examples/networksettings/examplemodule.cpp b/examples/networksettings/examplemodule.cpp new file mode 100644 index 0000000..d7fd718 --- a/dev/null +++ b/examples/networksettings/examplemodule.cpp @@ -0,0 +1,71 @@ +#include <qwidget.h> + +#include <interfaces/interfaceinformationimp.h> + +#include "exampleiface.h" +#include "examplemodule.h" + +VirtualModule::VirtualModule() { + Interface* iface = new VirtualInterface( 0 ); + iface->setHardwareName( "vpn" ); + iface->setInterfaceName( "Test VPN" ); + m_interfaces.append( iface ); + +// If we set up VPN via pptp +// and networksettins was closed and now opened +// we need to hide the ppp device behind us +// One can do this by calling setHandledInterfaceNames +// setHandledInterfaceNames(); +} + +VirtualModule::~VirtualModule() { + m_interfaces.setAutoDelete( true ); + m_interfaces.clear(); +} + + +/* + * We're a VPN module + */ +bool VirtualModule::isOwner( Interface* iface ) { + /* check if it is our device */ + return m_interfaces.find( iface ) != -1; +} + +QWidget* VirtualModule::configure( Interface* ) { +/* We don't have any Config for now */ + return 0l; +} + +QWidget* VirtualModule::information( Interface* iface ) { + return new InterfaceInformationImp(0, "Interface info", iface ); +} + +QList<Interface> VirtualModule::getInterfaces() { + return m_interfaces; +} + +void VirtualModule::possibleNewInterfaces( QMap<QString, QString>& map) { + map.insert( QObject::tr("VPN PPTP"), + QObject::tr("Add new Point to Point Tunnel Protocol connection" ) ); +} + + +Interface* VirtualModule::addNewInterface( const QString& ) { + /* check the str if we support more interfaces */ +/* + Interface* iface = new VirtualInterface( 0 ); + iface->setModuleOwner( this ); + return iface;*/ + +// if we would support saving interfaces we could add +// them here + + return 0; +} + + +bool VirtualModule::remove( Interface* ) { +/* we do not support removing our interface */ + return false; +} |