summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothBNEP_NNI.cpp
blob: 398dcdc5574dd8fc7ae6aea97b4d647cdb18d828 (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
31
32
33
34
35
36
37
38
39
40
41
42
#include "bluetoothBNEPedit.h"
#include "bluetoothBNEP_NNI.h"
#include "bluetooth_NN.h"

ABluetoothBNEP::ABluetoothBNEP( BluetoothBNEPNetNode * PNN ) : 
    ANetNodeInstance( PNN ), Data() {
    GUI = 0;
    RT = 0;
    Data.AllowAll = 1;
}

void ABluetoothBNEP::setSpecificAttribute( QString & S, QString & A ) {
      if( S == "bdaddress" ) {
        Data.BDAddress << A;
      } else if ( S == "allowall" ) {
        Data.AllowAll = 1;
      }
}

void ABluetoothBNEP::saveSpecificAttribute( QTextStream & TS ) {
      TS  << "allowall=" << Data.AllowAll << endl;
      for ( QStringList::Iterator it = Data.BDAddress.begin(); 
            it != Data.BDAddress.end(); 
            ++it ) {
        TS  << "bdaddress=" << (*it) << endl;
      }
}

QWidget * ABluetoothBNEP::edit( QWidget * parent ) {
      GUI = new BluetoothBNEPEdit( parent );
      GUI->showData( Data );
      return GUI;
}

QString ABluetoothBNEP::acceptable( void ) {
    return ( GUI ) ? GUI->acceptable( ) : QString();
}

void ABluetoothBNEP::commit( void ) {
    if( GUI && GUI->commit( Data ) )
      setModified( 1 );
}