X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkWtBlackBox.cxx;h=a3cb0db75c09fec514311476812fcc3367d60e98;hb=f5ee1c433d1c86bc0aa11fdaba7aa891cbad9b8a;hp=d94fa513aad503e95238088a7025b02dc44c256d;hpb=c707b7a431df27af2590fcf837190ee4e5070107;p=bbtk.git diff --git a/kernel/src/bbtkWtBlackBox.cxx b/kernel/src/bbtkWtBlackBox.cxx index d94fa51..a3cb0db 100644 --- a/kernel/src/bbtkWtBlackBox.cxx +++ b/kernel/src/bbtkWtBlackBox.cxx @@ -1,3 +1,4 @@ + /* # --------------------------------------------------------------------- # @@ -72,11 +73,20 @@ namespace bbtk //========================================================================= // For the very first contruction of the application +/* struct wtServerData + { + std::string docRoot; + std::string port; + std::string address; + + }; + */ struct wtData { Wt::WContainerWidget *parent; WtBlackBox::Pointer b; - Wt::WString title; + WtBlackBox *pbox; + Wt::WString title; }; /* jScript::jScript() @@ -86,7 +96,7 @@ namespace bbtk */ // static bbtk::jScript* js = new bbtk::jScript(); static wtData myWtData; - static bool loadedJS; +// static wtServerData loadedJS; //static std::string* jss; @@ -95,75 +105,68 @@ namespace bbtk // javaScript Line //========================================================================= //Contains all the JS statements needed for the bbwt. - - + //========================================================================= // WxFrame //========================================================================= // Application WT deployed //================================================================== - - class WtWFrame : public Wt::WApplication { public: - WtWFrame( - const Wt::WEnvironment& env - ); - ~WtWFrame(); - - - - WtBlackBox::WeakPointer mBox; - - + WtWFrame( const Wt::WEnvironment& env ); + ~WtWFrame(); + WtBlackBox::WeakPointer mBox; }; - WtWFrame::WtWFrame( - const Wt::WEnvironment& env - ) - : - Wt::WApplication(env) - { + WtWFrame::WtWFrame( const Wt::WEnvironment& env ):Wt::WApplication(env) + { //std::cout<<"Adding JavaScript -- DELETE ME -- bbtkWtBlackBox.cxx"<require("/home/gonzalez/Documents/CREATOOLS/wt_library/wt/bbtk_wt_PKG/src/js/xtk.js"); //this->require("http://get.goXTK.com/xtk.js"); //this->useStyleSheet("css/demo.css"); + + //this->require("http://get.goXTK.com/xtk.js"); + this->require( "resourcesXTK/xtk.js" ); // this->require("http://get.goXTK.com/xtk_edge.js"); - this->require("http://get.goXTK.com/xtk_xdat.gui.js"); - this->require("xtk.js"); - //this->require("xtk_xdat.gui.js"); - this->useStyleSheet("style.css"); - - - std::cout<<"Cargado------------ "<require("http://get.goXTK.com/xtk_xdat.gui.js"); + this->require( "resourcesXTK/xtk_xdat.gui.js" ); + this->useStyleSheet("resourcesXTK/styleWT.css"); + // std::cout<<"Cargado------------ "< if(!myWtData.parent) - { - std::cout<<" SIN PADRE "<setMinimumSize(800,500); - std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx.................50%"<bbUserCreateWidget(myCont); + { + std::cout<<" SIN PADRE "<setMinimumSize(800,500); + std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx.......50%"<bbUserCreateWidget(myContainer); + root()->addWidget(myWtData.parent); //bbmWindow = myCont; this->refresh(); //jss = WtBlackBox::jScript; - std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx.................80%"<doJavaScript(bbtk::jScript); +//EED + myWtData.pbox->bbwtUpdateInputs(); +// myWtData.pbox->bbwtProcess(); + } //================================================================== @@ -250,7 +253,7 @@ namespace bbtk Layout(); } //================================================================== - //================================================================== + //===========================organise======================================= WxDialog::~WxDialog() { bbtkDebugMessage("widget",9,"WxDialog::~WxDialog()"<); + //std::string WtBlackBox::wtServerData::docRoot = "/home/gonzalez/Documents/pruebaResources"; + //std::string WtBlackBox::wtServerData::docRoot = "/usr/local/share/wtResources"; + //std::string WtBlackBox::wtServerData::port = "8081"; + + std::string WtBlackBox::wtServerData::docRoot = ""; + std::string WtBlackBox::wtServerData::port = ""; + std::string WtBlackBox::wtServerData::address = "0.0.0.0"; + int WtBlackBox::wtServerData::argc = 0; + char **WtBlackBox::wtServerData::argv = NULL; - //========================================================================= //========================================================================= void WtBlackBox::bbUserSetDefaultValues() @@ -332,22 +343,48 @@ namespace bbtk //Setting necessary data for Wt server deployment myWtData.parent = WWt::GetTopWindow(); - myWtData.b = GetThisPointer(); - myWtData.title = std2wt( bbGetInputWinTitle() - + " - bbtk (c) CREATIS"); + myWtData.b = GetThisPointer(); + myWtData.title = std2wt( bbGetInputWinTitle() + " - bbtk (c) CREATIS"); + myWtData.pbox = this; + + //char *argv[7] = {"./WtTest","--docroot","/home/gonzalez/Documents/pruebaResources","--http-address","0.0.0.0","--http-port","8080"}; + //int argc = 7; + +/* + char *argv[7] = {"./WtTest" +,"--docroot",(char*)WtBlackBox::wtServerData::docRoot.c_str() +,"--http-address",(char*)WtBlackBox::wtServerData::address.c_str() +,"--http-port",(char*)WtBlackBox::wtServerData::port.c_str() +}; + int argc = 3; + std::cout<<" --- PUERTO :"<isRunning()) { std::cout<<"Checking the existence of a Server deployed -DELETE THIS MESSAGE bbtkWTBlackBox.cxx"<stop(); } */ - std::cout<<"Deploying Server -- Definition of server parameters by default -DELETE THIS MESSAGE bbtkWTBlackBox.cxx"<Show(); // WWt::CreateWtAppIfNeeded(); + + + Wt::WRun(WtBlackBox::wtServerData::argc, + WtBlackBox::wtServerData::argv, + &createApplication); + + bbSetShown(true); } } @@ -406,7 +450,21 @@ namespace bbtk bbtkBlackBoxDebugMessage("widget",3,"<== WtBlackBox::bbDestroyWindow("<