]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMAppliDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMAppliDescriptionPanel.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 # 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  * wxCDMAppliDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMAppliDescriptionPanel.h"
36
37 #include "creaDevManagerIds.h"
38
39 #include "wxCDMMainFrame.h"
40 #include "images/ApIcon64.xpm"
41
42 BEGIN_EVENT_TABLE(wxCDMAppliDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_PREV, wxCDMAppliDescriptionPanel::OnBtnReturn)
44 EVT_HYPERLINK(ID_LINK_SELECT_APPLICATION, wxCDMAppliDescriptionPanel::OnLnkApplicationSelect)
45 EVT_BUTTON(ID_BUTTON_CREATE_APPLICATION, wxCDMAppliDescriptionPanel::OnBtnCreateApplication)
46 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists)
47 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMAppliDescriptionPanel::OnBtnOpenFolder)
48 END_EVENT_TABLE()
49
50 wxCDMAppliDescriptionPanel::wxCDMAppliDescriptionPanel(
51     wxWindow* parent,
52     modelCDMAppli* appli,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMAppliDescriptionPanel::Create(parent, appli, id, caption, pos, size, style);
61 }
62
63 wxCDMAppliDescriptionPanel::~wxCDMAppliDescriptionPanel()
64 {
65 }
66
67 bool wxCDMAppliDescriptionPanel::Create(
68     wxWindow* parent,
69     modelCDMAppli* appli,
70     wxWindowID id,
71     const wxString& caption,
72     const wxPoint& pos,
73     const wxSize& size,
74     long style
75 )
76 {
77   wxPanel::Create(parent, id, pos, size, style);
78   this->appli = appli;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMAppliDescriptionPanel::CreateControls()
84 {
85   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
86
87   //Link to return
88   wxButton* returnbt = new wxButton(this, ID_BUTTON_PREV, wxT("Return to project"));
89   returnbt->SetToolTip(wxT("Return to the active project description."));
90   sizer->Add(returnbt, 0, wxALIGN_CENTER | wxALL, 5);
91
92   //Title
93   sizer->Add(new wxStaticText(this, -1, _("Application Management")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(ApIcon64)),0, wxALIGN_CENTER, 0);
97
98   //Applications
99   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Applications"));
100   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available applications to see its details or the modify them."));
101   wxPanel* propertiesPanel = new wxPanel(this);
102   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
103
104   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
105   for (int i = 0; i < applications.size(); i++)
106     {
107       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(propertiesPanel,ID_LINK_SELECT_APPLICATION, crea::std2wx(applications[i]->GetName().c_str()), crea::std2wx(applications[i]->GetName().c_str()));
108       std::string tt = "Name: " + applications[i]->GetName() + "\n";
109       tt += "Location: " + applications[i]->GetPath();
110       pLibrarylk->SetToolTip(crea::std2wx(tt.c_str()));
111       propertiesPanelSizer -> Add(pLibrarylk, 0, wxALIGN_LEFT | wxALL, 5);
112     }
113
114   propertiesPanel->SetSizer(propertiesPanelSizer);
115   propertiesPanelSizer->Fit(propertiesPanel);
116   propertiesBox->Add(propertiesPanel, 0, wxALL, 5);
117   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
118
119   //Actions
120   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
121   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new application or make any change to the appli's CMakeLists.txt file by selecting the desired action."));
122   wxPanel* actionsPanel = new wxPanel(this);
123   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
124
125   wxButton* createApplicationbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_APPLICATION, _T("Create Application"));
126   createApplicationbt->SetToolTip(wxT("Create a new application for this project."));
127   actionsPanelSizer->Add(createApplicationbt, 0, wxALL, 5);
128   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
129   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
130   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
131   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Applications Folder"));
132   openFolderbt->SetToolTip(wxT("Open the appli folder in the file explorer."));
133   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
134
135   actionsPanel->SetSizer(actionsPanelSizer);
136   actionsPanelSizer->Fit(actionsPanel);
137   actionsBox->Add(actionsPanel, 0, wxALL, 5);
138   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
139
140   //Assign sizer
141   SetSizer(sizer);
142   sizer->SetSizeHints(this);
143 }
144
145 void wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
146 {
147   //get name
148   wxString applicationName = wxGetTextFromUser(
149       _T("Enter the new application name"),
150       _T("New Application - creaDevManager"),
151       _T("")
152   );
153   //check name
154   if(applicationName.Len() > 0)
155     {
156       std::string* result;
157       //create library
158       modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
159       //check library created
160       if(application == NULL)
161         {
162           wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
163           event.Skip();
164           return;
165         }
166       wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
167
168       //refreshing tree and description
169       //send event instead of calling parent to avoid crashing
170
171       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
172
173       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
174       newEvent->SetInt(application->GetId());
175       wxPostEvent(this->GetParent(), *newEvent);
176       event.Skip();
177     }
178 }
179
180 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
181 {
182   //TODO: implement method
183   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
184   event.Skip();
185 }
186
187 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
188 {
189   int applicationId = 0;
190   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
191   for (int i = 0; i < applications.size(); i++)
192     {
193       if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
194         {
195           applicationId = applications[i]->GetId();
196           break;
197         }
198     }
199
200   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
201   newEvent->SetInt(applicationId);
202   newEvent->SetId(0);
203   wxPostEvent(this->GetParent(), *newEvent);
204 }
205
206 void wxCDMAppliDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
207 {
208   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
209   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
210   newEvent->SetId(0);
211   wxPostEvent(this->GetParent(), *newEvent);
212 }
213
214 void
215 wxCDMAppliDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
216 {
217   //TODO: implement method
218   std::cerr << "Event OnBtnOpenFolder not implemented" << std::endl;
219   event.Skip();
220 }