]> 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_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_FOLDER, wxCDMFolderDescriptionPanel::OnBtnCreateFolder)
48 END_EVENT_TABLE()
49
50 wxCDMFolderDescriptionPanel::wxCDMFolderDescriptionPanel(
51     wxWindow* parent,
52     modelCDMFolder* folder,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMFolderDescriptionPanel::Create(parent, folder, id, caption, pos, size, style);
61 }
62
63 wxCDMFolderDescriptionPanel::~wxCDMFolderDescriptionPanel()
64 {
65 }
66
67 bool wxCDMFolderDescriptionPanel::Create(
68     wxWindow* parent,
69     modelCDMFolder* folder,
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->folder = folder;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMFolderDescriptionPanel::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   //Title
93   sizer->Add(new wxStaticText(this, -1, _("Folder")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(FdIcon64)),0, wxALIGN_CENTER, 0);
97
98   //Folder Name
99   sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->folder->GetName())),0, wxALIGN_CENTER, 0);
100
101   //Actions
102   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
103   wxPanel* actionsPanel = new wxPanel(this);
104   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
105
106   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open in File Explorer"));
107   openFolderbt->SetToolTip(wxT("Open this folder in the file explorer."));
108   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
109
110   if(this->folder->HasCMakeLists())
111     {
112       wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
113       editCMakebt->SetToolTip(wxT("Open the CMakeLists.txt file in this folder with the default text editor."));
114       editCMakebt->Connect(wxEVT_ENTER_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMFolderDescriptionPanel::OnCMakeMouseEnter,NULL,this);
115       editCMakebt->Connect(wxEVT_LEAVE_WINDOW, (wxObjectEventFunction)(wxEventFunction)(wxMouseEventFunction)&wxCDMFolderDescriptionPanel::OnCMakeMouseExit,NULL,this);
116       actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
117     }
118
119   wxButton* createFolderbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_FOLDER, _T("Create Folder"));
120   createFolderbt->SetToolTip(wxT("Create a new folder inside this folder."));
121   actionsPanelSizer->Add(createFolderbt, 0, wxALL, 5);
122
123   actionsPanel->SetSizer(actionsPanelSizer);
124   actionsPanelSizer->Fit(actionsPanel);
125   actionsBox->Add(actionsPanel, 0, wxEXPAND);
126   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
127
128   //Assign sizer
129   SetSizer(sizer);
130   sizer->SetSizeHints(this);
131 }
132
133 void wxCDMFolderDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
134 {
135   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
136   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
137   newEvent->SetId(0);
138   wxPostEvent(this->GetParent(), *newEvent);
139 }
140
141 void wxCDMFolderDescriptionPanel::OnBtnOpenInExplorer(wxCommandEvent& event)
142 {
143   std::string* result;
144   if(!this->folder->OpenInFileExplorer(result))
145     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
146 }
147
148 void wxCDMFolderDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
149 {
150   std::string* result;
151   if(!this->folder->OpenCMakeListsFile(result))
152     wxMessageBox(crea::std2wx(*result),_T("Open CMakeLists File - Error!"),wxOK | wxICON_ERROR);
153
154   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
155
156   if(this->folder->GetCMakeLists() != NULL)
157     {
158       int CMId = this->folder->GetCMakeLists()->GetId();
159       newEvent->SetInt(CMId);
160       newEvent->SetId(0);
161       wxPostEvent(this->GetParent(), *newEvent);
162     }
163 }
164
165 void wxCDMFolderDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
166 {
167   //get name
168   wxString folderName = wxGetTextFromUser(
169       wxT("Enter the name of the new folder:"),
170       wxT("Create Folder - creaDevManager")
171   );
172   //check name
173   std::vector<std::string> parts;
174   CDMUtilities::splitter::split(parts, crea::wx2std(folderName), " /\\\"", CDMUtilities::splitter::no_empties);
175   if(parts.size() > 0)
176     {
177       std::string* result;
178       modelCDMFolder* folderC = this->folder->CreateFolder(crea::wx2std(folderName), result);
179       if(folderC == NULL)
180         {
181           wxMessageBox(crea::std2wx(*result),_T("Create Folder - Error!"),wxOK | wxICON_ERROR);
182           return;
183         }
184       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
185       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
186       newEvent->SetInt(folderC->GetId());
187       wxPostEvent(this->GetParent(), *newEvent);
188       wxMessageBox(crea::std2wx("The folder was successfully created"),_T("Create Folder - Success"),wxOK | wxICON_INFORMATION);
189     }
190   else
191     {
192       wxMessageBox(crea::std2wx("No name specified"),_T("Create Folder - Error!"),wxOK | wxICON_ERROR);
193     }
194 }
195
196 void wxCDMFolderDescriptionPanel::OnCMakeMouseEnter(wxMouseEvent& event)
197 {
198   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_SELECTED);
199
200   if(this->folder->GetCMakeLists() != NULL)
201     {
202       int CMId = this->folder->GetCMakeLists()->GetId();
203       newEvent->SetInt(CMId);
204       newEvent->SetId(0);
205       wxPostEvent(this->GetParent(), *newEvent);
206     }
207   event.Skip();
208 }
209
210 void wxCDMFolderDescriptionPanel::OnCMakeMouseExit(wxMouseEvent& event)
211 {
212   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_COMMAND_LIST_ITEM_DESELECTED);
213
214   if(this->folder->GetCMakeLists() != NULL)
215     {
216       int CMId = this->folder->GetCMakeLists()->GetId();
217       newEvent->SetInt(CMId);
218       newEvent->SetId(0);
219       wxPostEvent(this->GetParent(), *newEvent);
220     }
221   event.Skip();
222 }