]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/wxCDMProjectActionsPanel.h
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMProjectActionsPanel.h
diff --git a/lib/creaDevManagerLib/wxCDMProjectActionsPanel.h b/lib/creaDevManagerLib/wxCDMProjectActionsPanel.h
new file mode 100755 (executable)
index 0000000..a647270
--- /dev/null
@@ -0,0 +1,39 @@
+/*
+ * wxCDMProjectActionsPanel.h
+ *
+ *  Created on: 25/10/2012
+ *      Author: daniel
+ */
+
+#ifndef WXCDMPROJECTACTIONSPANEL_H_
+#define WXCDMPROJECTACTIONSPANEL_H_
+
+#include <creaWx.h>
+#include <wx/panel.h>
+
+class wxCDMProjectActionsPanel : public wxPanel
+{
+public:
+  wxCDMProjectActionsPanel(
+      wxWindow* parent,
+      wxWindowID id = -1,
+      const wxString& caption = _("Description Frame"),
+      const wxPoint& pos = wxDefaultPosition,
+      const wxSize& size = wxDefaultSize,
+      long style = wxDEFAULT_FRAME_STYLE
+  );
+  ~wxCDMProjectActionsPanel();
+  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
+  );
+
+protected:
+  void CreateControls();
+};
+
+#endif /* WXCDMPROJECTACTIONSPANEL_H_ */