00001 #include "profiledata.h" 00002 #include "profileGUI.h" 00003 00004 #include <qtimer.h> 00005 class ANetNodeInstance; 00006 class RuntimeInfo; 00007 00008 class ProfileEdit : public ProfileGUI { 00009 00010 Q_OBJECT 00011 00012 public : 00013 00014 ProfileEdit( QWidget * parent, ANetNodeInstance * NNI ); 00015 QString acceptable( void ); 00016 bool commit( ProfileData & Data ); 00017 void showData( ProfileData & Data ); 00018 00019 public slots : 00020 00021 void SLOT_AutoRefresh( bool ); 00022 void SLOT_Refresh( void ); 00023 void SLOT_ResetODO( void ); 00024 00025 private : 00026 00027 QTimer RefreshTimer; 00028 ANetNodeInstance * NNI; 00029 RuntimeInfo * Dev; 00030 long RcvODO; 00031 long SndODO; 00032 };
1.4.2