author | wimpie <wimpie> | 2005-01-07 01:19:13 (UTC) |
---|---|---|
committer | wimpie <wimpie> | 2005-01-07 01:19:13 (UTC) |
commit | 7af7203a51ddcf85f9f60e39157fcad21f7d9e34 (patch) (unidiff) | |
tree | 49829585a0100a5a741d55424f86be39c01d3150 | |
parent | a8e5ecd107a79f940d8a99d4a77071606a3a932f (diff) | |
download | opie-7af7203a51ddcf85f9f60e39157fcad21f7d9e34.zip opie-7af7203a51ddcf85f9f60e39157fcad21f7d9e34.tar.gz opie-7af7203a51ddcf85f9f60e39157fcad21f7d9e34.tar.bz2 |
First implementation of plugins
THIS VERSION DOES NOT COMPILE
45 files changed, 576 insertions, 77 deletions
diff --git a/noncore/settings/networksettings2/bluetooth/bluetooth.pro b/noncore/settings/networksettings2/bluetooth/bluetooth.pro index 2e3b5bb..053a6cb 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetooth.pro +++ b/noncore/settings/networksettings2/bluetooth/bluetooth.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = bluetoothBNEP_NN.h \ | 4 | HEADERS = bluetoothBNEP_NN.h \ |
5 | bluetoothBNEP_NNI.h \ | 5 | bluetoothBNEP_NNI.h \ |
6 | bluetoothRFCOMM_NN.h \ | 6 | bluetoothRFCOMM_NN.h \ |
7 | bluetoothRFCOMM_NNI.h \ | 7 | bluetoothRFCOMM_NNI.h \ |
8 | bluetoothBNEPedit.h \ | 8 | bluetoothBNEPedit.h \ |
9 | bluetoothRFCOMMrun.h \ | 9 | bluetoothRFCOMMrun.h \ |
10 | bluetoothRFCOMMedit.h | 10 | bluetoothRFCOMMedit.h |
11 | SOURCES = bluetoothBNEP_NN.cpp \ | 11 | SOURCES = bluetoothBNEP_NN.cpp \ |
12 | bluetoothBNEP_NNI.cpp \ | 12 | bluetoothBNEP_NNI.cpp \ |
13 | bluetoothRFCOMM_NN.cpp \ | 13 | bluetoothRFCOMM_NN.cpp \ |
14 | bluetoothRFCOMM_NNI.cpp \ | 14 | bluetoothRFCOMM_NNI.cpp \ |
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NN.cpp b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NN.cpp index ee3e92b..5e4d951 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NN.cpp +++ b/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NN.cpp | |||
@@ -1,16 +1,22 @@ | |||
1 | #include "bluetoothBNEP_NN.h" | 1 | #include "bluetoothBNEP_NN.h" |
2 | #include "bluetoothBNEP_NNI.h" | 2 | #include "bluetoothBNEP_NNI.h" |
3 | #include "bluetoothRFCOMM_NNI.h" | 3 | #include "bluetoothRFCOMM_NNI.h" |
4 | 4 | ||
5 | #ifndef MYPLUGIN | ||
6 | |||
7 | #include "netnodeinterface.h" | ||
8 | |||
9 | #endif | ||
10 | |||
5 | // | 11 | // |
6 | // | 12 | // |
7 | // BLUETOOTH PAN/NAP node | 13 | // BLUETOOTH PAN/NAP node |
8 | // | 14 | // |
9 | // | 15 | // |
10 | 16 | ||
11 | static const char * BluetoothBNEPNeeds[] = | 17 | static const char * BluetoothBNEPNeeds[] = |
12 | { 0 | 18 | { 0 |
13 | }; | 19 | }; |
14 | 20 | ||
15 | static const char * BluetoothBNEPProvides[] = | 21 | static const char * BluetoothBNEPProvides[] = |
16 | { "device", | 22 | { "device", |
@@ -60,19 +66,29 @@ QString BluetoothBNEPNetNode::genNic( long nr ) { | |||
60 | void BluetoothBNEPNetNode::setSpecificAttribute( QString & A, QString & V ) { | 66 | void BluetoothBNEPNetNode::setSpecificAttribute( QString & A, QString & V ) { |
61 | if( A == "interfacecount" ) { | 67 | if( A == "interfacecount" ) { |
62 | InstanceCount = V.toLong(); | 68 | InstanceCount = V.toLong(); |
63 | } | 69 | } |
64 | } | 70 | } |
65 | 71 | ||
66 | void BluetoothBNEPNetNode::saveSpecificAttribute( QTextStream & TS) { | 72 | void BluetoothBNEPNetNode::saveSpecificAttribute( QTextStream & TS) { |
67 | TS << "interfacecount=" | 73 | TS << "interfacecount=" |
68 | << InstanceCount | 74 | << InstanceCount |
69 | << endl; | 75 | << endl; |
70 | } | 76 | } |
71 | 77 | ||
78 | #ifndef MYPLUGIN | ||
79 | |||
72 | extern "C" { | 80 | extern "C" { |
73 | // create plugin registers both BT functions | 81 | // create plugin registers both BT functions |
74 | void create_plugin( QList<ANetNode> & PNN ) { | 82 | void create_plugin( QList<ANetNode> & PNN ) { |
75 | PNN.append( new BluetoothBNEPNetNode() ); | 83 | PNN.append( new BluetoothBNEPNetNode() ); |
76 | PNN.append( new BluetoothRFCOMMNetNode() ); | 84 | PNN.append( new BluetoothRFCOMMNetNode() ); |
77 | } | 85 | } |
86 | |||
87 | #else | ||
88 | |||
89 | typedef Opie::Core::MakeTypelist<BluetoothBNEPNetNode, BluetoothRFCOMMNetNode>::Result BluetoothTypes; | ||
90 | OPIE_NS2_PLUGIN( NetNodeInterface<BluetoothTypes> ) | ||
91 | |||
92 | #endif | ||
93 | |||
78 | } | 94 | } |
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.cpp b/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.cpp index 9d4ae97..5c937a1 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.cpp +++ b/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.cpp | |||
@@ -1,18 +1,22 @@ | |||
1 | #include <qfile.h> | 1 | #include <qfile.h> |
2 | #include <qfileinfo.h> | 2 | #include <qfileinfo.h> |
3 | #include <qtextstream.h> | 3 | #include <qtextstream.h> |
4 | #include <resources.h> | 4 | #include <resources.h> |
5 | #include "bluetoothBNEPrun.h" | 5 | #include "bluetoothBNEPrun.h" |
6 | 6 | ||
7 | using Opietooth2::OTGateway; | ||
8 | using Opietooth2::OTPANConnection; | ||
9 | using Opietooth2::PANConnectionVector; | ||
10 | |||
7 | BluetoothBNEPRun::BluetoothBNEPRun( ANetNodeInstance * NNI, | 11 | BluetoothBNEPRun::BluetoothBNEPRun( ANetNodeInstance * NNI, |
8 | BluetoothBNEPData & D ) : | 12 | BluetoothBNEPData & D ) : |
9 | RuntimeInfo( NNI ), | 13 | RuntimeInfo( NNI ), |
10 | Data( D), | 14 | Data( D), |
11 | Pat( "bnep[0-6]" ) { | 15 | Pat( "bnep[0-6]" ) { |
12 | OT = 0; | 16 | OT = 0; |
13 | } | 17 | } |
14 | 18 | ||
15 | BluetoothBNEPRun::~BluetoothBNEPRun( void ) { | 19 | BluetoothBNEPRun::~BluetoothBNEPRun( void ) { |
16 | if( OT ) { | 20 | if( OT ) { |
17 | OTGateway::releaseOTGateway(); | 21 | OTGateway::releaseOTGateway(); |
18 | } | 22 | } |
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.h b/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.h index a05a7a2..8551a2e 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.h +++ b/noncore/settings/networksettings2/bluetooth/bluetoothBNEPrun.h | |||
@@ -1,17 +1,16 @@ | |||
1 | #include <netnode.h> | 1 | #include <netnode.h> |
2 | #include "bluetoothBNEPdata.h" | 2 | #include "bluetoothBNEPdata.h" |
3 | 3 | ||
4 | #include <OTGateway.h> | 4 | #include <OTGateway.h> |
5 | using namespace Opietooth2; | ||
6 | 5 | ||
7 | class BluetoothBNEPRun : public RuntimeInfo { | 6 | class BluetoothBNEPRun : public RuntimeInfo { |
8 | 7 | ||
9 | public : | 8 | public : |
10 | 9 | ||
11 | BluetoothBNEPRun( ANetNodeInstance * NNI, | 10 | BluetoothBNEPRun( ANetNodeInstance * NNI, |
12 | BluetoothBNEPData & D ); | 11 | BluetoothBNEPData & D ); |
13 | virtual ~BluetoothBNEPRun( void ); | 12 | virtual ~BluetoothBNEPRun( void ); |
14 | 13 | ||
15 | // i am a device | 14 | // i am a device |
16 | virtual RuntimeInfo * device( void ) | 15 | virtual RuntimeInfo * device( void ) |
17 | { return this; } | 16 | { return this; } |
@@ -21,15 +20,15 @@ public : | |||
21 | 20 | ||
22 | State_t detectState( void ); | 21 | State_t detectState( void ); |
23 | 22 | ||
24 | protected : | 23 | protected : |
25 | 24 | ||
26 | QString setMyState( NodeCollection * , Action_t, bool ); | 25 | QString setMyState( NodeCollection * , Action_t, bool ); |
27 | 26 | ||
28 | private : | 27 | private : |
29 | 28 | ||
30 | bool hasFreePANConnection( bool Grab = 0 ); | 29 | bool hasFreePANConnection( bool Grab = 0 ); |
31 | 30 | ||
32 | BluetoothBNEPData & Data; | 31 | BluetoothBNEPData & Data; |
33 | OTGateway * OT; | 32 | Opietooth2::OTGateway * OT; |
34 | QRegExp Pat; | 33 | QRegExp Pat; |
35 | }; | 34 | }; |
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMedit.h b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMedit.h index 9ad8f2a..fe474fc 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMedit.h +++ b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMedit.h | |||
@@ -1,27 +1,26 @@ | |||
1 | #include "bluetoothRFCOMMdata.h" | 1 | #include "bluetoothRFCOMMdata.h" |
2 | #include "bluetoothRFCOMMGUI.h" | 2 | #include "bluetoothRFCOMMGUI.h" |
3 | 3 | ||
4 | #include <Opietooth.h> | 4 | #include <Opietooth.h> |
5 | using namespace Opietooth2; | ||
6 | 5 | ||
7 | class BluetoothRFCOMMEdit : public BluetoothRFCOMMGUI { | 6 | class BluetoothRFCOMMEdit : public BluetoothRFCOMMGUI { |
8 | 7 | ||
9 | public : | 8 | public : |
10 | 9 | ||
11 | BluetoothRFCOMMEdit( QWidget * parent ); | 10 | BluetoothRFCOMMEdit( QWidget * parent ); |
12 | virtual ~BluetoothRFCOMMEdit( void ); | 11 | virtual ~BluetoothRFCOMMEdit( void ); |
13 | 12 | ||
14 | QString acceptable( void ); | 13 | QString acceptable( void ); |
15 | void showData( BluetoothRFCOMMData & Data ); | 14 | void showData( BluetoothRFCOMMData & Data ); |
16 | bool commit( BluetoothRFCOMMData & Data ); | 15 | bool commit( BluetoothRFCOMMData & Data ); |
17 | 16 | ||
18 | bool Modified; | 17 | bool Modified; |
19 | OTGateway * OT; | 18 | Opietooth2::OTGateway * OT; |
20 | 19 | ||
21 | public slots : | 20 | public slots : |
22 | 21 | ||
23 | void SLOT_AddServer( void ); | 22 | void SLOT_AddServer( void ); |
24 | void SLOT_RemoveServer( void ); | 23 | void SLOT_RemoveServer( void ); |
25 | void SLOT_FindDevice( void ); | 24 | void SLOT_FindDevice( void ); |
26 | 25 | ||
27 | }; | 26 | }; |
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.cpp b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.cpp index 1e91ed1..ef6878a 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.cpp +++ b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.cpp | |||
@@ -1,19 +1,21 @@ | |||
1 | #include <qapplication.h> | 1 | #include <qapplication.h> |
2 | #include <resources.h> | 2 | #include <resources.h> |
3 | #include <OTDevice.h> | 3 | #include <OTDevice.h> |
4 | #include <OTGateway.h> | 4 | #include <OTGateway.h> |
5 | #include "bluetoothRFCOMMrun.h" | 5 | #include "bluetoothRFCOMMrun.h" |
6 | 6 | ||
7 | using namespace Opietooth2; | 7 | using Opietooth2::OTGateway; |
8 | using Opietooth2::OTDevice; | ||
9 | using Opietooth2::OTDeviceAddress; | ||
8 | 10 | ||
9 | BluetoothRFCOMMRun::~BluetoothRFCOMMRun( void ) { | 11 | BluetoothRFCOMMRun::~BluetoothRFCOMMRun( void ) { |
10 | if( OT ) { | 12 | if( OT ) { |
11 | OTGateway::releaseOTGateway(); | 13 | OTGateway::releaseOTGateway(); |
12 | } | 14 | } |
13 | } | 15 | } |
14 | 16 | ||
15 | State_t BluetoothRFCOMMRun::detectState( void ) { | 17 | State_t BluetoothRFCOMMRun::detectState( void ) { |
16 | 18 | ||
17 | if( ! OT ) { | 19 | if( ! OT ) { |
18 | OT = OTGateway::getOTGateway(); | 20 | OT = OTGateway::getOTGateway(); |
19 | } | 21 | } |
diff --git a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.h b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.h index 24e3dae..5a31a94 100644 --- a/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.h +++ b/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMMrun.h | |||
@@ -1,33 +1,32 @@ | |||
1 | #include <netnode.h> | 1 | #include <netnode.h> |
2 | #include "bluetoothRFCOMMdata.h" | 2 | #include "bluetoothRFCOMMdata.h" |
3 | 3 | ||
4 | #include <OTGateway.h> | 4 | #include <OTGateway.h> |
5 | using namespace Opietooth2; | ||
6 | 5 | ||
7 | class BluetoothRFCOMMRun : public RuntimeInfo { | 6 | class BluetoothRFCOMMRun : public RuntimeInfo { |
8 | 7 | ||
9 | public : | 8 | public : |
10 | 9 | ||
11 | BluetoothRFCOMMRun( ANetNodeInstance * NNI, | 10 | BluetoothRFCOMMRun( ANetNodeInstance * NNI, |
12 | BluetoothRFCOMMData & D ) : RuntimeInfo( NNI ) | 11 | BluetoothRFCOMMData & D ) : RuntimeInfo( NNI ) |
13 | { DeviceNr = -1; Data = &D; OT = 0; } | 12 | { DeviceNr = -1; Data = &D; OT = 0; } |
14 | virtual ~BluetoothRFCOMMRun( void ); | 13 | virtual ~BluetoothRFCOMMRun( void ); |
15 | 14 | ||
16 | virtual RuntimeInfo * line( void ) | 15 | virtual RuntimeInfo * line( void ) |
17 | { return this; } | 16 | { return this; } |
18 | virtual QString deviceFile( void ); | 17 | virtual QString deviceFile( void ); |
19 | 18 | ||
20 | State_t detectState( void ); | 19 | State_t detectState( void ); |
21 | 20 | ||
22 | protected : | 21 | protected : |
23 | 22 | ||
24 | QString setMyState( NodeCollection * , Action_t, bool ); | 23 | QString setMyState( NodeCollection * , Action_t, bool ); |
25 | 24 | ||
26 | private : | 25 | private : |
27 | 26 | ||
28 | int deviceNrOfConnection( void ); | 27 | int deviceNrOfConnection( void ); |
29 | RFCOMMChannel * getChannel( void ); | 28 | RFCOMMChannel * getChannel( void ); |
30 | BluetoothRFCOMMData * Data; | 29 | BluetoothRFCOMMData * Data; |
31 | Opietooth2::OTGateway * OT; | 30 | Opietooth2::OTGateway * OT; |
32 | int DeviceNr; // cached from detection | 31 | int DeviceNr; // cached from detection |
33 | }; | 32 | }; |
diff --git a/noncore/settings/networksettings2/cable/cable.pro b/noncore/settings/networksettings2/cable/cable.pro index 8a046b7..660f95e 100644 --- a/noncore/settings/networksettings2/cable/cable.pro +++ b/noncore/settings/networksettings2/cable/cable.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = cable_NN.h \ | 4 | HEADERS = cable_NN.h \ |
5 | cable_NNI.h \ | 5 | cable_NNI.h \ |
6 | cableedit.h | 6 | cableedit.h |
7 | SOURCES = cable_NN.cpp \ | 7 | SOURCES = cable_NN.cpp \ |
8 | cable_NNI.cpp \ | 8 | cable_NNI.cpp \ |
9 | cableedit.cpp \ | 9 | cableedit.cpp \ |
10 | cablerun.cpp | 10 | cablerun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= cableGUI.ui | 14 | INTERFACES= cableGUI.ui |
diff --git a/noncore/settings/networksettings2/cable/cable_NN.cpp b/noncore/settings/networksettings2/cable/cable_NN.cpp index dc4205c..20299e4 100644 --- a/noncore/settings/networksettings2/cable/cable_NN.cpp +++ b/noncore/settings/networksettings2/cable/cable_NN.cpp | |||
@@ -1,15 +1,21 @@ | |||
1 | #include "cable_NN.h" | 1 | #include "cable_NN.h" |
2 | #include "cable_NNI.h" | 2 | #include "cable_NNI.h" |
3 | 3 | ||
4 | #ifndef MYPLUGIN | ||
5 | |||
6 | #include "netnodeinterface.h" | ||
7 | |||
8 | #endif | ||
9 | |||
4 | static const char * CableNeeds[] = | 10 | static const char * CableNeeds[] = |
5 | { 0 | 11 | { 0 |
6 | }; | 12 | }; |
7 | 13 | ||
8 | static const char * CableProvides[] = | 14 | static const char * CableProvides[] = |
9 | { "line", | 15 | { "line", |
10 | 0 | 16 | 0 |
11 | }; | 17 | }; |
12 | 18 | ||
13 | /** | 19 | /** |
14 | * Constructor, find all of the possible interfaces | 20 | * Constructor, find all of the possible interfaces |
15 | */ | 21 | */ |
@@ -38,17 +44,26 @@ const char ** CableNetNode::needs( void ) { | |||
38 | } | 44 | } |
39 | 45 | ||
40 | const char ** CableNetNode::provides( void ) { | 46 | const char ** CableNetNode::provides( void ) { |
41 | return CableProvides; | 47 | return CableProvides; |
42 | } | 48 | } |
43 | 49 | ||
44 | void CableNetNode::setSpecificAttribute( QString & , QString & ) { | 50 | void CableNetNode::setSpecificAttribute( QString & , QString & ) { |
45 | } | 51 | } |
46 | 52 | ||
47 | void CableNetNode::saveSpecificAttribute( QTextStream & ) { | 53 | void CableNetNode::saveSpecificAttribute( QTextStream & ) { |
48 | } | 54 | } |
49 | 55 | ||
56 | #ifdef MYPLUGIN | ||
57 | |||
50 | extern "C" { | 58 | extern "C" { |
51 | void create_plugin( QList<ANetNode> & PNN ) { | 59 | void create_plugin( QList<ANetNode> & PNN ) { |
52 | PNN.append( new CableNetNode() ); | 60 | PNN.append( new CableNetNode() ); |
53 | } | 61 | } |
62 | |||
63 | #else | ||
64 | |||
65 | OPIE_NS2_PLUGIN( NetNodeInterface<CableNetNode> ) | ||
66 | |||
67 | #endif | ||
68 | |||
54 | } | 69 | } |
diff --git a/noncore/settings/networksettings2/gprs/GPRS.pro b/noncore/settings/networksettings2/gprs/GPRS.pro index 7818415..480c872 100644 --- a/noncore/settings/networksettings2/gprs/GPRS.pro +++ b/noncore/settings/networksettings2/gprs/GPRS.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = GPRS_NN.h \ | 4 | HEADERS = GPRS_NN.h \ |
5 | GPRS_NNI.h \ | 5 | GPRS_NNI.h \ |
6 | GPRSedit.h | 6 | GPRSedit.h |
7 | SOURCES = GPRS_NN.cpp \ | 7 | SOURCES = GPRS_NN.cpp \ |
8 | GPRS_NNI.cpp \ | 8 | GPRS_NNI.cpp \ |
9 | GPRSedit.cpp \ | 9 | GPRSedit.cpp \ |
10 | GPRSrun.cpp | 10 | GPRSrun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= GPRSGUI.ui | 14 | INTERFACES= GPRSGUI.ui |
diff --git a/noncore/settings/networksettings2/gprs/GPRS_NN.cpp b/noncore/settings/networksettings2/gprs/GPRS_NN.cpp index 5393324..4415739 100644 --- a/noncore/settings/networksettings2/gprs/GPRS_NN.cpp +++ b/noncore/settings/networksettings2/gprs/GPRS_NN.cpp | |||
@@ -1,18 +1,24 @@ | |||
1 | #include <resources.h> | 1 | #include <resources.h> |
2 | #include <qpe/qpeapplication.h> | 2 | #include <qpe/qpeapplication.h> |
3 | #include <netnode.h> | 3 | #include <netnode.h> |
4 | #include "GPRS_NN.h" | 4 | #include "GPRS_NN.h" |
5 | #include "GPRS_NNI.h" | 5 | #include "GPRS_NNI.h" |
6 | 6 | ||
7 | #ifndef MYPLUGIN | ||
8 | |||
9 | #include "netnodeinterface.h" | ||
10 | |||
11 | #endif | ||
12 | |||
7 | static const char * GPRSNeeds[] = | 13 | static const char * GPRSNeeds[] = |
8 | { "GPRS", | 14 | { "GPRS", |
9 | 0 | 15 | 0 |
10 | }; | 16 | }; |
11 | 17 | ||
12 | static const char * GPRSProvides[] = | 18 | static const char * GPRSProvides[] = |
13 | { "connection", | 19 | { "connection", |
14 | 0 | 20 | 0 |
15 | }; | 21 | }; |
16 | 22 | ||
17 | /** | 23 | /** |
18 | * Constructor, find all of the possible interfaces | 24 | * Constructor, find all of the possible interfaces |
@@ -64,17 +70,26 @@ void GPRSNetNode::setSpecificAttribute( QString & , QString & ) { | |||
64 | void GPRSNetNode::saveSpecificAttribute( QTextStream & ) { | 70 | void GPRSNetNode::saveSpecificAttribute( QTextStream & ) { |
65 | } | 71 | } |
66 | 72 | ||
67 | QStringList GPRSNetNode::properFiles( void ) { | 73 | QStringList GPRSNetNode::properFiles( void ) { |
68 | QStringList SL; | 74 | QStringList SL; |
69 | 75 | ||
70 | SL << "peers"; | 76 | SL << "peers"; |
71 | SL << "chatscripts"; | 77 | SL << "chatscripts"; |
72 | SL << "extra"; | 78 | SL << "extra"; |
73 | return SL; | 79 | return SL; |
74 | } | 80 | } |
75 | 81 | ||
82 | #ifdef MYPLUGIN | ||
83 | |||
76 | extern "C" { | 84 | extern "C" { |
77 | void create_plugin( QList<ANetNode> & PNN ) { | 85 | void create_plugin( QList<ANetNode> & PNN ) { |
78 | PNN.append( new GPRSNetNode() ); | 86 | PNN.append( new GPRSNetNode() ); |
79 | } | 87 | } |
88 | |||
89 | #else | ||
90 | |||
91 | OPIE_NS2_PLUGIN( NetNodeInterface<GPRSNetNode> ) | ||
92 | |||
93 | #endif | ||
94 | |||
80 | } | 95 | } |
diff --git a/noncore/settings/networksettings2/irda/irda.pro b/noncore/settings/networksettings2/irda/irda.pro index 4613abe..87f7a62 100644 --- a/noncore/settings/networksettings2/irda/irda.pro +++ b/noncore/settings/networksettings2/irda/irda.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = irda_NN.h \ | 4 | HEADERS = irda_NN.h \ |
5 | irda_NNI.h \ | 5 | irda_NNI.h \ |
6 | irdaedit.h | 6 | irdaedit.h |
7 | SOURCES = irda_NN.cpp \ | 7 | SOURCES = irda_NN.cpp \ |
8 | irda_NNI.cpp \ | 8 | irda_NNI.cpp \ |
9 | irdaedit.cpp | 9 | irdaedit.cpp |
10 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 10 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
11 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | LIBS += -lqpe | 12 | LIBS += -lqpe |
13 | INTERFACES= irdaGUI.ui | 13 | INTERFACES= irdaGUI.ui |
14 | TARGET = irda | 14 | TARGET = irda |
diff --git a/noncore/settings/networksettings2/irda/irda_NN.cpp b/noncore/settings/networksettings2/irda/irda_NN.cpp index 485cad3..6858157 100644 --- a/noncore/settings/networksettings2/irda/irda_NN.cpp +++ b/noncore/settings/networksettings2/irda/irda_NN.cpp | |||
@@ -1,15 +1,21 @@ | |||
1 | #include "irda_NN.h" | 1 | #include "irda_NN.h" |
2 | #include "irda_NNI.h" | 2 | #include "irda_NNI.h" |
3 | 3 | ||
4 | #ifndef MYPLUGIN | ||
5 | |||
6 | #include "netnodeinterface.h" | ||
7 | |||
8 | #endif | ||
9 | |||
4 | static const char * IRDANeeds[] = | 10 | static const char * IRDANeeds[] = |
5 | { 0 | 11 | { 0 |
6 | }; | 12 | }; |
7 | 13 | ||
8 | static const char * IRDAProvides[] = | 14 | static const char * IRDAProvides[] = |
9 | { "line", | 15 | { "line", |
10 | 0 | 16 | 0 |
11 | }; | 17 | }; |
12 | 18 | ||
13 | /** | 19 | /** |
14 | * Constructor, find all of the possible interfaces | 20 | * Constructor, find all of the possible interfaces |
15 | */ | 21 | */ |
@@ -38,17 +44,26 @@ const char ** IRDANetNode::needs( void ) { | |||
38 | } | 44 | } |
39 | 45 | ||
40 | const char ** IRDANetNode::provides( void ) { | 46 | const char ** IRDANetNode::provides( void ) { |
41 | return IRDAProvides; | 47 | return IRDAProvides; |
42 | } | 48 | } |
43 | 49 | ||
44 | void IRDANetNode::setSpecificAttribute( QString & , QString & ) { | 50 | void IRDANetNode::setSpecificAttribute( QString & , QString & ) { |
45 | } | 51 | } |
46 | 52 | ||
47 | void IRDANetNode::saveSpecificAttribute( QTextStream & ) { | 53 | void IRDANetNode::saveSpecificAttribute( QTextStream & ) { |
48 | } | 54 | } |
49 | 55 | ||
56 | #ifdef MYPLUGIN | ||
57 | |||
50 | extern "C" { | 58 | extern "C" { |
51 | void create_plugin( QList<ANetNode> & PNN ) { | 59 | void create_plugin( QList<ANetNode> & PNN ) { |
52 | PNN.append( new IRDANetNode() ); | 60 | PNN.append( new IRDANetNode() ); |
53 | } | 61 | } |
62 | |||
63 | #else | ||
64 | |||
65 | OPIE_NS2_PLUGIN( NetNodeInterface<IRDANetNode> ) | ||
66 | |||
67 | #endif | ||
68 | |||
54 | } | 69 | } |
diff --git a/noncore/settings/networksettings2/lancard/lancard.pro b/noncore/settings/networksettings2/lancard/lancard.pro index 6f04e01..05f0fa0 100644 --- a/noncore/settings/networksettings2/lancard/lancard.pro +++ b/noncore/settings/networksettings2/lancard/lancard.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = lancard_NN.h \ | 4 | HEADERS = lancard_NN.h \ |
5 | lancard_NNI.h \ | 5 | lancard_NNI.h \ |
6 | lancardedit.h | 6 | lancardedit.h |
7 | SOURCES = lancard_NN.cpp \ | 7 | SOURCES = lancard_NN.cpp \ |
8 | lancard_NNI.cpp \ | 8 | lancard_NNI.cpp \ |
9 | lancardedit.cpp \ | 9 | lancardedit.cpp \ |
10 | lancardrun.cpp | 10 | lancardrun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= lancardGUI.ui | 14 | INTERFACES= lancardGUI.ui |
diff --git a/noncore/settings/networksettings2/lancard/lancard_NN.cpp b/noncore/settings/networksettings2/lancard/lancard_NN.cpp index e36f757..fce3d29 100644 --- a/noncore/settings/networksettings2/lancard/lancard_NN.cpp +++ b/noncore/settings/networksettings2/lancard/lancard_NN.cpp | |||
@@ -1,15 +1,21 @@ | |||
1 | #include "lancard_NN.h" | 1 | #include "lancard_NN.h" |
2 | #include "lancard_NNI.h" | 2 | #include "lancard_NNI.h" |
3 | 3 | ||
4 | #ifndef MYPLUGIN | ||
5 | |||
6 | #include "netnodeinterface.h" | ||
7 | |||
8 | #endif | ||
9 | |||
4 | static const char * LanCardNeeds[] = | 10 | static const char * LanCardNeeds[] = |
5 | { 0 | 11 | { 0 |
6 | }; | 12 | }; |
7 | 13 | ||
8 | static const char * LanCardProvides[] = | 14 | static const char * LanCardProvides[] = |
9 | { "device", | 15 | { "device", |
10 | 0 | 16 | 0 |
11 | }; | 17 | }; |
12 | 18 | ||
13 | /** | 19 | /** |
14 | * Constructor, find all of the possible interfaces | 20 | * Constructor, find all of the possible interfaces |
15 | */ | 21 | */ |
@@ -61,17 +67,26 @@ void LanCardNetNode::saveSpecificAttribute( QTextStream & TS) { | |||
61 | TS << "interfacecount=" | 67 | TS << "interfacecount=" |
62 | << InstanceCount | 68 | << InstanceCount |
63 | << endl; | 69 | << endl; |
64 | for( QStringList::Iterator it = NICMACAddresses.begin(); | 70 | for( QStringList::Iterator it = NICMACAddresses.begin(); |
65 | it != NICMACAddresses.end(); | 71 | it != NICMACAddresses.end(); |
66 | ++it ) { | 72 | ++it ) { |
67 | TS << "macaddress=" | 73 | TS << "macaddress=" |
68 | << (*it) | 74 | << (*it) |
69 | << endl; | 75 | << endl; |
70 | } | 76 | } |
71 | } | 77 | } |
72 | 78 | ||
79 | #ifdef MYPLUGIN | ||
80 | |||
73 | extern "C" { | 81 | extern "C" { |
74 | void create_plugin( QList<ANetNode> & PNN ) { | 82 | void create_plugin( QList<ANetNode> & PNN ) { |
75 | PNN.append( new LanCardNetNode() ); | 83 | PNN.append( new LanCardNetNode() ); |
76 | } | 84 | } |
85 | |||
86 | #else | ||
87 | |||
88 | OPIE_NS2_PLUGIN( NetNodeInterface<LanCardNetNode> ) | ||
89 | |||
90 | #endif | ||
91 | |||
77 | } | 92 | } |
diff --git a/noncore/settings/networksettings2/modem/modem.pro b/noncore/settings/networksettings2/modem/modem.pro index 25e29d4..4511e07 100644 --- a/noncore/settings/networksettings2/modem/modem.pro +++ b/noncore/settings/networksettings2/modem/modem.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = modem_NN.h \ | 4 | HEADERS = modem_NN.h \ |
5 | modem_NNI.h \ | 5 | modem_NNI.h \ |
6 | modemedit.h | 6 | modemedit.h |
7 | SOURCES = modem_NN.cpp \ | 7 | SOURCES = modem_NN.cpp \ |
8 | modem_NNI.cpp \ | 8 | modem_NNI.cpp \ |
9 | modemedit.cpp | 9 | modemedit.cpp |
10 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 10 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
11 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | LIBS += -lqpe | 12 | LIBS += -lqpe |
13 | INTERFACES= modemGUI.ui | 13 | INTERFACES= modemGUI.ui |
14 | TARGET = modem | 14 | TARGET = modem |
diff --git a/noncore/settings/networksettings2/modem/modem_NN.cpp b/noncore/settings/networksettings2/modem/modem_NN.cpp index 06f417c..c7f6e78 100644 --- a/noncore/settings/networksettings2/modem/modem_NN.cpp +++ b/noncore/settings/networksettings2/modem/modem_NN.cpp | |||
@@ -1,15 +1,21 @@ | |||
1 | #include "modem_NN.h" | 1 | #include "modem_NN.h" |
2 | #include "modem_NNI.h" | 2 | #include "modem_NNI.h" |
3 | 3 | ||
4 | #ifndef MYPLUGIN | ||
5 | |||
6 | #include "netnodeinterface.h" | ||
7 | |||
8 | #endif | ||
9 | |||
4 | static const char * ModemNeeds[] = | 10 | static const char * ModemNeeds[] = |
5 | { "line", | 11 | { "line", |
6 | 0 | 12 | 0 |
7 | }; | 13 | }; |
8 | static const char * ModemProvides[] = | 14 | static const char * ModemProvides[] = |
9 | { "modem", | 15 | { "modem", |
10 | 0 | 16 | 0 |
11 | }; | 17 | }; |
12 | 18 | ||
13 | /** | 19 | /** |
14 | * Constructor, find all of the possible interfaces | 20 | * Constructor, find all of the possible interfaces |
15 | */ | 21 | */ |
@@ -39,17 +45,26 @@ const char ** ModemNetNode::needs( void ) { | |||
39 | } | 45 | } |
40 | 46 | ||
41 | const char ** ModemNetNode::provides( void ) { | 47 | const char ** ModemNetNode::provides( void ) { |
42 | return ModemProvides; | 48 | return ModemProvides; |
43 | } | 49 | } |
44 | 50 | ||
45 | void ModemNetNode::setSpecificAttribute( QString & , QString & ) { | 51 | void ModemNetNode::setSpecificAttribute( QString & , QString & ) { |
46 | } | 52 | } |
47 | 53 | ||
48 | void ModemNetNode::saveSpecificAttribute( QTextStream & ) { | 54 | void ModemNetNode::saveSpecificAttribute( QTextStream & ) { |
49 | } | 55 | } |
50 | 56 | ||
57 | #ifdef MYPLUGIN | ||
58 | |||
51 | extern "C" { | 59 | extern "C" { |
52 | void create_plugin( QList<ANetNode> & PNN ) { | 60 | void create_plugin( QList<ANetNode> & PNN ) { |
53 | PNN.append( new ModemNetNode() ); | 61 | PNN.append( new ModemNetNode() ); |
54 | } | 62 | } |
63 | |||
64 | #else | ||
65 | |||
66 | OPIE_NS2_PLUGIN( NetNodeInterface<ModemNetNode> ) | ||
67 | |||
68 | #endif | ||
69 | |||
55 | } | 70 | } |
diff --git a/noncore/settings/networksettings2/network/network.pro b/noncore/settings/networksettings2/network/network.pro index 05df007..5ca78b9 100644 --- a/noncore/settings/networksettings2/network/network.pro +++ b/noncore/settings/networksettings2/network/network.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = network_NN.h \ | 4 | HEADERS = network_NN.h \ |
5 | network_NNI.h \ | 5 | network_NNI.h \ |
6 | networkedit.h | 6 | networkedit.h |
7 | SOURCES = network_NN.cpp \ | 7 | SOURCES = network_NN.cpp \ |
8 | network_NNI.cpp \ | 8 | network_NNI.cpp \ |
9 | networkedit.cpp \ | 9 | networkedit.cpp \ |
10 | networkrun.cpp | 10 | networkrun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= networkGUI.ui | 14 | INTERFACES= networkGUI.ui |
diff --git a/noncore/settings/networksettings2/network/network_NN.cpp b/noncore/settings/networksettings2/network/network_NN.cpp index 23b3d44..82d0c29 100644 --- a/noncore/settings/networksettings2/network/network_NN.cpp +++ b/noncore/settings/networksettings2/network/network_NN.cpp | |||
@@ -1,18 +1,24 @@ | |||
1 | #include <qpe/qpeapplication.h> | 1 | #include <qpe/qpeapplication.h> |
2 | #include <resources.h> | 2 | #include <resources.h> |
3 | #include <netnode.h> | 3 | #include <netnode.h> |
4 | #include "network_NN.h" | 4 | #include "network_NN.h" |
5 | #include "network_NNI.h" | 5 | #include "network_NNI.h" |
6 | 6 | ||
7 | #ifndef MYPLUGIN | ||
8 | |||
9 | #include "netnodeinterface.h" | ||
10 | |||
11 | #endif | ||
12 | |||
7 | static const char * NetworkNeeds[] = | 13 | static const char * NetworkNeeds[] = |
8 | { "device", | 14 | { "device", |
9 | 0 | 15 | 0 |
10 | }; | 16 | }; |
11 | 17 | ||
12 | static const char * NetworkProvides[] = | 18 | static const char * NetworkProvides[] = |
13 | { "connection", | 19 | { "connection", |
14 | 0 | 20 | 0 |
15 | }; | 21 | }; |
16 | 22 | ||
17 | /** | 23 | /** |
18 | * Constructor, find all of the possible interfaces | 24 | * Constructor, find all of the possible interfaces |
@@ -81,17 +87,26 @@ const char ** NetworkNetNode::needs( void ) { | |||
81 | } | 87 | } |
82 | 88 | ||
83 | const char ** NetworkNetNode::provides( void ) { | 89 | const char ** NetworkNetNode::provides( void ) { |
84 | return NetworkProvides; | 90 | return NetworkProvides; |
85 | } | 91 | } |
86 | 92 | ||
87 | void NetworkNetNode::setSpecificAttribute( QString & , QString & ) { | 93 | void NetworkNetNode::setSpecificAttribute( QString & , QString & ) { |
88 | } | 94 | } |
89 | 95 | ||
90 | void NetworkNetNode::saveSpecificAttribute( QTextStream & ) { | 96 | void NetworkNetNode::saveSpecificAttribute( QTextStream & ) { |
91 | } | 97 | } |
92 | 98 | ||
99 | #ifdef MYPLUGIN | ||
100 | |||
93 | extern "C" { | 101 | extern "C" { |
94 | void create_plugin( QList<ANetNode> & PNN ) { | 102 | void create_plugin( QList<ANetNode> & PNN ) { |
95 | PNN.append( new NetworkNetNode() ); | 103 | PNN.append( new NetworkNetNode() ); |
96 | } | 104 | } |
105 | |||
106 | #else | ||
107 | |||
108 | OPIE_NS2_PLUGIN( NetNodeInterface<NetworkNetNode> ) | ||
109 | |||
110 | #endif | ||
111 | |||
97 | } | 112 | } |
diff --git a/noncore/settings/networksettings2/networksettings2/netnodeinterface.h b/noncore/settings/networksettings2/networksettings2/netnodeinterface.h new file mode 100644 index 0000000..34f3bb5 --- a/dev/null +++ b/noncore/settings/networksettings2/networksettings2/netnodeinterface.h | |||
@@ -0,0 +1,139 @@ | |||
1 | /* | ||
2 | This file is part of the Opie Project | ||
3 | |||
4 | Copyright (C) 2005 Holger Hans Peter Freyther <freyther@handhelds.org> | ||
5 | =. | ||
6 | .=l. | ||
7 | .>+-= | ||
8 | _;:, .> :=|. This program is free software; you can | ||
9 | .> <`_, > . <= redistribute it and/or modify it under | ||
10 | :`=1 )Y*s>-.-- : the terms of the GNU Library General Public | ||
11 | .="- .-=="i, .._ License as published by the Free Software | ||
12 | - . .-<_> .<> Foundation; either version 2 of the License, | ||
13 | ._= =} : or (at your option) any later version. | ||
14 | .%`+i> _;_. | ||
15 | .i_,=:_. -<s. This program is distributed in the hope that | ||
16 | + . -:. = it will be useful, but WITHOUT ANY WARRANTY; | ||
17 | : .. .:, . . . without even the implied warranty of | ||
18 | =_ + =;=|` MERCHANTABILITY or FITNESS FOR A | ||
19 | _.=:. : :=>`: PARTICULAR PURPOSE. See the GNU | ||
20 | ..}^=.= = ; Library General Public License for more | ||
21 | ++= -. .` .: details. | ||
22 | : = ...= . :.=- | ||
23 | -. .:....=;==+<; You should have received a copy of the GNU | ||
24 | -_. . . )=. = Library General Public License along with | ||
25 | -- :-=` this library; see the file COPYING.LIB. | ||
26 | If not, write to the Free Software Foundation, | ||
27 | Inc., 59 Temple Place - Suite 330, | ||
28 | Boston, MA 02111-1307, USA. | ||
29 | |||
30 | */ | ||
31 | |||
32 | #ifndef ANET_NODE_INTERFACE_H | ||
33 | #define ANET_NODE_INTERFACE_H | ||
34 | |||
35 | #include <opie2/oapplicationfactory.h> | ||
36 | #include <qpe/qcom.h> | ||
37 | |||
38 | // {A215A785-FB73-4F74-84B0-053BCC77DB87} | ||
39 | #ifndef IID_NetworkSettings2 | ||
40 | |||
41 | #define IID_NetworkSettings2 QUuid( 0xa215a785, 0xfb73, 0x4f74, 0x84, 0xb0, 0x05, 0x3b, 0xcc, 0x77, 0xdb, 0x87) | ||
42 | |||
43 | #endif | ||
44 | |||
45 | |||
46 | |||
47 | /** | ||
48 | * Multiple Types | ||
49 | */ | ||
50 | template <class Node > | ||
51 | struct NS2PrivateFactory { | ||
52 | |||
53 | inline static void createPlugins( QList<ANetNode> & PNN) { | ||
54 | PNN.append( new Node()); | ||
55 | } | ||
56 | |||
57 | }; | ||
58 | |||
59 | /* | ||
60 | * Stop recursion here | ||
61 | */ | ||
62 | template <> | ||
63 | struct NS2PrivateFactory<Opie::Core::NullType> { | ||
64 | |||
65 | inline static void createPlugins( QList<ANetNode> &) { | ||
66 | |||
67 | } | ||
68 | |||
69 | }; | ||
70 | |||
71 | template <class Node, class Tail> | ||
72 | struct NS2PrivateFactory<Opie::Core::Typelist<Node, Tail> > { | ||
73 | |||
74 | inline static void createPlugins( QList<ANetNode> & PNN ) { | ||
75 | NS2PrivateFactory<Node>::createPlugins(PNN); | ||
76 | NS2PrivateFactory<Tail>::createPlugins(PNN); | ||
77 | } | ||
78 | |||
79 | }; | ||
80 | |||
81 | template<class Node> | ||
82 | struct NetNodeInterface : public QUnknownInterface { | ||
83 | |||
84 | QRESULT queryInterface(const QUuid& uuid, QUnknownInterface **iface) { | ||
85 | *iface = 0; | ||
86 | |||
87 | if( uuid == IID_QUnknown ) | ||
88 | *iface = this; | ||
89 | else if( uuid == IID_NetworkSettings2 ) | ||
90 | *iface = this; | ||
91 | else | ||
92 | return QS_FALSE; | ||
93 | |||
94 | (*iface)->addRef(); | ||
95 | |||
96 | return QS_OK; | ||
97 | |||
98 | } | ||
99 | |||
100 | void create_plugin( QList<ANetNode> & PNN ) { | ||
101 | |||
102 | PNN.append( new Node()); | ||
103 | |||
104 | } | ||
105 | |||
106 | Q_REFCOUNT | ||
107 | }; | ||
108 | |||
109 | template<class Node, class Tail> | ||
110 | struct NetNodeInterface<Opie::Core::Typelist<Node, Tail> > | ||
111 | : public QUnknownInterface { | ||
112 | |||
113 | QRESULT queryInterface( const QUuid& uuid, | ||
114 | QUnknownInterface **iface) { | ||
115 | |||
116 | *iface = 0; | ||
117 | |||
118 | if( uuid == IID_QUnknown ) *iface = this; | ||
119 | else if( uuid == IID_NetworkSettings2 ) *iface = this; | ||
120 | else return QS_FALSE; | ||
121 | |||
122 | (*iface)->addRef(); | ||
123 | return QS_OK; | ||
124 | |||
125 | } | ||
126 | |||
127 | void create_plugin( QList<ANetNode> & PNN ) { | ||
128 | NS2PrivateFactory<Opie::Core::Typelist<Node,Tail> >::createPlugin( PNN ); | ||
129 | } | ||
130 | |||
131 | Q_REFCOUNT | ||
132 | |||
133 | }; | ||
134 | |||
135 | #define OPIE_NS2_PLUGIN( factory ) \ | ||
136 | Q_EXPORT_INTERFACE() { Q_CREATE_INSTANCE( factory) } | ||
137 | |||
138 | #endif | ||
139 | |||
diff --git a/noncore/settings/networksettings2/networksettings2/resources.cpp b/noncore/settings/networksettings2/networksettings2/resources.cpp index 50fb15a..79d41ea 100644 --- a/noncore/settings/networksettings2/networksettings2/resources.cpp +++ b/noncore/settings/networksettings2/networksettings2/resources.cpp | |||
@@ -1,40 +1,49 @@ | |||
1 | #include <unistd.h> | 1 | #include <unistd.h> |
2 | #include <errno.h> | 2 | #include <errno.h> |
3 | #include <fcntl.h> | 3 | #include <fcntl.h> |
4 | #include <pwd.h> | 4 | #include <pwd.h> |
5 | #include <qpixmap.h> | 5 | #include <qpixmap.h> |
6 | #include <qdir.h> | 6 | #include <qdir.h> |
7 | #include <qmessagebox.h> | ||
8 | |||
7 | #include <qpe/qlibrary.h> | 9 | #include <qpe/qlibrary.h> |
8 | #include <qpe/qpeapplication.h> | 10 | #include <qpe/qpeapplication.h> |
11 | |||
9 | #include <opie2/odebug.h> | 12 | #include <opie2/odebug.h> |
13 | #include <opie2/opluginloader.h> | ||
14 | |||
10 | #include <qtopia/resource.h> | 15 | #include <qtopia/resource.h> |
11 | 16 | ||
12 | #include "netnode.h" | 17 | #include "netnode.h" |
13 | #include "resources.h" | 18 | #include "resources.h" |
19 | #include "netnodeinterface.h" | ||
14 | 20 | ||
15 | #define PLUGINDIR "plugins/networksettings2" | 21 | #define PLUGINDIR "plugins/networksettings2" |
16 | #define ICONDIR "/pics/networksettings2/" | 22 | #define ICONDIR "/pics/networksettings2/" |
17 | 23 | ||
18 | // single resources instance | 24 | // single resources instance |
19 | TheNSResources * _NSResources = 0; | 25 | TheNSResources * _NSResources = 0; |
20 | 26 | ||
21 | TheNSResources::TheNSResources( void ) : NodeTypeNameMap(), | 27 | TheNSResources::TheNSResources( void ) : NodeTypeNameMap(), |
22 | ConnectionsMap() { | 28 | ConnectionsMap() { |
23 | 29 | ||
24 | _NSResources = this; | 30 | _NSResources = this; |
25 | 31 | ||
26 | detectCurrentUser(); | 32 | detectCurrentUser(); |
27 | 33 | ||
28 | // load available netnodes | 34 | // load available netnodes |
35 | |||
36 | #ifdef MYPLUGIN | ||
37 | |||
29 | findAvailableNetNodes(QPEApplication::qpeDir() + PLUGINDIR ); | 38 | findAvailableNetNodes(QPEApplication::qpeDir() + PLUGINDIR ); |
30 | 39 | ||
31 | // compile provides and needs lists | 40 | // compile provides and needs lists |
32 | { const char ** NeedsRun; | 41 | { const char ** NeedsRun; |
33 | QDictIterator<NetNode_t> OuterIt( AllNodeTypes ); | 42 | QDictIterator<NetNode_t> OuterIt( AllNodeTypes ); |
34 | bool Done; | 43 | bool Done; |
35 | 44 | ||
36 | for ( ; OuterIt.current(); ++OuterIt ) { | 45 | for ( ; OuterIt.current(); ++OuterIt ) { |
37 | // find needs list | 46 | // find needs list |
38 | ANetNode::NetNodeList * NNLP = new ANetNode::NetNodeList; | 47 | ANetNode::NetNodeList * NNLP = new ANetNode::NetNodeList; |
39 | ANetNode::NetNodeList & NNL = *(NNLP); | 48 | ANetNode::NetNodeList & NNL = *(NNLP); |
40 | 49 | ||
@@ -57,43 +66,97 @@ TheNSResources::TheNSResources( void ) : NodeTypeNameMap(), | |||
57 | NNL.resize( NNL.size() + 1 ); | 66 | NNL.resize( NNL.size() + 1 ); |
58 | NNL[NNL.size()-1] = InnerIt.current()->NetNode; | 67 | NNL[NNL.size()-1] = InnerIt.current()->NetNode; |
59 | Done = 1; // break from 2 loops | 68 | Done = 1; // break from 2 loops |
60 | break; | 69 | break; |
61 | } | 70 | } |
62 | } | 71 | } |
63 | } | 72 | } |
64 | } | 73 | } |
65 | OuterIt.current()->NetNode->setAlternatives( NNLP ); | 74 | OuterIt.current()->NetNode->setAlternatives( NNLP ); |
66 | } | 75 | } |
67 | } | 76 | } |
68 | 77 | ||
78 | #else | ||
79 | |||
80 | Plugins = 0; | ||
81 | findAvailableNetNodes(); | ||
82 | |||
83 | // compile provides and needs lists | ||
84 | { const char ** NeedsRun; | ||
85 | QDictIterator<ANetNode> OuterIt( AllNodeTypes ); | ||
86 | bool Done; | ||
87 | |||
88 | for ( ; OuterIt.current(); ++OuterIt ) { | ||
89 | // find needs list | ||
90 | ANetNode::NetNodeList * NNLP = new ANetNode::NetNodeList; | ||
91 | ANetNode::NetNodeList & NNL = *(NNLP); | ||
92 | |||
93 | // must iterate this way to avoid duplication pointers | ||
94 | for ( QDictIterator<ANetNode> InnerIt( AllNodeTypes ); | ||
95 | InnerIt.current(); ++InnerIt ) { | ||
96 | |||
97 | if( InnerIt.current() == OuterIt.current() ) | ||
98 | // avoid recursive | ||
99 | continue; | ||
100 | |||
101 | const char ** Provides = InnerIt.current()->provides(); | ||
102 | NeedsRun = OuterIt.current()->needs(); | ||
103 | |||
104 | for( ; *NeedsRun; NeedsRun ++ ) { | ||
105 | const char ** PRun; | ||
106 | PRun = Provides; | ||
107 | for( ; *PRun; PRun ++ ) { | ||
108 | if( strcmp( *PRun, *NeedsRun ) == 0 ) { | ||
109 | // inner provides what outer needs | ||
110 | NNL.resize( NNL.size() + 1 ); | ||
111 | NNL[NNL.size()-1] = InnerIt.current(); | ||
112 | Done = 1; // break from 2 loops | ||
113 | break; | ||
114 | } | ||
115 | } | ||
116 | } | ||
117 | } | ||
118 | OuterIt.current()->setAlternatives( NNLP ); | ||
119 | } | ||
120 | } | ||
121 | |||
122 | #endif | ||
123 | |||
69 | // define built in Node types to Description map | 124 | // define built in Node types to Description map |
70 | addNodeType( "device", tr( "Network Device" ), | 125 | addNodeType( "device", tr( "Network Device" ), |
71 | tr( "<p>Devices that can handle IP packets</p>" ) ); | 126 | tr( "<p>Devices that can handle IP packets</p>" ) ); |
72 | addNodeType( "line", tr( "Character device" ), | 127 | addNodeType( "line", tr( "Character device" ), |
73 | tr( "<p>Devices that can handle single bytes</p>" ) ); | 128 | tr( "<p>Devices that can handle single bytes</p>" ) ); |
74 | addNodeType( "connection", tr( "IP Connection" ), | 129 | addNodeType( "connection", tr( "IP Connection" ), |
75 | tr( "<p>Nodes that provide working IP connections</p>" ) ); | 130 | tr( "<p>Nodes that provide working IP connections</p>" ) ); |
76 | addNodeType( "fullsetup", tr( "Connection Profile" ), | 131 | addNodeType( "fullsetup", tr( "Connection Profile" ), |
77 | tr( "<p>Fully configured connection profile</p>" ) ); | 132 | tr( "<p>Fully configured connection profile</p>" ) ); |
78 | addNodeType( "GPRS", tr( "Connection to GPRS device" ), | 133 | addNodeType( "GPRS", tr( "Connection to GPRS device" ), |
79 | tr( "<p>Connection to a GPRS capable device</p>" ) ); | 134 | tr( "<p>Connection to a GPRS capable device</p>" ) ); |
80 | 135 | ||
81 | // get access to the system | 136 | // get access to the system |
82 | TheSystem = new System(); | 137 | TheSystem = new System(); |
83 | 138 | ||
84 | } | 139 | } |
85 | 140 | ||
86 | TheNSResources::~TheNSResources( void ) { | 141 | TheNSResources::~TheNSResources( void ) { |
142 | |||
143 | #ifndef MYPLUGINS | ||
144 | if( Plugins ) { | ||
145 | delete Plugins; | ||
146 | delete PluginManager; | ||
147 | } | ||
148 | #endif | ||
87 | delete TheSystem; | 149 | delete TheSystem; |
150 | |||
88 | } | 151 | } |
89 | 152 | ||
90 | void TheNSResources::addNodeType( const QString & ID, | 153 | void TheNSResources::addNodeType( const QString & ID, |
91 | const QString & Name, | 154 | const QString & Name, |
92 | const QString & Descr ) { | 155 | const QString & Descr ) { |
93 | if( NodeTypeNameMap[ID].isEmpty() ) { | 156 | if( NodeTypeNameMap[ID].isEmpty() ) { |
94 | NodeTypeNameMap.insert( ID, Name ); | 157 | NodeTypeNameMap.insert( ID, Name ); |
95 | NodeTypeDescriptionMap.insert( ID, Descr ); | 158 | NodeTypeDescriptionMap.insert( ID, Descr ); |
96 | } | 159 | } |
97 | } | 160 | } |
98 | 161 | ||
99 | void TheNSResources::addSystemFile( const QString & ID, | 162 | void TheNSResources::addSystemFile( const QString & ID, |
@@ -107,24 +170,25 @@ void TheNSResources::addSystemFile( const QString & ID, | |||
107 | 170 | ||
108 | void TheNSResources::busy( bool ) { | 171 | void TheNSResources::busy( bool ) { |
109 | /* | 172 | /* |
110 | if( B ) { | 173 | if( B ) { |
111 | ShowWait->show(); | 174 | ShowWait->show(); |
112 | qApp->process | 175 | qApp->process |
113 | } else { | 176 | } else { |
114 | ShowWait->hide(); | 177 | ShowWait->hide(); |
115 | } | 178 | } |
116 | */ | 179 | */ |
117 | } | 180 | } |
118 | 181 | ||
182 | #ifdef MYPLUGIN | ||
119 | /** | 183 | /** |
120 | * Load all modules that are found in the path | 184 | * Load all modules that are found in the path |
121 | * @param path a directory that is scaned for any plugins that can be loaded | 185 | * @param path a directory that is scaned for any plugins that can be loaded |
122 | * and attempts to load them | 186 | * and attempts to load them |
123 | */ | 187 | */ |
124 | void TheNSResources::findAvailableNetNodes(const QString &path){ | 188 | void TheNSResources::findAvailableNetNodes(const QString &path){ |
125 | 189 | ||
126 | Log(("Locate plugins in %s\n", path.latin1() )); | 190 | Log(("Locate plugins in %s\n", path.latin1() )); |
127 | QDir d(path); | 191 | QDir d(path); |
128 | if(!d.exists()) | 192 | if(!d.exists()) |
129 | return; | 193 | return; |
130 | 194 | ||
@@ -151,45 +215,24 @@ void TheNSResources::findAvailableNetNodes(const QString &path){ | |||
151 | if( trans->load( fn ) ) | 215 | if( trans->load( fn ) ) |
152 | qApp->installTranslator( trans ); | 216 | qApp->installTranslator( trans ); |
153 | else | 217 | else |
154 | delete trans; | 218 | delete trans; |
155 | } else { | 219 | } else { |
156 | Log(( "Error loading plugin %s\n", fi->fileName().latin1())); | 220 | Log(( "Error loading plugin %s\n", fi->fileName().latin1())); |
157 | } | 221 | } |
158 | } | 222 | } |
159 | ++it; | 223 | ++it; |
160 | } | 224 | } |
161 | } | 225 | } |
162 | 226 | ||
163 | // used to find unique connection number | ||
164 | int TheNSResources::assignConnectionNumber( void ) { | ||
165 | bool found = 1; | ||
166 | for( int trial = 0; ; trial ++ ) { | ||
167 | found = 1; | ||
168 | for( QDictIterator<NodeCollection> it(ConnectionsMap); | ||
169 | it.current(); | ||
170 | ++it ) { | ||
171 | if( it.current()->number() == trial ) { | ||
172 | found = 0; | ||
173 | break; | ||
174 | } | ||
175 | } | ||
176 | |||
177 | if( found ) { | ||
178 | Log(("Assign profile number %d\n", trial )); | ||
179 | return trial; | ||
180 | } | ||
181 | } | ||
182 | } | ||
183 | |||
184 | /** | 227 | /** |
185 | * Attempt to load a function and resolve a function. | 228 | * Attempt to load a function and resolve a function. |
186 | * @param pluginFileName - the name of the file in which to attempt to load | 229 | * @param pluginFileName - the name of the file in which to attempt to load |
187 | * @param resolveString - function pointer to resolve | 230 | * @param resolveString - function pointer to resolve |
188 | * @return true of loading is successful | 231 | * @return true of loading is successful |
189 | */ | 232 | */ |
190 | bool TheNSResources::loadNetNode( | 233 | bool TheNSResources::loadNetNode( |
191 | const QString &pluginFileName, const QString &resolveString){ | 234 | const QString &pluginFileName, const QString &resolveString){ |
192 | 235 | ||
193 | QLibrary *lib = new QLibrary(pluginFileName); | 236 | QLibrary *lib = new QLibrary(pluginFileName); |
194 | void * res = lib->resolve(resolveString); | 237 | void * res = lib->resolve(resolveString); |
195 | if( ! res ){ | 238 | if( ! res ){ |
@@ -218,24 +261,118 @@ bool TheNSResources::loadNetNode( | |||
218 | NN = new NetNode_t; | 261 | NN = new NetNode_t; |
219 | NN->NetNode = NNP; | 262 | NN->NetNode = NNP; |
220 | NN->TheLibrary = lib; | 263 | NN->TheLibrary = lib; |
221 | NN->NodeCountInLib = PNN.count(); | 264 | NN->NodeCountInLib = PNN.count(); |
222 | 265 | ||
223 | // store mapping | 266 | // store mapping |
224 | AllNodeTypes.insert( NN->NetNode->name(), NN ); | 267 | AllNodeTypes.insert( NN->NetNode->name(), NN ); |
225 | } | 268 | } |
226 | 269 | ||
227 | return 1; | 270 | return 1; |
228 | } | 271 | } |
229 | 272 | ||
273 | #else | ||
274 | |||
275 | void TheNSResources::findAvailableNetNodes( void ){ | ||
276 | |||
277 | Plugins = new OPluginLoader( "networksettings2" ); | ||
278 | Plugins->setAutoDelete( true ); | ||
279 | |||
280 | PluginManager = new OPluginManager( Plugins ); | ||
281 | PluginManager->load(); | ||
282 | |||
283 | if( Plugins->isInSafeMode() ) { | ||
284 | QMessageBox::information( | ||
285 | 0, | ||
286 | tr( "Today Error"), | ||
287 | tr( "<qt>The plugin '%1' caused Today to crash." | ||
288 | " It could be that the plugin is not properly" | ||
289 | " installed.<br>Today tries to continue loading" | ||
290 | " plugins.</qt>" ) | ||
291 | .arg( PluginManager->crashedPlugin().name())); | ||
292 | } | ||
293 | |||
294 | // Get All Plugins | ||
295 | OPluginLoader::List allplugins = Plugins->filtered(); | ||
296 | |||
297 | for( OPluginLoader::List::Iterator it = allplugins.begin(); | ||
298 | it != allplugins.end(); | ||
299 | ++it ) { | ||
300 | |||
301 | // check if this plugin supports the proper interface | ||
302 | NetNodeInterface * interface = | ||
303 | Plugins->load<NetNodeInterface>( *it, IID_NetworkSettings2 ); | ||
304 | |||
305 | if( ! interface ) { | ||
306 | Log(( "Plugin %s from %s does not support proper interface\n", | ||
307 | it->name().latin1(), it->path().latin1() )); | ||
308 | continue; | ||
309 | } | ||
310 | |||
311 | // add the nodes in this plugin to the dictionary | ||
312 | { QList<ANetNode> PNN; | ||
313 | |||
314 | interface->create_plugin( PNN ); | ||
315 | |||
316 | if( PNN.isEmpty() ) { | ||
317 | Log(( "Plugin %s from %s does offer any nodes\n", | ||
318 | it->name().latin1(), it->path().latin1() )); | ||
319 | delete interface; | ||
320 | continue; | ||
321 | } | ||
322 | |||
323 | // merge this node with global node | ||
324 | for( QListIterator<ANetNode> it(PNN); | ||
325 | it.current(); | ||
326 | ++it ) { | ||
327 | AllNodeTypes.insert( it->current()->name(), it->current() ); | ||
328 | } | ||
329 | } | ||
330 | |||
331 | // load the translation | ||
332 | QTranslator *trans = new QTranslator(qApp); | ||
333 | QString fn = QPEApplication::qpeDir()+ | ||
334 | "/i18n/"+lang+"/"+ it->name() + ".qm"; | ||
335 | |||
336 | if( trans->load( fn ) ) | ||
337 | qApp->installTranslator( trans ); | ||
338 | else | ||
339 | delete trans; | ||
340 | } | ||
341 | |||
342 | } | ||
343 | |||
344 | #endif | ||
345 | |||
346 | // used to find unique connection number | ||
347 | int TheNSResources::assignConnectionNumber( void ) { | ||
348 | bool found = 1; | ||
349 | for( int trial = 0; ; trial ++ ) { | ||
350 | found = 1; | ||
351 | for( QDictIterator<NodeCollection> it(ConnectionsMap); | ||
352 | it.current(); | ||
353 | ++it ) { | ||
354 | if( it.current()->number() == trial ) { | ||
355 | found = 0; | ||
356 | break; | ||
357 | } | ||
358 | } | ||
359 | |||
360 | if( found ) { | ||
361 | Log(("Assign profile number %d\n", trial )); | ||
362 | return trial; | ||
363 | } | ||
364 | } | ||
365 | } | ||
366 | |||
230 | QPixmap TheNSResources::getPixmap( const QString & QS ) { | 367 | QPixmap TheNSResources::getPixmap( const QString & QS ) { |
231 | QPixmap P; | 368 | QPixmap P; |
232 | QString S("networksettings2/"); | 369 | QString S("networksettings2/"); |
233 | S += QS; | 370 | S += QS; |
234 | P = Resource::loadPixmap( S ); | 371 | P = Resource::loadPixmap( S ); |
235 | if( P.isNull() ) { | 372 | if( P.isNull() ) { |
236 | Log(( "Cannot load %s\n", S.latin1() )); | 373 | Log(( "Cannot load %s\n", S.latin1() )); |
237 | } | 374 | } |
238 | return ( P.isNull() ) ? QPixmap() : P; | 375 | return ( P.isNull() ) ? QPixmap() : P; |
239 | } | 376 | } |
240 | 377 | ||
241 | QString TheNSResources::tr( const char * s ) { | 378 | QString TheNSResources::tr( const char * s ) { |
diff --git a/noncore/settings/networksettings2/networksettings2/resources.h b/noncore/settings/networksettings2/networksettings2/resources.h index 5d90286..421a433 100644 --- a/noncore/settings/networksettings2/networksettings2/resources.h +++ b/noncore/settings/networksettings2/networksettings2/resources.h | |||
@@ -5,96 +5,124 @@ | |||
5 | #include <qdict.h> | 5 | #include <qdict.h> |
6 | #include <qmap.h> | 6 | #include <qmap.h> |
7 | #include <qlist.h> | 7 | #include <qlist.h> |
8 | #include "netnode.h" | 8 | #include "netnode.h" |
9 | #include "systemfile.h" | 9 | #include "systemfile.h" |
10 | #include "system.h" | 10 | #include "system.h" |
11 | 11 | ||
12 | class QLibrary; | 12 | class QLibrary; |
13 | class QPixmap; | 13 | class QPixmap; |
14 | class ANetNode; | 14 | class ANetNode; |
15 | class ANetNodeInstance; | 15 | class ANetNodeInstance; |
16 | 16 | ||
17 | typedef void (*GetNetNodeListFt_t)(QList<ANetNode>& PNN ); | 17 | namespace Opie { |
18 | namespace Core { | ||
19 | class OPluginLoader; | ||
20 | class OPluginManager; | ||
21 | } | ||
22 | } | ||
18 | 23 | ||
19 | typedef struct NetNode_S { | 24 | typedef void (*GetNetNodeListFt_t)(QList<ANetNode>& PNN ); |
20 | ANetNode * NetNode; | ||
21 | QLibrary * TheLibrary; | ||
22 | long NodeCountInLib; | ||
23 | } NetNode_t; | ||
24 | 25 | ||
25 | class CurrentQPEUser { | 26 | class CurrentQPEUser { |
26 | 27 | ||
27 | public : | 28 | public : |
28 | CurrentQPEUser() : UserName(), HomeDir(), EnvList() {} | 29 | CurrentQPEUser() : UserName(), HomeDir(), EnvList() {} |
29 | 30 | ||
30 | inline bool known( void ) | 31 | inline bool known( void ) |
31 | { return ! HomeDir.isEmpty() && ! UserName.isEmpty(); } | 32 | { return ! HomeDir.isEmpty() && ! UserName.isEmpty(); } |
32 | 33 | ||
33 | QString UserName; | 34 | QString UserName; |
34 | QString HomeDir; | 35 | QString HomeDir; |
35 | int Uid; | 36 | int Uid; |
36 | int Gid; | 37 | int Gid; |
37 | QArray<char *> EnvList; | 38 | QArray<char *> EnvList; |
38 | }; | 39 | }; |
39 | 40 | ||
41 | #ifdef MYPLUGIN | ||
42 | |||
43 | typedef struct NetNode_S { | ||
44 | ANetNode * NetNode; | ||
45 | QLibrary * TheLibrary; | ||
46 | long NodeCountInLib; | ||
47 | } NetNode_t; | ||
40 | typedef QDict<NetNode_t> Name2NetNode_t; | 48 | typedef QDict<NetNode_t> Name2NetNode_t; |
49 | |||
50 | #else | ||
51 | |||
52 | typedef QDict<ANetNode> Name2NetNode_t; | ||
53 | |||
54 | #endif | ||
55 | |||
41 | typedef QDict<ANetNodeInstance > Name2Instance_t; | 56 | typedef QDict<ANetNodeInstance > Name2Instance_t; |
42 | typedef QDict<NodeCollection> Name2Connection_t; | 57 | typedef QDict<NodeCollection> Name2Connection_t; |
43 | typedef QDict<SystemFile> Name2SystemFile_t; | 58 | typedef QDict<SystemFile> Name2SystemFile_t; |
44 | 59 | ||
45 | class TheNSResources { | 60 | class TheNSResources { |
46 | 61 | ||
47 | public : | 62 | public : |
48 | 63 | ||
49 | TheNSResources( void ); | 64 | TheNSResources( void ); |
50 | ~TheNSResources( ); | 65 | ~TheNSResources( ); |
51 | 66 | ||
52 | // give busy feedback | 67 | // give busy feedback |
53 | void busy( bool B ); | 68 | void busy( bool B ); |
54 | 69 | ||
55 | System & system() | 70 | System & system() |
56 | { return *TheSystem; } | 71 | { return *TheSystem; } |
57 | 72 | ||
58 | int assignConnectionNumber(void); | 73 | int assignConnectionNumber(void); |
59 | QPixmap getPixmap( const QString & Name ); | 74 | QPixmap getPixmap( const QString & Name ); |
60 | 75 | ||
61 | Name2NetNode_t & netNodes( void ) | 76 | Name2NetNode_t & netNodes( void ) |
62 | { return AllNodeTypes; } | 77 | { return AllNodeTypes; } |
63 | bool netNodeExists( const QString & X ) | 78 | bool netNodeExists( const QString & X ) |
64 | { return AllNodeTypes.find(X)!=0; } | 79 | { return AllNodeTypes.find(X)!=0; } |
80 | #ifdef MYPLUGIN | ||
65 | ANetNode * findNetNode( const QString & N ) | 81 | ANetNode * findNetNode( const QString & N ) |
66 | { NetNode_t * NNT = AllNodeTypes.find(N); | 82 | { NetNode_t * NNT = AllNodeTypes.find(N); |
67 | return (NNT) ? NNT->NetNode : 0; | 83 | return (NNT) ? NNT->NetNode : 0; |
68 | } | 84 | } |
69 | 85 | #else | |
86 | ANetNode * findNetNode( const QString & N ) | ||
87 | { return AllNodeTypes.find(N); | ||
88 | } | ||
89 | #endif | ||
70 | // define new plugin (=node) | 90 | // define new plugin (=node) |
71 | void addNodeType( const QString & ID, | 91 | void addNodeType( const QString & ID, |
72 | const QString & LongName, | 92 | const QString & LongName, |
73 | const QString & Description ); | 93 | const QString & Description ); |
74 | 94 | ||
75 | Name2SystemFile_t & systemFiles( void ) | 95 | Name2SystemFile_t & systemFiles( void ) |
76 | { return SystemFiles; } | 96 | { return SystemFiles; } |
77 | void addSystemFile( const QString & ID, | 97 | void addSystemFile( const QString & ID, |
78 | const QString & P, | 98 | const QString & P, |
79 | bool KDI ); | 99 | bool KDI ); |
80 | 100 | ||
81 | ANetNodeInstance * createNodeInstance( const QString & S ) | 101 | ANetNodeInstance * createNodeInstance( const QString & S ) |
82 | { ANetNodeInstance * NNI = 0; | 102 | { ANetNodeInstance * NNI = 0; |
83 | printf( "Find node type %s\n", S.latin1() ); | 103 | printf( "Find node type %s\n", S.latin1() ); |
104 | #ifdef MYPLUGIN | ||
84 | NetNode_t * NNT = AllNodeTypes[S]; | 105 | NetNode_t * NNT = AllNodeTypes[S]; |
85 | if( ! NNT ) { | 106 | if( ! NNT ) { |
86 | return 0; | 107 | return 0; |
87 | } | 108 | } |
88 | NNI = NNT->NetNode->createInstance(); | 109 | NNI = NNT->NetNode->createInstance(); |
110 | #else | ||
111 | ANetNode * NNT = AllNodeTypes[S]; | ||
112 | if( ! NNT ) { | ||
113 | return 0; | ||
114 | } | ||
115 | NNI = NNT->createInstance(); | ||
116 | #endif | ||
89 | NNI->initialize(); | 117 | NNI->initialize(); |
90 | return NNI; | 118 | return NNI; |
91 | } | 119 | } |
92 | 120 | ||
93 | Name2Instance_t & netNodeInstances( void ) | 121 | Name2Instance_t & netNodeInstances( void ) |
94 | { return AllNodes; } | 122 | { return AllNodes; } |
95 | void addNodeInstance( ANetNodeInstance * I ) | 123 | void addNodeInstance( ANetNodeInstance * I ) |
96 | { AllNodes.insert( I->name(), I ); } | 124 | { AllNodes.insert( I->name(), I ); } |
97 | void removeNodeInstance( const QString & N ) | 125 | void removeNodeInstance( const QString & N ) |
98 | { AllNodes.remove( N );} | 126 | { AllNodes.remove( N );} |
99 | ANetNodeInstance * findNodeInstance( const QString & S ) | 127 | ANetNodeInstance * findNodeInstance( const QString & S ) |
100 | { return AllNodes[S]; } | 128 | { return AllNodes[S]; } |
@@ -109,36 +137,47 @@ public : | |||
109 | Name2Connection_t & connections( void ) | 137 | Name2Connection_t & connections( void ) |
110 | { return ConnectionsMap; } | 138 | { return ConnectionsMap; } |
111 | 139 | ||
112 | inline bool userKnown( void ) | 140 | inline bool userKnown( void ) |
113 | { return CurrentUser.known(); } | 141 | { return CurrentUser.known(); } |
114 | CurrentQPEUser & currentUser( void ) | 142 | CurrentQPEUser & currentUser( void ) |
115 | { return CurrentUser; } | 143 | { return CurrentUser; } |
116 | 144 | ||
117 | private : | 145 | private : |
118 | 146 | ||
119 | void detectCurrentUser( void ); | 147 | void detectCurrentUser( void ); |
120 | QString tr( const char * path ); | 148 | QString tr( const char * path ); |
149 | |||
150 | #ifdef MYPLUGIN | ||
121 | void findAvailableNetNodes( const QString &path ); | 151 | void findAvailableNetNodes( const QString &path ); |
122 | bool loadNetNode( | 152 | bool loadNetNode( |
123 | const QString &pluginFileName, | 153 | const QString &pluginFileName, |
124 | const QString &resolveString = "create_plugin"); | 154 | const QString &resolveString = "create_plugin"); |
155 | #else | ||
156 | void findAvailableNetNodes( void ); | ||
157 | #endif | ||
125 | 158 | ||
126 | QMap< QString, QString> NodeTypeNameMap; | 159 | QMap< QString, QString> NodeTypeNameMap; |
127 | QMap< QString, QString> NodeTypeDescriptionMap; | 160 | QMap< QString, QString> NodeTypeDescriptionMap; |
128 | Name2Connection_t ConnectionsMap; | 161 | Name2Connection_t ConnectionsMap; |
129 | System * TheSystem; | 162 | System * TheSystem; |
130 | Name2SystemFile_t SystemFiles; | 163 | Name2SystemFile_t SystemFiles; |
131 | 164 | ||
132 | // all node type classes | 165 | // all node type classes |
133 | Name2NetNode_t AllNodeTypes; | 166 | Name2NetNode_t AllNodeTypes; |
134 | 167 | ||
135 | // all nodes | 168 | // all nodes |
136 | Name2Instance_t AllNodes; | 169 | Name2Instance_t AllNodes; |
170 | |||
171 | CurrentQPEUser CurrentUser; | ||
172 | |||
173 | #ifndef MYPLUGIN | ||
174 | Opie::Core::OPluginLoader * Plugins; | ||
175 | Opie::Core::OPluginManager * PluginManager; | ||
176 | #endif | ||
137 | 177 | ||
138 | CurrentQPEUser CurrentUser; | ||
139 | }; | 178 | }; |
140 | 179 | ||
141 | extern TheNSResources * _NSResources; | 180 | extern TheNSResources * _NSResources; |
142 | #define NSResources _NSResources | 181 | #define NSResources _NSResources |
143 | 182 | ||
144 | #endif | 183 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTDevice.h b/noncore/settings/networksettings2/opietooth2/OTDevice.h index cf1c4b6..09de7ee 100644 --- a/noncore/settings/networksettings2/opietooth2/OTDevice.h +++ b/noncore/settings/networksettings2/opietooth2/OTDevice.h | |||
@@ -7,26 +7,26 @@ | |||
7 | #include <bluezlib.h> | 7 | #include <bluezlib.h> |
8 | 8 | ||
9 | #include <OTGateway.h> | 9 | #include <OTGateway.h> |
10 | 10 | ||
11 | // define if you want to use the process hciattach for detection | 11 | // define if you want to use the process hciattach for detection |
12 | // #define USEHCIPROC | 12 | // #define USEHCIPROC |
13 | 13 | ||
14 | class QTimerEvent; | 14 | class QTimerEvent; |
15 | 15 | ||
16 | namespace Opie { | 16 | namespace Opie { |
17 | namespace Core { | 17 | namespace Core { |
18 | class OProcess; | 18 | class OProcess; |
19 | }; | 19 | } |
20 | }; | 20 | } |
21 | 21 | ||
22 | namespace Opietooth2 { | 22 | namespace Opietooth2 { |
23 | 23 | ||
24 | /** | 24 | /** |
25 | * Device takes care of attaching serial | 25 | * Device takes care of attaching serial |
26 | * devices to the blueZ stack. | 26 | * devices to the blueZ stack. |
27 | * After attaching it hciconfig ups it | 27 | * After attaching it hciconfig ups it |
28 | */ | 28 | */ |
29 | class OTDevice : public QObject { | 29 | class OTDevice : public QObject { |
30 | 30 | ||
31 | Q_OBJECT | 31 | Q_OBJECT |
32 | 32 | ||
@@ -102,15 +102,15 @@ namespace Opietooth2 { | |||
102 | unsigned long & Speed ); | 102 | unsigned long & Speed ); |
103 | pid_t getPidOfHCIAttach( void ); | 103 | pid_t getPidOfHCIAttach( void ); |
104 | 104 | ||
105 | Opie::Core::OProcess* m_hciattach; // ptr to hciattach proces | 105 | Opie::Core::OProcess* m_hciattach; // ptr to hciattach proces |
106 | 106 | ||
107 | int m_deviceNr; // x as in hci(x) | 107 | int m_deviceNr; // x as in hci(x) |
108 | pid_t m_hciattachPid; // pid of hciattach program | 108 | pid_t m_hciattachPid; // pid of hciattach program |
109 | 109 | ||
110 | // backpointer | 110 | // backpointer |
111 | OTGateway * OT; | 111 | OTGateway * OT; |
112 | bool NeedsAttach; | 112 | bool NeedsAttach; |
113 | }; | 113 | }; |
114 | }; | 114 | } |
115 | 115 | ||
116 | #endif | 116 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTDeviceAddress.h b/noncore/settings/networksettings2/opietooth2/OTDeviceAddress.h index 50f28fc..8395f37 100644 --- a/noncore/settings/networksettings2/opietooth2/OTDeviceAddress.h +++ b/noncore/settings/networksettings2/opietooth2/OTDeviceAddress.h | |||
@@ -94,15 +94,15 @@ public: | |||
94 | static const OTDeviceAddress any; | 94 | static const OTDeviceAddress any; |
95 | 95 | ||
96 | /** An address tagged as invalid */ | 96 | /** An address tagged as invalid */ |
97 | static const OTDeviceAddress invalid; | 97 | static const OTDeviceAddress invalid; |
98 | 98 | ||
99 | protected: | 99 | protected: |
100 | 100 | ||
101 | bdaddr_t BDaddr; | 101 | bdaddr_t BDaddr; |
102 | bool IsValid; | 102 | bool IsValid; |
103 | 103 | ||
104 | }; | 104 | }; |
105 | 105 | ||
106 | }; | 106 | } |
107 | 107 | ||
108 | #endif | 108 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTDriver.h b/noncore/settings/networksettings2/opietooth2/OTDriver.h index f249cf7..b54ffdf 100644 --- a/noncore/settings/networksettings2/opietooth2/OTDriver.h +++ b/noncore/settings/networksettings2/opietooth2/OTDriver.h | |||
@@ -219,14 +219,14 @@ private: | |||
219 | 219 | ||
220 | int Dev_id,Fd,Type; | 220 | int Dev_id,Fd,Type; |
221 | bool IsUp; | 221 | bool IsUp; |
222 | int Iscan,Pscan,Auth,Encrypt; | 222 | int Iscan,Pscan,Auth,Encrypt; |
223 | 223 | ||
224 | // socket bound to this device | 224 | // socket bound to this device |
225 | OTHCISocket * Socket; | 225 | OTHCISocket * Socket; |
226 | 226 | ||
227 | // backpointer to opietooth system | 227 | // backpointer to opietooth system |
228 | OTGateway * OT; | 228 | OTGateway * OT; |
229 | }; | 229 | }; |
230 | 230 | ||
231 | }; | 231 | } |
232 | #endif | 232 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTGateway.h b/noncore/settings/networksettings2/opietooth2/OTGateway.h index a47cefb..d97ef35 100644 --- a/noncore/settings/networksettings2/opietooth2/OTGateway.h +++ b/noncore/settings/networksettings2/opietooth2/OTGateway.h | |||
@@ -186,15 +186,15 @@ private : | |||
186 | 186 | ||
187 | OTDriver * ScanWith; | 187 | OTDriver * ScanWith; |
188 | OTDriverList AllDrivers; | 188 | OTDriverList AllDrivers; |
189 | OTDevice * TheOTDevice; | 189 | OTDevice * TheOTDevice; |
190 | int HciCtl; | 190 | int HciCtl; |
191 | int ErrorConnectCount; | 191 | int ErrorConnectCount; |
192 | int RefreshTimer; | 192 | int RefreshTimer; |
193 | OTInquiry * Scanning; | 193 | OTInquiry * Scanning; |
194 | bool AllPeersModified; | 194 | bool AllPeersModified; |
195 | PeerVector AllPeers; | 195 | PeerVector AllPeers; |
196 | LinkKeyArray AllKeys; | 196 | LinkKeyArray AllKeys; |
197 | }; | 197 | }; |
198 | }; | 198 | } |
199 | 199 | ||
200 | #endif | 200 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTHCISocket.h b/noncore/settings/networksettings2/opietooth2/OTHCISocket.h index d508078..a004989 100644 --- a/noncore/settings/networksettings2/opietooth2/OTHCISocket.h +++ b/noncore/settings/networksettings2/opietooth2/OTHCISocket.h | |||
@@ -102,15 +102,15 @@ private: | |||
102 | unsigned short LastStatusOcf; | 102 | unsigned short LastStatusOcf; |
103 | unsigned char LastStatusOgf; | 103 | unsigned char LastStatusOgf; |
104 | int LastStatus; | 104 | int LastStatus; |
105 | 105 | ||
106 | private slots: | 106 | private slots: |
107 | 107 | ||
108 | void slotSocketActivated(); | 108 | void slotSocketActivated(); |
109 | void slotSocketError(int); | 109 | void slotSocketError(int); |
110 | void slotConnectionClosed(); | 110 | void slotConnectionClosed(); |
111 | 111 | ||
112 | }; | 112 | }; |
113 | 113 | ||
114 | }; | 114 | } |
115 | 115 | ||
116 | #endif | 116 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTIcons.h b/noncore/settings/networksettings2/opietooth2/OTIcons.h index 966ed24..ee10831 100644 --- a/noncore/settings/networksettings2/opietooth2/OTIcons.h +++ b/noncore/settings/networksettings2/opietooth2/OTIcons.h | |||
@@ -40,15 +40,15 @@ public: | |||
40 | // set Sub to find icons in .../Icons dir | 40 | // set Sub to find icons in .../Icons dir |
41 | QPixmap loadPixmap( const QString &, bool Sub = 0 ); | 41 | QPixmap loadPixmap( const QString &, bool Sub = 0 ); |
42 | 42 | ||
43 | private: | 43 | private: |
44 | 44 | ||
45 | // first ist id, second is icon name | 45 | // first ist id, second is icon name |
46 | QMap<QString,QString> deviceIcons; | 46 | QMap<QString,QString> deviceIcons; |
47 | QMap<int,QString> serviceIcons; | 47 | QMap<int,QString> serviceIcons; |
48 | UUIDVector Modems; | 48 | UUIDVector Modems; |
49 | UUIDVector Networks; | 49 | UUIDVector Networks; |
50 | 50 | ||
51 | }; | 51 | }; |
52 | }; | 52 | } |
53 | 53 | ||
54 | #endif | 54 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTInquiry.h b/noncore/settings/networksettings2/opietooth2/OTInquiry.h index 2682499..f7bdeec 100644 --- a/noncore/settings/networksettings2/opietooth2/OTInquiry.h +++ b/noncore/settings/networksettings2/opietooth2/OTInquiry.h | |||
@@ -165,14 +165,14 @@ private: | |||
165 | 165 | ||
166 | // std::deque<InquiryInfo> infoQueue; | 166 | // std::deque<InquiryInfo> infoQueue; |
167 | bool SuccessfullyStarted; | 167 | bool SuccessfullyStarted; |
168 | bool SuccessfullyEnded; | 168 | bool SuccessfullyEnded; |
169 | 169 | ||
170 | private slots: | 170 | private slots: |
171 | 171 | ||
172 | void slotInquiryTimeout(); | 172 | void slotInquiryTimeout(); |
173 | void slotHCIEvent(unsigned char eventCode, QByteArray buf); | 173 | void slotHCIEvent(unsigned char eventCode, QByteArray buf); |
174 | 174 | ||
175 | }; | 175 | }; |
176 | 176 | ||
177 | }; | 177 | } |
178 | #endif | 178 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTPeer.h b/noncore/settings/networksettings2/opietooth2/OTPeer.h index 9cd0dc7..c09af15 100644 --- a/noncore/settings/networksettings2/opietooth2/OTPeer.h +++ b/noncore/settings/networksettings2/opietooth2/OTPeer.h | |||
@@ -121,15 +121,15 @@ private: | |||
121 | QString Name; | 121 | QString Name; |
122 | int Class; | 122 | int Class; |
123 | ServiceVector serviceList; | 123 | ServiceVector serviceList; |
124 | // -1 : don't know, 0 no, 1 yes | 124 | // -1 : don't know, 0 no, 1 yes |
125 | PeerState_t State; | 125 | PeerState_t State; |
126 | OTDriver * ConnectedTo; | 126 | OTDriver * ConnectedTo; |
127 | 127 | ||
128 | int ProbeFD; | 128 | int ProbeFD; |
129 | int ProbePhase; // see OTDriver | 129 | int ProbePhase; // see OTDriver |
130 | long ProbeTimeout; | 130 | long ProbeTimeout; |
131 | }; | 131 | }; |
132 | 132 | ||
133 | }; | 133 | } |
134 | 134 | ||
135 | #endif | 135 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTSDPAttribute.h b/noncore/settings/networksettings2/opietooth2/OTSDPAttribute.h index 86b5623..e79e33d 100644 --- a/noncore/settings/networksettings2/opietooth2/OTSDPAttribute.h +++ b/noncore/settings/networksettings2/opietooth2/OTSDPAttribute.h | |||
@@ -126,15 +126,15 @@ private: | |||
126 | 126 | ||
127 | union { | 127 | union { |
128 | OTSDPAttribute::int128_t * intVal; | 128 | OTSDPAttribute::int128_t * intVal; |
129 | OTSDPAttribute::uint128_t * uintVal; | 129 | OTSDPAttribute::uint128_t * uintVal; |
130 | OTUUID * uuidVal; | 130 | OTUUID * uuidVal; |
131 | bool boolVal; | 131 | bool boolVal; |
132 | QString * stringVal; // strings and urls | 132 | QString * stringVal; // strings and urls |
133 | AttributeVector * sequenceVal; // sequences and alternatives | 133 | AttributeVector * sequenceVal; // sequences and alternatives |
134 | } Value; | 134 | } Value; |
135 | 135 | ||
136 | }; | 136 | }; |
137 | 137 | ||
138 | }; | 138 | } |
139 | 139 | ||
140 | #endif | 140 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTSDPService.h b/noncore/settings/networksettings2/opietooth2/OTSDPService.h index 21d7344..4831df0 100644 --- a/noncore/settings/networksettings2/opietooth2/OTSDPService.h +++ b/noncore/settings/networksettings2/opietooth2/OTSDPService.h | |||
@@ -61,15 +61,15 @@ public: | |||
61 | bool hasClassID(const OTUUID & uuid); | 61 | bool hasClassID(const OTUUID & uuid); |
62 | 62 | ||
63 | private: | 63 | private: |
64 | 64 | ||
65 | struct AttributeEntry { | 65 | struct AttributeEntry { |
66 | int id; | 66 | int id; |
67 | OTSDPAttribute * attr; | 67 | OTSDPAttribute * attr; |
68 | }; | 68 | }; |
69 | 69 | ||
70 | QArray<AttributeEntry> attributeList; | 70 | QArray<AttributeEntry> attributeList; |
71 | }; | 71 | }; |
72 | 72 | ||
73 | }; | 73 | } |
74 | 74 | ||
75 | #endif | 75 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/OTUUID.h b/noncore/settings/networksettings2/opietooth2/OTUUID.h index 97df114..aebd9b9 100644 --- a/noncore/settings/networksettings2/opietooth2/OTUUID.h +++ b/noncore/settings/networksettings2/opietooth2/OTUUID.h | |||
@@ -45,14 +45,14 @@ public : | |||
45 | 45 | ||
46 | QString toString() const ; | 46 | QString toString() const ; |
47 | operator QString() const; | 47 | operator QString() const; |
48 | operator ::uuid_t() const; | 48 | operator ::uuid_t() const; |
49 | 49 | ||
50 | OTUUID & operator=( const OTUUID & other ) ; | 50 | OTUUID & operator=( const OTUUID & other ) ; |
51 | bool operator<( const OTUUID & other ) const; | 51 | bool operator<( const OTUUID & other ) const; |
52 | bool operator==(const OTUUID & uuid) const; | 52 | bool operator==(const OTUUID & uuid) const; |
53 | 53 | ||
54 | uint64_t hi; | 54 | uint64_t hi; |
55 | uint64_t lo; | 55 | uint64_t lo; |
56 | }; | 56 | }; |
57 | }; | 57 | } |
58 | #endif | 58 | #endif |
diff --git a/noncore/settings/networksettings2/opietooth2/Opietooth.h b/noncore/settings/networksettings2/opietooth2/Opietooth.h index e66787f..f077dd7 100644 --- a/noncore/settings/networksettings2/opietooth2/Opietooth.h +++ b/noncore/settings/networksettings2/opietooth2/Opietooth.h | |||
@@ -2,27 +2,27 @@ | |||
2 | #define OPIETOOTH_H | 2 | #define OPIETOOTH_H |
3 | 3 | ||
4 | #include <OTIcons.h> | 4 | #include <OTIcons.h> |
5 | 5 | ||
6 | class MyProcess; | 6 | class MyProcess; |
7 | 7 | ||
8 | namespace Opie { | 8 | namespace Opie { |
9 | 9 | ||
10 | namespace Ui { | 10 | namespace Ui { |
11 | 11 | ||
12 | class OLedBox; | 12 | class OLedBox; |
13 | 13 | ||
14 | }; | 14 | } |
15 | 15 | ||
16 | }; | 16 | } |
17 | 17 | ||
18 | #include <OTSniffGUI.h> | 18 | #include <OTSniffGUI.h> |
19 | namespace Opietooth2 { | 19 | namespace Opietooth2 { |
20 | 20 | ||
21 | class OTGateway; | 21 | class OTGateway; |
22 | class OTDriver; | 22 | class OTDriver; |
23 | class OTInquiry; | 23 | class OTInquiry; |
24 | class OTPeer; | 24 | class OTPeer; |
25 | class PeerLVI; | 25 | class PeerLVI; |
26 | 26 | ||
27 | class OTSniffing : public OTSniffGUI { | 27 | class OTSniffing : public OTSniffGUI { |
28 | 28 | ||
@@ -42,25 +42,25 @@ private slots : | |||
42 | void SLOT_ProcessExited( MyProcess * ); | 42 | void SLOT_ProcessExited( MyProcess * ); |
43 | void SLOT_Show( const QString & ); | 43 | void SLOT_Show( const QString & ); |
44 | 44 | ||
45 | signals : | 45 | signals : |
46 | 46 | ||
47 | protected : | 47 | protected : |
48 | 48 | ||
49 | private : | 49 | private : |
50 | 50 | ||
51 | OTGateway * OT; | 51 | OTGateway * OT; |
52 | MyProcess * HciDump; | 52 | MyProcess * HciDump; |
53 | }; | 53 | }; |
54 | }; | 54 | } |
55 | 55 | ||
56 | #include <OTPairingGUI.h> | 56 | #include <OTPairingGUI.h> |
57 | 57 | ||
58 | namespace Opietooth2 { | 58 | namespace Opietooth2 { |
59 | class OTPairing : public OTPairingGUI { | 59 | class OTPairing : public OTPairingGUI { |
60 | 60 | ||
61 | Q_OBJECT | 61 | Q_OBJECT |
62 | 62 | ||
63 | public : | 63 | public : |
64 | 64 | ||
65 | OTPairing( QWidget * parent, | 65 | OTPairing( QWidget * parent, |
66 | OTIcons * _Ic = 0 ); | 66 | OTIcons * _Ic = 0 ); |
@@ -71,25 +71,25 @@ private slots : | |||
71 | void SLOT_Unpair( void ); | 71 | void SLOT_Unpair( void ); |
72 | 72 | ||
73 | signals : | 73 | signals : |
74 | 74 | ||
75 | protected : | 75 | protected : |
76 | 76 | ||
77 | private : | 77 | private : |
78 | 78 | ||
79 | bool MyIcons; | 79 | bool MyIcons; |
80 | OTIcons * Icons; | 80 | OTIcons * Icons; |
81 | OTGateway * OT; | 81 | OTGateway * OT; |
82 | }; | 82 | }; |
83 | }; | 83 | } |
84 | 84 | ||
85 | #include <OTScanGUI.h> | 85 | #include <OTScanGUI.h> |
86 | 86 | ||
87 | namespace Opietooth2 { | 87 | namespace Opietooth2 { |
88 | 88 | ||
89 | class OTGateway; | 89 | class OTGateway; |
90 | class OTDriver; | 90 | class OTDriver; |
91 | class OTInquiry; | 91 | class OTInquiry; |
92 | class OTPeer; | 92 | class OTPeer; |
93 | 93 | ||
94 | class OTScan : public OTScanGUI { | 94 | class OTScan : public OTScanGUI { |
95 | 95 | ||
@@ -149,25 +149,25 @@ private : | |||
149 | OTIcons * Icons; | 149 | OTIcons * Icons; |
150 | OTGateway * OT; | 150 | OTGateway * OT; |
151 | OTInquiry * Scanning; | 151 | OTInquiry * Scanning; |
152 | UUIDVector Filter; | 152 | UUIDVector Filter; |
153 | 153 | ||
154 | Opie::Ui::OLedBox * Paired_Led; | 154 | Opie::Ui::OLedBox * Paired_Led; |
155 | QTimer * StrengthTimer; | 155 | QTimer * StrengthTimer; |
156 | PeerLVI * Current; | 156 | PeerLVI * Current; |
157 | 157 | ||
158 | OTPeer * SelectedPeer; | 158 | OTPeer * SelectedPeer; |
159 | int SelectedChannel; | 159 | int SelectedChannel; |
160 | }; | 160 | }; |
161 | }; | 161 | } |
162 | 162 | ||
163 | #include <OTManageGUI.h> | 163 | #include <OTManageGUI.h> |
164 | namespace Opietooth2 { | 164 | namespace Opietooth2 { |
165 | 165 | ||
166 | class OTManage : public OTManageGUI { | 166 | class OTManage : public OTManageGUI { |
167 | 167 | ||
168 | Q_OBJECT | 168 | Q_OBJECT |
169 | 169 | ||
170 | public : | 170 | public : |
171 | 171 | ||
172 | OTManage( QWidget * parent, | 172 | OTManage( QWidget * parent, |
173 | OTIcons * _IC = 0 ); | 173 | OTIcons * _IC = 0 ); |
@@ -187,25 +187,25 @@ signals : | |||
187 | 187 | ||
188 | protected : | 188 | protected : |
189 | 189 | ||
190 | private : | 190 | private : |
191 | 191 | ||
192 | // load scanned devices | 192 | // load scanned devices |
193 | 193 | ||
194 | bool MyIcons; | 194 | bool MyIcons; |
195 | OTIcons * Icons; | 195 | OTIcons * Icons; |
196 | OTGateway * OT; | 196 | OTGateway * OT; |
197 | OTInquiry * Scanning; | 197 | OTInquiry * Scanning; |
198 | }; | 198 | }; |
199 | }; | 199 | } |
200 | 200 | ||
201 | #include <OTMainGUI.h> | 201 | #include <OTMainGUI.h> |
202 | 202 | ||
203 | namespace Opietooth2 { | 203 | namespace Opietooth2 { |
204 | class OTMain : public OTMainGUI { | 204 | class OTMain : public OTMainGUI { |
205 | 205 | ||
206 | Q_OBJECT | 206 | Q_OBJECT |
207 | 207 | ||
208 | public : | 208 | public : |
209 | 209 | ||
210 | OTMain( QWidget * parent ); | 210 | OTMain( QWidget * parent ); |
211 | ~OTMain(); | 211 | ~OTMain(); |
@@ -225,14 +225,14 @@ private slots : | |||
225 | 225 | ||
226 | signals : | 226 | signals : |
227 | 227 | ||
228 | protected : | 228 | protected : |
229 | 229 | ||
230 | private : | 230 | private : |
231 | 231 | ||
232 | // load scanned devices | 232 | // load scanned devices |
233 | OTIcons * Icons; | 233 | OTIcons * Icons; |
234 | OTGateway * OT; | 234 | OTGateway * OT; |
235 | QDialog * SnifWindow; | 235 | QDialog * SnifWindow; |
236 | }; | 236 | }; |
237 | }; | 237 | } |
238 | #endif | 238 | #endif |
diff --git a/noncore/settings/networksettings2/ppp/ppp.pro b/noncore/settings/networksettings2/ppp/ppp.pro index dd3408c..10d0f1b 100644 --- a/noncore/settings/networksettings2/ppp/ppp.pro +++ b/noncore/settings/networksettings2/ppp/ppp.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = ppp_NN.h \ | 4 | HEADERS = ppp_NN.h \ |
5 | ppp_NNI.h \ | 5 | ppp_NNI.h \ |
6 | PPPedit.h \ | 6 | PPPedit.h \ |
7 | PPPAuthedit.h \ | 7 | PPPAuthedit.h \ |
8 | PPPDNSedit.h \ | 8 | PPPDNSedit.h \ |
9 | PPPRunedit.h \ | 9 | PPPRunedit.h \ |
10 | PPPDialingedit.h \ | 10 | PPPDialingedit.h \ |
11 | PPPIPedit.h | 11 | PPPIPedit.h |
12 | SOURCES = ppp_NN.cpp \ | 12 | SOURCES = ppp_NN.cpp \ |
13 | ppp_NNI.cpp \ | 13 | ppp_NNI.cpp \ |
14 | PPPedit.cpp \ | 14 | PPPedit.cpp \ |
diff --git a/noncore/settings/networksettings2/ppp/ppp_NN.cpp b/noncore/settings/networksettings2/ppp/ppp_NN.cpp index 51ba27d..bd13ab9 100644 --- a/noncore/settings/networksettings2/ppp/ppp_NN.cpp +++ b/noncore/settings/networksettings2/ppp/ppp_NN.cpp | |||
@@ -1,18 +1,24 @@ | |||
1 | #include <qfile.h> | 1 | #include <qfile.h> |
2 | #include <resources.h> | 2 | #include <resources.h> |
3 | #include <qtextstream.h> | 3 | #include <qtextstream.h> |
4 | #include "ppp_NN.h" | 4 | #include "ppp_NN.h" |
5 | #include "ppp_NNI.h" | 5 | #include "ppp_NNI.h" |
6 | 6 | ||
7 | #ifndef MYPLUGIN | ||
8 | |||
9 | #include "netnodeinterface.h" | ||
10 | |||
11 | #endif | ||
12 | |||
7 | QStringList * PPPNetNode::ProperFiles = 0; | 13 | QStringList * PPPNetNode::ProperFiles = 0; |
8 | 14 | ||
9 | static const char * PPPNeeds[] = | 15 | static const char * PPPNeeds[] = |
10 | { "modem", | 16 | { "modem", |
11 | 0 | 17 | 0 |
12 | }; | 18 | }; |
13 | 19 | ||
14 | static const char * PPPProvides[] = | 20 | static const char * PPPProvides[] = |
15 | { "connection", | 21 | { "connection", |
16 | 0 | 22 | 0 |
17 | }; | 23 | }; |
18 | 24 | ||
@@ -69,17 +75,26 @@ bool PPPNetNode::hasDataForFile( SystemFile & S ) { | |||
69 | 75 | ||
70 | QString PPPNetNode::genNic( long NicNr ) { | 76 | QString PPPNetNode::genNic( long NicNr ) { |
71 | QString S; | 77 | QString S; |
72 | return S.sprintf( "ppp%ld", NicNr ); | 78 | return S.sprintf( "ppp%ld", NicNr ); |
73 | } | 79 | } |
74 | 80 | ||
75 | void PPPNetNode::setSpecificAttribute( QString & , QString & ) { | 81 | void PPPNetNode::setSpecificAttribute( QString & , QString & ) { |
76 | } | 82 | } |
77 | 83 | ||
78 | void PPPNetNode::saveSpecificAttribute( QTextStream & ) { | 84 | void PPPNetNode::saveSpecificAttribute( QTextStream & ) { |
79 | } | 85 | } |
80 | 86 | ||
87 | #ifdef MYPLUGIN | ||
88 | |||
81 | extern "C" { | 89 | extern "C" { |
82 | void create_plugin( QList<ANetNode> & PNN ) { | 90 | void create_plugin( QList<ANetNode> & PNN ) { |
83 | PNN.append( new PPPNetNode() ); | 91 | PNN.append( new PPPNetNode() ); |
84 | } | 92 | } |
93 | |||
94 | #else | ||
95 | |||
96 | OPIE_NS2_PLUGIN( NetNodeInterface<PPPNetNode> ) | ||
97 | |||
98 | #endif | ||
99 | |||
85 | } | 100 | } |
diff --git a/noncore/settings/networksettings2/profile/profile.pro b/noncore/settings/networksettings2/profile/profile.pro index f980034..4db7a5d 100644 --- a/noncore/settings/networksettings2/profile/profile.pro +++ b/noncore/settings/networksettings2/profile/profile.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = profile_NN.h \ | 4 | HEADERS = profile_NN.h \ |
5 | profile_NNI.h \ | 5 | profile_NNI.h \ |
6 | profileedit.h | 6 | profileedit.h |
7 | SOURCES = profile_NN.cpp \ | 7 | SOURCES = profile_NN.cpp \ |
8 | profile_NNI.cpp \ | 8 | profile_NNI.cpp \ |
9 | profileedit.cpp \ | 9 | profileedit.cpp \ |
10 | profilerun.cpp | 10 | profilerun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= profileGUI.ui | 14 | INTERFACES= profileGUI.ui |
diff --git a/noncore/settings/networksettings2/profile/profile_NN.cpp b/noncore/settings/networksettings2/profile/profile_NN.cpp index b7d8aa0..6028ea5 100644 --- a/noncore/settings/networksettings2/profile/profile_NN.cpp +++ b/noncore/settings/networksettings2/profile/profile_NN.cpp | |||
@@ -1,16 +1,22 @@ | |||
1 | #include <resources.h> | 1 | #include <resources.h> |
2 | #include "profile_NN.h" | 2 | #include "profile_NN.h" |
3 | #include "profile_NNI.h" | 3 | #include "profile_NNI.h" |
4 | 4 | ||
5 | #ifndef MYPLUGIN | ||
6 | |||
7 | #include "netnodeinterface.h" | ||
8 | |||
9 | #endif | ||
10 | |||
5 | static const char * ProfileNeeds[] = | 11 | static const char * ProfileNeeds[] = |
6 | { "connection", | 12 | { "connection", |
7 | 0 | 13 | 0 |
8 | }; | 14 | }; |
9 | static const char * ProfileProvides[] = | 15 | static const char * ProfileProvides[] = |
10 | { "fullsetup", | 16 | { "fullsetup", |
11 | 0 | 17 | 0 |
12 | }; | 18 | }; |
13 | 19 | ||
14 | /** | 20 | /** |
15 | * Constructor, find all of the possible interfaces | 21 | * Constructor, find all of the possible interfaces |
16 | */ | 22 | */ |
@@ -44,17 +50,26 @@ const char ** ProfileNetNode::needs( void ) { | |||
44 | } | 50 | } |
45 | 51 | ||
46 | const char ** ProfileNetNode::provides( void ) { | 52 | const char ** ProfileNetNode::provides( void ) { |
47 | return ProfileProvides; | 53 | return ProfileProvides; |
48 | } | 54 | } |
49 | 55 | ||
50 | void ProfileNetNode::setSpecificAttribute( QString & , QString & ) { | 56 | void ProfileNetNode::setSpecificAttribute( QString & , QString & ) { |
51 | } | 57 | } |
52 | 58 | ||
53 | void ProfileNetNode::saveSpecificAttribute( QTextStream & ) { | 59 | void ProfileNetNode::saveSpecificAttribute( QTextStream & ) { |
54 | } | 60 | } |
55 | 61 | ||
62 | #ifdef MYPLUGIN | ||
63 | |||
56 | extern "C" { | 64 | extern "C" { |
57 | void create_plugin( QList<ANetNode> & PNN ) { | 65 | void create_plugin( QList<ANetNode> & PNN ) { |
58 | PNN.append( new ProfileNetNode() ); | 66 | PNN.append( new ProfileNetNode() ); |
59 | } | 67 | } |
68 | |||
69 | #else | ||
70 | |||
71 | OPIE_NS2_PLUGIN( NetNodeInterface<ProfileNetNode> ) | ||
72 | |||
73 | #endif | ||
74 | |||
60 | } | 75 | } |
diff --git a/noncore/settings/networksettings2/usb/usb.pro b/noncore/settings/networksettings2/usb/usb.pro index 37c1bde..d9890b6 100644 --- a/noncore/settings/networksettings2/usb/usb.pro +++ b/noncore/settings/networksettings2/usb/usb.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = usb_NN.h \ | 4 | HEADERS = usb_NN.h \ |
5 | usb_NNI.h \ | 5 | usb_NNI.h \ |
6 | usbedit.h | 6 | usbedit.h |
7 | SOURCES = usb_NN.cpp \ | 7 | SOURCES = usb_NN.cpp \ |
8 | usb_NNI.cpp \ | 8 | usb_NNI.cpp \ |
9 | usbedit.cpp \ | 9 | usbedit.cpp \ |
10 | usbrun.cpp | 10 | usbrun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= usbGUI.ui | 14 | INTERFACES= usbGUI.ui |
diff --git a/noncore/settings/networksettings2/usb/usb_NN.cpp b/noncore/settings/networksettings2/usb/usb_NN.cpp index bd9ae2b..9c07b82 100644 --- a/noncore/settings/networksettings2/usb/usb_NN.cpp +++ b/noncore/settings/networksettings2/usb/usb_NN.cpp | |||
@@ -1,16 +1,22 @@ | |||
1 | #include <resources.h> | 1 | #include <resources.h> |
2 | #include "usb_NN.h" | 2 | #include "usb_NN.h" |
3 | #include "usb_NNI.h" | 3 | #include "usb_NNI.h" |
4 | 4 | ||
5 | #ifndef MYPLUGIN | ||
6 | |||
7 | #include "netnodeinterface.h" | ||
8 | |||
9 | #endif | ||
10 | |||
5 | static const char * USBNeeds[] = | 11 | static const char * USBNeeds[] = |
6 | { 0 | 12 | { 0 |
7 | }; | 13 | }; |
8 | 14 | ||
9 | static const char * USBProvides[] = | 15 | static const char * USBProvides[] = |
10 | { "device", | 16 | { "device", |
11 | 0 | 17 | 0 |
12 | }; | 18 | }; |
13 | 19 | ||
14 | /** | 20 | /** |
15 | * Constructor, find all of the possible interfaces | 21 | * Constructor, find all of the possible interfaces |
16 | */ | 22 | */ |
@@ -46,17 +52,26 @@ const char ** USBNetNode::provides( void ) { | |||
46 | } | 52 | } |
47 | 53 | ||
48 | QString USBNetNode::genNic( long ) { | 54 | QString USBNetNode::genNic( long ) { |
49 | return QString( "usbf" ); | 55 | return QString( "usbf" ); |
50 | } | 56 | } |
51 | 57 | ||
52 | void USBNetNode::setSpecificAttribute( QString & , QString & ) { | 58 | void USBNetNode::setSpecificAttribute( QString & , QString & ) { |
53 | } | 59 | } |
54 | 60 | ||
55 | void USBNetNode::saveSpecificAttribute( QTextStream & ) { | 61 | void USBNetNode::saveSpecificAttribute( QTextStream & ) { |
56 | } | 62 | } |
57 | 63 | ||
64 | #ifdef MYPLUGIN | ||
65 | |||
58 | extern "C" { | 66 | extern "C" { |
59 | void create_plugin( QList<ANetNode> & PNN ) { | 67 | void create_plugin( QList<ANetNode> & PNN ) { |
60 | PNN.append( new USBNetNode() ); | 68 | PNN.append( new USBNetNode() ); |
61 | } | 69 | } |
70 | |||
71 | #else | ||
72 | |||
73 | OPIE_NS2_PLUGIN( NetNodeInterface<USBNetNode> ) | ||
74 | |||
75 | #endif | ||
76 | |||
62 | } | 77 | } |
diff --git a/noncore/settings/networksettings2/usb/usb_NNI.cpp b/noncore/settings/networksettings2/usb/usb_NNI.cpp index 600b771..424845c 100644 --- a/noncore/settings/networksettings2/usb/usb_NNI.cpp +++ b/noncore/settings/networksettings2/usb/usb_NNI.cpp | |||
@@ -36,24 +36,24 @@ short AUSB::generateFileEmbedded( SystemFile & SF, | |||
36 | long DevNr ) { | 36 | long DevNr ) { |
37 | 37 | ||
38 | QString NIC = runtime()->device()->netNode()->nodeClass()->genNic( DevNr ); | 38 | QString NIC = runtime()->device()->netNode()->nodeClass()->genNic( DevNr ); |
39 | short rvl, rvd; | 39 | short rvl, rvd; |
40 | 40 | ||
41 | rvl = 1; | 41 | rvl = 1; |
42 | 42 | ||
43 | if( SF.name() == "interfaces" ) { | 43 | if( SF.name() == "interfaces" ) { |
44 | Log(("Generate USB for %s\n", SF.name().latin1() )); | 44 | Log(("Generate USB for %s\n", SF.name().latin1() )); |
45 | // generate mapping stanza for this interface | 45 | // generate mapping stanza for this interface |
46 | SF << " pre-up " | 46 | SF << " pre-up " |
47 | << QPEApplication::qpeDir() | 47 | << QPEApplication::qpeDir() |
48 | << "bin/setmacaddress.sh " | 48 | << "bin/NS2SetMac.sh " |
49 | << NIC | 49 | << NIC |
50 | << " || true" | 50 | << " || true" |
51 | << endl; | 51 | << endl; |
52 | rvl = 0; | 52 | rvl = 0; |
53 | } | 53 | } |
54 | rvd = ANetNodeInstance::generateFileEmbedded(SF, DevNr ); | 54 | rvd = ANetNodeInstance::generateFileEmbedded(SF, DevNr ); |
55 | 55 | ||
56 | return (rvd == 2 || rvl == 2 ) ? 2 : | 56 | return (rvd == 2 || rvl == 2 ) ? 2 : |
57 | (rvd == 0 || rvl == 0 ) ? 0 : 1; | 57 | (rvd == 0 || rvl == 0 ) ? 0 : 1; |
58 | 58 | ||
59 | } | 59 | } |
diff --git a/noncore/settings/networksettings2/vpn/vpn.pro b/noncore/settings/networksettings2/vpn/vpn.pro index a131a1f..349571e 100644 --- a/noncore/settings/networksettings2/vpn/vpn.pro +++ b/noncore/settings/networksettings2/vpn/vpn.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = vpn_NN.h \ | 4 | HEADERS = vpn_NN.h \ |
5 | vpn_NNI.h \ | 5 | vpn_NNI.h \ |
6 | vpnedit.h | 6 | vpnedit.h |
7 | SOURCES = vpn_NN.cpp \ | 7 | SOURCES = vpn_NN.cpp \ |
8 | vpn_NNI.cpp \ | 8 | vpn_NNI.cpp \ |
9 | vpnedit.cpp \ | 9 | vpnedit.cpp \ |
10 | vpnrun.cpp | 10 | vpnrun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= vpnGUI.ui | 14 | INTERFACES= vpnGUI.ui |
diff --git a/noncore/settings/networksettings2/vpn/vpn_NN.cpp b/noncore/settings/networksettings2/vpn/vpn_NN.cpp index 23ec04a..6dd5332 100644 --- a/noncore/settings/networksettings2/vpn/vpn_NN.cpp +++ b/noncore/settings/networksettings2/vpn/vpn_NN.cpp | |||
@@ -1,15 +1,21 @@ | |||
1 | #include "vpn_NN.h" | 1 | #include "vpn_NN.h" |
2 | #include "vpn_NNI.h" | 2 | #include "vpn_NNI.h" |
3 | 3 | ||
4 | #ifndef MYPLUGIN | ||
5 | |||
6 | #include "netnodeinterface.h" | ||
7 | |||
8 | #endif | ||
9 | |||
4 | static const char * VPNNeeds[] = | 10 | static const char * VPNNeeds[] = |
5 | { 0 | 11 | { 0 |
6 | }; | 12 | }; |
7 | 13 | ||
8 | static const char * VPNProvides[] = | 14 | static const char * VPNProvides[] = |
9 | { "connection", | 15 | { "connection", |
10 | 0 | 16 | 0 |
11 | }; | 17 | }; |
12 | /** | 18 | /** |
13 | * Constructor, find all of the possible interfaces | 19 | * Constructor, find all of the possible interfaces |
14 | */ | 20 | */ |
15 | VPNNetNode::VPNNetNode() : ANetNode(tr("VPN Connection")) { | 21 | VPNNetNode::VPNNetNode() : ANetNode(tr("VPN Connection")) { |
@@ -38,17 +44,26 @@ const char ** VPNNetNode::needs( void ) { | |||
38 | } | 44 | } |
39 | 45 | ||
40 | const char ** VPNNetNode::provides( void ) { | 46 | const char ** VPNNetNode::provides( void ) { |
41 | return VPNProvides; | 47 | return VPNProvides; |
42 | } | 48 | } |
43 | 49 | ||
44 | void VPNNetNode::setSpecificAttribute( QString & , QString & ) { | 50 | void VPNNetNode::setSpecificAttribute( QString & , QString & ) { |
45 | } | 51 | } |
46 | 52 | ||
47 | void VPNNetNode::saveSpecificAttribute( QTextStream & ) { | 53 | void VPNNetNode::saveSpecificAttribute( QTextStream & ) { |
48 | } | 54 | } |
49 | 55 | ||
56 | #ifdef MYPLUGIN | ||
57 | |||
50 | extern "C" { | 58 | extern "C" { |
51 | void create_plugin( QList<ANetNode> & PNN ) { | 59 | void create_plugin( QList<ANetNode> & PNN ) { |
52 | PNN.append( new VPNNetNode() ); | 60 | PNN.append( new VPNNetNode() ); |
53 | } | 61 | } |
62 | |||
63 | #else | ||
64 | |||
65 | OPIE_NS2_PLUGIN( NetNodeInterface<VPNNetNode> ) | ||
66 | |||
67 | #endif | ||
68 | |||
54 | } | 69 | } |
diff --git a/noncore/settings/networksettings2/wlan/wlan.pro b/noncore/settings/networksettings2/wlan/wlan.pro index f4c55df..a08cbbb 100644 --- a/noncore/settings/networksettings2/wlan/wlan.pro +++ b/noncore/settings/networksettings2/wlan/wlan.pro | |||
@@ -1,14 +1,14 @@ | |||
1 | TEMPLATE = lib | 1 | TEMPLATE = lib |
2 | CONFIG += qt warn_on release | 2 | CONFIG += qt warn_on release plugin |
3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 | 3 | DESTDIR = $(OPIEDIR)/plugins/networksettings2 |
4 | HEADERS = wlan_NN.h \ | 4 | HEADERS = wlan_NN.h \ |
5 | wlan_NNI.h \ | 5 | wlan_NNI.h \ |
6 | wlanedit.h | 6 | wlanedit.h |
7 | SOURCES = wlan_NN.cpp \ | 7 | SOURCES = wlan_NN.cpp \ |
8 | wlan_NNI.cpp \ | 8 | wlan_NNI.cpp \ |
9 | wlanedit.cpp \ | 9 | wlanedit.cpp \ |
10 | wlanrun.cpp | 10 | wlanrun.cpp |
11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 11 | INCLUDEPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 | 12 | DEPENDPATH+= $(OPIEDIR)/include ../ ../networksettings2 |
13 | LIBS += -lqpe | 13 | LIBS += -lqpe |
14 | INTERFACES= wlanGUI.ui | 14 | INTERFACES= wlanGUI.ui |
diff --git a/noncore/settings/networksettings2/wlan/wlan_NN.cpp b/noncore/settings/networksettings2/wlan/wlan_NN.cpp index 36a5c33..c56da06 100644 --- a/noncore/settings/networksettings2/wlan/wlan_NN.cpp +++ b/noncore/settings/networksettings2/wlan/wlan_NN.cpp | |||
@@ -1,16 +1,22 @@ | |||
1 | #include <resources.h> | 1 | #include <resources.h> |
2 | #include "wlan_NN.h" | 2 | #include "wlan_NN.h" |
3 | #include "wlan_NNI.h" | 3 | #include "wlan_NNI.h" |
4 | 4 | ||
5 | #ifndef MYPLUGIN | ||
6 | |||
7 | #include "netnodeinterface.h" | ||
8 | |||
9 | #endif | ||
10 | |||
5 | static const char * WLanNeeds[] = | 11 | static const char * WLanNeeds[] = |
6 | { 0 | 12 | { 0 |
7 | }; | 13 | }; |
8 | 14 | ||
9 | static const char * WLanProvides[] = | 15 | static const char * WLanProvides[] = |
10 | { "device", | 16 | { "device", |
11 | 0 | 17 | 0 |
12 | }; | 18 | }; |
13 | 19 | ||
14 | /** | 20 | /** |
15 | * Constructor, find all of the possible interfaces | 21 | * Constructor, find all of the possible interfaces |
16 | */ | 22 | */ |
@@ -54,17 +60,26 @@ QString WLanNetNode::genNic( long nr ) { | |||
54 | void WLanNetNode::setSpecificAttribute( QString & A, QString & V ) { | 60 | void WLanNetNode::setSpecificAttribute( QString & A, QString & V ) { |
55 | if( A == "interfacecount" ) { | 61 | if( A == "interfacecount" ) { |
56 | InstanceCount = V.toLong(); | 62 | InstanceCount = V.toLong(); |
57 | } | 63 | } |
58 | } | 64 | } |
59 | 65 | ||
60 | void WLanNetNode::saveSpecificAttribute( QTextStream & TS ) { | 66 | void WLanNetNode::saveSpecificAttribute( QTextStream & TS ) { |
61 | TS << "interfacecount=" | 67 | TS << "interfacecount=" |
62 | << InstanceCount | 68 | << InstanceCount |
63 | << endl; | 69 | << endl; |
64 | } | 70 | } |
65 | 71 | ||
72 | #ifdef MYPLUGIN | ||
73 | |||
66 | extern "C" { | 74 | extern "C" { |
67 | void create_plugin( QList<ANetNode> & PNN ) { | 75 | void create_plugin( QList<ANetNode> & PNN ) { |
68 | PNN.append( new WLanNetNode() ); | 76 | PNN.append( new WLanNetNode() ); |
69 | } | 77 | } |
78 | |||
79 | #else | ||
80 | |||
81 | OPIE_NS2_PLUGIN( NetNodeInterface<WLanNetNode> ) | ||
82 | |||
83 | #endif | ||
84 | |||
70 | } | 85 | } |