//===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== #ifdef _USE_WT_ #ifndef __bbwtRadioButton_h_INCLUDED__ #define __bbwtRadioButton_h_INCLUDED__ #include "bbwt_EXPORT.h" #include "bbtkWtBlackBox.h" namespace bbwt { class bbwt_EXPORT RadioButton : public bbtk::WtBlackBox { BBTK_BLACK_BOX_INTERFACE(RadioButton,bbtk::WtBlackBox); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== BBTK_DECLARE_INPUT(In,int); BBTK_DECLARE_INPUT(In0,std::string); BBTK_DECLARE_INPUT(In1,std::string); BBTK_DECLARE_INPUT(In2,std::string); BBTK_DECLARE_INPUT(In3,std::string); BBTK_DECLARE_INPUT(In4,std::string); BBTK_DECLARE_INPUT(In5,std::string); BBTK_DECLARE_INPUT(In6,std::string); BBTK_DECLARE_INPUT(In7,std::string); BBTK_DECLARE_INPUT(In8,std::string); BBTK_DECLARE_INPUT(In9,std::string); BBTK_DECLARE_INPUT(Title,std::string); BBTK_DECLARE_OUTPUT(Out,int); BBTK_PROCESS(Process); void Process(); BBTK_CREATE_WIDGET(CreateWidget); void CreateWidget(wxWindow*); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== }; BBTK_BEGIN_DESCRIBE_BLACK_BOX(RadioButton,bbtk::WtBlackBox); BBTK_NAME("RadioButton"); BBTK_AUTHOR("JohannGONZALEZ"); BBTK_DESCRIPTION("gonzalez@creatis.insa-lyon.fr - RadioButton widget for WT web apps."); BBTK_CATEGORY("__CategoryBlackBox__"); 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); //===== // Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) //===== } // EO namespace bbwt #endif // __bbwtRadioButton_h_INCLUDED__ #endif // _USE_WXWIDGETS_