]> 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* pApplicationlk = 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       pApplicationlk->SetToolTip(crea::std2wx(tt.c_str()));
111       pApplicationlk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseEnter,NULL,this);
112       pApplicationlk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseExit,NULL,this);
113       propertiesPanelSizer -> Add(pApplicationlk, 0, wxALIGN_LEFT | wxALL, 5);
114     }
115
116   propertiesPanel->SetSizer(propertiesPanelSizer);
117   propertiesPanelSizer->Fit(propertiesPanel);
118   propertiesBox->Add(propertiesPanel, 0, wxALL, 5);
119   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
120
121   //Actions
122   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
123   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new application or make any change to the appli's CMakeLists.txt file by selecting the desired action."));
124   wxPanel* actionsPanel = new wxPanel(this);
125   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
126
127   wxButton* createApplicationbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_APPLICATION, _T("Create Application"));
128   createApplicationbt->SetToolTip(wxT("Create a new application for this project."));
129   actionsPanelSizer->Add(createApplicationbt, 0, wxALL, 5);
130   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
131   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
132   editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseEnter,NULL,this);
133   editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseExit,NULL,this);
134   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
135   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Applications Folder"));
136   openFolderbt->SetToolTip(wxT("Open the appli folder in the file explorer."));
137   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
138
139   actionsPanel->SetSizer(actionsPanelSizer);
140   actionsPanelSizer->Fit(actionsPanel);
141   actionsBox->Add(actionsPanel, 0, wxALL, 5);
142   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
143
144   //Assign sizer
145   SetSizer(sizer);
146   sizer->SetSizeHints(this);
147 }
148
149 void wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
150 {
151   //get name
152   wxString applicationName = wxGetTextFromUser(
153       _T("Enter the new application name"),
154       _T("New Application - creaDevManager"),
155       _T("")
156   );
157   //check name
158   if(applicationName.Len() > 0)
159     {
160       std::string* result;
161       //create library
162       modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
163       //check library created
164       if(application == NULL)
165         {
166           wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
167           event.Skip();
168           return;
169         }
170       wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
171
172       //refreshing tree and description
173       //send event instead of calling parent to avoid crashing
174
175       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
176
177       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
178       newEvent->SetInt(application->GetId());
179       wxPostEvent(this->GetParent(), *newEvent);
180       event.Skip();
181     }
182 }
183
184 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
185 {
186   std::string* result;
187   if(!this->appli->OpenCMakeListsFile(result))
188     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
189
190   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
191
192   if(this->appli->GetCMakeLists() != NULL)
193     {
194       int CMId = this->appli->GetCMakeLists()->GetId();
195       newEvent->SetInt(CMId);
196       newEvent->SetId(0);
197       wxPostEvent(this->GetParent(), *newEvent);
198     }
199 }
200
201 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
202 {
203   int applicationId = 0;
204   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
205   for (int i = 0; i < applications.size(); i++)
206     {
207       if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
208         {
209           applicationId = applications[i]->GetId();
210           break;
211         }
212     }
213   wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
214   newEvent1->SetInt(applicationId);
215   newEvent1->SetId(0);
216   wxPostEvent(this->GetParent(), *newEvent1);
217
218   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
219   newEvent->SetInt(applicationId);
220   newEvent->SetId(0);
221   wxPostEvent(this->GetParent(), *newEvent);
222 }
223
224 void wxCDMAppliDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
225 {
226   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
227   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
228   newEvent->SetId(0);
229   wxPostEvent(this->GetParent(), *newEvent);
230 }
231
232 void wxCDMAppliDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
233 {
234   std::string* result;
235   if(!this->appli->OpenInFileExplorer(result))
236     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
237 }
238
239 void wxCDMAppliDescriptionPanel::OnMouseEnter(wxMouseEvent& event)
240 {
241   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
242   std::string AppName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
243   int appId = 0;
244   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
245   for (int i = 0; i < applications.size(); i++)
246     {
247       if(applications[i]->GetName() == AppName)
248         {
249           appId = applications[i]->GetId();
250           break;
251         }
252     }
253   newEvent->SetInt(appId);
254   newEvent->SetId(0);
255   wxPostEvent(this->GetParent(), *newEvent);
256   event.Skip();
257 }
258
259 void wxCDMAppliDescriptionPanel::OnMouseExit(wxMouseEvent& event)
260 {
261   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
262   std::string AppName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
263   int appId = 0;
264   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
265   for (int i = 0; i < applications.size(); i++)
266     {
267       if(applications[i]->GetName() == AppName)
268         {
269           appId = applications[i]->GetId();
270           break;
271         }
272     }
273   newEvent->SetInt(appId);
274   newEvent->SetId(0);
275   wxPostEvent(this->GetParent(), *newEvent);
276   event.Skip();
277 }
278
279 void wxCDMAppliDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
280 {
281   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
282
283   if(this->appli->GetCMakeLists() != NULL)
284     {
285       int CMId = this->appli->GetCMakeLists()->GetId();
286       newEvent->SetInt(CMId);
287       newEvent->SetId(0);
288       wxPostEvent(this->GetParent(), *newEvent);
289     }
290   event.Skip();
291 }
292
293 void wxCDMAppliDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
294 {
295   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
296
297   if(this->appli->GetCMakeLists() != NULL)
298     {
299       int CMId = this->appli->GetCMakeLists()->GetId();
300       newEvent->SetInt(CMId);
301       newEvent->SetId(0);
302       wxPostEvent(this->GetParent(), *newEvent);
303     }
304   event.Skip();
305 }