summaryrefslogtreecommitdiff
path: root/examples/networksettings
Unidiff
Diffstat (limited to 'examples/networksettings') (more/less context) (show whitespace changes)
-rw-r--r--examples/networksettings/config.in2
-rw-r--r--examples/networksettings/example.pro5
-rw-r--r--examples/networksettings/exampleiface.cpp5
-rw-r--r--examples/networksettings/examplemodule.cpp10
4 files changed, 13 insertions, 9 deletions
diff --git a/examples/networksettings/config.in b/examples/networksettings/config.in
index 4bbbb4e..e1a68cc 100644
--- a/examples/networksettings/config.in
+++ b/examples/networksettings/config.in
@@ -1,4 +1,4 @@
1 config EXAMPLE_VPN 1 config EXAMPLE_VPN
2 boolean "opie-networksettingsplugin-example (VPN module)" 2 boolean "opie-networksettingsplugin-example (VPN module)"
3 default "n" if NETWORKSETUP 3 default "n" if NETWORKSETUP
4 depends ( LIBQPE || LIBQPE-X11 ) && NETWORKSETUP && NETWORKSETUP-CORE && INTERFACES && EXAMPLES 4 depends ( LIBQPE || LIBQPE-X11 ) && LIBOPIE2CORE && NETWORKSETUP && NETWORKSETUP-CORE && INTERFACES && EXAMPLES
diff --git a/examples/networksettings/example.pro b/examples/networksettings/example.pro
index 835dbd0..7bfa1ed 100644
--- a/examples/networksettings/example.pro
+++ b/examples/networksettings/example.pro
@@ -1,14 +1,11 @@
1#TEMPLATE = app
2#
3TEMPLATE = lib 1TEMPLATE = lib
4#CONFIG += qt plugin warn_on
5 CONFIG += qt plugin warn_on 2 CONFIG += qt plugin warn_on
6DESTDIR = $(OPIEDIR)/plugins/networksettings 3DESTDIR = $(OPIEDIR)/plugins/networksettings
7 HEADERS = exampleiface.h examplemodule.h 4 HEADERS = exampleiface.h examplemodule.h
8 SOURCES = exampleiface.cpp examplemodule.cpp 5 SOURCES = exampleiface.cpp examplemodule.cpp
9 INCLUDEPATH+= $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces 6 INCLUDEPATH+= $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces
10 DEPENDPATH+= $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces 7 DEPENDPATH+= $(OPIEDIR)/include $(OPIEDIR)/noncore/settings/networksettings $(OPIEDIR)/noncore/settings/networksettings/interfaces
11LIBS += -lqpe -linterfaces 8LIBS += -lqpe -linterfaces -lopiecore2
12 TARGET = example_vpn 9 TARGET = example_vpn
13 VERSION = 1.0.0 10 VERSION = 1.0.0
14 11
diff --git a/examples/networksettings/exampleiface.cpp b/examples/networksettings/exampleiface.cpp
index 5267a9c..8012bb2 100644
--- a/examples/networksettings/exampleiface.cpp
+++ b/examples/networksettings/exampleiface.cpp
@@ -1,5 +1,8 @@
1#include "exampleiface.h" 1#include "exampleiface.h"
2 2
3#include <opie2/odebug.h>
4using namespace Opie::Core;
5
3VirtualInterface::VirtualInterface( QObject* parent, 6VirtualInterface::VirtualInterface( QObject* parent,
4 const char* name, 7 const char* name,
5 bool status ) 8 bool status )
@@ -17,7 +20,7 @@ bool VirtualInterface::refresh() {
17 * I take wlan0 in my case 20 * I take wlan0 in my case
18 */ 21 */
19 QString old = getInterfaceName(); 22 QString old = getInterfaceName();
20 qWarning("Interface name was " + old ); 23 odebug << "Interface name was " << old << oendl;
21 setInterfaceName( "wlan0" ); 24 setInterfaceName( "wlan0" );
22 25
23 bool b =Interface::refresh(); 26 bool b =Interface::refresh();
diff --git a/examples/networksettings/examplemodule.cpp b/examples/networksettings/examplemodule.cpp
index d7fd718..703e6bd 100644
--- a/examples/networksettings/examplemodule.cpp
+++ b/examples/networksettings/examplemodule.cpp
@@ -1,9 +1,13 @@
1#include <qwidget.h> 1#include "exampleiface.h"
2#include "examplemodule.h"
3
4/* OPIE */
5#include <opie2/odebug.h>
6using namespace Opie::Core;
2 7
3#include <interfaces/interfaceinformationimp.h> 8#include <interfaces/interfaceinformationimp.h>
4 9
5#include "exampleiface.h" 10#include <qwidget.h>
6#include "examplemodule.h"
7 11
8VirtualModule::VirtualModule() { 12VirtualModule::VirtualModule() {
9 Interface* iface = new VirtualInterface( 0 ); 13 Interface* iface = new VirtualInterface( 0 );