2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
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
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.
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
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 # ------------------------------------------------------------------------
29 * wxCDMPackageManagerPanel.cpp
31 * Created on: Dec 10, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "wxCDMPackageManagerPanel.h"
37 #include "wxCDMMainFrame.h"
38 #include "wxCDMNewPackageDialog.h"
40 #include "wxCDMPackageManagerHelpDialog.h"
42 #include "creaDevManagerIds.h"
43 #include "images/PkIcon64.xpm"
45 BEGIN_EVENT_TABLE(wxCDMPackageManagerPanel, wxPanel)
46 EVT_HYPERLINK(ID_BUTTON_PREV, wxCDMPackageManagerPanel::OnBtnReturn)
47 EVT_HYPERLINK(ID_LINK_SELECT_PACKAGE, wxCDMPackageManagerPanel::OnLnkPackageSelect)
48 EVT_BUTTON(ID_BUTTON_CREATE_PACKAGE, wxCDMPackageManagerPanel::OnBtnCreatePackage)
49 EVT_COMMAND(wxID_ANY, wxEVT_COMMAND_TOOL_CLICKED, wxCDMPackageManagerPanel::OnBtnCreatePackage)
50 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMPackageManagerPanel::OnBtnEditCMakeLists)
51 EVT_COMMAND(wxID_ANY, wxEVT_COMMAND_TOOL_ENTER, wxCDMPackageManagerPanel::OnBtnEditCMakeLists)
52 EVT_CHECKBOX(ID_CHECK_INCLUDE_PACKAGE, wxCDMPackageManagerPanel::OnChBPackageChange)
55 wxCDMPackageManagerPanel::wxCDMPackageManagerPanel(
57 modelCDMProject* project,
59 const wxString& caption,
65 wxCDMPackageManagerPanel::Create(parent, project, id, caption, pos, size, style);
68 wxCDMPackageManagerPanel::~wxCDMPackageManagerPanel()
72 bool wxCDMPackageManagerPanel::Create(
74 modelCDMProject* project,
76 const wxString& caption,
82 wxPanel::Create(parent, id, pos, size, style);
83 this->project = project;
85 // this part makes the scrollbars show up
86 this->FitInside(); // ask the sizer about the needed size
87 this->SetScrollRate(5, 5);
91 void wxCDMPackageManagerPanel::CreateControls()
93 wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
96 wxHyperlinkCtrl* returnLnk = new wxHyperlinkCtrl(this, ID_BUTTON_PREV, crea::std2wx(this->project->GetName()), crea::std2wx(this->project->GetPath()), wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE);
97 returnLnk->SetWindowStyle(wxNO_BORDER);
98 returnLnk->SetToolTip(wxT("Return to the active project description."));
99 sizer->Add(returnLnk, 0, wxALIGN_CENTER | wxALL, 5);
102 wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
105 headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PkIcon64)),0, wxALIGN_CENTER, 0);
106 wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
108 textSizer->Add(new wxStaticText(this, -1, _("Package Management")),0, wxALIGN_LEFT, 0);
110 headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
112 sizer->Add(headerSizer, 0, wxALIGN_CENTER);
115 wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Packages"));
116 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."));
117 wxPanel* propertiesPanel = new wxPanel(this);
119 std::vector<modelCDMPackage*> packages = this->project->GetPackages();
120 wxFlexGridSizer* propertiesGridSizer = new wxFlexGridSizer(packages.size()+1, 3, 9, 5);
122 wxStaticText* ChBTitle = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Include in\nCMake"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
123 wxStaticText* LkTitle = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Package Name"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
124 wxStaticText* HlpTitle = new wxStaticText(propertiesPanel, wxID_ANY, wxT("Help"), wxDefaultPosition, wxDefaultSize, wxALIGN_CENTRE_HORIZONTAL);
126 propertiesGridSizer -> Add(ChBTitle, 0, wxEXPAND | wxALL, 5);
127 propertiesGridSizer -> Add(LkTitle, 0, wxEXPAND | wxALL, 5);
128 propertiesGridSizer -> Add(HlpTitle, 0, wxEXPAND | wxALL, 5);
130 for (int i = 0; i < (int)(packages.size()); i++)
132 //checkbox for cmake inclusion
133 wxCheckBox* pPackageChB = new wxCheckBox(propertiesPanel, ID_CHECK_INCLUDE_PACKAGE, wxT(""), wxDefaultPosition, wxDefaultSize, wxALIGN_RIGHT);
134 pPackageChB->SetName(crea::std2wx(packages[i]->GetName()));
135 std::string tt = "if this box is checked the the " + packages[i]->GetName() + " package is included in the project compilation.";
136 pPackageChB->SetToolTip(crea::std2wx(tt));
137 pPackageChB->SetValue(this->project->IsPackageIncluded(packages[i]->GetName()));
138 propertiesGridSizer -> Add(pPackageChB, 0, wxEXPAND | wxALIGN_CENTER);
140 //link to package with description
141 wxHyperlinkCtrl* pPackagelk = new wxHyperlinkCtrl(propertiesPanel, ID_LINK_SELECT_PACKAGE, crea::std2wx(packages[i]->GetName().c_str()), crea::std2wx(packages[i]->GetName().c_str()), wxDefaultPosition, wxDefaultSize, wxHL_DEFAULT_STYLE);
142 pPackagelk->SetWindowStyle(wxALIGN_LEFT | wxNO_BORDER);
143 tt = "Name: " + packages[i]->GetName() + "\n";
144 tt += "Location: " + packages[i]->GetPath();
145 pPackagelk->SetToolTip(crea::std2wx(tt));
146 pPackagelk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnMouseEnter,NULL,this);
147 pPackagelk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnMouseExit,NULL,this);
148 propertiesGridSizer -> Add(pPackagelk, 0, wxEXPAND);
151 wxButton* pPackageHlp = new wxButton(propertiesPanel, wxID_ANY, wxT("?"), wxDefaultPosition, wxDefaultSize, wxBU_EXACTFIT);
152 pPackageHlp->Enable(false);
153 tt = "When this package is included in the CMakeLists file, the\nfollowing line is included in the CMakeList.txt file in the\nproject folder:\n"
154 "ADD_SUBDIRECTORY(" + packages[i]->GetName() + ")";
155 pPackageHlp->SetToolTip(crea::std2wx(tt));
157 propertiesGridSizer -> Add(pPackageHlp, 0, wxEXPAND | wxALIGN_CENTER);
160 propertiesGridSizer->AddGrowableCol(1,1);
162 propertiesPanel->SetSizer(propertiesGridSizer);
163 propertiesGridSizer->Fit(propertiesPanel);
166 propertiesBox->Add(propertiesPanel, 1, wxALL | wxEXPAND, 5);
168 sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
171 wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
172 wxPanel* actionsPanel = new wxPanel(this);
173 wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
176 wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(1, 2, 9, 15);
178 wxButton* createPkgbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_PACKAGE, _T("A. Create Package"));
179 createPkgbt->SetToolTip(wxT("Create a new package for this project."));
180 actionsGridSizer->Add(createPkgbt, 1, wxALL | wxEXPAND, 5);
181 wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
182 editCMakebt->SetToolTip(wxT("Edit the CMakeLists.txt file of this project."));
183 editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnCMakeMouseEnter,NULL,this);
184 editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMPackageManagerPanel::OnCMakeMouseExit,NULL,this);
185 actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
187 actionsGridSizer->AddGrowableCol(0,1);
188 actionsGridSizer->AddGrowableCol(1,1);
190 actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
191 actionsPanel->SetSizer(actionsPanelSizer);
192 actionsPanelSizer->Fit(actionsPanel);
193 actionsBox->Add(actionsPanel, 1, wxEXPAND);
194 sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
198 sizer->SetSizeHints(this);
200 if (((wxCDMMainFrame*)this->GetParent())->isHelp())
202 wxCDMPackageManagerHelpDialog* helpDialog = new wxCDMPackageManagerHelpDialog(this->GetParent(), this, wxID_ANY);
203 helpDialog->Show(true);
207 modelCDMProject* wxCDMPackageManagerPanel::GetProject() const
209 return this->project;
212 void wxCDMPackageManagerPanel::OnBtnReturn(wxHyperlinkEvent& event)
214 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
215 newEvent->SetClientData(project);
217 wxPostEvent(this->GetParent(), *newEvent);
220 void wxCDMPackageManagerPanel::OnChBPackageChange(wxCommandEvent& event)
222 this->project->SetPackageInclude(
223 crea::wx2std(((wxCheckBox*)event.GetEventObject())->GetName()),
224 ((wxCheckBox*)event.GetEventObject())->GetValue()
228 void wxCDMPackageManagerPanel::OnLnkPackageSelect(wxHyperlinkEvent& event)
230 modelCDMPackage* thePackage = NULL;
231 std::vector<modelCDMPackage*> packages = this->project->GetPackages();
232 for (int i = 0; i < (int)(packages.size()); i++)
234 if(packages[i]->GetName() == crea::wx2std(event.GetURL()))
236 thePackage = packages[i];
241 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
242 newEvent->SetClientData(thePackage);
244 wxPostEvent(this->GetParent(), *newEvent);
246 wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
247 newEvent1->SetClientData(thePackage);
249 wxPostEvent(this->GetParent(), *newEvent1);
253 void wxCDMPackageManagerPanel::OnBtnCreatePackage(wxCommandEvent& event)
257 wxCDMNewPackageDialog* dialog = new wxCDMNewPackageDialog(this);
259 userResponse = dialog->ShowModal();
261 if(userResponse == wxID_FORWARD)
263 modelCDMIProjectTreeNode* package = this->project->CreatePackage(
264 crea::wx2std(dialog->GetPackageName()),
266 crea::wx2std(dialog->GetPackageAuthor()),
267 crea::wx2std(dialog->GetPackageAuthorEmail()),
268 crea::wx2std(dialog->GetPackageDescription())
272 std::cout << "error creating package: " << *result << std::endl;
273 wxMessageBox(crea::std2wx(*result),_T("New Package - Error!"),wxOK | wxICON_ERROR);
277 wxMessageBox(crea::std2wx("Package successfully created."),_T("New Package - Success!"),wxOK | wxICON_INFORMATION);
279 //refreshing tree and description
280 //send event instead of calling parent to avoid crashing
282 ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
284 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
285 newEvent->SetClientData(package);
287 wxPostEvent(this->GetParent(), *newEvent);
294 void wxCDMPackageManagerPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
297 if(!this->project->OpenCMakeListsFile(result))
298 wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
300 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
302 if(this->project->GetCMakeLists() != NULL)
304 newEvent->SetClientData(this->project->GetCMakeLists());
306 wxPostEvent(this->GetParent(), *newEvent);
310 void wxCDMPackageManagerPanel::OnMouseEnter(wxMouseEvent& event)
312 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
313 std::string PkgName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
314 modelCDMPackage* thePackage = NULL;
315 std::vector<modelCDMPackage*> packages = this->project->GetPackages();
316 for (int i = 0; i < (int)(packages.size()); i++)
318 if(packages[i]->GetName() == PkgName)
320 thePackage = packages[i];
324 newEvent->SetClientData(thePackage);
326 wxPostEvent(this->GetParent(), *newEvent);
330 void wxCDMPackageManagerPanel::OnMouseExit(wxMouseEvent& event)
332 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
333 std::string PkgName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
334 modelCDMPackage* thePackage = NULL;
335 std::vector<modelCDMPackage*> packages = this->project->GetPackages();
336 project->GetPackages();
337 for (int i = 0; i < (int)(packages.size()); i++)
339 if(packages[i]->GetName() == PkgName)
341 thePackage = packages[i];
345 newEvent->SetClientData(thePackage);
347 wxPostEvent(this->GetParent(), *newEvent);
351 void wxCDMPackageManagerPanel::OnCMakeMouseEnter(wxMouseEvent& event)
353 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
355 if(this->project->GetCMakeLists() != NULL)
357 newEvent->SetClientData(this->project->GetCMakeLists());
359 wxPostEvent(this->GetParent(), *newEvent);
364 void wxCDMPackageManagerPanel::OnCMakeMouseExit(wxMouseEvent& event)
366 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
368 if(this->project->GetCMakeLists() != NULL)
370 newEvent->SetClientData(this->project->GetCMakeLists());
372 wxPostEvent(this->GetParent(), *newEvent);