summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profileedit.h
Unidiff
Diffstat (limited to 'noncore/settings/networksettings2/profile/profileedit.h') (more/less context) (show whitespace changes)
-rw-r--r--noncore/settings/networksettings2/profile/profileedit.h29
1 files changed, 29 insertions, 0 deletions
diff --git a/noncore/settings/networksettings2/profile/profileedit.h b/noncore/settings/networksettings2/profile/profileedit.h
new file mode 100644
index 0000000..8ca34be
--- a/dev/null
+++ b/noncore/settings/networksettings2/profile/profileedit.h
@@ -0,0 +1,29 @@
1#include "profiledata.h"
2#include "profileGUI.h"
3
4#include <qtimer.h>
5class ANetNodeInstance;
6class AsDevice;
7
8class ProfileEdit : public ProfileGUI {
9
10 Q_OBJECT
11
12public :
13
14 ProfileEdit( QWidget * parent, ANetNodeInstance * NNI );
15 QString acceptable( void );
16 bool commit( ProfileData_t & Data );
17 void showData( ProfileData_t & Data );
18
19public slots :
20
21 void SLOT_AutoRefresh( bool );
22 void SLOT_Refresh( void );
23
24private :
25
26 QTimer TrafficRefresh;
27 ANetNodeInstance * NNI;
28 AsDevice * Dev;
29};