]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMFolderDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMFolderDescriptionPanel.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  * wxCDMFolderDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMFolderDescriptionPanel.h"
36
37 #include "wxCDMMainFrame.h"
38 #include "CDMUtilities.h"
39
40 #include "creaDevManagerIds.h"
41 #include "images/FdIcon64.xpm"
42
43 BEGIN_EVENT_TABLE(wxCDMFolderDescriptionPanel, wxPanel)
44 EVT_HYPERLINK(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)
49 END_EVENT_TABLE()
50
51 wxCDMFolderDescriptionPanel::wxCDMFolderDescriptionPanel(
52     wxWindow* parent,
53     modelCDMFolder* folder,
54     wxWindowID id,
55     const wxString& caption,
56     const wxPoint& pos,
57     const wxSize& size,
58     long style
59 )
60 {
61   wxCDMFolderDescriptionPanel::Create(parent, folder, id, caption, pos, size, style);
62 }
63
64 wxCDMFolderDescriptionPanel::~wxCDMFolderDescriptionPanel()
65 {
66 }
67
68 bool wxCDMFolderDescriptionPanel::Create(
69     wxWindow* parent,
70     modelCDMFolder* folder,
71     wxWindowID id,
72     const wxString& caption,
73     const wxPoint& pos,
74     const wxSize& size,
75     long style
76 )
77 {
78   wxPanel::Create(parent, id, pos, size, style);
79   this->folder = folder;
80   CreateControls();
81   return TRUE;
82 }
83
84 void wxCDMFolderDescriptionPanel::CreateControls()
85 {
86   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
87
88   //Links to return
89   wxBoxSizer *linksSizer = new wxBoxSizer(wxHORIZONTAL);
90   std::vector<modelCDMIProjectTreeNode*> parents = this->folder->GetParents();
91   for (int i = 0; i < parents.size(); i++)
92     {
93       wxHyperlinkCtrl* returnLnk = new wxHyperlinkCtrl(this, ID_BUTTON_PREV, crea::std2wx(parents[parents.size()-1-i]->GetName()), crea::std2wx(parents[parents.size()-1-i]->GetPath()));
94       returnLnk->SetToolTip(crea::std2wx("Return to " + parents[parents.size()-1-i]->GetName() + "."));
95       linksSizer->Add(returnLnk, 0, wxALIGN_CENTER_VERTICAL | wxLEFT | wxRIGHT, 5);
96       if (i < parents.size()-1)
97         {
98           linksSizer->Add(new wxStaticText(this,wxID_ANY, wxT("/")), 0, wxALIGN_CENTER, 0);
99         }
100     }
101   sizer->Add(linksSizer, 0, wxALIGN_CENTER | wxALL, 5);
102
103   //Header
104   wxBoxSizer* headerSizer = new wxBoxSizer(wxHORIZONTAL);
105   {
106     //Image
107     headerSizer->Add(new wxStaticBitmap(this, -1, wxBitmap(FdIcon64)),0, wxALIGN_CENTER, 0);
108     wxBoxSizer* textSizer = new wxBoxSizer(wxVERTICAL);
109     //Title
110     textSizer->Add(new wxStaticText(this, -1, _("Folder")),0, wxALIGN_LEFT, 0);
111     //Folder Name
112     textSizer->Add(new wxStaticText(this, -1, crea::std2wx(this->folder->GetName())),0, wxALIGN_LEFT, 0);
113     headerSizer->Add(textSizer, 0, wxALIGN_CENTER_VERTICAL | wxALL, 5);
114   }
115   sizer->Add(headerSizer, 0, wxALIGN_CENTER);
116
117   //Actions
118   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
119   wxPanel* actionsPanel = new wxPanel(this);
120   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
121   //actionsGrid Sizer
122   wxFlexGridSizer* actionsGridSizer = new wxFlexGridSizer(2, 2, 9, 15);
123
124   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open in File Explorer"));
125   openFolderbt->SetToolTip(wxT("Open this folder in the file explorer."));
126   actionsGridSizer->Add(openFolderbt, 1, wxALL | wxEXPAND, 5);
127
128   if(this->folder->HasCMakeLists())
129     {
130       wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
131       editCMakebt->SetToolTip(wxT("Open the CMakeLists.txt file in this folder with the default text editor."));
132       editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMFolderDescriptionPanel::OnCMakeMouseEnter,NULL,this);
133       editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMFolderDescriptionPanel::OnCMakeMouseExit,NULL,this);
134       actionsGridSizer->Add(editCMakebt, 1, wxALL | wxEXPAND, 5);
135     }
136
137   wxButton* createClassbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_CLASS, _T("Create Class"));
138   createClassbt->SetToolTip(wxT("Create a new class (.h and .cpp) inside this folder."));
139   actionsGridSizer->Add(createClassbt, 1, wxALL | wxEXPAND, 5);
140
141   wxButton* createFolderbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_FOLDER, _T("Create Folder"));
142   createFolderbt->SetToolTip(wxT("Create a new folder inside this folder."));
143   actionsGridSizer->Add(createFolderbt, 1, wxALL | wxEXPAND, 5);
144
145   actionsGridSizer->AddGrowableCol(0,1);
146   actionsGridSizer->AddGrowableCol(1,1);
147
148   actionsPanelSizer->Add(actionsGridSizer, 1, wxEXPAND, 0);
149   actionsPanel->SetSizer(actionsPanelSizer);
150   actionsPanelSizer->Fit(actionsPanel);
151   actionsBox->Add(actionsPanel, 1, wxEXPAND);
152   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
153
154   //Assign sizer
155   SetSizer(sizer);
156   sizer->SetSizeHints(this);
157 }
158
159 void wxCDMFolderDescriptionPanel::OnBtnReturn(wxHyperlinkEvent& event)
160 {
161   std::vector<modelCDMIProjectTreeNode*> parents = this->folder->GetParents();
162   std::string parentURL = crea::wx2std(((wxHyperlinkCtrl*)event.GetEventObject())->GetURL());
163   //std::cout << parentURL << std::endl;
164   for (int i = 0; i < parents.size(); i++)
165     {
166       if (parents[i]->GetPath() == parentURL)
167         {
168           wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
169           newEvent->SetClientData(parents[i]);
170           newEvent->SetId(0);
171           wxPostEvent(this->GetParent(), *newEvent);
172         }
173     }
174 }
175
176 void wxCDMFolderDescriptionPanel::OnBtnOpenInExplorer(wxCommandEvent& event)
177 {
178   std::string* result;
179   if(!this->folder->OpenInFileExplorer(result))
180     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
181 }
182
183 void wxCDMFolderDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
184 {
185   std::string* result;
186   if(!this->folder->OpenCMakeListsFile(result))
187     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
188
189   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
190
191   if(this->folder->GetCMakeLists() != NULL)
192     {
193       newEvent->SetClientData(this->folder->GetCMakeLists());
194       newEvent->SetId(0);
195       wxPostEvent(this->GetParent(), *newEvent);
196     }
197 }
198
199 void wxCDMFolderDescriptionPanel::OnBtnCreateClass(wxCommandEvent& event)
200 {
201   //get class name from user
202   wxTextEntryDialog* newClassDlg = new wxTextEntryDialog(
203       this,
204       wxT("Please enter the new class name."),
205       wxT("New Class - creaDevManager"),
206       wxT(""),
207       wxOK | wxCANCEL
208   );
209
210   if (newClassDlg->ShowModal() == wxID_OK)
211     {
212       std::string className = crea::wx2std(newClassDlg->GetValue());
213       //check class name
214       if(className.size() > 0)
215         {
216           if(!this->folder->CreateClass(className))
217             wxMessageBox(crea::std2wx("Something has gone wrong with the creation of the class."),_T("New Class - Error!"),wxOK | wxICON_ERROR);
218
219           ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
220
221           wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
222           newEvent->SetId(0);
223           newEvent->SetClientData(folder);
224           wxPostEvent(this->GetParent(), *newEvent);
225
226           wxMessageBox(crea::std2wx("The class has been created successfully."),_T("New Class - Success"),wxOK | wxICON_INFORMATION);
227         }
228       else
229         {
230           wxMessageBox(crea::std2wx("The new class name cannot be empty."),_T("New Class - Error!"),wxOK | wxICON_ERROR);
231         }
232     }
233 }
234
235 void wxCDMFolderDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
236 {
237   //get name
238   wxString folderName = wxGetTextFromUser(
239       wxT("Enter the name of the new folder:"),
240       wxT("Create Folder - creaDevManager")
241   );
242   //check name
243   std::vector<std::string> parts;
244   CDMUtilities::splitter::split(parts, crea::wx2std(folderName), " /\\\"", CDMUtilities::splitter::no_empties);
245   if(parts.size() > 0)
246     {
247       std::string* result;
248       modelCDMFolder* folderC = this->folder->CreateFolder(crea::wx2std(folderName), result);
249       if(folderC == NULL)
250         {
251           wxMessageBox(crea::std2wx(*result),_T("Create Folder - Error!"),wxOK | wxICON_ERROR);
252           return;
253         }
254       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
255       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
256       newEvent->SetClientData(folderC);
257       wxPostEvent(this->GetParent(), *newEvent);
258       wxMessageBox(crea::std2wx("The folder was successfully created"),_T("Create Folder - Success"),wxOK | wxICON_INFORMATION);
259     }
260   else
261     {
262       wxMessageBox(crea::std2wx("No name specified"),_T("Create Folder - Error!"),wxOK | wxICON_ERROR);
263     }
264 }
265
266 void wxCDMFolderDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
267 {
268   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_DOUBLECLICKED);
269
270   if(this->folder->GetCMakeLists() != NULL)
271     {
272       newEvent->SetClientData(this->folder->GetCMakeLists());
273       newEvent->SetId(0);
274       wxPostEvent(this->GetParent(), *newEvent);
275     }
276   event.Skip();
277 }
278
279 void wxCDMFolderDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
280 {
281   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LISTBOX_SELECTED);
282
283   if(this->folder->GetCMakeLists() != NULL)
284     {
285       newEvent->SetClientData(this->folder->GetCMakeLists());
286       newEvent->SetId(0);
287       wxPostEvent(this->GetParent(), *newEvent);
288     }
289   event.Skip();
290 }