]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMApplicationDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMApplicationDescriptionPanel.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  * wxCDMApplicationDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMApplicationDescriptionPanel.h"
36
37 #include "creaDevManagerIds.h"
38 #include "images/AIcon64.xpm"
39
40 BEGIN_EVENT_TABLE(wxCDMApplicationDescriptionPanel, wxPanel)
41 EVT_BUTTON(ID_BUTTON_CREATE_CLASS, wxCDMApplicationDescriptionPanel::OnBtnCreateClass)
42 EVT_BUTTON(ID_BUTTON_CREATE_FOLDER, wxCDMApplicationDescriptionPanel::OnBtnCreateFolder)
43 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMApplicationDescriptionPanel::OnBtnEditCMakeLists)
44 END_EVENT_TABLE()
45
46 wxCDMApplicationDescriptionPanel::wxCDMApplicationDescriptionPanel(
47     wxWindow* parent,
48     modelCDMApplication* application,
49     wxWindowID id,
50     const wxString& caption,
51     const wxPoint& pos,
52     const wxSize& size,
53     long style
54 )
55 {
56   wxCDMApplicationDescriptionPanel::Create(parent, application, id, caption, pos, size, style);
57 }
58
59 wxCDMApplicationDescriptionPanel::~wxCDMApplicationDescriptionPanel()
60 {
61 }
62
63 bool wxCDMApplicationDescriptionPanel::Create(
64     wxWindow* parent,
65     modelCDMApplication* application,
66     wxWindowID id,
67     const wxString& caption,
68     const wxPoint& pos,
69     const wxSize& size,
70     long style
71 )
72 {
73   wxPanel::Create(parent, id, pos, size, style);
74   this->application = application;
75   CreateControls();
76   return TRUE;
77 }
78
79 void wxCDMApplicationDescriptionPanel::CreateControls()
80 {
81   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
82
83   //Welcome
84   sizer->Add(new wxStaticText(this, -1, _("Application")),0, wxALIGN_CENTER, 0);
85
86   //Image
87   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(AIcon64)),0, wxALIGN_CENTER, 0);
88
89   //Project Name
90   sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->application->GetNameApplication())),0, wxALIGN_CENTER, 0);
91
92   //Project Properties
93   wxStaticBox* propertiesBox = new wxStaticBox(this, -1, _T("&Properties"));
94   wxStaticBoxSizer* propertiesBoxInnerSizer = new wxStaticBoxSizer(propertiesBox, wxVERTICAL);
95
96   wxFlexGridSizer* flexGridSizer = new wxFlexGridSizer(4, 2, 9, 15);
97
98   wxStaticText *pMainFile = new wxStaticText(this, -1, wxT("Main File"));
99
100   wxTextCtrl *pMainFiletc = new wxTextCtrl(this, -1, crea::std2wx(this->application->GetMainFile()));
101
102   flexGridSizer->Add(pMainFile, 0, wxALIGN_RIGHT | wxALIGN_CENTER_VERTICAL);
103   flexGridSizer->Add(pMainFiletc, 1, wxEXPAND);
104
105   propertiesBoxInnerSizer -> Add(flexGridSizer, 0, wxEXPAND);
106   sizer -> Add(propertiesBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
107
108   //Actions
109   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
110   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
111   sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
112
113   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_CLASS, _T("Create Class")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
114   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_FOLDER, _T("Create Folder")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
115   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
116
117   //Assign sizer
118   actionsBoxInnerSizer->SetSizeHints(this);
119
120   SetSizer(sizer);
121   sizer->SetSizeHints(this);
122 }
123
124 void wxCDMApplicationDescriptionPanel::OnBtnCreateClass(wxCommandEvent& event)
125 {
126   //TODO: implement method
127   std::cerr << "Event OnBtnCreateClass not implemented" << std::endl;
128   event.Skip();
129 }
130
131 void wxCDMApplicationDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
132 {
133   //TODO: implement method
134   std::cerr << "Event OnBtnCreateFolder not implemented" << std::endl;
135   event.Skip();
136 }
137
138 void wxCDMApplicationDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
139 {
140   //TODO: implement method
141   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
142   event.Skip();
143 }