]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMPackageManagerPanel.cpp
dbd6e73d0495371d5ec3919ffdf69520b0db08d5
[crea.git] / lib / creaDevManagerLib / wxCDMPackageManagerPanel.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  * wxCDMPackageManagerPanel.cpp
30  *
31  *  Created on: Dec 10, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMPackageManagerPanel.h"
36
37 #include "wxCDMMainFrame.h"
38 #include "wxCDMNewPackageDialog.h"
39
40 #include "creaDevManagerIds.h"
41 #include "images/PkIcon64.xpm"
42
43 BEGIN_EVENT_TABLE(wxCDMPackageManagerPanel, wxPanel)
44 EVT_BUTTON(ID_BUTTON_PREV, wxCDMPackageManagerPanel::OnBtnReturn)
45 EVT_HYPERLINK(ID_LINK_SELECT_PACKAGE, wxCDMPackageManagerPanel::OnLnkPackageSelect)
46 EVT_BUTTON(ID_BUTTON_CREATE_PACKAGE, wxCDMPackageManagerPanel::OnBtnCreatePackage)
47 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMPackageManagerPanel::OnBtnEditCMakeLists)
48 END_EVENT_TABLE()
49
50 wxCDMPackageManagerPanel::wxCDMPackageManagerPanel(
51     wxWindow* parent,
52     modelCDMProject* project,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMPackageManagerPanel::Create(parent, project, id, caption, pos, size, style);
61 }
62
63 wxCDMPackageManagerPanel::~wxCDMPackageManagerPanel()
64 {
65 }
66
67 bool wxCDMPackageManagerPanel::Create(
68     wxWindow* parent,
69     modelCDMProject* project,
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->project = project;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMPackageManagerPanel::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, _("Package Management")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PkIcon64)),0, wxALIGN_CENTER, 0);
97
98   //Packages
99   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Packages"));
100   propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available packages to see its details or modify them. Remember that black boxes are created inside packages, any of these packages is available."));
101   wxPanel* propertiesPanel = new wxPanel(this);
102   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
103
104   std::vector<modelCDMPackage*> packages = this->project->GetPackages();
105   for (int i = 0; i < packages.size(); i++)
106     {
107       wxHyperlinkCtrl* pPackagelk = new wxHyperlinkCtrl(propertiesPanel,ID_LINK_SELECT_PACKAGE, crea::std2wx(packages[i]->GetName().c_str()), crea::std2wx(packages[i]->GetName().c_str()));
108       std::string tt = "Author: " + packages[i]->GetAuthors() + "\nDescription: " + packages[i]->GetDescription();
109       pPackagelk->SetToolTip(crea::std2wx(tt));
110       propertiesPanelSizer -> Add(pPackagelk, 0, wxALIGN_LEFT | wxALL, 5);
111     }
112
113   propertiesPanel->SetSizer(propertiesPanelSizer);
114   propertiesPanelSizer->Fit(propertiesPanel);
115   propertiesBox->Add(propertiesPanel, 0, wxALL, 5);
116
117   sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
118
119   //Actions
120   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
121   wxPanel* actionsPanel = new wxPanel(this);
122   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
123
124   wxButton* createPkgbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_PACKAGE, _T("Create Package"));
125   createPkgbt->SetToolTip(wxT("Create a new package for this project."));
126   actionsPanelSizer->Add(createPkgbt, 0, wxALL, 5);
127   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
128   editCMakebt->SetToolTip(wxT("Edit the CMakeLists.txt file of this project."));
129   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
130
131   actionsPanel->SetSizer(actionsPanelSizer);
132   actionsPanelSizer->Fit(actionsPanel);
133   actionsBox->Add(actionsPanel, 0, wxEXPAND);
134   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
135
136   //Assign sizer
137   SetSizer(sizer);
138   sizer->SetSizeHints(this);
139 }
140
141 void wxCDMPackageManagerPanel::OnBtnReturn(wxCommandEvent& event)
142 {
143   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
144   newEvent->SetInt(project->GetId());
145   newEvent->SetId(0);
146   wxPostEvent(this->GetParent(), *newEvent);
147 }
148
149 void wxCDMPackageManagerPanel::OnLnkPackageSelect(wxHyperlinkEvent& event)
150 {
151   int packageId = 0;
152   std::vector<modelCDMPackage*> packages = this->project->GetPackages();
153   for (int i = 0; i < packages.size(); i++)
154     {
155       if(packages[i]->GetName() == crea::wx2std(event.GetURL()))
156         {
157           packageId = packages[i]->GetId();
158           break;
159         }
160     }
161
162   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
163   newEvent->SetInt(packageId);
164   newEvent->SetId(0);
165   wxPostEvent(this->GetParent(), *newEvent);
166
167 }
168
169 void wxCDMPackageManagerPanel::OnBtnCreatePackage(wxCommandEvent& event)
170 {
171   std::string* result;
172
173   wxCDMNewPackageDialog* dialog = new wxCDMNewPackageDialog(this);
174   long userResponse;
175   userResponse = dialog->ShowModal();
176
177   if(userResponse == wxID_FORWARD)
178     {
179       modelCDMIProjectTreeNode* package = this->project->CreatePackage(
180           crea::wx2std(dialog->GetPackageName()),
181           result,
182           crea::wx2std(dialog->GetPackageAuthor()),
183           crea::wx2std(dialog->GetPackageAuthorEmail()),
184           crea::wx2std(dialog->GetPackageDescription())
185       );
186       if(package == NULL)
187         {
188           std::cout << "error creating package: " << *result << std::endl;
189           wxMessageBox(crea::std2wx(*result),_T("New Package - Error!"),wxOK | wxICON_ERROR);
190           event.Skip();
191           return;
192         }
193       wxMessageBox(crea::std2wx("Package successfully created."),_T("New Package - Success!"),wxOK | wxICON_INFORMATION);
194
195       //refreshing tree and description
196       //send event instead of calling parent to avoid crashing
197
198       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
199
200       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
201       newEvent->SetInt(package->GetId());
202       newEvent->SetId(0);
203       wxPostEvent(this->GetParent(), *newEvent);
204       event.Skip();
205     }
206
207   event.Skip();
208 }
209
210 void wxCDMPackageManagerPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
211 {
212   //TODO: implement method
213   std::cerr << "Event OnBtnCreatePackage not implemented" << std::endl;
214   event.Skip();
215 }
216
217