]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMMainDescriptionPanel.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / wxCDMMainDescriptionPanel.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 /*
30  * wxCDMMainPanel.cpp
31  *
32  *  Created on: 13/11/2012
33  *      Author: Daniel Felipe Gonzalez Obando
34  */
35
36 #include "wxCDMMainDescriptionPanel.h"
37
38 #include "creaDevManagerIds.h"
39 #include "images/CIcon64.xpm"
40
41 BEGIN_EVENT_TABLE(wxCDMMainDescriptionPanel, wxPanel)
42 EVT_MENU(ID_MENU_NEW_PROJECT, wxCDMMainDescriptionPanel::OnBtnNewProject)
43 EVT_MENU(ID_MENU_OPEN_PROJECT, wxCDMMainDescriptionPanel::OnBtnOpenProject)
44 END_EVENT_TABLE()
45
46 wxCDMMainDescriptionPanel::wxCDMMainDescriptionPanel(
47     wxWindow* parent,
48     wxWindowID id,
49     const wxString& caption,
50     const wxPoint& pos,
51     const wxSize& size,
52     long style
53 )
54 {
55   wxCDMMainDescriptionPanel::Create(parent, id, caption, pos, size, style);
56 }
57
58 wxCDMMainDescriptionPanel::~wxCDMMainDescriptionPanel()
59 {
60 }
61
62 bool wxCDMMainDescriptionPanel::Create(
63     wxWindow* parent,
64     wxWindowID id,
65     const wxString& caption,
66     const wxPoint& pos,
67     const wxSize& size,
68     long style
69 )
70 {
71   wxPanel::Create(parent, id, pos, size, style);
72   CreateControls();
73   return TRUE;
74 }
75
76 void wxCDMMainDescriptionPanel::CreateControls()
77 {
78   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
79
80   //Welcome
81   sizer->Add(new wxStaticText(this, -1, _("Welcome")),0, wxALIGN_CENTER, 0);
82
83   //Image
84   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(CIcon64)),0, wxALIGN_CENTER, 0);
85
86   //Crea Development Manager
87   sizer->Add(new wxStaticText(this, -1, _("Crea Development Manager")),0, wxALIGN_CENTER, 0);
88
89   //Actions
90   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
91   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
92   sizer -> Add(actionsBoxInnerSizer, 2, wxEXPAND | wxALL, 20);
93
94   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_NEWPROJECT, _T("New Project")), 0, wxRIGHT | wxLEFT, 20);
95   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_OPENPROJECT, _T("Open Project")), 0, wxRIGHT | wxLEFT, 20);
96
97   //Asign sizer
98   sizer->SetSizeHints(this);
99   SetSizer(sizer);
100 }
101
102 void wxCDMMainDescriptionPanel::OnBtnNewProject(wxCommandEvent& event)
103 {
104   event.ResumePropagation(1);
105   event.Skip();
106 }
107
108 void wxCDMMainDescriptionPanel::OnBtnOpenProject(wxCommandEvent& event)
109 {
110   event.ResumePropagation(1);
111   event.Skip();
112 }
113