summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profileedit.h
blob: b186b58aaee482aa32a14c2ae0523dd3026aa9e8 (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
#include "profiledata.h"
#include "profileGUI.h"

#include <qtimer.h>
class ANetNodeInstance;
class AsDevice;

class ProfileEdit  : public ProfileGUI {

    Q_OBJECT

public :

    ProfileEdit( QWidget * parent, ANetNodeInstance * NNI );
    QString acceptable( void );
    bool commit( ProfileData_t & Data );
    void showData( ProfileData_t & Data );

public slots :

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

private :

    QTimer RefreshTimer;
    ANetNodeInstance * NNI;
    AsDevice * Dev;
};