X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fwx%2Fsrc%2FbbwxRadioButton.cxx;h=69755095d1c1899394122c7afaf0ee66c6733741;hb=8586ecb2c333e453ce5e50e3e91971d124dec578;hp=6527cfa4719ad3da196593ce9af52fa639756750;hpb=d3ec778ab062261978fcaf393f33c41b20cdd275;p=bbtk.git diff --git a/packages/wx/src/bbwxRadioButton.cxx b/packages/wx/src/bbwxRadioButton.cxx index 6527cfa..6975509 100644 --- a/packages/wx/src/bbwxRadioButton.cxx +++ b/packages/wx/src/bbwxRadioButton.cxx @@ -1,20 +1,33 @@ -/*========================================================================= - +/*========================================================================= Program: bbtk Module: $RCSfile: bbwxRadioButton.cxx,v $ Language: C++ - Date: $Date: 2008/02/11 14:47:12 $ - Version: $Revision: 1.1 $ - - Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de - l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - + Date: $Date: 2008/11/24 15:45:51 $ + Version: $Revision: 1.7 $ =========================================================================*/ + +/* --------------------------------------------------------------------- + +* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) +* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux +* +* This software is governed by the CeCILL-B license under French law and +* abiding by the rules of distribution of free software. You can use, +* modify and/ or redistribute the software under the terms of the CeCILL-B +* license as circulated by CEA, CNRS and INRIA at the following URL +* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +* or in the file LICENSE.txt. +* +* As a counterpart to the access to the source code and rights to copy, +* modify and redistribute granted by the license, users are provided only +* with a limited warranty and the software's author, the holder of the +* economic rights, and the successive licensors have only limited +* liability. +* +* The fact that you are presently reading this means that you have had +* knowledge of the CeCILL-B license and that you accept its terms. +* ------------------------------------------------------------------------ */ + /** * \file * \brief @@ -40,9 +53,9 @@ namespace bbwx wxString title, std::vector lstIn ) : - wxPanel( parent, -1) + wxPanel( parent, -1) , + mBox(box) { - wxPanel *panel = this; MAX_RADIOBUTTON = lstIn.size(); int i; @@ -94,10 +107,10 @@ namespace bbwx } } sizer->AddGrowableCol(0); - panel->SetSizer(sizer); - panel->SetAutoLayout(true); - panel->Layout(); + +// panel->SetAutoLayout(true); +// panel->Layout(); } //------------------------------------------------------------------------- @@ -139,7 +152,7 @@ namespace bbwx //-------------------------------------------------------------------------- - BBTK_USER_BLACK_BOX_IMPLEMENTATION(RadioButton,bbtk::WxBlackBox); + BBTK_BLACK_BOX_IMPLEMENTATION(RadioButton,bbtk::WxBlackBox); void RadioButton::bbUserConstructor() @@ -170,7 +183,7 @@ namespace bbwx * * */ - void RadioButton::CreateWidget() + void RadioButton::CreateWidget(wxWindow* parent) { std::vector lstIn; @@ -187,11 +200,13 @@ namespace bbwx RadioButtonWidget *w = new RadioButtonWidget( this, - bbGetWxParent(), +// bbGetWxParent(), + parent, bbGetInputIn() , bbtk::std2wx(bbGetInputTitle()), lstIn ); + bbSetOutputOut( bbGetInputIn() ); bbSetOutputWidget( w ); }