summaryrefslogtreecommitdiff
path: root/noncore/settings/networksettings2/profile/profileedit.h
authorwimpie <wimpie>2004-04-02 18:29:49 (UTC)
committer wimpie <wimpie>2004-04-02 18:29:49 (UTC)
commit5334b639c9f97793bcae4f50f7b47c7a2ada4e2f (patch) (unidiff)
treef55aebd4314ab878bc39b6b08b8323a8ef78d803 /noncore/settings/networksettings2/profile/profileedit.h
parent7c8922b37b5bb7696c0ff2cbc999e2936b9b509f (diff)
downloadopie-5334b639c9f97793bcae4f50f7b47c7a2ada4e2f.zip
opie-5334b639c9f97793bcae4f50f7b47c7a2ada4e2f.tar.gz
opie-5334b639c9f97793bcae4f50f7b47c7a2ada4e2f.tar.bz2
First import of NS2 app
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};