]> 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 6eb1480e50ac953d155325a6f835809051cdf425..46bc6d563c9920e72e6823ec266386e7ea2c387e 100644 (file)
@@ -68,6 +68,7 @@ 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);
@@ -91,6 +92,7 @@ namespace bbwx
   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,"");