]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMFileDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMFileDescriptionPanel.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  * wxCDMBlackBoxDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMFileDescriptionPanel.h"
36
37 #include<sstream>
38
39 #include "wxCDMMainFrame.h"
40
41 #include "creaDevManagerIds.h"
42 #include "images/FlIcon64.xpm"
43
44 BEGIN_EVENT_TABLE(wxCDMFileDescriptionPanel, wxPanel)
45 EVT_BUTTON(ID_BUTTON_PREV, wxCDMFileDescriptionPanel::OnBtnReturn)
46 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMFileDescriptionPanel::OnBtnOpenFolder)
47 EVT_BUTTON(ID_BUTTON_OPEN_COMMAND, wxCDMFileDescriptionPanel::OnBtnOpenWithCommand)
48 END_EVENT_TABLE()
49
50 wxCDMFileDescriptionPanel::wxCDMFileDescriptionPanel(
51     wxWindow* parent,
52     modelCDMFile* file,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMFileDescriptionPanel::Create(parent, file, id, caption, pos, size, style);
61 }
62
63 wxCDMFileDescriptionPanel::~wxCDMFileDescriptionPanel()
64 {
65 }
66
67 bool wxCDMFileDescriptionPanel::Create(
68     wxWindow* parent,
69     modelCDMFile* file,
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->file = file;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMFileDescriptionPanel::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, _("File")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(FlIcon64)),0, wxALIGN_CENTER, 0);
97
98   //File Name
99   sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->file->GetName())),0, wxALIGN_CENTER, 0);
100
101   //File Properties
102   wxStaticBoxSizer* propertiesBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Properties"));
103   wxPanel* propertiesPanel = new wxPanel(this);
104   wxBoxSizer* propertiesPanelSizer = new wxBoxSizer(wxVERTICAL);
105   wxFlexGridSizer* propertiesGridSizer = new wxFlexGridSizer(4, 2, 9, 15);
106
107   wxStaticText *pLocation = new wxStaticText(propertiesPanel, -1, wxT("Location"));
108   wxStaticText *pLength = new wxStaticText(propertiesPanel, -1, wxT("File Size"));
109
110   wxStaticText* pLocationtc = new wxStaticText(propertiesPanel, wxID_ANY, crea::std2wx(this->file->GetPath()));
111   pLocationtc->SetMaxSize(wxSize(350,-1));
112   int lgth = this->file->GetLength();
113   std::stringstream ss;
114   ss << lgth / 1024;
115   std::string lgths = ss.str() + " KB";
116   wxStaticText* pLengthtc = new wxStaticText(propertiesPanel, wxID_ANY, crea::std2wx(lgths));
117
118   propertiesGridSizer->Add(pLocation, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
119   propertiesGridSizer->Add(pLocationtc, 1, wxEXPAND);
120   propertiesGridSizer->Add(pLength, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
121   propertiesGridSizer->Add(pLengthtc, 1, wxEXPAND);
122
123   propertiesGridSizer->AddGrowableCol(1,1);
124
125   propertiesPanelSizer -> Add(propertiesGridSizer, 1, wxEXPAND);
126   propertiesPanel->SetSizer(propertiesPanelSizer);
127   propertiesPanelSizer->Fit(propertiesPanel);
128   propertiesBox->Add(propertiesPanel, 0, wxALL, 5);
129
130   sizer->Add(propertiesBox, 0, wxEXPAND | wxALL, 10);
131
132
133   //Actions
134   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxHORIZONTAL, this, wxT("&Actions"));
135   wxPanel* actionsPanel = new wxPanel(this);
136   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
137
138   wxButton* openCommandbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_COMMAND, _T("Open with Command"));
139   openCommandbt->SetToolTip(wxT("Open this file executing a command in a terminal/command line."));
140   actionsPanelSizer->Add(openCommandbt, 0, wxALL, 5);
141   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Containing Folder"));
142   openFolderbt->SetToolTip(wxT("Open the folder where this file is located in the file explorer."));
143   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
144
145   actionsPanel->SetSizer(actionsPanelSizer);
146   actionsPanelSizer->Fit(actionsPanel);
147   actionsBox->Add(actionsPanel, 0, wxEXPAND);
148   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 10);
149
150   //Assign sizer
151   SetSizer(sizer);
152   sizer->SetSizeHints(this);
153 }
154
155 void wxCDMFileDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
156 {
157   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
158   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
159   newEvent->SetId(0);
160   wxPostEvent(this->GetParent(), *newEvent);
161 }
162
163 void wxCDMFileDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
164 {
165   std::string* result;
166   if(!this->file->OpenInFileExplorer(result))
167     wxMessageBox(crea::std2wx(*result),_T("Open Folder - Error!"),wxOK | wxICON_ERROR);
168 }
169
170 void wxCDMFileDescriptionPanel::OnBtnOpenWithCommand(wxCommandEvent& event)
171 {
172   //get command
173   wxString commandEx = wxGetTextFromUser(
174       _T("Enter the command to execute file"),
175       _T("Execute File - creaDevManager"),
176       _T("")
177   );
178   //check name
179   if(commandEx.Len() > 0)
180     {
181       std::string* result;
182       if(!this->file->OpenFile(result, crea::wx2std(commandEx)))
183         wxMessageBox(crea::std2wx(*result),_T("Execute File - Error!"),wxOK | wxICON_ERROR);
184     }
185 }