]> 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   wxStaticBoxSizer* actionsBox = new wxStaticBoxSizer(wxVERTICAL, this, wxT("&Actions"));
91   actionsBox->GetStaticBox()->SetToolTip(wxT("Create a new crea project or open an existing one selection any of the available actions."));
92   wxPanel* actionsPanel = new wxPanel(this);
93   wxBoxSizer* actionsPanelSizer = new wxBoxSizer(wxHORIZONTAL);
94
95   wxButton* newProjectbt = new wxButton(actionsPanel, ID_BUTTON_NEWPROJECT, _T("New Project"));
96   newProjectbt->SetToolTip(wxT("Create a new crea project"));
97   actionsPanelSizer->Add(newProjectbt, 0, wxRIGHT | wxLEFT, 20);
98   wxButton* openProjectbt = new wxButton(actionsPanel, ID_BUTTON_OPENPROJECT, _T("Open Project"));
99   openProjectbt->SetToolTip(wxT("Open an existing crea project"));
100   actionsPanelSizer->Add(openProjectbt, 0, wxRIGHT | wxLEFT, 20);
101
102   actionsPanel->SetSizer(actionsPanelSizer);
103   actionsPanelSizer->Fit(actionsPanel);
104   actionsBox->Add(actionsPanel, 0, wxALIGN_CENTER | wxALL, 10);
105   sizer -> Add(actionsBox, 0, wxEXPAND | wxALL, 20);
106
107   //Asign sizer
108   sizer->SetSizeHints(this);
109   SetSizer(sizer);
110 }
111
112 void wxCDMMainDescriptionPanel::OnBtnNewProject(wxCommandEvent& event)
113 {
114   event.Skip();
115 }
116
117 void wxCDMMainDescriptionPanel::OnBtnOpenProject(wxCommandEvent& event)
118 {
119   event.Skip();
120 }
121