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 * wxCDMAppliDescriptionPanel.cpp
31 * Created on: Nov 27, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "wxCDMAppliDescriptionPanel.h"
39 #include "wxCDMMainFrame.h"
41 #include "wxCDMAppliHelpDialog.h"
43 #include "creaDevManagerIds.h"
44 #include "images/ApIcon64.xpm"
46 BEGIN_EVENT_TABLE(wxCDMAppliDescriptionPanel, wxPanel)
47 EVT_BUTTON(ID_BUTTON_PREV, wxCDMAppliDescriptionPanel::OnBtnReturn)
48 EVT_HYPERLINK(ID_LINK_SELECT_APPLICATION, wxCDMAppliDescriptionPanel::OnLnkApplicationSelect)
49 EVT_BUTTON(ID_BUTTON_CREATE_APPLICATION, wxCDMAppliDescriptionPanel::OnBtnCreateApplication)
50 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists)
51 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMAppliDescriptionPanel::OnBtnOpenFolder)
54 wxCDMAppliDescriptionPanel::wxCDMAppliDescriptionPanel(
58 const wxString& caption,
64 wxCDMAppliDescriptionPanel::Create(parent, appli, id, caption, pos, size, style);
67 wxCDMAppliDescriptionPanel::~wxCDMAppliDescriptionPanel()
71 bool wxCDMAppliDescriptionPanel::Create(
75 const wxString& caption,
81 wxPanel::Create(parent, id, pos, size, style);
87 void wxCDMAppliDescriptionPanel::CreateControls()
89 wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
92 wxButton* returnbt = new wxButton(this, ID_BUTTON_PREV, wxT("Return to project"));
93 returnbt->SetToolTip(wxT("Return to the active project description."));
94 sizer->Add(returnbt, 0, wxALIGN_CENTER | wxALL, 5);
96 wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
99 headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(ApIcon64)),0, wxALIGN_CENTER, 0);
100 wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
102 textSizer->Add(new wxStaticText(this, -1, _("Application Management")),0, wxALIGN_LEFT, 0);
104 headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
106 sizer->Add(headerSizer, 0, wxALIGN_CENTER);
109 wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("A&vailable Applications"));
110 propertiesBox->GetStaticBox()->SetToolTip(wxT("Select any of the available applications to see its details or the modify them."));
111 wxPanel* propertiesPanel = new wxPanel(this);
112 wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
114 std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
115 for (int i = 0; i < applications.size(); i++)
117 wxHyperlinkCtrl* pApplicationlk = new wxHyperlinkCtrl(propertiesPanel,ID_LINK_SELECT_APPLICATION, crea::std2wx(applications[i]->GetName().c_str()), crea::std2wx(applications[i]->GetName().c_str()));
118 pApplicationlk->SetWindowStyle(wxALIGN_LEFT);
119 std::string tt = "Name: " + applications[i]->GetName() + "\n";
120 tt += "Location: " + applications[i]->GetPath();
121 pApplicationlk->SetToolTip(crea::std2wx(tt.c_str()));
122 pApplicationlk->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseEnter,NULL,this);
123 pApplicationlk->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnMouseExit,NULL,this);
124 propertiesPanelSizer -> Add(pApplicationlk, 1, wxEXPAND | wxALL, 5);
127 propertiesPanel->SetSizer(propertiesPanelSizer);
128 propertiesPanelSizer->Fit(propertiesPanel);
129 propertiesBox->Add(propertiesPanel, 1, wxEXPAND | wxALL, 5);
130 sizer -> Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
133 wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
134 actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new application or make any change to the appli's CMakeLists.txt file by selecting the desired action."));
135 wxPanel* actionsPanel = new wxPanel(this);
136 wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
138 wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15);
140 wxButton* createApplicationbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_APPLICATION, _T("A. Create Application"));
141 createApplicationbt->SetToolTip(wxT("Create a new application for this project."));
142 actionsGridSizer->Add(createApplicationbt, 1, wxALL | wxEXPAND, 5);
143 wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("B. Edit CMakeLists File"));
144 editCMakebt->SetToolTip(wxT("Open the system default text editor to edit the CMakeLists.txt file."));
145 editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseEnter,NULL,this);
146 editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMAppliDescriptionPanel::OnCMakeMouseExit,NULL,this);
147 actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
148 wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("C. Open Applications Folder"));
149 openFolderbt->SetToolTip(wxT("Open the appli folder in the file explorer."));
150 actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
152 actionsGridSizer->AddGrowableCol(0,1);
153 actionsGridSizer->AddGrowableCol(1,1);
155 actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
156 actionsPanel->SetSizer(actionsPanelSizer);
157 actionsPanelSizer->Fit(actionsPanel);
158 actionsBox->Add(actionsPanel, 0, wxALL | wxEXPAND, 5);
159 sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
163 sizer->SetSizeHints(this);
165 if (((wxCDMMainFrame*)this->GetParent())->isHelp())
167 wxCDMAppliHelpDialog* helpDialog = new wxCDMAppliHelpDialog(this->GetParent(), this->appli, wxID_ANY);
168 helpDialog->Show(true);
172 void wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
175 wxString applicationName = wxGetTextFromUser(
176 _T("Enter the new application name"),
177 _T("New Application - creaDevManager"),
181 if(applicationName.Len() > 0)
185 modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
186 //check library created
187 if(application == NULL)
189 wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
193 wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
195 //refreshing tree and description
196 //send event instead of calling parent to avoid crashing
198 ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
200 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
201 newEvent->SetInt(application->GetId());
202 wxPostEvent(this->GetParent(), *newEvent);
207 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
210 if(!this->appli->OpenCMakeListsFile(result))
211 wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
213 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
215 if(this->appli->GetCMakeLists() != NULL)
217 int CMId = this->appli->GetCMakeLists()->GetId();
218 newEvent->SetInt(CMId);
220 wxPostEvent(this->GetParent(), *newEvent);
224 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
226 int applicationId = 0;
227 std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
228 for (int i = 0; i < applications.size(); i++)
230 if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
232 applicationId = applications[i]->GetId();
236 wxCommandEvent* newEvent1 = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
237 newEvent1->SetInt(applicationId);
239 wxPostEvent(this->GetParent(), *newEvent1);
241 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
242 newEvent->SetInt(applicationId);
244 wxPostEvent(this->GetParent(), *newEvent);
247 void wxCDMAppliDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
249 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
250 newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
252 wxPostEvent(this->GetParent(), *newEvent);
255 void wxCDMAppliDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
258 if(!this->appli->OpenInFileExplorer(result))
259 wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
262 void wxCDMAppliDescriptionPanel::OnMouseEnter(wxMouseEvent& event)
264 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
265 std::string AppName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
267 std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
268 for (int i = 0; i < applications.size(); i++)
270 if(applications[i]->GetName() == AppName)
272 appId = applications[i]->GetId();
276 newEvent->SetInt(appId);
278 wxPostEvent(this->GetParent(), *newEvent);
282 void wxCDMAppliDescriptionPanel::OnMouseExit(wxMouseEvent& event)
284 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
285 std::string AppName = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
287 std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
288 for (int i = 0; i < applications.size(); i++)
290 if(applications[i]->GetName() == AppName)
292 appId = applications[i]->GetId();
296 newEvent->SetInt(appId);
298 wxPostEvent(this->GetParent(), *newEvent);
302 void wxCDMAppliDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
304 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
306 if(this->appli->GetCMakeLists() != NULL)
308 int CMId = this->appli->GetCMakeLists()->GetId();
309 newEvent->SetInt(CMId);
311 wxPostEvent(this->GetParent(), *newEvent);
316 void wxCDMAppliDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
318 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
320 if(this->appli->GetCMakeLists() != NULL)
322 int CMId = this->appli->GetCMakeLists()->GetId();
323 newEvent->SetInt(CMId);
325 wxPostEvent(this->GetParent(), *newEvent);