]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMAppliDescriptionPanel.cpp
a7045a7523143b9e3b9a4eb3c260bf44de6f7fe8
[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   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, _("Applications")),0, wxALIGN_CENTER, 0);
91
92   //Image
93   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(ApIcon64)),0, wxALIGN_CENTER, 0);
94
95   //Applications
96   wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Available Applications"));
97   wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL);
98
99   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
100   for (int i = 0; i < applications.size(); i++)
101     {
102       wxHyperlinkCtrl* pLibrarylk = new wxHyperlinkCtrl(this,ID_LINK_SELECT_APPLICATION, crea::std2wx(applications[i]->GetName().c_str()), crea::std2wx(applications[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_APPLICATION, _T("Create Application")), 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 wxCDMAppliDescriptionPanel::OnBtnCreateApplication(wxCommandEvent& event)
124 {
125   //get name
126   wxString applicationName = wxGetTextFromUser(
127       _T("Enter the new application name"),
128       _T("New Application - creaDevManager"),
129       _T("")
130   );
131   //check name
132   if(applicationName.Len() > 0)
133     {
134       std::string* result;
135       //create library
136       modelCDMIProjectTreeNode* application = this->appli->CreateApplication(crea::wx2std(applicationName),result);
137       //check library created
138       if(application == NULL)
139         {
140           wxMessageBox(crea::std2wx(*result),_T("New Application - Error!"),wxOK | wxICON_ERROR);
141           event.Skip();
142           return;
143         }
144       wxMessageBox(crea::std2wx("Application successfully created."),_T("New Application - Success!"),wxOK | wxICON_INFORMATION);
145
146       //refreshing tree and description
147       //send event instead of calling parent to avoid crashing
148
149       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
150
151       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
152       newEvent->SetInt(application->GetId());
153       wxPostEvent(this->GetParent(), *newEvent);
154       event.Skip();
155     }
156 }
157
158 void wxCDMAppliDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
159 {
160   //TODO: implement method
161   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
162   event.Skip();
163 }
164
165 void wxCDMAppliDescriptionPanel::OnLnkApplicationSelect(wxHyperlinkEvent& event)
166 {
167   int applicationId = 0;
168   std::vector<modelCDMApplication*> applications = this->appli->GetApplications();
169   for (int i = 0; i < applications.size(); i++)
170     {
171       if(applications[i]->GetName() == crea::wx2std(event.GetURL()))
172         {
173           applicationId = applications[i]->GetId();
174           break;
175         }
176     }
177
178   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
179   newEvent->SetInt(applicationId);
180   newEvent->SetId(0);
181   wxPostEvent(this->GetParent(), *newEvent);
182 }
183
184 void wxCDMAppliDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
185 {
186   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
187   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
188   newEvent->SetId(0);
189   wxPostEvent(this->GetParent(), *newEvent);
190 }