summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/bluetooth/bluetoothRFCOMM_NNI.h
blob: 820fc17b073b7f36acda17db76ffe151488f3198 (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
#ifndef BLUETOOTHRFCOMM_H
#define BLUETOOTHRFCOMM_H

#include <netnode.h>
#include "bluetoothRFCOMMdata.h"
#include "bluetoothRFCOMMrun.h"

class BluetoothRFCOMMNetNode;
class BluetoothRFCOMMEdit;

class ABluetoothRFCOMM : public ANetNodeInstance {

public :

      ABluetoothRFCOMM( BluetoothRFCOMMNetNode * PNN );

      RuntimeInfo * runtime( void ) 
        { return 
           ( RT ) ? RT : ( RT = new BluetoothRFCOMMRun( this, Data ) );
        }

      QWidget * edit( QWidget * parent );
      QString acceptable( void );
      void commit( void );

      virtual void * data( void )
        { return (void *)&Data; }

protected :

      virtual void setSpecificAttribute( QString & Attr, QString & Value );
      virtual void saveSpecificAttribute( QTextStream & TS );

private :

      BluetoothRFCOMMEdit * GUI;
      BluetoothRFCOMMData Data;
      BluetoothRFCOMMRun  * RT;
};

#endif