//===== // 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_WXWIDGETS_ #ifndef __bbwxInputTextMultiLine_h_INCLUDED__ #define __bbwxInputTextMultiLine_h_INCLUDED__ #include "bbwx_EXPORT.h" #include "bbtkWxBlackBox.h" namespace bbwx { class bbwx_EXPORT InputTextMultiLine : public bbtk::WxBlackBox { BBTK_BLACK_BOX_INTERFACE(InputTextMultiLine,bbtk::WxBlackBox); //===== // 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,std::string); BBTK_DECLARE_INPUT(Title,std::string); BBTK_DECLARE_INPUT(ReactiveOnKeystroke,int); BBTK_DECLARE_OUTPUT(Out,std::string); BBTK_PROCESS(Process); void Process(); BBTK_CREATE_WIDGET(CreateWidget); void CreateWidget(wxWindow*); private: bool firsttime; //===== // 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(InputTextMultiLine,bbtk::WxBlackBox); BBTK_NAME("InputTextMultiLine"); BBTK_AUTHOR("Info-Dev"); BBTK_DESCRIPTION("No Description."); BBTK_CATEGORY("__CategoryBlackBox__"); BBTK_INPUT(InputTextMultiLine,In,"Initial text (default '')",std::string,""); BBTK_INPUT(InputTextMultiLine,Title,"Title of the input zone (default '') ", std::string,""); BBTK_INPUT(InputTextMultiLine,ReactiveOnKeystroke,"0 not event generated, 1 Enter event genereated, 2 All keys, (default '2') ", int,""); BBTK_OUTPUT(InputTextMultiLine,Out,"Current text",std::string,""); BBTK_END_DESCRIBE_BLACK_BOX(InputTextMultiLine); //===== // 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 bbwx #endif // __bbwxInputTextMultiLine_h_INCLUDED__ #endif // _USE_WXWIDGETS_