]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMProjectActionsPanel.h
93850e277860202f560ffab39f7b6a095c701087
[crea.git] / lib / creaDevManagerLib / wxCDMProjectActionsPanel.h
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image 
5 #                        pour la Sant�)
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
9 #
10 #  This software is governed by the CeCILL-B license under French law and 
11 #  abiding by the rules of distribution of free software. You can  use, 
12 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
13 #  license as circulated by CEA, CNRS and INRIA at the following URL 
14 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
15 #  or in the file LICENSE.txt.
16 #
17 #  As a counterpart to the access to the source code and  rights to copy,
18 #  modify and redistribute granted by the license, users are provided only
19 #  with a limited warranty  and the software's author,  the holder of the
20 #  economic rights,  and the successive licensors  have only  limited
21 #  liability. 
22 #
23 #  The fact that you are presently reading this means that you have had
24 #  knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------ 
26 */ 
27
28
29 /*
30  * wxCDMProjectActionsPanel.h
31  *
32  *  Created on: 25/10/2012
33  *      Author: Daniel Felipe Gonzalez Obando
34  */
35
36 #ifndef WXCDMPROJECTACTIONSPANEL_H_
37 #define WXCDMPROJECTACTIONSPANEL_H_
38
39 #include <creaWx.h>
40 #include <wx/panel.h>
41
42 #include "modelCDMProject.h"
43
44 /**
45  * Panel with common actions for an open Crea project.
46  */
47 class wxCDMProjectActionsPanel : public wxPanel
48 {
49   DECLARE_EVENT_TABLE()
50 public:
51   /**
52    * Project actions panel constructor.
53    * @param parent Parent window reference.
54    * @param project Project class reference.
55    * @param id Panel ID. By default -1.
56    * @param caption Panel label. By default "Description Frame".
57    * @param pos Panel position. By default wxDefaultPosition.
58    * @param size Panel size. By default wxDefaultSize.
59    * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
60    */
61   wxCDMProjectActionsPanel(
62       wxWindow* parent,
63       modelCDMProject* project,
64       wxWindowID id = -1,
65       const wxString& caption = _("Description Frame"),
66       const wxPoint& pos = wxDefaultPosition,
67       const wxSize& size = wxDefaultSize,
68       long style = wxDEFAULT_FRAME_STYLE
69   );
70   /**
71    * Destructor.
72    */
73   ~wxCDMProjectActionsPanel();
74   /**
75    * Project actions panel constructor.
76    * @param parent Parent window reference.
77    * @param id Panel ID. By default -1.
78    * @param caption Panel label. By default "Description Frame".
79    * @param pos Panel position. By default wxDefaultPosition.
80    * @param size Panel size. By default wxDefaultSize.
81    * @param style Panel style. By default wxDEFAULT_FRAME_STYLE.
82    * @return True if the creation was successful.
83    */
84   bool Create(
85       wxWindow* parent,
86       wxWindowID id = -1,
87       const wxString& caption = _("Description Frame"),
88       const wxPoint& pos = wxDefaultPosition,
89       const wxSize& size = wxDefaultSize,
90       long style = wxDEFAULT_FRAME_STYLE
91   );
92
93 protected:
94   /**
95    * Creates the Panel controls (buttons)
96    */
97   void CreateControls();
98
99   /**
100    * Handles when the Check Project Structure button is pressed.
101    */
102   void OnBtnCheckProjectStructure(wxCommandEvent& event);
103   /**
104    * Handles when the Configure Compilation button is pressed.
105    */
106   void OnBtnConfigureBuild(wxCommandEvent& event);
107   /**
108    * Handles when the Compile Project button is pressed.
109    */
110   void OnBtnBuildProject(wxCommandEvent& event);
111   /**
112    * Handles when the Plug packages button is pressed.
113    */
114   void OnBtnConnectProject(wxCommandEvent& event);
115
116 private:
117   /**
118    * Project class reference
119    */
120   modelCDMProject* project;
121 };
122
123 #endif /* WXCDMPROJECTACTIONSPANEL_H_ */