--- wxCpuThrottle/src/wxcputhrottleframe.h 2007/08/09 20:57:19 24 +++ wxCpuThrottle/src/wxcputhrottleframe.h 2007/08/10 18:12:36 25 @@ -29,15 +29,23 @@ { public: wxCpuThrottleFrame(); - void OnQuit( wxCommandEvent& event ); + void OnQuit( /*wxCommandEvent& event*/ ); void OnAbout( wxCommandEvent& event ); void OnClose( wxCloseEvent& event ); + void OnTimer( wxTimerEvent& event ); + void OnRadiobutton(wxCommandEvent& event); void SetPosition(); + bool GetWritable() {return mWritable;} + AcpiParser* GetParser() { return &mParser; } + private: wxIcon mIcon; TrayIcon* mTrayIcon; AcpiParser mParser; + bool mWritable; + wxRadioBox* mButtonbox; + wxTimer mTimer; DECLARE_EVENT_TABLE() };