]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMLibDescriptionPanel.cpp
Feature #1711
[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_BUTTON(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 END_EVENT_TABLE()
51
52 wxCDMLibDescriptionPanel::wxCDMLibDescriptionPanel(
53     wxWindow* parent,
54     modelCDMLib* lib,
55     wxWindowID id,
56     const wxString& caption,
57     const wxPoint& pos,
58     const wxSize& size,
59     long style
60 )
61 {
62   wxCDMLibDescriptionPanel::Create(parent, lib, id, caption, pos, size, style);
63 }
64
65 wxCDMLibDescriptionPanel::~wxCDMLibDescriptionPanel()
66 {
67 }
68
69 bool wxCDMLibDescriptionPanel::Create(
70     wxWindow* parent,
71     modelCDMLib* lib,
72     wxWindowID id,
73     const wxString& caption,
74     const wxPoint& pos,
75     const wxSize& size,
76     long style
77 )
78 {
79   wxPanel::Create(parent, id, pos, size, style);
80   this->lib = lib;
81   CreateControls();
82   return TRUE;
83 }
84
85 void wxCDMLibDescriptionPanel::CreateControls()
86 {
87   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
88
89   //Link to return
90   wxButton* returnbt = new wxButton(this, ID_BUTTON_PREV, wxT("Return to project"));
91   returnbt->SetToolTip(wxT("Return to the active project description."));
92   sizer->Add(returnbt, 0, wxALIGN_CENTER | wxALL, 5);
93   //Header
94   wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
95   {
96     //Image
97     headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LbIcon64)),0, wxALIGN_CENTER, 0);
98     wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
99     //Title
100     textSizer->Add(new wxStaticText(this, -1, _("Library Management")),0, wxALIGN_LEFT, 0);
101     headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
102   }
103   sizer->Add(headerSizer, 0, wxALIGN_CENTER);
104
105   //Libraries
106   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Libraries"));
107   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available libraries to see its details or modify them."));
108   wxPanel* propertiesPanel = new wxPanel(this);
109   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
110
111   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
112   for (int i = 0; i < libraries.size(); i++)
113     {
114       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(propertiesPanel, ID_LINK_SELECT_LIBRARY, crea::std2wx(libraries[i]->GetName().c_str()), crea::std2wx(libraries[i]->GetName().c_str()));
115       pLibrarylk->SetWindowStyle(wxALIGN_LEFT);
116       std::string tt = "Name: " + libraries[i]->GetName() + "\n";
117       tt += "Location: " + libraries[i]->GetPath();
118       pLibrarylk->SetToolTip(crea::std2wx(tt.c_str()));
119       pLibrarylk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnMouseEnter,NULL,this);
120       pLibrarylk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnMouseExit,NULL,this);
121       propertiesPanelSizer -> Add(pLibrarylk, 0, wxEXPAND | wxALL, 5);
122     }
123
124   propertiesPanel->SetSizer(propertiesPanelSizer);
125   propertiesPanelSizer->Fit(propertiesPanel);
126   propertiesBox->Add(propertiesPanel, 1, wxALL | wxEXPAND, 5);
127   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
128
129   //Actions
130   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
131   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new library or make any change to the lib's CMakeLists.txt file by selecting the desired action."));
132   wxPanel* actionsPanel = new wxPanel(this);
133   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
134
135   //actionsGrid Sizer
136   wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15);
137
138   wxButton* createLibrarybt = new wxButton(actionsPanel, ID_BUTTON_CREATE_LIBRARY, _T("A. Create Library"));
139   createLibrarybt->SetToolTip(wxT("Create a new library for this project."));
140   actionsGridSizer->Add(createLibrarybt, 1, wxALL | wxEXPAND, 5);
141   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("B. Edit CMakeLists File"));
142   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the Lib's CMakeLists.txt file."));
143   editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnCMakeMouseEnter,NULL,this);
144   editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnCMakeMouseExit,NULL,this);
145   actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
146   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("C. Open Libraries Folder"));
147   openFolderbt->SetToolTip(wxT("Open the lib folder in the file explorer."));
148   actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
149
150   actionsGridSizer->AddGrowableCol(0,1);
151   actionsGridSizer->AddGrowableCol(1,1);
152
153   actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
154
155   actionsPanel->SetSizer(actionsPanelSizer);
156   actionsPanelSizer->Fit(actionsPanel);
157   actionsBox->Add(actionsPanel, 0, wxALL, 5);
158   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
159
160   //Assign sizer
161   SetSizer(sizer);
162   sizer->SetSizeHints(this);
163
164   if (((wxCDMMainFrame*)this->GetParent())->isHelp())
165     {
166       wxCDMLibHelpDialog* helpDialog = new wxCDMLibHelpDialog(this->GetParent(), this->lib, wxID_ANY);
167       helpDialog->Show(true);
168     }
169 }
170
171 void wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
172 {
173   //get name
174   wxString libraryName = wxGetTextFromUser(
175       _T("Enter the new library name"),
176       _T("New Library - creaDevManager"),
177       _T("")
178   );
179   //check name
180   if(libraryName.Len() > 0)
181     {
182       std::string* result;
183       //create library
184       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
185       //check library created
186       if(library == NULL)
187         {
188           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
189           return;
190         }
191       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
192
193       //refreshing tree and description
194       //send event instead of calling parent to avoid crashing
195
196       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
197
198       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
199       newEvent->SetInt(library->GetId());
200       wxPostEvent(this->GetParent(), *newEvent);
201     }
202 }
203
204 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
205 {
206   std::string* result;
207   if(!this->lib->OpenCMakeListsFile(result))
208     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
209
210   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
211
212   if(this->lib->GetCMakeLists() != NULL)
213     {
214       int CMId = this->lib->GetCMakeLists()->GetId();
215       newEvent->SetInt(CMId);
216       newEvent->SetId(0);
217       wxPostEvent(this->GetParent(), *newEvent);
218     }
219 }
220
221 void wxCDMLibDescriptionPanel::OnLnkLibrarySelect(wxHyperlinkEvent& event)
222 {
223   int libraryId = 0;
224   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
225   for (int i = 0; i < libraries.size(); i++)
226     {
227       if(libraries[i]->GetName() == crea::wx2std(event.GetURL()))
228         {
229           libraryId = libraries[i]->GetId();
230           break;
231         }
232     }
233
234   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
235   newEvent->SetInt(libraryId);
236   newEvent->SetId(0);
237   wxPostEvent(this->GetParent(), *newEvent);
238
239   wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
240   newEvent1->SetInt(libraryId);
241   newEvent1->SetId(0);
242   wxPostEvent(this->GetParent(), *newEvent1);
243
244 }
245
246 void wxCDMLibDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
247 {
248   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
249   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
250   newEvent->SetId(0);
251   wxPostEvent(this->GetParent(), *newEvent);
252 }
253
254 void wxCDMLibDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
255 {
256   std::string* result;
257   if(!this->lib->OpenInFileExplorer(result))
258     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
259 }
260
261 void wxCDMLibDescriptionPanel::OnMouseEnter(wxMouseEvent& event)
262 {
263   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
264   std::string LibName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
265   int lbId = 0;
266   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
267   for (int i = 0; i < libraries.size(); i++)
268     {
269       if(libraries[i]->GetName() == LibName)
270         {
271           lbId = libraries[i]->GetId();
272           break;
273         }
274     }
275   newEvent->SetInt(lbId);
276   newEvent->SetId(0);
277   wxPostEvent(this->GetParent(), *newEvent);
278   event.Skip();
279 }
280
281 void wxCDMLibDescriptionPanel::OnMouseExit(wxMouseEvent& event)
282 {
283   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
284   std::string LibName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
285   int lbId = 0;
286   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
287   for (int i = 0; i < libraries.size(); i++)
288     {
289       if(libraries[i]->GetName() == LibName)
290         {
291           lbId = libraries[i]->GetId();
292           break;
293         }
294     }
295   newEvent->SetInt(lbId);
296   newEvent->SetId(0);
297   wxPostEvent(this->GetParent(), *newEvent);
298   event.Skip();
299 }
300
301 void wxCDMLibDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
302 {
303   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
304
305   if(this->lib->GetCMakeLists() != NULL)
306     {
307       int CMId = this->lib->GetCMakeLists()->GetId();
308       newEvent->SetInt(CMId);
309       newEvent->SetId(0);
310       wxPostEvent(this->GetParent(), *newEvent);
311     }
312   event.Skip();
313 }
314
315 void wxCDMLibDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
316 {
317   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
318
319   if(this->lib->GetCMakeLists() != NULL)
320     {
321       int CMId = this->lib->GetCMakeLists()->GetId();
322       newEvent->SetInt(CMId);
323       newEvent->SetId(0);
324       wxPostEvent(this->GetParent(), *newEvent);
325     }
326   event.Skip();
327 }