summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/wlan/wlanedit.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/wlan/wlanedit.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/wlan/wlanedit.h22
1 files changed, 21 insertions, 1 deletions
diff --git a/noncore/settings/networksettings2/wlan/wlanedit.h b/noncore/settings/networksettings2/wlan/wlanedit.h
index b7442d5..e550c14 100644
--- a/noncore/settings/networksettings2/wlan/wlanedit.h
+++ b/noncore/settings/networksettings2/wlan/wlanedit.h
@@ -1,12 +1,32 @@
1#include <qtimer.h>
2#include <wextensions.h>
1#include "wlandata.h" 3#include "wlandata.h"
2#include "wlanGUI.h" 4#include "wlanGUI.h"
3 5
6class ANetNodeInstance;
7class AsDevice;
8class WExtensions;
9
4class WLanEdit : public WLanGUI { 10class WLanEdit : public WLanGUI {
5 11
6public : 12public :
7 13
8 WLanEdit( QWidget * parent ); 14 WLanEdit( QWidget * parent, ANetNodeInstance * NNI );
15 ~WLanEdit( void );
9 QString acceptable( void ); 16 QString acceptable( void );
10 void showData( WLanData_t & Data ); 17 void showData( WLanData_t & Data );
11 bool commit( WLanData_t & Data ); 18 bool commit( WLanData_t & Data );
19
20public slots :
21
22 void SLOT_AutoRefresh( bool );
23 void SLOT_Refresh( void );
24
25private :
26
27 ANetNodeInstance * NNI;
28 AsDevice * Dev;
29 QTimer RefreshTimer;
30 WExtensions * WE;
31
12}; 32};