--- wxCpuThrottle/src/wxcputhrottleframe.h 2007/08/08 21:00:34 20 +++ wxCpuThrottle/src/wxcputhrottleframe.h 2007/08/09 20:57:19 24 @@ -18,19 +18,28 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ +#ifndef WXCPUTHROTTLEFRAME_H +#define WXCPUTHROTTLEFRAME_H + #include #include "trayicon.h" +#include "acpiparser.h" class wxCpuThrottleFrame : public wxDialog { public: - wxCpuThrottleFrame( const wxString& title, const wxPoint& pos, const wxSize& size ); + wxCpuThrottleFrame(); void OnQuit( wxCommandEvent& event ); void OnAbout( wxCommandEvent& event ); void OnClose( wxCloseEvent& event ); + void SetPosition(); private: wxIcon mIcon; TrayIcon* mTrayIcon; + AcpiParser mParser; + DECLARE_EVENT_TABLE() }; + +#endif