]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMLibDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMLibDescriptionPanel.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  * wxCDMLibDescriptionPanel.cpp
30  *
31  *  Created on: Nov 27, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "wxCDMLibDescriptionPanel.h"
36
37 #include "wxCDMMainFrame.h"
38
39 #include "creaDevManagerIds.h"
40 #include "images/LbIcon64.xpm"
41
42 BEGIN_EVENT_TABLE(wxCDMLibDescriptionPanel, wxPanel)
43 EVT_BUTTON(ID_BUTTON_CREATE_LIBRARY, wxCDMLibDescriptionPanel::OnBtnCreateLibrary)
44 EVT_BUTTON(ID_BUTTON_EDIT_CMAKELISTSFILE, wxCDMLibDescriptionPanel::OnBtnEditCMakeLists)
45 END_EVENT_TABLE()
46
47 wxCDMLibDescriptionPanel::wxCDMLibDescriptionPanel(
48     wxWindow* parent,
49     modelCDMLib* lib,
50     wxWindowID id,
51     const wxString& caption,
52     const wxPoint& pos,
53     const wxSize& size,
54     long style
55 )
56 {
57   wxCDMLibDescriptionPanel::Create(parent, lib, id, caption, pos, size, style);
58 }
59
60 wxCDMLibDescriptionPanel::~wxCDMLibDescriptionPanel()
61 {
62 }
63
64 bool wxCDMLibDescriptionPanel::Create(
65     wxWindow* parent,
66     modelCDMLib* lib,
67     wxWindowID id,
68     const wxString& caption,
69     const wxPoint& pos,
70     const wxSize& size,
71     long style
72 )
73 {
74   wxPanel::Create(parent, id, pos, size, style);
75   this->lib = lib;
76   CreateControls();
77   return TRUE;
78 }
79
80 void wxCDMLibDescriptionPanel::CreateControls()
81 {
82   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
83
84   //Welcome
85   sizer->Add(new wxStaticText(this, -1, _("Libraries")),0, wxALIGN_CENTER, 0);
86
87   //Image
88   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(LbIcon64)),0, wxALIGN_CENTER, 0);
89
90   //Actions
91   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
92   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
93   sizer -> Add(actionsBoxInnerSizer, 1, wxEXPAND | wxALL, 20);
94
95   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_CREATE_LIBRARY, _T("Create Library")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
96   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_EDIT_CMAKELISTSFILE, _T("Edit CMakeLists File")), 0, wxEXPAND | wxRIGHT | wxLEFT, 20);
97
98   //Assign sizer
99   actionsBoxInnerSizer->SetSizeHints(this);
100
101   SetSizer(sizer);
102   sizer->SetSizeHints(this);
103 }
104
105 void wxCDMLibDescriptionPanel::OnBtnCreateLibrary(wxCommandEvent& event)
106 {
107   //TODO: implement method
108   std::cerr << "Event OnBtnCreateLibrary not implemented" << std::endl;
109   event.Skip();
110
111
112   //get name
113   wxString libraryName = wxGetTextFromUser(
114       _T("Enter the new library name"),
115       _T("New Library - creaDevManager"),
116       _T("")
117   );
118   //check name
119   if(libraryName.Len() > 0)
120     {
121       std::string* result;
122       //create library
123       modelCDMIProjectTreeNode* library = this->lib->CreateLibrary(crea::wx2std(libraryName),result);
124       //check library created
125       if(library == NULL)
126         {
127           wxMessageBox(crea::std2wx(*result),_T("New Library - Error!"),wxOK | wxICON_ERROR);
128           event.Skip();
129           return;
130         }
131       wxMessageBox(crea::std2wx("Library successfully created."),_T("New Library - Success!"),wxOK | wxICON_INFORMATION);
132
133       //refreshing tree and description
134       //send event instead of calling parent to avoid crashing
135
136       ((wxCDMMainFrame*)this->GetParent())->RefreshProject();
137
138       wxCommandEvent* newEvent = new wxCommandEvent(wxEVT_DISPLAY_CHANGED);
139       newEvent->SetInt(library->GetId());
140       wxPostEvent(this->GetParent(), *newEvent);
141       event.Skip();
142     }
143 }
144
145 void wxCDMLibDescriptionPanel::OnBtnEditCMakeLists(wxCommandEvent& event)
146 {
147   //TODO: implement method
148   std::cerr << "Event OnBtnEditCMakeLists not implemented" << std::endl;
149   event.Skip();
150 }