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 * wxCDMFolderDescriptionPanel.cpp
31 * Created on: Nov 27, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "wxCDMFolderDescriptionPanel.h"
37 #include "wxCDMMainFrame.h"
38 #include "CDMUtilities.h"
40 #include "creaDevManagerIds.h"
41 #include "images/FdIcon64.xpm"
43 BEGIN_EVENT_TABLE(wxCDMFolderDescriptionPanel, wxPanel)
44 EVT_BUTTON(ID_BUTTON_PREV, wxCDMFolderDescriptionPanel::OnBtnReturn)
45 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMFolderDescriptionPanel::OnBtnOpenInExplorer)
46 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMFolderDescriptionPanel::OnBtnEditCMakeLists)
47 EVT_BUTTON(ID_BUTTON_CREATE_CLASS, wxCDMFolderDescriptionPanel::OnBtnCreateClass)
48 EVT_BUTTON(ID_BUTTON_CREATE_FOLDER, wxCDMFolderDescriptionPanel::OnBtnCreateFolder)
51 wxCDMFolderDescriptionPanel::wxCDMFolderDescriptionPanel(
53 modelCDMFolder* folder,
55 const wxString& caption,
61 wxCDMFolderDescriptionPanel::Create(parent, folder, id, caption, pos, size, style);
64 wxCDMFolderDescriptionPanel::~wxCDMFolderDescriptionPanel()
68 bool wxCDMFolderDescriptionPanel::Create(
70 modelCDMFolder* folder,
72 const wxString& caption,
78 wxPanel::Create(parent, id, pos, size, style);
79 this->folder = folder;
84 void wxCDMFolderDescriptionPanel::CreateControls()
86 wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
89 wxButton* returnbt = new wxButton(this, ID_BUTTON_PREV, wxT("Return to project"));
90 returnbt->SetToolTip(wxT("Return to the active project description."));
91 sizer->Add(returnbt, 0, wxALIGN_CENTER | wxALL, 5);
94 wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
97 headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(FdIcon64)),0, wxALIGN_CENTER, 0);
98 wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
100 textSizer->Add(new wxStaticText(this, -1, _("Folder")),0, wxALIGN_LEFT, 0);
102 textSizer->Add(new wxStaticText(this, -1, crea::std2wx(this->folder->GetName())),0, wxALIGN_LEFT, 0);
103 headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
105 sizer->Add(headerSizer, 0, wxALIGN_CENTER);
108 wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
109 wxPanel* actionsPanel = new wxPanel(this);
110 wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
112 wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15);
114 wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open in File Explorer"));
115 openFolderbt->SetToolTip(wxT("Open this folder in the file explorer."));
116 actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
118 if(this->folder->HasCMakeLists())
120 wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
121 editCMakebt->SetToolTip(wxT("Open the CMakeLists.txt file in this folder with the default text editor."));
122 editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMFolderDescriptionPanel::OnCMakeMouseEnter,NULL,this);
123 editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMFolderDescriptionPanel::OnCMakeMouseExit,NULL,this);
124 actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
127 wxButton* createClassbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_CLASS, _T("Create Class"));
128 createClassbt->SetToolTip(wxT("Create a new class (.h and .cpp) inside this folder."));
129 actionsGridSizer->Add(createClassbt, 1, wxALL | wxEXPAND, 5);
131 wxButton* createFolderbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_FOLDER, _T("Create Folder"));
132 createFolderbt->SetToolTip(wxT("Create a new folder inside this folder."));
133 actionsGridSizer->Add(createFolderbt, 1, wxALL | wxEXPAND, 5);
135 actionsGridSizer->AddGrowableCol(0,1);
136 actionsGridSizer->AddGrowableCol(1,1);
138 actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
139 actionsPanel->SetSizer(actionsPanelSizer);
140 actionsPanelSizer->Fit(actionsPanel);
141 actionsBox->Add(actionsPanel, 1, wxEXPAND);
142 sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
146 sizer->SetSizeHints(this);
149 void wxCDMFolderDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
151 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
152 newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
154 wxPostEvent(this->GetParent(), *newEvent);
157 void wxCDMFolderDescriptionPanel::OnBtnOpenInExplorer(wxCommandEvent& event)
160 if(!this->folder->OpenInFileExplorer(result))
161 wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
164 void wxCDMFolderDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
167 if(!this->folder->OpenCMakeListsFile(result))
168 wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
170 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
172 if(this->folder->GetCMakeLists() != NULL)
174 int CMId = this->folder->GetCMakeLists()->GetId();
175 newEvent->SetInt(CMId);
177 wxPostEvent(this->GetParent(), *newEvent);
181 void wxCDMFolderDescriptionPanel::OnBtnCreateClass(wxCommandEvent& event)
183 //get class name from user
184 wxTextEntryDialog* newClassDlg = new wxTextEntryDialog(
186 wxT("Please enter the new class name."),
187 wxT("New Class - creaDevManager"),
192 if (newClassDlg->ShowModal() == wxID_OK)
194 std::string className = crea::wx2std(newClassDlg->GetValue());
196 if(className.size() > 0)
198 if(!this->folder->CreateClass(className))
199 wxMessageBox(crea::std2wx("Something has gone wrong with the creation of the class."),_T("New Class - Error!"),wxOK | wxICON_ERROR);
201 ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
203 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
205 newEvent->SetInt(folder->GetId());
206 wxPostEvent(this->GetParent(), *newEvent);
208 wxMessageBox(crea::std2wx("The class has been created successfully."),_T("New Class - Success"),wxOK | wxICON_INFORMATION);
212 wxMessageBox(crea::std2wx("The new class name cannot be empty."),_T("New Class - Error!"),wxOK | wxICON_ERROR);
217 void wxCDMFolderDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
220 wxString folderName = wxGetTextFromUser(
221 wxT("Enter the name of the new folder:"),
222 wxT("Create Folder - creaDevManager")
225 std::vector<std::string> parts;
226 CDMUtilities::splitter::split(parts, crea::wx2std(folderName), " /\\\"", CDMUtilities::splitter::no_empties);
230 modelCDMFolder* folderC = this->folder->CreateFolder(crea::wx2std(folderName), result);
233 wxMessageBox(crea::std2wx(*result),_T("Create Folder - Error!"),wxOK | wxICON_ERROR);
236 ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
237 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
238 newEvent->SetInt(folderC->GetId());
239 wxPostEvent(this->GetParent(), *newEvent);
240 wxMessageBox(crea::std2wx("The folder was successfully created"),_T("Create Folder - Success"),wxOK | wxICON_INFORMATION);
244 wxMessageBox(crea::std2wx("No name specified"),_T("Create Folder - Error!"),wxOK | wxICON_ERROR);
248 void wxCDMFolderDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
250 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
252 if(this->folder->GetCMakeLists() != NULL)
254 int CMId = this->folder->GetCMakeLists()->GetId();
255 newEvent->SetInt(CMId);
257 wxPostEvent(this->GetParent(), *newEvent);
262 void wxCDMFolderDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
264 wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
266 if(this->folder->GetCMakeLists() != NULL)
268 int CMId = this->folder->GetCMakeLists()->GetId();
269 newEvent->SetInt(CMId);
271 wxPostEvent(this->GetParent(), *newEvent);