From e7f2c080698c5a053e17e9614c25a32c8f842dc6 Mon Sep 17 00:00:00 2001 From: wimpie Date: Sat, 03 Apr 2004 21:46:43 +0000 Subject: *** empty log message *** --- 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 +#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; +} diff --git a/noncore/settings/networksettings2/activateprofile.h b/noncore/settings/networksettings2/activateprofile.h new file mode 100644 index 0000000..dedeb51 --- a/dev/null +++ b/noncore/settings/networksettings2/activateprofile.h @@ -0,0 +1,19 @@ +#include "activateprofileGUI.h" +#include "nsdata.h" + +class ActivateProfile : public ActivateProfileGUI { + + Q_OBJECT + +public : + + ActivateProfile( const char * interface ); + ~ActivateProfile( void ); + + long selectedProfile( void ); + +private : + + NetworkSettingsData NSD; + QList Possible; +}; -- cgit v0.9.0.2