]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMApplicationDescriptionPanel.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  * wxCDMApplicationDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMApplicationDescriptionPanel.h"
36
37 #include "wxCDMMainFrame.h"
38
39 #include "creaDevManagerIds.h"
40 #include "images/AIcon64.xpm"
41
42 BEGIN_EVENT_TABLE(wxCDMApplicationDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_PREV, wxCDMApplicationDescriptionPanel::OnBtnReturn)
44 EVT_BUTTON(ID_BUTTON_CREATE_CLASS, wxCDMApplicationDescriptionPanel::OnBtnCreateClass)
45 EVT_BUTTON(ID_BUTTON_CREATE_FOLDER, wxCDMApplicationDescriptionPanel::OnBtnCreateFolder)
46 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMApplicationDescriptionPanel::OnBtnEditCMakeLists)
47 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMApplicationDescriptionPanel::OnBtnOpenFolder)
48 END_EVENT_TABLE()
49
50 wxCDMApplicationDescriptionPanel::wxCDMApplicationDescriptionPanel(
51     wxWindow* parent,
52     modelCDMApplication* application,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMApplicationDescriptionPanel::Create(parent, application, id, caption, pos, size, style);
61 }
62
63 wxCDMApplicationDescriptionPanel::~wxCDMApplicationDescriptionPanel()
64 {
65 }
66
67 bool wxCDMApplicationDescriptionPanel::Create(
68     wxWindow* parent,
69     modelCDMApplication* application,
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->application = application;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMApplicationDescriptionPanel::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   //Welcome
93   sizer->Add(new wxStaticText(this, -1, _("Application")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(AIcon64)),0, wxALIGN_CENTER, 0);
97
98   //Project Name
99   sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->application->GetNameApplication())),0, wxALIGN_CENTER, 0);
100
101   //Project Properties
102   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Properties"));
103   wxPanel* propertiesPanel = new wxPanel(this);
104   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
105
106   wxFlexGridSizer* propertiesGridSizer = new wxFlexGridSizer(4, 2, 9, 15);
107
108   wxStaticText *pMainFile = new wxStaticText(propertiesPanel, -1, wxT("Main File"));
109   wxBoxSizer* pMainFilesz = new wxBoxSizer(wxHORIZONTAL);
110   wxStaticText* pMainFiletc = new wxStaticText(propertiesPanel, wxID_ANY, crea::std2wx(this->application->GetMainFile()));
111   wxButton* pMainFilebt = new wxButton(propertiesPanel, ID_BUTTON_SET_VERSION, wxT("Choose"));
112   pMainFilebt->SetToolTip(wxT("Choose the main file for the application."));
113   pMainFilesz->Add(pMainFiletc, 0, wxALIGN_CENTER_VERTICAL, 0);
114   pMainFilesz->Add(pMainFilebt, 0, wxALIGN_CENTER | wxLEFT, 10);
115
116   propertiesGridSizer->Add(pMainFile, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
117   propertiesGridSizer->Add(pMainFilesz, 1, wxEXPAND);
118
119   propertiesGridSizer->AddGrowableCol(1,1);
120
121   propertiesPanelSizer->Add(propertiesGridSizer, 0, wxEXPAND);
122   propertiesPanel->SetSizer(propertiesPanelSizer);
123   propertiesPanelSizer->Fit(propertiesPanel);
124   propertiesBox->Add(propertiesPanel, 0, wxEXPAND);
125   sizer->Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
126
127   //Actions
128   //actions StaticBoxSizer
129   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
130   actionsBox->GetStaticBox()->SetToolTip(wxT("Create classes or edit them for this application, as well as editing the application's CMakeLists.txt file by selecting the desired action."));
131   //actions Panel
132   wxPanel* actionsPanel = new wxPanel(this);
133   //actions Sizer
134   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
135
136   wxButton* createClassbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_CLASS, _T("Create Class"));
137   createClassbt->SetToolTip(wxT("Create a new Class (.h and .cxx files)."));
138   wxButton* createFolderbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_FOLDER, _T("Create Folder"));
139   createFolderbt->SetToolTip(wxT("Create a new Folder inside the application folder."));
140   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
141   editCMakebt->SetToolTip(wxT("Edit the CMakeLists.txt file inside this application."));
142   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Application Folder"));
143   openFolderbt->SetToolTip(wxT("Open the application folder in the file explorer."));
144
145
146   actionsPanelSizer->Add(createClassbt, 0, wxALL, 5);
147   actionsPanelSizer->Add(createFolderbt, 0, wxALL, 5);
148   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
149   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
150
151   //SetPanel sizer and box
152   actionsPanel->SetSizer(actionsPanelSizer);
153   actionsPanelSizer->Fit(actionsPanel);
154   actionsBox->Add(actionsPanel, 0, wxALL, 5);
155   sizer->Add(actionsBox, 0, wxEXPAND | wxALL, 10);
156
157   //Assign sizer
158   SetSizer(sizer);
159   sizer->SetSizeHints(this);
160 }
161
162 void wxCDMApplicationDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
163 {
164   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
165   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
166   newEvent->SetId(0);
167   wxPostEvent(this->GetParent(), *newEvent);
168 }
169
170 void wxCDMApplicationDescriptionPanel::OnBtnCreateClass(wxCommandEvent& event)
171 {
172   //TODO: implement method
173   std::cerr << "Event OnBtnCreateClass not implemented" << std::endl;
174   event.Skip();
175 }
176
177 void wxCDMApplicationDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
178 {
179   //TODO: implement method
180   std::cerr << "Event OnBtnCreateFolder not implemented" << std::endl;
181   event.Skip();
182 }
183
184 void wxCDMApplicationDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
185 {
186   //TODO: implement method
187   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
188   event.Skip();
189 }
190
191 void wxCDMApplicationDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
192 {
193   //TODO: implement method
194   std::cerr << "Event OnBtnOpenFolder not implemented" << std::endl;
195   event.Skip();
196 }