]> 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
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 < (int)(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()), wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE);
97       returnLnk->SetWindowStyle(wxNO_BORDER);
98       returnLnk->SetToolTip(crea::std2wx("Return to " + parents[parents.size()-1-i]->GetName() + "."));
99       linksSizer->Add(returnLnk, 0, wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT, 5);
100       if (i < (int)(parents.size())-1)
101         {
102           linksSizer->Add(new wxStaticText(this,wxID_ANY, wxT("/")), 0, wxALIGN_CENTER, 0);
103         }
104     }
105   sizer->Add(linksSizer, 0, wxALIGN_CENTER | wxALL, 5);
106
107   //Header
108   wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
109   {
110     //Image
111     headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(ApIcon64)),0, wxALIGN_CENTER, 0);
112     wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
113     //Title
114     textSizer->Add(new wxStaticText(this, -1, _("Application Management")),0, wxALIGN_LEFT, 0);
115
116     headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
117   }
118   sizer->Add(headerSizer, 0, wxALIGN_CENTER);
119
120   //Applications
121   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Applications"));
122   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available applications to see its details or the modify them."));
123   wxPanel* propertiesPanel = new wxPanel(this);
124   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
125
126   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
127   for (int i = 0; i < (int)(applications.size()); i++)
128     {
129                 wxHyperlinkCtrl* pApplicationlk = new wxHyperlinkCtrl(propertiesPanel,ID_LINK_SELECT_APPLICATION, crea::std2wx(applications[i]->GetName().c_str()), crea::std2wx(applications[i]->GetName().c_str()), wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE);
130       pApplicationlk->SetWindowStyle(wxALIGN_LEFT | wxNO_BORDER);
131       std::string tt = "Name: " + applications[i]->GetName() + "\n";
132       tt += "Location: " + applications[i]->GetPath();
133       pApplicationlk->SetToolTip(crea::std2wx(tt.c_str()));
134       pApplicationlk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseEnter,NULL,this);
135       pApplicationlk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseExit,NULL,this);
136       propertiesPanelSizer -> Add(pApplicationlk, 1, wxEXPAND | wxALL, 5);
137     }
138
139   propertiesPanel->SetSizer(propertiesPanelSizer);
140   propertiesPanelSizer->Fit(propertiesPanel);
141   propertiesBox->Add(propertiesPanel, 1, wxEXPAND | wxALL, 5);
142   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
143
144   //Actions
145   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
146   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new application or make any change to the appli's CMakeLists.txt file by selecting the desired action."));
147   wxPanel* actionsPanel = new wxPanel(this);
148   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
149   //actionsGrid Sizer
150   wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15);
151
152   wxButton* createApplicationbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_APPLICATION, _T("A. Create Application"));
153   createApplicationbt->SetToolTip(wxT("Create a new application for this project."));
154   actionsGridSizer->Add(createApplicationbt, 1, wxALL | wxEXPAND, 5);
155   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("B. Edit CMakeLists File"));
156   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
157   editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseEnter,NULL,this);
158   editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseExit,NULL,this);
159   actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
160   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("C. Open Applications Folder"));
161   openFolderbt->SetToolTip(wxT("Open the appli folder in the file explorer."));
162   actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
163
164   actionsGridSizer->AddGrowableCol(0,1);
165   actionsGridSizer->AddGrowableCol(1,1);
166
167   actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
168   actionsPanel->SetSizer(actionsPanelSizer);
169   actionsPanelSizer->Fit(actionsPanel);
170   actionsBox->Add(actionsPanel, 0, wxALL | wxEXPAND, 5);
171   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
172
173   //Assign sizer
174   SetSizer(sizer);
175   sizer->SetSizeHints(this);
176
177   if (((wxCDMMainFrame*)this->GetParent())->isHelp())
178     {
179       wxCDMAppliHelpDialog* helpDialog = new wxCDMAppliHelpDialog(this->GetParent(), this->appli, wxID_ANY);
180       helpDialog->Show(true);
181     }
182 }
183
184 void wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
185 {
186   //get name
187   wxString applicationName = wxGetTextFromUser(
188       _T("Enter the new application name"),
189       _T("New Application - creaDevManager"),
190       _T("")
191   );
192   //check name
193   if(applicationName.Len() > 0)
194     {
195       std::string* result;
196       //create library
197       modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
198       //check library created
199       if(application == NULL)
200         {
201           wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
202           event.Skip();
203           return;
204         }
205       wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
206
207       //refreshing tree and description
208       //send event instead of calling parent to avoid crashing
209
210       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
211
212       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
213       newEvent->SetClientData(application);
214       wxPostEvent(this->GetParent(), *newEvent);
215       event.Skip();
216     }
217 }
218
219 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
220 {
221   std::string* result;
222   if(!this->appli->OpenCMakeListsFile(result))
223     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
224
225   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
226
227   if(this->appli->GetCMakeLists() != NULL)
228     {
229       newEvent->SetClientData(this->appli->GetCMakeLists());
230       newEvent->SetId(0);
231       wxPostEvent(this->GetParent(), *newEvent);
232     }
233 }
234
235 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
236 {
237   modelCDMApplication* applicationFound = NULL;
238   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
239   for (int i = 0; i < (int)(applications.size()); i++)
240     {
241       if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
242         {
243           applicationFound = applications[i];
244           break;
245         }
246     }
247   wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
248   newEvent1->SetClientData(applicationFound);
249   newEvent1->SetId(0);
250   wxPostEvent(this->GetParent(), *newEvent1);
251
252   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
253   newEvent->SetClientData(applicationFound);
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 < (int)(parents.size()); i++)
264     {
265       if (parents[i]->GetPath() == parentURL)
266         {
267           wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
268           newEvent->SetClientData(parents[i]);
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   modelCDMApplication* theApp = NULL;
287   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
288   for (int i = 0; i < (int)(applications.size()); i++)
289     {
290       if(applications[i]->GetName() == AppName)
291         {
292           theApp = applications[i];
293           break;
294         }
295     }
296   newEvent->SetClientData(theApp);
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   modelCDMApplication* theApp = NULL;
307   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
308   for (int i = 0; i < (int)(applications.size()); i++)
309     {
310       if(applications[i]->GetName() == AppName)
311         {
312           theApp = applications[i];
313           break;
314         }
315     }
316   newEvent->SetClientData(theApp);
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       newEvent->SetClientData(this->appli->GetCMakeLists());
329       newEvent->SetId(0);
330       wxPostEvent(this->GetParent(), *newEvent);
331     }
332   event.Skip();
333 }
334
335 void wxCDMAppliDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
336 {
337   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
338
339   if(this->appli->GetCMakeLists() != NULL)
340     {
341       newEvent->SetClientData(this->appli->GetCMakeLists());
342       newEvent->SetId(0);
343       wxPostEvent(this->GetParent(), *newEvent);
344     }
345   event.Skip();
346 }