]> 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 "creaDevManagerIds.h"
40 #include "images/LbIcon64.xpm"
41
42 BEGIN_EVENT_TABLE(wxCDMLibDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_PREV, wxCDMLibDescriptionPanel::OnBtnReturn)
44 EVT_HYPERLINK(ID_LINK_SELECT_LIBRARY, wxCDMLibDescriptionPanel::OnLnkLibrarySelect)
45 EVT_BUTTON(ID_BUTTON_CREATE_LIBRARY, wxCDMLibDescriptionPanel::OnBtnCreateLibrary)
46 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMLibDescriptionPanel::OnBtnEditCMakeLists)
47 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMLibDescriptionPanel::OnBtnOpenFolder)
48 END_EVENT_TABLE()
49
50 wxCDMLibDescriptionPanel::wxCDMLibDescriptionPanel(
51     wxWindow* parent,
52     modelCDMLib* lib,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMLibDescriptionPanel::Create(parent, lib, id, caption, pos, size, style);
61 }
62
63 wxCDMLibDescriptionPanel::~wxCDMLibDescriptionPanel()
64 {
65 }
66
67 bool wxCDMLibDescriptionPanel::Create(
68     wxWindow* parent,
69     modelCDMLib* lib,
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->lib = lib;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMLibDescriptionPanel::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, _("Library Management")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LbIcon64)),0, wxALIGN_CENTER, 0);
97
98   //Libraries
99   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Libraries"));
100   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available libraries to see its details or modify them."));
101   wxPanel* propertiesPanel = new wxPanel(this);
102   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
103
104   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
105   for (int i = 0; i < libraries.size(); i++)
106     {
107       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(propertiesPanel, ID_LINK_SELECT_LIBRARY, crea::std2wx(libraries[i]->GetName().c_str()), crea::std2wx(libraries[i]->GetName().c_str()));
108       std::string tt = "Name: " + libraries[i]->GetName() + "\n";
109       tt += "Location: " + libraries[i]->GetPath();
110       pLibrarylk->SetToolTip(crea::std2wx(tt.c_str()));
111       pLibrarylk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnMouseEnter,NULL,this);
112       pLibrarylk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnMouseExit,NULL,this);
113       propertiesPanelSizer -> Add(pLibrarylk, 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 library or make any change to the lib's CMakeLists.txt file by selecting the desired action."));
124   wxPanel* actionsPanel = new wxPanel(this);
125   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
126
127   wxButton* createLibrarybt = new wxButton(actionsPanel, ID_BUTTON_CREATE_LIBRARY, _T("Create Library"));
128   createLibrarybt->SetToolTip(wxT("Create a new library for this project."));
129   actionsPanelSizer->Add(createLibrarybt, 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 Lib's CMakeLists.txt file."));
132   editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnCMakeMouseEnter,NULL,this);
133   editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMLibDescriptionPanel::OnCMakeMouseExit,NULL,this);
134   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
135   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Libraries Folder"));
136   openFolderbt->SetToolTip(wxT("Open the lib 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 wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
150 {
151   //get name
152   wxString libraryName = wxGetTextFromUser(
153       _T("Enter the new library name"),
154       _T("New Library - creaDevManager"),
155       _T("")
156   );
157   //check name
158   if(libraryName.Len() > 0)
159     {
160       std::string* result;
161       //create library
162       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
163       //check library created
164       if(library == NULL)
165         {
166           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
167           return;
168         }
169       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
170
171       //refreshing tree and description
172       //send event instead of calling parent to avoid crashing
173
174       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
175
176       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
177       newEvent->SetInt(library->GetId());
178       wxPostEvent(this->GetParent(), *newEvent);
179     }
180 }
181
182 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
183 {
184   std::string* result;
185   if(!this->lib->OpenCMakeListsFile(result))
186     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
187
188   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
189
190   if(this->lib->GetCMakeLists() != NULL)
191     {
192       int CMId = this->lib->GetCMakeLists()->GetId();
193       newEvent->SetInt(CMId);
194       newEvent->SetId(0);
195       wxPostEvent(this->GetParent(), *newEvent);
196     }
197 }
198
199 void wxCDMLibDescriptionPanel::OnLnkLibrarySelect(wxHyperlinkEvent& event)
200 {
201   int libraryId = 0;
202   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
203   for (int i = 0; i < libraries.size(); i++)
204     {
205       if(libraries[i]->GetName() == crea::wx2std(event.GetURL()))
206         {
207           libraryId = libraries[i]->GetId();
208           break;
209         }
210     }
211
212   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
213   newEvent->SetInt(libraryId);
214   newEvent->SetId(0);
215   wxPostEvent(this->GetParent(), *newEvent);
216
217   wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
218   newEvent1->SetInt(libraryId);
219   newEvent1->SetId(0);
220   wxPostEvent(this->GetParent(), *newEvent1);
221
222 }
223
224 void wxCDMLibDescriptionPanel::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 wxCDMLibDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
233 {
234   std::string* result;
235   if(!this->lib->OpenInFileExplorer(result))
236     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
237 }
238
239 void wxCDMLibDescriptionPanel::OnMouseEnter(wxMouseEvent& event)
240 {
241   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
242   std::string LibName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
243   int lbId = 0;
244   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
245   for (int i = 0; i < libraries.size(); i++)
246     {
247       if(libraries[i]->GetName() == LibName)
248         {
249           lbId = libraries[i]->GetId();
250           break;
251         }
252     }
253   newEvent->SetInt(lbId);
254   newEvent->SetId(0);
255   wxPostEvent(this->GetParent(), *newEvent);
256   event.Skip();
257 }
258
259 void wxCDMLibDescriptionPanel::OnMouseExit(wxMouseEvent& event)
260 {
261   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
262   std::string LibName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
263   int lbId = 0;
264   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
265   for (int i = 0; i < libraries.size(); i++)
266     {
267       if(libraries[i]->GetName() == LibName)
268         {
269           lbId = libraries[i]->GetId();
270           break;
271         }
272     }
273   newEvent->SetInt(lbId);
274   newEvent->SetId(0);
275   wxPostEvent(this->GetParent(), *newEvent);
276   event.Skip();
277 }
278
279 void wxCDMLibDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
280 {
281   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
282
283   if(this->lib->GetCMakeLists() != NULL)
284     {
285       int CMId = this->lib->GetCMakeLists()->GetId();
286       newEvent->SetInt(CMId);
287       newEvent->SetId(0);
288       wxPostEvent(this->GetParent(), *newEvent);
289     }
290   event.Skip();
291 }
292
293 void wxCDMLibDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
294 {
295   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
296
297   if(this->lib->GetCMakeLists() != NULL)
298     {
299       int CMId = this->lib->GetCMakeLists()->GetId();
300       newEvent->SetInt(CMId);
301       newEvent->SetId(0);
302       wxPostEvent(this->GetParent(), *newEvent);
303     }
304   event.Skip();
305 }