]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMMainDescriptionPanel.cpp
Feature #1763
[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 #
8 #  This software is governed by the CeCILL-B license under French law and 
9 #  abiding by the rules of distribution of free software. You can  use, 
10 #  modify and/ or redistribute the software under the terms of the CeCILL-B 
11 #  license as circulated by CEA, CNRS and INRIA at the following URL 
12 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
13 #  or in the file LICENSE.txt.
14 #
15 #  As a counterpart to the access to the source code and  rights to copy,
16 #  modify and redistribute granted by the license, users are provided only
17 #  with a limited warranty  and the software's author,  the holder of the
18 #  economic rights,  and the successive licensors  have only  limited
19 #  liability. 
20 #
21 #  The fact that you are presently reading this means that you have had
22 #  knowledge of the CeCILL-B license and that you accept its terms.
23 # ------------------------------------------------------------------------ */ 
24
25
26 /*
27  * wxCDMMainPanel.cpp
28  *
29  *  Created on: 13/11/2012
30  *      Author: daniel
31  */
32
33 #include "wxCDMMainDescriptionPanel.h"
34 #include "creaDevManagerIds.h"
35 #include "images/Cicon64.xpm"
36
37
38 wxCDMMainDescriptionPanel::wxCDMMainDescriptionPanel(
39     wxWindow* parent,
40     wxWindowID id,
41     const wxString& caption,
42     const wxPoint& pos,
43     const wxSize& size,
44     long style
45 )
46 {
47   wxCDMMainDescriptionPanel::Create(parent, id, caption, pos, size, style);
48 }
49
50 wxCDMMainDescriptionPanel::~wxCDMMainDescriptionPanel()
51 {
52 }
53
54 bool wxCDMMainDescriptionPanel::Create(
55     wxWindow* parent,
56     wxWindowID id,
57     const wxString& caption,
58     const wxPoint& pos,
59     const wxSize& size,
60     long style
61 )
62 {
63   wxPanel::Create(parent, id, pos, size, style);
64   CreateControls();
65   return TRUE;
66 }
67
68 void wxCDMMainDescriptionPanel::CreateControls()
69 {
70   wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
71
72   //Welcome
73   sizer->Add(new wxStaticText(this, -1, _("Welcome")),0, wxALIGN_CENTER, 0);
74
75   //Image
76   sizer->Add(new wxStaticBitmap(this, -1, wxBitmap(Cicon)),0, wxALIGN_CENTER, 0);
77
78   //Crea Development Manager
79   sizer->Add(new wxStaticText(this, -1, _("Crea Development Manager")),0, wxALIGN_CENTER, 0);
80
81   //Actions
82   wxStaticBox* actionsBox = new wxStaticBox(this, -1, _T("&Actions"));
83   wxStaticBoxSizer* actionsBoxInnerSizer = new wxStaticBoxSizer(actionsBox, wxVERTICAL);
84   sizer -> Add(actionsBoxInnerSizer, 2, wxEXPAND | wxALL, 20);
85
86   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_NEWPROJECT, _T("New Project")), 0, wxRIGHT | wxLEFT, 20);
87   actionsBoxInnerSizer->Add(new wxButton(this, ID_BUTTON_OPENPROJECT, _T("Open Project")), 0, wxRIGHT | wxLEFT, 20);
88
89   //Asign sizer
90   sizer->SetSizeHints(this);
91   SetSizer(sizer);
92 }
93
94 void wxCDMMainDescriptionPanel::OnBtnNewProject(wxCommandEvent& event)
95 {
96   event.ResumePropagation(1);
97   event.Skip();
98 }
99
100 void wxCDMMainDescriptionPanel::OnBtnOpenProject(wxCommandEvent& event)
101 {
102   event.ResumePropagation(1);
103   event.Skip();
104 }
105