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