]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMLibraryDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMLibraryDescriptionPanel.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  * wxCDMLibraryDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMLibraryDescriptionPanel.h"
36
37 #include "wxCDMMainFrame.h"
38
39 #include "creaDevManagerIds.h"
40 #include "images/LIcon64.xpm"
41
42 BEGIN_EVENT_TABLE(wxCDMLibraryDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_PREV, wxCDMLibraryDescriptionPanel::OnBtnReturn)
44 EVT_BUTTON(ID_BUTTON_CREATE_CLASS, wxCDMLibraryDescriptionPanel::OnBtnCreateClass)
45 EVT_BUTTON(ID_BUTTON_CREATE_FOLDER, wxCDMLibraryDescriptionPanel::OnBtnCreateFolder)
46 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMLibraryDescriptionPanel::OnBtnEditCMakeLists)
47 EVT_BUTTON(ID_BUTTON_OPEN_FOLDER, wxCDMLibraryDescriptionPanel::OnBtnOpenFolder)
48 END_EVENT_TABLE()
49
50 wxCDMLibraryDescriptionPanel::wxCDMLibraryDescriptionPanel(
51     wxWindow* parent,
52     modelCDMLibrary* library,
53     wxWindowID id,
54     const wxString& caption,
55     const wxPoint& pos,
56     const wxSize& size,
57     long style
58 )
59 {
60   wxCDMLibraryDescriptionPanel::Create(parent, library, id, caption, pos, size, style);
61 }
62
63 wxCDMLibraryDescriptionPanel::~wxCDMLibraryDescriptionPanel()
64 {
65 }
66
67 bool wxCDMLibraryDescriptionPanel::Create(
68     wxWindow* parent,
69     modelCDMLibrary* library,
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->library = library;
79   CreateControls();
80   return TRUE;
81 }
82
83 void wxCDMLibraryDescriptionPanel::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, _("Library")),0, wxALIGN_CENTER, 0);
94
95   //Image
96   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LIcon64)),0, wxALIGN_CENTER, 0);
97
98   //Project Name
99   sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->library->GetNameLibrary())),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* createClassbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_CLASS, _T("Create Class"));
107   createClassbt->SetToolTip(wxT("Create a new class for this library."));
108   actionsPanelSizer->Add(createClassbt, 0, wxALL, 5);
109   wxButton* createFolderbt = new wxButton(actionsPanel, ID_BUTTON_CREATE_FOLDER, _T("Create Folder"));
110   createFolderbt->SetToolTip(wxT("Create a new folder for this library."));
111   actionsPanelSizer->Add(createFolderbt, 0, wxALL, 5);
112   wxButton* editCMakebt = new wxButton(actionsPanel, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File"));
113   editCMakebt->SetToolTip(wxT("Edit the CMakeLists.txt of this library in the default text editor."));
114   actionsPanelSizer->Add(editCMakebt, 0, wxALL, 5);
115   wxButton* openFolderbt = new wxButton(actionsPanel, ID_BUTTON_OPEN_FOLDER, _T("Open Library Folder"));
116   openFolderbt->SetToolTip(wxT("Open the library folder in the file explorer."));
117   actionsPanelSizer->Add(openFolderbt, 0, wxALL, 5);
118
119   actionsPanel->SetSizer(actionsPanelSizer);
120   actionsPanelSizer->Fit(actionsPanel);
121   actionsBox->Add(actionsPanel, 1, wxEXPAND);
122   sizer -> Add(actionsBox, 0, wxALL | wxEXPAND, 10);
123
124   //Assign sizer
125   SetSizer(sizer);
126   sizer->SetSizeHints(this);
127 }
128
129 void wxCDMLibraryDescriptionPanel::OnBtnReturn(wxCommandEvent& event)
130 {
131   wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
132   newEvent->SetInt(((wxCDMMainFrame*)this->GetParent())->GetModel()->GetProject()->GetId());
133   newEvent->SetId(0);
134   wxPostEvent(this->GetParent(), *newEvent);
135 }
136
137 void wxCDMLibraryDescriptionPanel::OnBtnCreateClass(wxCommandEvent& event)
138 {
139   //TODO: implement method
140   std::cerr << "Event OnBtnCreateClass not implemented" << std::endl;
141   event.Skip();
142 }
143
144 void wxCDMLibraryDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
145 {
146   //TODO: implement method
147   std::cerr << "Event OnBtnCreateFolder not implemented" << std::endl;
148   event.Skip();
149 }
150
151 void wxCDMLibraryDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
152 {
153   //TODO: implement method
154   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
155   event.Skip();
156 }
157
158 void
159 wxCDMLibraryDescriptionPanel::OnBtnOpenFolder(wxCommandEvent& event)
160 {
161   //TODO: implement method
162   std::cerr << "Event OnBtnOpenFolder not implemented" << std::endl;
163   event.Skip();
164 }