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