summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/activatevpn.cpp
authorwimpie <wimpie>2004-08-13 13:36:42 (UTC)
committer wimpie <wimpie>2004-08-13 13:36:42 (UTC)
commitf555ae2e285e3cfd4be08629963c5e60812cb570 (patch) (side-by-side diff)
treedb3b3645c88e29f58202d534db9af304acfcbaec /noncore/settings/networksettings2/activatevpn.cpp
parent9225b5ae87d6134d9878737eba570f0d3e2553e1 (diff)
downloadopie-f555ae2e285e3cfd4be08629963c5e60812cb570.zip
opie-f555ae2e285e3cfd4be08629963c5e60812cb570.tar.gz
opie-f555ae2e285e3cfd4be08629963c5e60812cb570.tar.bz2
need this files too ;-(
Diffstat (limited to 'noncore/settings/networksettings2/activatevpn.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/activatevpn.cpp53
1 files changed, 53 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/activatevpn.cpp b/noncore/settings/networksettings2/activatevpn.cpp
new file mode 100644
index 0000000..2bdef0a
--- a/dev/null
+++ b/noncore/settings/networksettings2/activatevpn.cpp
@@ -0,0 +1,53 @@
+#include <qlistview.h>
+#include <qheader.h>
+#include <resources.h>
+#include "activatevpn.h"
+
+class MyCheckListItem : public QCheckListItem {
+
+public :
+
+ MyCheckListItem( NodeCollection * N, QListView * V );
+
+ NodeCollection * NC;
+
+};
+
+MyCheckListItem::MyCheckListItem( NodeCollection * N, QListView * V ):
+ QCheckListItem( V, N->name() ) {
+ NC = N;
+}
+
+ActivateVPN::ActivateVPN( void ) :
+ ActivateVPNGUI( 0, 0, TRUE ), NSD() {
+
+ QCheckListItem * CI;
+ printf( "%d\n", __LINE__ );
+ VPN_LV->clear();
+ VPN_LV->header()->hide();
+ printf( "%d\n", __LINE__ );
+
+ for( QDictIterator<NodeCollection> it(NSResources->connections());
+ it.current();
+ ++it ) {
+ printf( "%d\n", __LINE__ );
+ if( it.current()->triggeredBy( "vpn" ) ) {
+ printf( "%d\n", __LINE__ );
+ CI = new MyCheckListItem( it.current(), VPN_LV );
+ printf( "%d\n", __LINE__ );
+ }
+ printf( "%d\n", __LINE__ );
+ }
+}
+
+ActivateVPN::~ActivateVPN( void ) {
+}
+
+void ActivateVPN::SLOT_ChangedVPNSetting( QListViewItem * I ) {
+
+ MyCheckListItem * MI = (MyCheckListItem *)I;
+
+ printf( "%s : %d\n",
+ MI->text(0).latin1(),
+ MI->isOn() );
+}