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