summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profilerun.cpp
blob: faa7d6643df5798b73f2b30a6f4fdae42d15a723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <resources.h>

#include "profilerun.h"

State_t ProfileRun::detectState( void ) { 

    Log(( "Profile %sabled\n", (Data->Enabled) ? "en" : "dis" ));

    if( Data->Enabled ) {
      return Unknown;
    } 
    return Disabled;
}

QString ProfileRun::setMyState( NetworkSetup * NC, Action_t A, bool ) { 
    odebug << "Profile " << Data->Enabled << oendl;
    if( A == Disable ) {
      if( Data->Enabled ) {
        Data->Enabled = 0;
        NC->setModified( 1 );
      }
    } else if( A == Enable ) {
      if( ! Data->Enabled ) { 
        Data->Enabled = 1;
        NC->setModified( 1 );
      }
    }

    return QString();
}