summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profileedit.h
Side-by-side diff
Diffstat (limited to 'noncore/settings/networksettings2/profile/profileedit.h') (more/less context) (ignore 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 @@
+#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 TrafficRefresh;
+ ANetNodeInstance * NNI;
+ AsDevice * Dev;
+};