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