]> Creatis software - crea.git/blob - lib/creaDevManagerLib/wxCDMProjectActionsPanel.cpp
Bug #1912
[crea.git] / lib / creaDevManagerLib / wxCDMProjectActionsPanel.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 /*
28  * wxCDMProjectActionsPanel.cpp
29  *
30  *  Created on: 25/10/2012
31  *      Author: Daniel Felipe Gonzalez Obando
32  */
33
34 #include "wxCDMProjectActionsPanel.h"
35
36
37
38 wxCDMProjectActionsPanel::wxCDMProjectActionsPanel(
39     wxWindow* parent,
40     wxWindowID id,
41     const wxString& caption,
42     const wxPoint& pos,
43     const wxSize& size,
44     long style
45 )
46 {
47   wxCDMProjectActionsPanel::Create(parent,id,caption,pos,size,style);
48 }
49
50 wxCDMProjectActionsPanel::~wxCDMProjectActionsPanel()
51 {
52 }
53
54 bool wxCDMProjectActionsPanel::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   wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
65   this->SetSizer(sizer);
66
67   CreateControls();
68
69   return TRUE;
70 }
71
72 void wxCDMProjectActionsPanel::CreateControls()
73 {
74   this->GetSizer()->Add(new wxButton(this, -1, _T("Action 1")), 0, wxALL, 5);
75   this->GetSizer()->Add(new wxButton(this, -1, _T("Action 2")), 0, wxALL, 5);
76   this->GetSizer()->Add(new wxButton(this, -1, _T("Action 3")), 0, wxALL, 5);
77   this->GetSizer()->Add(new wxButton(this, -1, _T("Action 4")), 0, wxALL, 5);
78 }