]> 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   sizer->Add(new wxButton(this, ID_BUTTON_PREV, wxT("Return to project")), 0, wxALIGN_CENTER | wxALL, 5);
88
89   //Title
90   sizer->Add(new wxStaticText(this, -1, _("Library Management")),0, wxALIGN_CENTER, 0);
91
92   //Image
93   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LbIcon64)),0, wxALIGN_CENTER, 0);
94
95   //Libraries
96   wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Available Libraries"));
97   wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL);
98
99   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
100   for (int i = 0; i < libraries.size(); i++)
101     {
102       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(this,ID_LINK_SELECT_LIBRARY, crea::std2wx(libraries[i]->GetName().c_str()), crea::std2wx(libraries[i]->GetName().c_str()));
103       propertiesBoxInnerSizer -> Add(pLibrarylk, 0, wxALIGN_LEFT | wxALL, 5);
104     }
105
106   sizer -> Add(propertiesBoxInnerSizer, 0, wxEXPAND | wxALL, 10);
107
108   //Actions
109   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
110   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
111   sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
112
113   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_LIBRARY, _T("Create Library")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
114   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
115
116   //Assign sizer
117   actionsBoxInnerSizer->SetSizeHints(this);
118
119   SetSizer(sizer);
120   sizer->SetSizeHints(this);
121 }
122
123 void wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
124 {
125   //get name
126   wxString libraryName = wxGetTextFromUser(
127       _T("Enter the new library name"),
128       _T("New Library - creaDevManager"),
129       _T("")
130   );
131   //check name
132   if(libraryName.Len() > 0)
133     {
134       std::string* result;
135       //create library
136       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
137       //check library created
138       if(library == NULL)
139         {
140           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
141           return;
142         }
143       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
144
145       //refreshing tree and description
146       //send event instead of calling parent to avoid crashing
147
148       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
149
150       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
151       newEvent->SetInt(library->GetId());
152       wxPostEvent(this->GetParent(), *newEvent);
153     }
154 }
155
156 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
157 {
158   //TODO: implement method
159   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
160   event.Skip();
161 }
162
163 void wxCDMLibDescriptionPanel::OnLnkLibrarySelect(wxHyperlinkEvent& event)
164 {
165   int libraryId = 0;
166   std::vector<modelCDMLibrary*> libraries = this->lib->GetLibraries();
167   for (int i = 0; i < libraries.size(); i++)
168     {
169       if(libraries[i]->GetName() == crea::wx2std(event.GetURL()))
170         {
171           libraryId = libraries[i]->GetId();
172           break;
173         }
174     }
175
176   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
177   newEvent->SetInt(libraryId);
178   newEvent->SetId(0);
179   wxPostEvent(this->GetParent(), *newEvent);
180
181 }
182
183 void wxCDMLibDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
184 {
185   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
186   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
187   newEvent->SetId(0);
188   wxPostEvent(this->GetParent(), *newEvent);
189 }