2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
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.
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
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 # ------------------------------------------------------------------------
28 * wxCDMProjectActionsPanel.cpp
30 * Created on: 25/10/2012
31 * Author: Daniel Felipe Gonzalez Obando
34 #include "wxCDMProjectActionsPanel.h"
38 wxCDMProjectActionsPanel::wxCDMProjectActionsPanel(
41 const wxString& caption,
47 wxCDMProjectActionsPanel::Create(parent,id,caption,pos,size,style);
50 wxCDMProjectActionsPanel::~wxCDMProjectActionsPanel()
54 bool wxCDMProjectActionsPanel::Create(
57 const wxString& caption,
63 wxPanel::Create(parent,id,pos,size,style);
64 wxBoxSizer* sizer = new wxBoxSizer(wxHORIZONTAL);
65 this->SetSizer(sizer);
72 void wxCDMProjectActionsPanel::CreateControls()
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);