summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/networksettings.h
blob: d9ea5d42e43871cb414c82e77b5b2e2287a19ead (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
46
47
48
49
#include "nsdata.h"
#include "networksettingsGUI.h"
#include "resources.h"

class ANetNode;
class ANetNodeInstance;
class QTimer;
class QListBoxItem;

class NetworkSettings : public NetworkSettingsGUI {

      Q_OBJECT

public :

      NetworkSettings( QWidget *parent=0, 
                       const char *name=0, 
                       WFlags fl = 0 );
      ~NetworkSettings( void );

      static QString appName( void ) 
        { return QString::fromLatin1("networksettings"); }

      bool isModified( void ) 
        { return NSD.isModified(); }
      void setModified( bool m ) 
        { NSD.setModified( m ); }

public slots :

      void SLOT_AddNode( void );
      void SLOT_DeleteNode( void );
      void SLOT_ShowNode( QListBoxItem * );
      void SLOT_EditNode( QListBoxItem * );
      void SLOT_CheckState( void );
      void SLOT_Enable( void );
      void SLOT_On( void );
      void SLOT_Connect( void );
      void SLOT_GenerateConfig( void );
      void SLOT_RefreshStates( void );
      void SLOT_QCopMessage( const QCString&,const QByteArray& );

private :

      void updateProfileState( QListBoxItem * it );
      QTimer * UpdateTimer;
      NetworkSettingsData NSD;

};