]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMAppliDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMAppliDescriptionPanel.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  * wxCDMAppliDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMAppliDescriptionPanel.h"
36
37 #include "creaDevManagerIds.h"
38
39 #include "wxCDMMainFrame.h"
40 #include "images/ApIcon64.xpm"
41
42 BEGIN_EVENT_TABLE(wxCDMAppliDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_PREV, wxCDMAppliDescriptionPanel::OnBtnReturn)
44 EVT_HYPERLINK(ID_LINK_SELECT_APPLICATION, wxCDMAppliDescriptionPanel::OnLnkApplicationSelect)
45 EVT_BUTTON(ID_BUTTON_CREATE_APPLICATION, wxCDMAppliDescriptionPanel::OnBtnCreateApplication)
46 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists)
47 END_EVENT_TABLE()
48
49 wxCDMAppliDescriptionPanel::wxCDMAppliDescriptionPanel(
50     wxWindow* parent,
51     modelCDMAppli* appli,
52     wxWindowID id,
53     const wxString& caption,
54     const wxPoint& pos,
55     const wxSize& size,
56     long style
57 )
58 {
59   wxCDMAppliDescriptionPanel::Create(parent, appli, id, caption, pos, size, style);
60 }
61
62 wxCDMAppliDescriptionPanel::~wxCDMAppliDescriptionPanel()
63 {
64 }
65
66 bool wxCDMAppliDescriptionPanel::Create(
67     wxWindow* parent,
68     modelCDMAppli* appli,
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->appli = appli;
78   CreateControls();
79   return TRUE;
80 }
81
82 void wxCDMAppliDescriptionPanel::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, _("Applications")),0, wxALIGN_CENTER, 0);
93
94   //Image
95   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(ApIcon64)),0, wxALIGN_CENTER, 0);
96
97   //Applications
98   wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Available Applications"));
99   wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL);
100
101   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
102   for (int i = 0; i < applications.size(); i++)
103     {
104       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(this,ID_LINK_SELECT_APPLICATION, crea::std2wx(applications[i]->GetName().c_str()), crea::std2wx(applications[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* createApplicationbt = new wxButton(this, ID_BUTTON_CREATE_APPLICATION, _T("Create Application"));
116   createApplicationbt->SetToolTip(wxT("Create a new application for this project."));
117   actionsBoxInnerSizer->Add(createApplicationbt, 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 wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
130 {
131   //get name
132   wxString applicationName = wxGetTextFromUser(
133       _T("Enter the new application name"),
134       _T("New Application - creaDevManager"),
135       _T("")
136   );
137   //check name
138   if(applicationName.Len() > 0)
139     {
140       std::string* result;
141       //create library
142       modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
143       //check library created
144       if(application == NULL)
145         {
146           wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
147           event.Skip();
148           return;
149         }
150       wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
151
152       //refreshing tree and description
153       //send event instead of calling parent to avoid crashing
154
155       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
156
157       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
158       newEvent->SetInt(application->GetId());
159       wxPostEvent(this->GetParent(), *newEvent);
160       event.Skip();
161     }
162 }
163
164 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
165 {
166   //TODO: implement method
167   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
168   event.Skip();
169 }
170
171 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
172 {
173   int applicationId = 0;
174   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
175   for (int i = 0; i < applications.size(); i++)
176     {
177       if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
178         {
179           applicationId = applications[i]->GetId();
180           break;
181         }
182     }
183
184   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
185   newEvent->SetInt(applicationId);
186   newEvent->SetId(0);
187   wxPostEvent(this->GetParent(), *newEvent);
188 }
189
190 void wxCDMAppliDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
191 {
192   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
193   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
194   newEvent->SetId(0);
195   wxPostEvent(this->GetParent(), *newEvent);
196 }