X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fwx%2Fsrc%2FbbwxRadioButton.h;h=d2cfcf0ad4e9e1f9db35924b69e75f3c7f66d626;hb=e6b2de923e0e69c303c7d18fb8a5c1970541bb3a;hp=71a0d1095a356ce7c4f12949062cb45394288b15;hpb=d3ec778ab062261978fcaf393f33c41b20cdd275;p=bbtk.git diff --git a/packages/wx/src/bbwxRadioButton.h b/packages/wx/src/bbwxRadioButton.h index 71a0d10..d2cfcf0 100644 --- a/packages/wx/src/bbwxRadioButton.h +++ b/packages/wx/src/bbwxRadioButton.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbwxRadioButton.h,v $ Language: C++ - Date: $Date: 2008/02/11 14:47:12 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/06/10 19:19:50 $ + Version: $Revision: 1.4 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -79,7 +79,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); @@ -100,7 +100,6 @@ namespace bbwx protected: virtual void bbUserConstructor(); - }; //================================================================= @@ -109,22 +108,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); //=================================================================