]> 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 the 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       propertiesPanelSizer -> Add(pLibrarylk, 0, wxALIGN_LEFT | wxALL, 5);
112     }
113
114   propertiesPanel->SetSizer(propertiesPanelSizer);
115   propertiesPanelSizer->Fit(propertiesPanel);
116   propertiesBox->Add(propertiesPanel, 0, wxALL, 5);
117   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
118
119   //Actions
120   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
121   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new library or make any change to the lib's CMakeLists.txt file by selecting the desired action."));
122   wxPanel* actionsPanel = new wxPanel(this);
123   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
124
125   wxButton* createLibrarybt = new wxButton(actionsPanel, ID_BUTTON_CREATE_LIBRARY, _T("Create Library"));
126   createLibrarybt->SetToolTip(wxT("Create a new library for this project."));
127   actionsPanelSizer->Add(createLibrarybt, 0, wxALL, 5);
128   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
129   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
130   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
131   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Libraries Folder"));
132   openFolderbt->SetToolTip(wxT("Open the lib folder in the file explorer."));
133   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
134
135   actionsPanel->SetSizer(actionsPanelSizer);
136   actionsPanelSizer->Fit(actionsPanel);
137   actionsBox->Add(actionsPanel, 0, wxALL, 5);
138   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
139
140   //Assign sizer
141   SetSizer(sizer);
142   sizer->SetSizeHints(this);
143 }
144
145 void wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
146 {
147   //get name
148   wxString libraryName = wxGetTextFromUser(
149       _T("Enter the new library name"),
150       _T("New Library - creaDevManager"),
151       _T("")
152   );
153   //check name
154   if(libraryName.Len() > 0)
155     {
156       std::string* result;
157       //create library
158       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
159       //check library created
160       if(library == NULL)
161         {
162           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
163           return;
164         }
165       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
166
167       //refreshing tree and description
168       //send event instead of calling parent to avoid crashing
169
170       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
171
172       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
173       newEvent->SetInt(library->GetId());
174       wxPostEvent(this->GetParent(), *newEvent);
175     }
176 }
177
178 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
179 {
180   //TODO: implement method
181   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
182   event.Skip();
183 }
184
185 void wxCDMLibDescriptionPanel::OnLnkLibrarySelect(wxHyperlinkEvent& event)
186 {
187   int libraryId = 0;
188   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
189   for (int i = 0; i < libraries.size(); i++)
190     {
191       if(libraries[i]->GetName() == crea::wx2std(event.GetURL()))
192         {
193           libraryId = libraries[i]->GetId();
194           break;
195         }
196     }
197
198   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
199   newEvent->SetInt(libraryId);
200   newEvent->SetId(0);
201   wxPostEvent(this->GetParent(), *newEvent);
202
203 }
204
205 void wxCDMLibDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
206 {
207   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
208   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
209   newEvent->SetId(0);
210   wxPostEvent(this->GetParent(), *newEvent);
211 }
212
213 void
214 wxCDMLibDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
215 {
216   //TODO: implement method
217   std::cerr << "Event OnBtnOpenFolder not implemented" << std::endl;
218   event.Skip();
219 }