summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/wlan/wlanedit.h
blob: e550c14a1eab04e94f18571c0b3812f805d72b0a (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
#include <qtimer.h>
#include <wextensions.h>
#include "wlandata.h"
#include "wlanGUI.h"

class ANetNodeInstance;
class AsDevice;
class WExtensions;

class WLanEdit  : public WLanGUI {

public :

    WLanEdit( QWidget * parent, ANetNodeInstance * NNI  );
    ~WLanEdit( void );
    QString acceptable( void );
    void showData( WLanData_t & Data );
    bool commit( WLanData_t & Data );

public slots :

    void SLOT_AutoRefresh( bool );
    void SLOT_Refresh( void );

private :

    ANetNodeInstance * NNI;
    AsDevice * Dev;
    QTimer RefreshTimer;
    WExtensions * WE;

};