]> 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 END_EVENT_TABLE()
48
49 wxCDMLibDescriptionPanel::wxCDMLibDescriptionPanel(
50     wxWindow* parent,
51     modelCDMLib* lib,
52     wxWindowID id,
53     const wxString& caption,
54     const wxPoint& pos,
55     const wxSize& size,
56     long style
57 )
58 {
59   wxCDMLibDescriptionPanel::Create(parent, lib, id, caption, pos, size, style);
60 }
61
62 wxCDMLibDescriptionPanel::~wxCDMLibDescriptionPanel()
63 {
64 }
65
66 bool wxCDMLibDescriptionPanel::Create(
67     wxWindow* parent,
68     modelCDMLib* lib,
69     wxWindowID id,
70     const wxString& caption,
71     const wxPoint& pos,
72     const wxSize& size,
73     long style
74 )
75 {
76   wxPanel::Create(parent, id, pos, size, style);
77   this->lib = lib;
78   CreateControls();
79   return TRUE;
80 }
81
82 void wxCDMLibDescriptionPanel::CreateControls()
83 {
84   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
85
86   //Link to return
87   wxButton* returnbt = new wxButton(this, ID_BUTTON_PREV, wxT("Return to project"));
88   returnbt->SetToolTip(wxT("Return to the active project description."));
89   sizer->Add(returnbt, 0, wxALIGN_CENTER | wxALL, 5);
90
91   //Title
92   sizer->Add(new wxStaticText(this, -1, _("Library Management")),0, wxALIGN_CENTER, 0);
93
94   //Image
95   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LbIcon64)),0, wxALIGN_CENTER, 0);
96
97   //Libraries
98   wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Available Libraries"));
99   wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL);
100
101   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
102   for (int i = 0; i < libraries.size(); i++)
103     {
104       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(this,ID_LINK_SELECT_LIBRARY, crea::std2wx(libraries[i]->GetName().c_str()), crea::std2wx(libraries[i]->GetName().c_str()));
105       propertiesBoxInnerSizer -> Add(pLibrarylk, 0, wxALIGN_LEFT | wxALL, 5);
106     }
107
108   sizer -> Add(propertiesBoxInnerSizer, 0, wxEXPAND | wxALL, 10);
109
110   //Actions
111   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
112   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
113   sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
114
115   wxButton* createLibrarybt = new wxButton(this, ID_BUTTON_CREATE_LIBRARY, _T("Create Library"));
116   createLibrarybt->SetToolTip(wxT("Create a new library for this project."));
117   actionsBoxInnerSizer->Add(createLibrarybt, 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
118   wxButton* editCMakebt = new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
119   editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
120   actionsBoxInnerSizer->Add(editCMakebt, 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
121
122   //Assign sizer
123   actionsBoxInnerSizer->SetSizeHints(this);
124
125   SetSizer(sizer);
126   sizer->SetSizeHints(this);
127 }
128
129 void wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
130 {
131   //get name
132   wxString libraryName = wxGetTextFromUser(
133       _T("Enter the new library name"),
134       _T("New Library - creaDevManager"),
135       _T("")
136   );
137   //check name
138   if(libraryName.Len() > 0)
139     {
140       std::string* result;
141       //create library
142       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
143       //check library created
144       if(library == NULL)
145         {
146           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
147           return;
148         }
149       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
150
151       //refreshing tree and description
152       //send event instead of calling parent to avoid crashing
153
154       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
155
156       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
157       newEvent->SetInt(library->GetId());
158       wxPostEvent(this->GetParent(), *newEvent);
159     }
160 }
161
162 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
163 {
164   //TODO: implement method
165   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
166   event.Skip();
167 }
168
169 void wxCDMLibDescriptionPanel::OnLnkLibrarySelect(wxHyperlinkEvent& event)
170 {
171   int libraryId = 0;
172   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
173   for (int i = 0; i < libraries.size(); i++)
174     {
175       if(libraries[i]->GetName() == crea::wx2std(event.GetURL()))
176         {
177           libraryId = libraries[i]->GetId();
178           break;
179         }
180     }
181
182   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
183   newEvent->SetInt(libraryId);
184   newEvent->SetId(0);
185   wxPostEvent(this->GetParent(), *newEvent);
186
187 }
188
189 void wxCDMLibDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
190 {
191   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
192   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
193   newEvent->SetId(0);
194   wxPostEvent(this->GetParent(), *newEvent);
195 }