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 * wxCDMPackageDescriptionPanel.cpp
31 * Created on: Nov 27, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "wxCDMPackageDescriptionPanel.h"
37 #include "creaDevManagerIds.h"
38 #include "images/PkIcon64.xpm"
40 BEGIN_EVENT_TABLE(wxCDMPackageDescriptionPanel, wxPanel)
41 EVT_MENU(ID_BUTTON_CREATE_BLACKBOX, wxCDMPackageDescriptionPanel::OnBtnCreateBlackBox)
42 EVT_MENU(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMPackageDescriptionPanel::OnBtnEditCMakeLists)
45 wxCDMPackageDescriptionPanel::wxCDMPackageDescriptionPanel(
47 modelCDMPackage* package,
49 const wxString& caption,
55 wxCDMPackageDescriptionPanel::Create(parent, package, id, caption, pos, size, style);
58 wxCDMPackageDescriptionPanel::~wxCDMPackageDescriptionPanel()
62 bool wxCDMPackageDescriptionPanel::Create(
64 modelCDMPackage* package,
66 const wxString& caption,
72 wxPanel::Create(parent, id, pos, size, style);
73 this->package = package;
78 void wxCDMPackageDescriptionPanel::CreateControls()
80 wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
83 sizer->Add(new wxStaticText(this, -1, _("Package")),0, wxALIGN_CENTER, 0);
86 sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(PkIcon64)),0, wxALIGN_CENTER, 0);
89 sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->package->GetNamePackage())),0, wxALIGN_CENTER, 0);
92 wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Properties"));
93 wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL);
95 wxFlexGridSizer* flexGridSizer = new wxFlexGridSizer(4, 2, 9, 15);
97 wxStaticText *pAuthor = new wxStaticText(this, -1, wxT("Author"));
98 wxStaticText *pAuthorEmail = new wxStaticText(this, -1, wxT("Author E-mail"));
99 wxStaticText *pVersion = new wxStaticText(this, -1, wxT("Version"));
100 wxStaticText *pDescription = new wxStaticText(this, -1, wxT("Description"));
102 wxTextCtrl *pAuthortc = new wxTextCtrl(this, -1, crea::std2wx(this->package->GetAuthors()));
103 wxTextCtrl *pAuthorEmailtc = new wxTextCtrl(this, -1, crea::std2wx(this->package->GetAuthorsEmail()));
104 wxTextCtrl *pVersiontc = new wxTextCtrl(this, -1, crea::std2wx(this->package->GetVersion()));
105 wxTextCtrl *pDescriptiontc = new wxTextCtrl(this, -1, crea::std2wx(this->package->GetDescription()));
107 flexGridSizer->Add(pAuthor, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
108 flexGridSizer->Add(pAuthortc, 1, wxEXPAND);
109 flexGridSizer->Add(pAuthorEmail, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
110 flexGridSizer->Add(pAuthorEmailtc, 1, wxEXPAND);
111 flexGridSizer->Add(pVersion, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
112 flexGridSizer->Add(pVersiontc, 1, wxEXPAND);
113 flexGridSizer->Add(pDescription, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
114 flexGridSizer->Add(pDescriptiontc, 1, wxEXPAND);
116 propertiesBoxInnerSizer -> Add(flexGridSizer, 0, wxEXPAND);
117 sizer -> Add(propertiesBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
120 wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
121 wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
122 sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
124 actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_BLACKBOX, _T("Create Black Box")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
126 actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
129 actionsBoxInnerSizer->SetSizeHints(this);
132 sizer->SetSizeHints(this);
135 void wxCDMPackageDescriptionPanel::OnBtnCreateBlackBox(wxCommandEvent& event)
137 //TODO: implement method
138 std::cerr << "Event OnBtnCreateBlackBox not implemented" << std::endl;
142 void wxCDMPackageDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
144 //TODO: implement method
145 std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;