summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/activateprofile.cpp
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/activateprofile.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/networksettings2/activateprofile.cpp29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/activateprofile.cpp b/noncore/settings/networksettings2/activateprofile.cpp
new file mode 100644
index 0000000..ba726bb
--- a/dev/null
+++ b/noncore/settings/networksettings2/activateprofile.cpp
@@ -0,0 +1,29 @@
+#include <qlistbox.h>
+#include "activateprofile.h"
+
+ActivateProfile::ActivateProfile( const char * Interface ) :
+ ActivateProfileGUI( 0, 0, TRUE ), NSD() {
+
+ Possible = NSD.collectPossible( Interface );
+
+ Profiles_LB->clear();
+ for( NodeCollection * NC = Possible.first();
+ NC;
+ NC = Possible.next() ) {
+ Profiles_LB->insertItem( NC->devicePixmap(),
+ NC->name() );
+ }
+}
+
+ActivateProfile::~ActivateProfile( void ) {
+}
+
+long ActivateProfile::selectedProfile( void ) {
+ for( unsigned int i = 0 ; i < Profiles_LB->count(); i ++ ) {
+ if( Profiles_LB->isSelected(i) ) {
+ return Possible.at(i)->number();
+
+ }
+ }
+ return -1;
+}