X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=packages%2Fwx%2Fsrc%2FbbwxInputText.h;h=18226a73cd9438b6dcc2f063162f07503c830a76;hb=26550d07aa8d312e33a18a19b8844ba249202336;hp=6cdb27e0c16688d0541d3cf4b36ff6b86f51c42a;hpb=888f2592d143847b6598d947cd037162c4fb90c6;p=bbtk.git diff --git a/packages/wx/src/bbwxInputText.h b/packages/wx/src/bbwxInputText.h index 6cdb27e..18226a7 100644 --- a/packages/wx/src/bbwxInputText.h +++ b/packages/wx/src/bbwxInputText.h @@ -3,8 +3,8 @@ Program: bbtk Module: $RCSfile: bbwxInputText.h,v $ Language: C++ - Date: $Date: 2008/02/15 12:47:18 $ - Version: $Revision: 1.1 $ + Date: $Date: 2008/04/18 12:59:52 $ + Version: $Revision: 1.3 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -78,7 +78,7 @@ namespace bbwx class /*BBTK_EXPORT*/ InputText : public bbtk::WxBlackBox { - BBTK_USER_BLACK_BOX_INTERFACE(InputText,bbtk::WxBlackBox); + BBTK_BLACK_BOX_INTERFACE(InputText,bbtk::WxBlackBox); BBTK_DECLARE_INPUT(In,std::string); BBTK_DECLARE_INPUT(Title,std::string); BBTK_DECLARE_OUTPUT(Out,std::string); @@ -98,11 +98,12 @@ namespace bbwx BBTK_NAME("InputText"); BBTK_AUTHOR("laurent guigues at creatis.insa-lyon.fr"); BBTK_DESCRIPTION("A zone in which the user can enter a text (wxTextCtrl)"); - BBTK_INPUT(InputText,In,"Initial text (default '')",std::string); + BBTK_INPUT(InputText,In,"Initial text (default '')",std::string,""); - BBTK_INPUT(InputText,Title,"Title of the input zone (default '') ",std::string); + BBTK_INPUT(InputText,Title,"Title of the input zone (default '') ", + std::string,""); - BBTK_OUTPUT(InputText,Out,"Current text",std::string); + BBTK_OUTPUT(InputText,Out,"Current text",std::string,""); BBTK_END_DESCRIBE_BLACK_BOX(InputText); //=================================================================