]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMPackageManagerPanel.cpp
871b20b98d715f8861facd2fda7b2ed6011115bf
[crea.git] / lib / creaDevManagerLib / wxCDMPackageManagerPanel.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  * wxCDMPackageManagerPanel.cpp
30  *
31  *  Created on: Dec 10, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMPackageManagerPanel.h"
36
37 #include "wxCDMMainFrame.h"
38 #include "wxCDMNewPackageDialog.h"
39
40 #include "wxCDMPackageManagerHelpDialog.h"
41
42 #include "creaDevManagerIds.h"
43 #include "images/PkIcon64.xpm"
44
45 BEGIN_EVENT_TABLE(wxCDMPackageManagerPanel, wxPanel)
46 EVT_HYPERLINK(ID_BUTTON_PREV, wxCDMPackageManagerPanel::OnBtnReturn)
47 EVT_HYPERLINK(ID_LINK_SELECT_PACKAGE, wxCDMPackageManagerPanel::OnLnkPackageSelect)
48 EVT_BUTTON(ID_BUTTON_CREATE_PACKAGE, wxCDMPackageManagerPanel::OnBtnCreatePackage)
49 EVT_COMMAND(wxID_ANY, wxEVT_COMMAND_TOOL_CLICKED, wxCDMPackageManagerPanel::OnBtnCreatePackage)
50 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMPackageManagerPanel::OnBtnEditCMakeLists)
51 EVT_COMMAND(wxID_ANY, wxEVT_COMMAND_TOOL_ENTER, wxCDMPackageManagerPanel::OnBtnEditCMakeLists)
52 EVT_CHECKBOX(ID_CHECK_INCLUDE_PACKAGE, wxCDMPackageManagerPanel::OnChBPackageChange)
53 END_EVENT_TABLE()
54
55 wxCDMPackageManagerPanel::wxCDMPackageManagerPanel(
56     wxWindow* parent,
57     modelCDMProject* project,
58     wxWindowID id,
59     const wxString& caption,
60     const wxPoint& pos,
61     const wxSize& size,
62     long style
63 )
64 {
65   wxCDMPackageManagerPanel::Create(parent, project, id, caption, pos, size, style);
66 }
67
68 wxCDMPackageManagerPanel::~wxCDMPackageManagerPanel()
69 {
70 }
71
72 bool wxCDMPackageManagerPanel::Create(
73     wxWindow* parent,
74     modelCDMProject* project,
75     wxWindowID id,
76     const wxString& caption,
77     const wxPoint& pos,
78     const wxSize& size,
79     long style
80 )
81 {
82   wxPanel::Create(parent, id, pos, size, style);
83   this->project = project;
84   CreateControls();
85   return TRUE;
86 }
87
88 void wxCDMPackageManagerPanel::CreateControls()
89 {
90   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
91
92   //Link to return
93   wxHyperlinkCtrl* returnLnk = new wxHyperlinkCtrl(this, ID_BUTTON_PREV, crea::std2wx(this->project->GetName()), crea::std2wx(this->project->GetPath()), wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE);
94   returnLnk->SetWindowStyle(wxNO_BORDER);
95   returnLnk->SetToolTip(wxT("Return to the active project description."));
96   sizer->Add(returnLnk, 0, wxALIGN_CENTER | wxALL, 5);
97
98   //Header
99   wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
100   {
101     //Image
102     headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PkIcon64)),0, wxALIGN_CENTER, 0);
103     wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
104     //Title
105     textSizer->Add(new wxStaticText(this, -1, _("Package Management")),0, wxALIGN_LEFT, 0);
106
107     headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
108   }
109   sizer->Add(headerSizer, 0, wxALIGN_CENTER);
110
111   //Packages
112   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Packages"));
113   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available packages to see its details or modify them. Remember that black boxes are created inside packages, any of these packages is available."));
114   wxPanel* propertiesPanel = new wxPanel(this);
115
116   std::vector<modelCDMPackage*> packages = this->project->GetPackages();
117   wxFlexGridSizer* propertiesGridSizer = new wxFlexGridSizer(packages.size()+1, 3, 9, 5);
118
119   wxStaticText* ChBTitle = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Include in\nCMake"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
120   wxStaticText* LkTitle = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Package Name"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
121   wxStaticText* HlpTitle = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Help"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
122
123   propertiesGridSizer -> Add(ChBTitle, 0, wxEXPAND | wxALL, 5);
124   propertiesGridSizer -> Add(LkTitle,  0, wxEXPAND | wxALL, 5);
125   propertiesGridSizer -> Add(HlpTitle, 0, wxEXPAND | wxALL, 5);
126
127   for (int i = 0; i < (int)(packages.size()); i++)
128     {
129       //checkbox for cmake inclusion
130       wxCheckBox* pPackageChB = new wxCheckBox(propertiesPanel, ID_CHECK_INCLUDE_PACKAGE, wxT(""), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT);
131       pPackageChB->SetName(crea::std2wx(packages[i]->GetName()));
132       std::string tt = "if this box is checked the the " + packages[i]->GetName() + " package is included in the project compilation.";
133       pPackageChB->SetToolTip(crea::std2wx(tt));
134       pPackageChB->SetValue(this->project->IsPackageIncluded(packages[i]->GetName()));
135       propertiesGridSizer -> Add(pPackageChB, 0, wxEXPAND | wxALIGN_CENTER);
136
137       //link to package with description
138       wxHyperlinkCtrl* pPackagelk = new wxHyperlinkCtrl(propertiesPanel, ID_LINK_SELECT_PACKAGE, crea::std2wx(packages[i]->GetName().c_str()), crea::std2wx(packages[i]->GetName().c_str()), wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE);
139       pPackagelk->SetWindowStyle(wxALIGN_LEFT | wxNO_BORDER);
140       tt = "Name: " + packages[i]->GetName() + "\n";
141       tt += "Location: " + packages[i]->GetPath();
142       pPackagelk->SetToolTip(crea::std2wx(tt));
143       pPackagelk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnMouseEnter,NULL,this);
144       pPackagelk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnMouseExit,NULL,this);
145       propertiesGridSizer -> Add(pPackagelk, 0, wxEXPAND);
146
147       //help icon
148       wxButton* pPackageHlp = new wxButton(propertiesPanel, wxID_ANY, wxT("?"), wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
149       propertiesGridSizer -> Add(pPackageHlp, 0, wxEXPAND | wxALIGN_CENTER);
150     }
151
152   propertiesGridSizer->AddGrowableCol(1,1);
153
154   propertiesPanel->SetSizer(propertiesGridSizer);
155   propertiesGridSizer->Fit(propertiesPanel);
156
157
158   propertiesBox->Add(propertiesPanel, 1, wxALL | wxEXPAND, 5);
159
160   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
161
162   //Actions
163   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
164   wxPanel* actionsPanel = new wxPanel(this);
165   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
166
167   //actionsGrid Sizer
168   wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(1, 2, 9, 15);
169
170   wxButton* createPkgbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_PACKAGE, _T("A. Create Package"));
171   createPkgbt->SetToolTip(wxT("Create a new package for this project."));
172   actionsGridSizer->Add(createPkgbt, 1, wxALL | wxEXPAND, 5);
173   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("B. Edit CMakeLists File"));
174   editCMakebt->SetToolTip(wxT("Edit the CMakeLists.txt file of this project."));
175   editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnCMakeMouseEnter,NULL,this);
176   editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnCMakeMouseExit,NULL,this);
177   actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
178
179   actionsGridSizer->AddGrowableCol(0,1);
180   actionsGridSizer->AddGrowableCol(1,1);
181
182   actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
183   actionsPanel->SetSizer(actionsPanelSizer);
184   actionsPanelSizer->Fit(actionsPanel);
185   actionsBox->Add(actionsPanel, 1, wxEXPAND);
186   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
187
188   //Assign sizer
189   SetSizer(sizer);
190   sizer->SetSizeHints(this);
191
192   if (((wxCDMMainFrame*)this->GetParent())->isHelp())
193     {
194       wxCDMPackageManagerHelpDialog* helpDialog = new wxCDMPackageManagerHelpDialog(this->GetParent(), this, wxID_ANY);
195       helpDialog->Show(true);
196     }
197 }
198
199 modelCDMProject* wxCDMPackageManagerPanel::GetProject() const
200 {
201   return this->project;
202 }
203
204 void wxCDMPackageManagerPanel::OnBtnReturn(wxHyperlinkEvent& event)
205 {
206   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
207   newEvent->SetClientData(project);
208   newEvent->SetId(0);
209   wxPostEvent(this->GetParent(), *newEvent);
210 }
211
212 void wxCDMPackageManagerPanel::OnChBPackageChange(wxCommandEvent& event)
213 {
214   this->project->SetPackageInclude(
215       crea::wx2std(((wxCheckBox*)event.GetEventObject())->GetName()),
216       ((wxCheckBox*)event.GetEventObject())->GetValue()
217     );
218 }
219
220 void wxCDMPackageManagerPanel::OnLnkPackageSelect(wxHyperlinkEvent& event)
221 {
222   modelCDMPackage* thePackage = NULL;
223   std::vector<modelCDMPackage*> packages = this->project->GetPackages();
224   for (int i = 0; i < (int)(packages.size()); i++)
225     {
226       if(packages[i]->GetName() == crea::wx2std(event.GetURL()))
227         {
228           thePackage = packages[i];
229           break;
230         }
231     }
232
233   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
234   newEvent->SetClientData(thePackage);
235   newEvent->SetId(0);
236   wxPostEvent(this->GetParent(), *newEvent);
237
238   wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
239   newEvent1->SetClientData(thePackage);
240   newEvent1->SetId(0);
241   wxPostEvent(this->GetParent(), *newEvent1);
242
243 }
244
245 void wxCDMPackageManagerPanel::OnBtnCreatePackage(wxCommandEvent& event)
246 {
247   std::string* result;
248
249   wxCDMNewPackageDialog* dialog = new wxCDMNewPackageDialog(this);
250   long userResponse;
251   userResponse = dialog->ShowModal();
252
253   if(userResponse == wxID_FORWARD)
254     {
255       modelCDMIProjectTreeNode* package = this->project->CreatePackage(
256           crea::wx2std(dialog->GetPackageName()),
257           result,
258           crea::wx2std(dialog->GetPackageAuthor()),
259           crea::wx2std(dialog->GetPackageAuthorEmail()),
260           crea::wx2std(dialog->GetPackageDescription())
261       );
262       if(package == NULL)
263         {
264           std::cout << "error creating package: " << *result << std::endl;
265           wxMessageBox(crea::std2wx(*result),_T("New Package - Error!"),wxOK | wxICON_ERROR);
266           event.Skip();
267           return;
268         }
269       wxMessageBox(crea::std2wx("Package successfully created."),_T("New Package - Success!"),wxOK | wxICON_INFORMATION);
270
271       //refreshing tree and description
272       //send event instead of calling parent to avoid crashing
273
274       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
275
276       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
277       newEvent->SetClientData(package);
278       newEvent->SetId(0);
279       wxPostEvent(this->GetParent(), *newEvent);
280       event.Skip();
281     }
282
283   event.Skip();
284 }
285
286 void wxCDMPackageManagerPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
287 {
288   std::string* result;
289   if(!this->project->OpenCMakeListsFile(result))
290     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
291
292   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
293
294   if(this->project->GetCMakeLists() != NULL)
295     {
296       newEvent->SetClientData(this->project->GetCMakeLists());
297       newEvent->SetId(0);
298       wxPostEvent(this->GetParent(), *newEvent);
299     }
300 }
301
302 void wxCDMPackageManagerPanel::OnMouseEnter(wxMouseEvent& event)
303 {
304   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
305   std::string PkgName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
306   modelCDMPackage* thePackage = NULL;
307   std::vector<modelCDMPackage*> packages = this->project->GetPackages();
308   for (int i = 0; i < (int)(packages.size()); i++)
309     {
310       if(packages[i]->GetName() == PkgName)
311         {
312           thePackage = packages[i];
313           break;
314         }
315     }
316   newEvent->SetClientData(thePackage);
317   newEvent->SetId(0);
318   wxPostEvent(this->GetParent(), *newEvent);
319   event.Skip();
320 }
321
322 void wxCDMPackageManagerPanel::OnMouseExit(wxMouseEvent& event)
323 {
324   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
325   std::string PkgName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
326   modelCDMPackage* thePackage = NULL;
327   std::vector<modelCDMPackage*> packages = this->project->GetPackages();
328   project->GetPackages();
329   for (int i = 0; i < (int)(packages.size()); i++)
330     {
331       if(packages[i]->GetName() == PkgName)
332         {
333           thePackage = packages[i];
334           break;
335         }
336     }
337   newEvent->SetClientData(thePackage);
338   newEvent->SetId(0);
339   wxPostEvent(this->GetParent(), *newEvent);
340   event.Skip();
341 }
342
343 void wxCDMPackageManagerPanel::OnCMakeMouseEnter(wxMouseEvent& event)
344 {
345   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
346
347   if(this->project->GetCMakeLists() != NULL)
348     {
349       newEvent->SetClientData(this->project->GetCMakeLists());
350       newEvent->SetId(0);
351       wxPostEvent(this->GetParent(), *newEvent);
352     }
353   event.Skip();
354 }
355
356 void wxCDMPackageManagerPanel::OnCMakeMouseExit(wxMouseEvent& event)
357 {
358   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
359
360   if(this->project->GetCMakeLists() != NULL)
361     {
362       newEvent->SetClientData(this->project->GetCMakeLists());
363       newEvent->SetId(0);
364       wxPostEvent(this->GetParent(), *newEvent);
365     }
366   event.Skip();
367 }
368
369