/* * wxCDMMainDescriptionPanel.h * * Created on: 13/11/2012 * Author: daniel */ #ifndef WXCDMMAINDESCRIPTIONPANEL_H_ #define WXCDMMAINDESCRIPTIONPANEL_H_ #include #include class wxCDMMainDescriptionPanel : public wxPanel { public: wxCDMMainDescriptionPanel( wxWindow* parent, wxWindowID id = -1, const wxString& caption = _("Description Frame"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE ); ~wxCDMMainDescriptionPanel(); bool Create( wxWindow* parent, wxWindowID id = -1, const wxString& caption = _("Description Frame"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE ); void CreateControls(); //handlers protected: void OnBtnNewProject(wxCommandEvent& event); void OnBtnOpenProject(wxCommandEvent& event); }; #endif /* WXCDMMAINDESCRIPTIONPANEL_H_ */