]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMAppliDescriptionPanel.cpp
3cbe28dee709981de2f2e8ac76f7b5077db819f6
[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
38
39 #include "wxCDMMainFrame.h"
40
41 #include "wxCDMAppliHelpDialog.h"
42
43 #include "creaDevManagerIds.h"
44 #include "images/ApIcon64.xpm"
45
46 BEGIN_EVENT_TABLE(wxCDMAppliDescriptionPanel, wxPanel)
47 EVT_HYPERLINK(ID_BUTTON_PREV, wxCDMAppliDescriptionPanel::OnBtnReturn)
48 EVT_HYPERLINK(ID_LINK_SELECT_APPLICATION, wxCDMAppliDescriptionPanel::OnLnkApplicationSelect)
49 EVT_BUTTON(ID_BUTTON_CREATE_APPLICATION, wxCDMAppliDescriptionPanel::OnBtnCreateApplication)
50 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists)
51 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMAppliDescriptionPanel::OnBtnOpenFolder)
52 END_EVENT_TABLE()
53
54 wxCDMAppliDescriptionPanel::wxCDMAppliDescriptionPanel(
55     wxWindow* parent,
56     modelCDMAppli* appli,
57     wxWindowID id,
58     const wxString& caption,
59     const wxPoint& pos,
60     const wxSize& size,
61     long style
62 )
63 {
64   wxCDMAppliDescriptionPanel::Create(parent, appli, id, caption, pos, size, style);
65 }
66
67 wxCDMAppliDescriptionPanel::~wxCDMAppliDescriptionPanel()
68 {
69 }
70
71 bool wxCDMAppliDescriptionPanel::Create(
72     wxWindow* parent,
73     modelCDMAppli* appli,
74     wxWindowID id,
75     const wxString& caption,
76     const wxPoint& pos,
77     const wxSize& size,
78     long style
79 )
80 {
81   wxPanel::Create(parent, id, pos, size, style);
82   this->appli = appli;
83   CreateControls();
84   return TRUE;
85 }
86
87 void wxCDMAppliDescriptionPanel::CreateControls()
88 {
89   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
90
91   //Links to return
92   wxBoxSizer *linksSizer = new wxBoxSizer(wxHORIZONTAL);
93   std::vector<modelCDMIProjectTreeNode*> parents = this->appli->GetParents();
94   for (int i = 0; i < parents.size(); i++)
95     {
96       wxHyperlinkCtrl* returnLnk = new wxHyperlinkCtrl(this, ID_BUTTON_PREV, crea::std2wx(parents[parents.size()-1-i]->GetName()), crea::std2wx(parents[parents.size()-1-i]->GetPath()));
97       returnLnk->SetToolTip(crea::std2wx("Return to " + parents[parents.size()-1-i]->GetName() + "."));
98       linksSizer->Add(returnLnk, 0, wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT, 5);
99       if (i < parents.size()-1)
100         {
101           linksSizer->Add(new wxStaticText(this,wxID_ANY, wxT("/")), 0, wxALIGN_CENTER, 0);
102         }
103     }
104   sizer->Add(linksSizer, 0, wxALIGN_CENTER | wxALL, 5);
105
106   //Header
107   wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
108   {
109     //Image
110     headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(ApIcon64)),0, wxALIGN_CENTER, 0);
111     wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
112     //Title
113     textSizer->Add(new wxStaticText(this, -1, _("Application Management")),0, wxALIGN_LEFT, 0);
114
115     headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
116   }
117   sizer->Add(headerSizer, 0, wxALIGN_CENTER);
118
119   //Applications
120   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Applications"));
121   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available applications to see its details or the modify them."));
122   wxPanel* propertiesPanel = new wxPanel(this);
123   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
124
125   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
126   for (int i = 0; i < applications.size(); i++)
127     {
128       wxHyperlinkCtrl* pApplicationlk = new wxHyperlinkCtrl(propertiesPanel,ID_LINK_SELECT_APPLICATION, crea::std2wx(applications[i]->GetName().c_str()), crea::std2wx(applications[i]->GetName().c_str()));
129       pApplicationlk->SetWindowStyle(wxALIGN_LEFT);
130       std::string tt = "Name: " + applications[i]->GetName() + "\n";
131       tt += "Location: " + applications[i]->GetPath();
132       pApplicationlk->SetToolTip(crea::std2wx(tt.c_str()));
133       pApplicationlk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseEnter,NULL,this);
134       pApplicationlk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseExit,NULL,this);
135       propertiesPanelSizer -> Add(pApplicationlk, 1, wxEXPAND | wxALL, 5);
136     }
137
138   propertiesPanel->SetSizer(propertiesPanelSizer);
139   propertiesPanelSizer->Fit(propertiesPanel);
140   propertiesBox->Add(propertiesPanel, 1, wxEXPAND | wxALL, 5);
141   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
142
143   //Actions
144   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
145   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new application or make any change to the appli's CMakeLists.txt file by selecting the desired action."));
146   wxPanel* actionsPanel = new wxPanel(this);
147   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
148   //actionsGrid Sizer
149   wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15);
150
151   wxButton* createApplicationbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_APPLICATION, _T("A. Create Application"));
152   createApplicationbt->SetToolTip(wxT("Create a new application for this project."));
153   actionsGridSizer->Add(createApplicationbt, 1, wxALL | wxEXPAND, 5);
154   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("B. Edit CMakeLists File"));
155   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
156   editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseEnter,NULL,this);
157   editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseExit,NULL,this);
158   actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
159   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("C. Open Applications Folder"));
160   openFolderbt->SetToolTip(wxT("Open the appli folder in the file explorer."));
161   actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
162
163   actionsGridSizer->AddGrowableCol(0,1);
164   actionsGridSizer->AddGrowableCol(1,1);
165
166   actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
167   actionsPanel->SetSizer(actionsPanelSizer);
168   actionsPanelSizer->Fit(actionsPanel);
169   actionsBox->Add(actionsPanel, 0, wxALL | wxEXPAND, 5);
170   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
171
172   //Assign sizer
173   SetSizer(sizer);
174   sizer->SetSizeHints(this);
175
176   if (((wxCDMMainFrame*)this->GetParent())->isHelp())
177     {
178       wxCDMAppliHelpDialog* helpDialog = new wxCDMAppliHelpDialog(this->GetParent(), this->appli, wxID_ANY);
179       helpDialog->Show(true);
180     }
181 }
182
183 void wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
184 {
185   //get name
186   wxString applicationName = wxGetTextFromUser(
187       _T("Enter the new application name"),
188       _T("New Application - creaDevManager"),
189       _T("")
190   );
191   //check name
192   if(applicationName.Len() > 0)
193     {
194       std::string* result;
195       //create library
196       modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
197       //check library created
198       if(application == NULL)
199         {
200           wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
201           event.Skip();
202           return;
203         }
204       wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
205
206       //refreshing tree and description
207       //send event instead of calling parent to avoid crashing
208
209       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
210
211       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
212       newEvent->SetInt(application->GetId());
213       wxPostEvent(this->GetParent(), *newEvent);
214       event.Skip();
215     }
216 }
217
218 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
219 {
220   std::string* result;
221   if(!this->appli->OpenCMakeListsFile(result))
222     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
223
224   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
225
226   if(this->appli->GetCMakeLists() != NULL)
227     {
228       int CMId = this->appli->GetCMakeLists()->GetId();
229       newEvent->SetInt(CMId);
230       newEvent->SetId(0);
231       wxPostEvent(this->GetParent(), *newEvent);
232     }
233 }
234
235 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
236 {
237   int applicationId = 0;
238   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
239   for (int i = 0; i < applications.size(); i++)
240     {
241       if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
242         {
243           applicationId = applications[i]->GetId();
244           break;
245         }
246     }
247   wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
248   newEvent1->SetInt(applicationId);
249   newEvent1->SetId(0);
250   wxPostEvent(this->GetParent(), *newEvent1);
251
252   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
253   newEvent->SetInt(applicationId);
254   newEvent->SetId(0);
255   wxPostEvent(this->GetParent(), *newEvent);
256 }
257
258 void wxCDMAppliDescriptionPanel::OnBtnReturn(wxHyperlinkEvent& event)
259 {
260   std::vector<modelCDMIProjectTreeNode*> parents = this->appli->GetParents();
261   std::string parentURL = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
262   //std::cout << parentURL << std::endl;
263   for (int i = 0; i < parents.size(); i++)
264     {
265       if (parents[i]->GetPath() == parentURL)
266         {
267           wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
268           newEvent->SetInt(parents[i]->GetId());
269           newEvent->SetId(0);
270           wxPostEvent(this->GetParent(), *newEvent);
271         }
272     }
273 }
274
275 void wxCDMAppliDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
276 {
277   std::string* result;
278   if(!this->appli->OpenInFileExplorer(result))
279     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
280 }
281
282 void wxCDMAppliDescriptionPanel::OnMouseEnter(wxMouseEvent& event)
283 {
284   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
285   std::string AppName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
286   int appId = 0;
287   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
288   for (int i = 0; i < applications.size(); i++)
289     {
290       if(applications[i]->GetName() == AppName)
291         {
292           appId = applications[i]->GetId();
293           break;
294         }
295     }
296   newEvent->SetInt(appId);
297   newEvent->SetId(0);
298   wxPostEvent(this->GetParent(), *newEvent);
299   event.Skip();
300 }
301
302 void wxCDMAppliDescriptionPanel::OnMouseExit(wxMouseEvent& event)
303 {
304   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
305   std::string AppName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
306   int appId = 0;
307   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
308   for (int i = 0; i < applications.size(); i++)
309     {
310       if(applications[i]->GetName() == AppName)
311         {
312           appId = applications[i]->GetId();
313           break;
314         }
315     }
316   newEvent->SetInt(appId);
317   newEvent->SetId(0);
318   wxPostEvent(this->GetParent(), *newEvent);
319   event.Skip();
320 }
321
322 void wxCDMAppliDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
323 {
324   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
325
326   if(this->appli->GetCMakeLists() != NULL)
327     {
328       int CMId = this->appli->GetCMakeLists()->GetId();
329       newEvent->SetInt(CMId);
330       newEvent->SetId(0);
331       wxPostEvent(this->GetParent(), *newEvent);
332     }
333   event.Skip();
334 }
335
336 void wxCDMAppliDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
337 {
338   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
339
340   if(this->appli->GetCMakeLists() != NULL)
341     {
342       int CMId = this->appli->GetCMakeLists()->GetId();
343       newEvent->SetInt(CMId);
344       newEvent->SetId(0);
345       wxPostEvent(this->GetParent(), *newEvent);
346     }
347   event.Skip();
348 }