]> 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   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
133   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Libraries Folder"));
134   openFolderbt->SetToolTip(wxT("Open the lib folder in the file explorer."));
135   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
136
137   actionsPanel->SetSizer(actionsPanelSizer);
138   actionsPanelSizer->Fit(actionsPanel);
139   actionsBox->Add(actionsPanel, 0, wxALL, 5);
140   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
141
142   //Assign sizer
143   SetSizer(sizer);
144   sizer->SetSizeHints(this);
145 }
146
147 void wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
148 {
149   //get name
150   wxString libraryName = wxGetTextFromUser(
151       _T("Enter the new library name"),
152       _T("New Library - creaDevManager"),
153       _T("")
154   );
155   //check name
156   if(libraryName.Len() > 0)
157     {
158       std::string* result;
159       //create library
160       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
161       //check library created
162       if(library == NULL)
163         {
164           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
165           return;
166         }
167       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
168
169       //refreshing tree and description
170       //send event instead of calling parent to avoid crashing
171
172       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
173
174       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
175       newEvent->SetInt(library->GetId());
176       wxPostEvent(this->GetParent(), *newEvent);
177     }
178 }
179
180 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
181 {
182   //TODO: implement method
183   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
184   event.Skip();
185 }
186
187 void wxCDMLibDescriptionPanel::OnLnkLibrarySelect(wxHyperlinkEvent& event)
188 {
189   int libraryId = 0;
190   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
191   for (int i = 0; i < libraries.size(); i++)
192     {
193       if(libraries[i]->GetName() == crea::wx2std(event.GetURL()))
194         {
195           libraryId = libraries[i]->GetId();
196           break;
197         }
198     }
199
200   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
201   newEvent->SetInt(libraryId);
202   newEvent->SetId(0);
203   wxPostEvent(this->GetParent(), *newEvent);
204
205 }
206
207 void wxCDMLibDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
208 {
209   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
210   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
211   newEvent->SetId(0);
212   wxPostEvent(this->GetParent(), *newEvent);
213 }
214
215 void wxCDMLibDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
216 {
217   //TODO: implement method
218   std::cerr << "Event OnBtnOpenFolder not implemented" << std::endl;
219   event.Skip();
220 }
221
222 void wxCDMLibDescriptionPanel::OnMouseEnter(wxMouseEvent& event)
223 {
224   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
225   std::string LibName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
226   int lbId = 0;
227   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
228   for (int i = 0; i < libraries.size(); i++)
229     {
230       if(libraries[i]->GetName() == LibName)
231         {
232           lbId = libraries[i]->GetId();
233           break;
234         }
235     }
236   newEvent->SetInt(lbId);
237   newEvent->SetId(0);
238   wxPostEvent(this->GetParent(), *newEvent);
239   event.Skip();
240 }
241
242 void wxCDMLibDescriptionPanel::OnMouseExit(wxMouseEvent& event)
243 {
244   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
245   std::string LibName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
246   int lbId = 0;
247   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
248   for (int i = 0; i < libraries.size(); i++)
249     {
250       if(libraries[i]->GetName() == LibName)
251         {
252           lbId = libraries[i]->GetId();
253           break;
254         }
255     }
256   newEvent->SetInt(lbId);
257   newEvent->SetId(0);
258   wxPostEvent(this->GetParent(), *newEvent);
259   event.Skip();
260 }