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 * wxCDMApplicationDescriptionPanel.cpp
31 * Created on: Nov 27, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "wxCDMApplicationDescriptionPanel.h"
37 #include "creaDevManagerIds.h"
38 #include "images/AIcon64.xpm"
40 BEGIN_EVENT_TABLE(wxCDMApplicationDescriptionPanel, wxPanel)
41 EVT_MENU(ID_BUTTON_CREATE_FOLDER, wxCDMApplicationDescriptionPanel::OnBtnCreateFolder)
42 EVT_MENU(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMApplicationDescriptionPanel::OnBtnEditCMakeLists)
45 wxCDMApplicationDescriptionPanel::wxCDMApplicationDescriptionPanel(
47 modelCDMApplication* application,
49 const wxString& caption,
55 wxCDMApplicationDescriptionPanel::Create(parent, application, id, caption, pos, size, style);
58 wxCDMApplicationDescriptionPanel::~wxCDMApplicationDescriptionPanel()
62 bool wxCDMApplicationDescriptionPanel::Create(
64 modelCDMApplication* application,
66 const wxString& caption,
72 wxPanel::Create(parent, id, pos, size, style);
73 this->application = application;
78 void wxCDMApplicationDescriptionPanel::CreateControls()
80 wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
83 sizer->Add(new wxStaticText(this, -1, _("Project")),0, wxALIGN_CENTER, 0);
86 sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(AIcon64)),0, wxALIGN_CENTER, 0);
89 sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->application->GetNameApplication())),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 *pMainFile = new wxStaticText(this, -1, wxT("Main File"));
99 wxTextCtrl *pMainFiletc = new wxTextCtrl(this, -1, crea::std2wx(this->application->GetMainFile()));
101 flexGridSizer->Add(pMainFile, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
102 flexGridSizer->Add(pMainFiletc, 1, wxEXPAND);
104 propertiesBoxInnerSizer -> Add(flexGridSizer, 0, wxEXPAND);
105 sizer -> Add(propertiesBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
108 wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
109 wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
110 sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
112 actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_FOLDER, _T("Create Folder")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
113 actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
116 actionsBoxInnerSizer->SetSizeHints(this);
119 sizer->SetSizeHints(this);
122 void wxCDMApplicationDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
124 //TODO: implement method
125 std::cerr << "Event OnBtnCreateFolder not implemented" << std::endl;
129 void wxCDMApplicationDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
131 //TODO: implement method
132 std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;