X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fwx%2Fsrc%2FbbwxRadioButton.h;h=79bcb637c391ade01b874ceb813e6eb708366a3d;hb=8586ecb2c333e453ce5e50e3e91971d124dec578;hp=71a0d1095a356ce7c4f12949062cb45394288b15;hpb=d3ec778ab062261978fcaf393f33c41b20cdd275;p=bbtk.git diff --git a/packages/wx/src/bbwxRadioButton.h b/packages/wx/src/bbwxRadioButton.h index 71a0d10..79bcb63 100644 --- a/packages/wx/src/bbwxRadioButton.h +++ b/packages/wx/src/bbwxRadioButton.h @@ -1,20 +1,35 @@ -/*========================================================================= - +/*========================================================================= Program: bbtk Module: $RCSfile: bbwxRadioButton.h,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.6 $ +=========================================================================*/ + +/* --------------------------------------------------------------------- + +* 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. +* ------------------------------------------------------------------------ */ + + +/** * \brief Short description in one line * * Long description which @@ -79,7 +94,7 @@ namespace bbwx class /*BBTK_EXPORT*/ RadioButton : public bbtk::WxBlackBox { - BBTK_USER_BLACK_BOX_INTERFACE(RadioButton,bbtk::WxBlackBox); + BBTK_BLACK_BOX_INTERFACE(RadioButton,bbtk::WxBlackBox); BBTK_DECLARE_INPUT(In,int); BBTK_DECLARE_INPUT(In0,std::string); BBTK_DECLARE_INPUT(In1,std::string); @@ -96,11 +111,10 @@ namespace bbwx BBTK_CREATE_WIDGET(CreateWidget); BBTK_PROCESS(Process); void Process(); - void CreateWidget(); + void CreateWidget(wxWindow*); protected: virtual void bbUserConstructor(); - }; //================================================================= @@ -109,22 +123,23 @@ namespace bbwx BBTK_NAME("RadioButton"); BBTK_AUTHOR("eduardo.davila@creatis.insa-lyon.fr"); BBTK_DESCRIPTION("RadioButton group widget 0-9 entries"); - BBTK_INPUT(RadioButton,In,"Set initial item",int); - - BBTK_INPUT(RadioButton,In0,"option 0",std::string); - BBTK_INPUT(RadioButton,In1,"option 1",std::string); - BBTK_INPUT(RadioButton,In2,"option 2",std::string); - BBTK_INPUT(RadioButton,In3,"option 3",std::string); - BBTK_INPUT(RadioButton,In4,"option 4",std::string); - BBTK_INPUT(RadioButton,In5,"option 5",std::string); - BBTK_INPUT(RadioButton,In6,"option 6",std::string); - BBTK_INPUT(RadioButton,In7,"option 7",std::string); - BBTK_INPUT(RadioButton,In8,"option 8",std::string); - BBTK_INPUT(RadioButton,In9,"option 9",std::string); - - BBTK_INPUT(RadioButton,Title,"Title of the widget (default '') ",std::string); - - BBTK_OUTPUT(RadioButton,Out,"Item selected",int); + BBTK_INPUT(RadioButton,In,"Set initial item",int,""); + + BBTK_INPUT(RadioButton,In0,"option 0",std::string,""); + BBTK_INPUT(RadioButton,In1,"option 1",std::string,""); + BBTK_INPUT(RadioButton,In2,"option 2",std::string,""); + BBTK_INPUT(RadioButton,In3,"option 3",std::string,""); + BBTK_INPUT(RadioButton,In4,"option 4",std::string,""); + BBTK_INPUT(RadioButton,In5,"option 5",std::string,""); + BBTK_INPUT(RadioButton,In6,"option 6",std::string,""); + BBTK_INPUT(RadioButton,In7,"option 7",std::string,""); + BBTK_INPUT(RadioButton,In8,"option 8",std::string,""); + BBTK_INPUT(RadioButton,In9,"option 9",std::string,""); + + BBTK_INPUT(RadioButton,Title,"Title of the widget (default '') ", + std::string,""); + + BBTK_OUTPUT(RadioButton,Out,"Item selected",int,""); BBTK_END_DESCRIBE_BLACK_BOX(RadioButton); //=================================================================