|
|
|
#ifndef %{APPNAME}_NETWORK_MODULE_H
|
|
|
|
#define %{APPNAME}_NETWORK_MODULE_H
|
|
|
|
|
|
|
|
#include <module.h>
|
|
|
|
|
|
|
|
class %{APPNAME}Module : Module {
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void updateInterface(Interface* i );
|
|
|
|
|
|
|
|
public:
|
|
|
|
%{APPNAME}Module();
|
|
|
|
~%{APPNAME}Module();
|
|
|
|
|
|
|
|
const TQString type() {return TQString::tqfromLatin1("vpn" );}
|
|
|
|
void setProfile( const TQString& ) {}
|
|
|
|
bool isOwner( Interface* );
|
|
|
|
TQWidget *configure( Interface* );
|
|
|
|
TQWidget *information( Interface* );
|
|
|
|
TQList<Interface> getInterfaces();
|
|
|
|
void possibleNewInterfaces( TQMap<TQString, TQString>& );
|
|
|
|
Interface *addNewInterface( const TQString& );
|
|
|
|
bool remove( Interface* iface );
|
|
|
|
TQString getPixmapName( Interface* ) {return TQString::tqfromLatin1("Tux"); }
|
|
|
|
void receive( const TQCString&, const TQByteArray& ar ) {} // don't listen
|
|
|
|
private:
|
|
|
|
TQList<Interface> m_interfaces;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
void* create_plugin() {
|
|
|
|
return new %{APPNAME}Module();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|