]> Creatis software - bbtk.git/blobdiff - packages/wx/src/bbwxInputText.h
#3234 BBTK Feature New Normal - InputText with password option
[bbtk.git] / packages / wx / src / bbwxInputText.h
index 46bc6d563c9920e72e6823ec266386e7ea2c387e..dbaa017c2a4a2b5df0fcbdb180eeed08cdf84175 100644 (file)
@@ -68,7 +68,6 @@ namespace bbwx
     BBTK_BLACK_BOX_INTERFACE(InputText,bbtk::WxBlackBox);
     BBTK_DECLARE_INPUT(In,std::string);
     BBTK_DECLARE_INPUT(Title,std::string);
-    BBTK_DECLARE_INPUT(Style,int);
     BBTK_DECLARE_INPUT(ReactiveOnKeystroke,int);
     BBTK_DECLARE_OUTPUT(Out,std::string);
     BBTK_PROCESS(Process);
@@ -90,11 +89,8 @@ namespace bbwx
   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,Title,"Title of the input zone (default '') ", std::string,"");
-  BBTK_INPUT(InputText,Style,"(default 0) 0:OneLine 1:Password ", int,"");
   BBTK_INPUT(InputText,ReactiveOnKeystroke,"0 not event generated, 1 Enter event genereated, 2 All keys, (default '2') ", int,"");
-
   BBTK_OUTPUT(InputText,Out,"Current text",std::string,"");
   BBTK_END_DESCRIBE_BLACK_BOX(InputText);