]> 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 "creaDevManagerIds.h"
38 #include "images/LIcon64.xpm"
39
40 BEGIN_EVENT_TABLE(wxCDMLibraryDescriptionPanel, wxPanel)
41 EVT_BUTTON(ID_BUTTON_CREATE_CLASS, wxCDMLibraryDescriptionPanel::OnBtnCreateClass)
42 EVT_BUTTON(ID_BUTTON_CREATE_FOLDER, wxCDMLibraryDescriptionPanel::OnBtnCreateFolder)
43 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMLibraryDescriptionPanel::OnBtnEditCMakeLists)
44 END_EVENT_TABLE()
45
46 wxCDMLibraryDescriptionPanel::wxCDMLibraryDescriptionPanel(
47     wxWindow* parent,
48     modelCDMLibrary* library,
49     wxWindowID id,
50     const wxString& caption,
51     const wxPoint& pos,
52     const wxSize& size,
53     long style
54 )
55 {
56   wxCDMLibraryDescriptionPanel::Create(parent, library, id, caption, pos, size, style);
57 }
58
59 wxCDMLibraryDescriptionPanel::~wxCDMLibraryDescriptionPanel()
60 {
61 }
62
63 bool wxCDMLibraryDescriptionPanel::Create(
64     wxWindow* parent,
65     modelCDMLibrary* library,
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->library = library;
75   CreateControls();
76   return TRUE;
77 }
78
79 void wxCDMLibraryDescriptionPanel::CreateControls()
80 {
81   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
82
83   //Welcome
84   sizer->Add(new wxStaticText(this, -1, _("Library")),0, wxALIGN_CENTER, 0);
85
86   //Image
87   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LIcon64)),0, wxALIGN_CENTER, 0);
88
89   //Project Name
90   sizer->Add(new wxStaticText(this, -1, crea::std2wx(this->library->GetNameLibrary())),0, wxALIGN_CENTER, 0);
91
92   //Actions
93   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
94   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
95   sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
96
97   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_CLASS, _T("Create Class")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
98   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_FOLDER, _T("Create Folder")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
99   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
100
101
102   //Assign sizer
103   actionsBoxInnerSizer->SetSizeHints(this);
104
105   SetSizer(sizer);
106   sizer->SetSizeHints(this);
107 }
108
109 void wxCDMLibraryDescriptionPanel::OnBtnCreateClass(wxCommandEvent& event)
110 {
111   //TODO: implement method
112   std::cerr << "Event OnBtnCreateClass not implemented" << std::endl;
113   event.Skip();
114 }
115
116 void wxCDMLibraryDescriptionPanel::OnBtnCreateFolder(wxCommandEvent& event)
117 {
118   //TODO: implement method
119   std::cerr << "Event OnBtnCreateFolder not implemented" << std::endl;
120   event.Skip();
121 }
122
123 void wxCDMLibraryDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
124 {
125   //TODO: implement method
126   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
127   event.Skip();
128 }