]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMProjectActionsPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMProjectActionsPanel.cpp
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 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------ 
24  */
25
26
27 /*
28  * wxCDMProjectActionsPanel.cpp
29  *
30  *  Created on: 25/10/2012
31  *      Author: Daniel Felipe Gonzalez Obando
32  */
33
34 #include "wxCDMProjectActionsPanel.h"
35
36 #include "creaDevManagerIds.h"
37
38 BEGIN_EVENT_TABLE(wxCDMProjectActionsPanel, wxPanel)
39 EVT_BUTTON(ID_BUTTON_BUILD_PROJECT, wxCDMProjectActionsPanel::OnBtnBuildProject)
40 EVT_BUTTON(ID_BUTTON_CONFIGURE_BUILD, wxCDMProjectActionsPanel::OnBtnConfigureBuild)
41 EVT_BUTTON(ID_BUTTON_CONNECT_PROJECT, wxCDMProjectActionsPanel::OnBtnConnectProject)
42 END_EVENT_TABLE()
43
44 wxCDMProjectActionsPanel::wxCDMProjectActionsPanel(
45     wxWindow* parent,
46     modelCDMProject* project,
47     wxWindowID id,
48     const wxString& caption,
49     const wxPoint& pos,
50     const wxSize& size,
51     long style
52 )
53 {
54   wxCDMProjectActionsPanel::Create(parent,id,caption,pos,size,style);
55   this->project = project;
56 }
57
58 wxCDMProjectActionsPanel::~wxCDMProjectActionsPanel()
59 {
60 }
61
62 bool wxCDMProjectActionsPanel::Create(
63     wxWindow* parent,
64     wxWindowID id,
65     const wxString& caption,
66     const wxPoint& pos,
67     const wxSize& size,
68     long style
69 )
70 {
71   wxPanel::Create(parent,id,pos,size,style);
72   wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
73   this->SetSizer(sizer);
74
75   CreateControls();
76
77   return TRUE;
78 }
79
80 void wxCDMProjectActionsPanel::CreateControls()
81 {
82   wxButton* configurebt = new wxButton(this, ID_BUTTON_CONFIGURE_BUILD, _T("1. Configure Project"));
83   configurebt->SetToolTip(wxT("This is the first step in order to execute the project. Make sure you have selected the desired Build location."));
84   wxButton* compilebt = new wxButton(this, ID_BUTTON_BUILD_PROJECT, _T("2. Compile Project"));
85   compilebt->SetToolTip(wxT("This step should be done after configuring the project. This will create the executables."));
86   wxButton* plugbt = new wxButton(this, ID_BUTTON_CONNECT_PROJECT, _T("3. Plug Packages (BBTK)"));
87   plugbt->SetToolTip(wxT("This step should be done after compiling the project. This will allow to use the boxes in this project to be available in the bbEditor."));
88   this->GetSizer()->Add(configurebt, 0, wxALL, 5);
89   this->GetSizer()->Add(compilebt, 0, wxALL, 5);
90   this->GetSizer()->Add(plugbt, 0, wxALL, 5);
91 }
92
93 //configure project
94 void wxCDMProjectActionsPanel::OnBtnConfigureBuild(wxCommandEvent& event)
95 {
96   std::string* result;
97   if(!this->project->ConfigureBuild(result))
98     {
99       wxMessageBox(crea::std2wx(result->c_str()), wxT("Project Configuration - Error!"));
100       return;
101     }
102   wxMessageBox(crea::std2wx("The configuration was executed successfully."), wxT("Project Configuration"));
103 }
104
105 //compile project
106 void wxCDMProjectActionsPanel::OnBtnBuildProject(wxCommandEvent& event)
107 {
108   std::string* result;
109   if(!this->project->Build(result))
110     {
111       wxMessageBox(crea::std2wx(result->c_str()), wxT("Project Compilation - Error!"));
112       return;
113     }
114   wxMessageBox(crea::std2wx("The compilation was executed successfully. Please check the \"building.log\" file located in the build folder to check the compilation result."), wxT("Project Compilation"));
115 }
116
117 //plug packages
118 void wxCDMProjectActionsPanel::OnBtnConnectProject(wxCommandEvent& event)
119 {
120   std::string* result;
121   if(!this->project->Connect(result))
122       {
123         wxMessageBox(crea::std2wx(result->c_str()), wxT("Plug Packages - Error!"));
124         return;
125       }
126     wxMessageBox(crea::std2wx("The connection was executed successfully. Please check the \"plugging.log\" file located in the build folder to check the compilation result."), wxT("Plug Package"));
127 }