summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profile_NNI.h
blob: dfeb178864ee8e6a3e66e214a445ff1ebea46523 (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
43
44
45
#ifndef PROFILE_H
#define PROFILE_H

#include <netnode.h>
#include "profiledata.h"
#include "profilerun.h"

class ProfileNetNode;
class ProfileEdit;

class AProfile : public ANetNodeInstance {

public :

      AProfile( ProfileNetNode * PNN );

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

      const QString & description( void ) 
        { return Data.Description; }
      RuntimeInfo * runtime( void ) 
        { if( RT == 0 ) 
            RT = new ProfileRun( this, Data );
          return RT;
        }

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

protected :

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

      ProfileEdit * GUI;
      ProfileData Data;
      ProfileRun * RT;

};

#endif