summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/network/network_NNI.h
blob: b98ff6e8498873d6442910fe7f9c50c667cf909d (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 NETWORK_H
#define NETWORK_H

#include <netnode.h>
#include "networkdata.h"
#include "networkrun.h"

class NetworkNetNode;
class NetworkEdit;
class SystemFile;

class ANetwork : public ANetNodeInstance{

public :

      ANetwork( NetworkNetNode * PNN );

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

      RuntimeInfo * runtime( void ) 
        { if( RT == 0 ) 
            RT = new NetworkRun( this, Data );
          return RT;
        }

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

      bool generateDataForCommonFile( SystemFile & S, long DevNr );

protected :

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

private :

      NetworkEdit * GUI;
      NetworkData_t Data;
      NetworkRun * RT;
};

#endif