00001 00014 #ifndef _cSoftwareWidgetAct_h 00015 #define _cSoftwareWidgetAct_h 00016 00017 #include "cSoftwareWidget.h" 00018 #include "cSoftware.h" 00019 00020 #include <string> 00021 using std::string; 00022 00023 class cSoftwareWidgetAct: public cSoftwareWidget 00024 { 00025 public: 00027 cSoftwareWidgetAct(wxWindow *pParent); 00028 00030 ~cSoftwareWidgetAct(void); 00031 00033 void Clear(void); 00034 00035 cSoftware *GetSoftware(void); 00036 00037 void DisplayData(void); 00038 00040 void UpdateData(void); 00041 00042 protected: 00043 00044 DECLARE_EVENT_TABLE() 00045 00046 private: 00047 cSoftware *m_pSoftware; // 1 per Notebook. 00048 //***************** 00049 // Event functions. 00050 //***************** 00051 void OnDoneSelect(wxCommandEvent& command); 00052 00053 }; 00054 00055 #endif // _cSoftwareWidgetAct_h