summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/nsdata.h
blob: 507185e61bdec552db5aac05069e75397eead77b (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
#ifndef __NSDATA_H
#define __NSDATA_H

#include "netnode.h"

class NetworkSettingsData {

public :

      NetworkSettingsData( void );
      ~NetworkSettingsData( void );

      void loadSettings( void );
      QString saveSettings( void );

      QString generateSettings( void );

      bool isModified( void ) 
        { return IsModified; }
      void setModified( bool m ) 
        { IsModified = m; }

      QList<NodeCollection> collectPossible( const char * Interface );
      // return TRUE if we need gui to decide
      bool canStart( const char * Interface );
      bool regenerate( void );

private :

      bool IsModified;

      // collect strings in config file nobody wants
      QStringList LeftOvers;

};

#endif