summaryrefslogtreecommitdiffstats
path: root/languages/cpp/app_templates/opienet/simplemodule.cpp
blob: 27571be92a3bd39a7177210ba078e2655fca0d77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <tqwidget.h>

#include <interfaces/interfaceinformationimp.h>

#include "%{APPNAMELC}iface.h"
#include "%{APPNAMELC}module.h"

%{APPNAME}Module::%{APPNAME}Module() {
    Interface* iface = new %{APPNAME}Interface( 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();
}

%{APPNAME}Module::~%{APPNAME}Module() {
    m_interfaces.setAutoDelete( true );
    m_interfaces.clear();
}


/*
 * We're a VPN module
 */
bool %{APPNAME}Module::isOwner(  Interface* iface ) {
 /* check if it is our device */
    return  m_interfaces.find(  iface ) != -1;
}

TQWidget*  %{APPNAME}Module::configure( Interface* ) {
/* We don't have any Config for now */
    return 0l;
}

TQWidget* %{APPNAME}Module::information(  Interface* iface ) {
    return  new InterfaceInformationImp(0, "Interface info", iface );
}

TQPtrList<Interface> %{APPNAME}Module::getInterfaces() {
    return m_interfaces;
}

void %{APPNAME}Module::possibleNewInterfaces( TQMap<TQString, TQString>& map) {
    map.insert( TQObject::tr("VPN PPTP"),
                TQObject::tr("Add new Point to Point Tunnel Protocol connection" ) );
}


Interface* %{APPNAME}Module::addNewInterface( const TQString& ) {
 /* check the str if we support more interfaces */
/*
    Interface* iface = new %{APPNAME}Interface( 0 );
    iface->setModuleOwner( this );
    return iface;*/

// if we would support saving interfaces we could add
// them here

    return 0;
}


bool %{APPNAME}Module::remove( Interface* ) {
/* we do not support removing our interface */
    return false;
}