]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMProjectActionsPanel.h
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMProjectActionsPanel.h
1 /*
2  * wxCDMProjectActionsPanel.h
3  *
4  *  Created on: 25/10/2012
5  *      Author: daniel
6  */
7
8 #ifndef WXCDMPROJECTACTIONSPANEL_H_
9 #define WXCDMPROJECTACTIONSPANEL_H_
10
11 #include <creaWx.h>
12 #include <wx/panel.h>
13
14 class wxCDMProjectActionsPanel : public wxPanel
15 {
16 public:
17   wxCDMProjectActionsPanel(
18       wxWindow* parent,
19       wxWindowID id = -1,
20       const wxString& caption = _("Description Frame"),
21       const wxPoint& pos = wxDefaultPosition,
22       const wxSize& size = wxDefaultSize,
23       long style = wxDEFAULT_FRAME_STYLE
24   );
25   ~wxCDMProjectActionsPanel();
26   bool Create(
27       wxWindow* parent,
28       wxWindowID id = -1,
29       const wxString& caption = _("Description Frame"),
30       const wxPoint& pos = wxDefaultPosition,
31       const wxSize& size = wxDefaultSize,
32       long style = wxDEFAULT_FRAME_STYLE
33   );
34
35 protected:
36   void CreateControls();
37 };
38
39 #endif /* WXCDMPROJECTACTIONSPANEL_H_ */