]> Creatis software - bbtk.git/blob - kernel/src/bbtkWtBlackBox.cxx
#3299 BBTK Bug New Normal wt4
[bbtk.git] / kernel / src / bbtkWtBlackBox.cxx
1
2 /*
3  # ---------------------------------------------------------------------
4  #
5  # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6  #                        pour la SantÈ)
7  # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
8  # Previous Authors : Laurent Guigues, Jean-Pierre Roux
9  # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
10  #
11  #  This software is governed by the CeCILL-B license under French law and
12  #  abiding by the rules of distribution of free software. You can  use,
13  #  modify and/ or redistribute the software under the terms of the CeCILL-B
14  #  license as circulated by CEA, CNRS and INRIA at the following URL
15  #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
16  #  or in the file LICENSE.txt.
17  #
18  #  As a counterpart to the access to the source code and  rights to copy,
19  #  modify and redistribute granted by the license, users are provided only
20  #  with a limited warranty  and the software's author,  the holder of the
21  #  economic rights,  and the successive licensors  have only  limited
22  #  liability.
23  #
24  #  The fact that you are presently reading this means that you have had
25  #  knowledge of the CeCILL-B license and that you accept its terms.
26  # ------------------------------------------------------------------------ */
27
28
29 /*=========================================================================
30   Program:   bbtk
31   Module:    $RCSfile: bbtkWxBlackBox.cxx,v $
32   Language:  C++
33   Date:      $Date: 2012/11/16 08:49:01 $
34   Version:   $Revision: 1.45 $
35 =========================================================================*/
36
37
38
39 #ifdef _USE_WT_
40
41 /**
42  *  \file 
43  *  \brief 
44  */
45  
46 #include "bbtkWtBlackBox.h"
47 #include "bbtkBlackBoxOutputConnector.h"
48
49
50 //#include "bbtkWxContainerBlackBox.h"
51 //#include <wx/dialog.h>
52
53 //#include "bbtkData.h"
54 //#include "bbtkFactory.h"
55
56
57
58
59 namespace bbtk
60 {
61
62  
63 /*      
64         class jScript
65         {
66                 public:
67                         jScript();
68                         std::string jScriptLine;
69         };
70 */
71   //=========================================================================
72   // wtData structure
73   //=========================================================================
74
75         // For the very first contruction of the application
76 /*      struct wtServerData
77         {
78           std::string docRoot;
79           std::string port;
80           std::string address;
81         
82         };
83         */
84         struct wtData
85         {
86                 Wt::WContainerWidget *parent;
87                 WtBlackBox::Pointer b;
88                 WtBlackBox *pbox;       
89                 Wt::WString title;      
90         };
91
92 /*      jScript::jScript()
93         {
94                 jScriptLine = "";
95         }
96 */
97 //      static bbtk::jScript* js  = new bbtk::jScript();
98         static wtData myWtData;
99 //      static wtServerData loadedJS;
100         //static std::string* jss;
101         
102         
103
104   //=========================================================================
105   // javaScript Line
106   //=========================================================================
107         //Contains all the JS statements needed for the bbwt.
108                 
109   //=========================================================================
110   // WxFrame
111   //=========================================================================
112         // Application WT deployed
113   //==================================================================
114  
115  class WtWFrame : public Wt::WApplication
116   {
117   public:
118     WtWFrame( const Wt::WEnvironment& env );
119     ~WtWFrame();        
120     WtBlackBox::WeakPointer mBox; 
121   };    
122         
123
124         WtWFrame::WtWFrame( const Wt::WEnvironment& env ):Wt::WApplication(env)
125         {  
126                 //std::cout<<"Adding JavaScript --  DELETE ME -- bbtkWtBlackBox.cxx"<<std::endl;
127                 //this->require("/home/gonzalez/Documents/CREATOOLS/wt_library/wt/bbtk_wt_PKG/src/js/xtk.js");
128
129                 //this->require("http://get.goXTK.com/xtk.js");
130                 //this->useStyleSheet("css/demo.css");
131
132         //this->require("http://get.goXTK.com/xtk.js");
133         this->require( "resourcesXTK/xtk.js" );
134                 
135         //      this->require("http://get.goXTK.com/xtk_edge.js");
136 //      this->require("http://get.goXTK.com/xtk_xdat.gui.js");
137         this->require( "resourcesXTK/xtk_xdat.gui.js" );
138
139   this->useStyleSheet("resourcesXTK/styleWT.css"); 
140         //      std::cout<<"Cargado------------           "<<loadedJS<<std::endl;
141                 mBox = myWtData.b;
142
143 //EED -->
144                 if(!myWtData.parent)
145                 {
146                         std::cout<<"        SIN PADRE "<<std::endl;
147                         if(myWtData.parent == 0){std::cout<<"        PARENT 0 "<<std::endl;}
148                         if(myWtData.parent == NULL){std::cout<<"        PARENT NULL "<<std::endl;}
149                         myWtData.parent = new Wt::WContainerWidget();
150                         std::cout<<"Parent created --  DELETE ME -- bbtkWtBlackBox.cxx"<<std::endl;
151                 }
152
153 //EED2019-08-20         
154 //Wt::WContainerWidget *myContainer = new Wt::WContainerWidget( myWtData.parent );
155                 Wt::WContainerWidget *myContainer = new Wt::WContainerWidget(  );
156 printf("EED (WT) WtWFrame  warnning 2019 A  parent ?? \n");
157
158                 myContainer->setMinimumSize(800,500);
159                 std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx.......50%"<<std::endl;
160                 myWtData.b->bbUserCreateWidget(myContainer);
161
162 //EED2019-08-20         
163 //              root()->addWidget(myWtData.parent);
164 printf("EED (WT) WtWFrame  warnning 2019 B  parent ?? \n");
165
166                 //bbmWindow = myCont;
167                 this->refresh();
168                 //jss = WtBlackBox::jScript;
169                 std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx........80%"<<std::endl;
170                 std::cout<<"Creando WebWIDGET DELETE ME SCRIPT : ---"<<bbtk::jScript<<"......80%"<<std::endl;
171                 //this->doJavaScript(bbtk::jScript); 
172
173 //EED
174        myWtData.pbox->bbwtUpdateInputs();
175 //       myWtData.pbox->bbwtProcess();
176
177
178   }
179   //==================================================================
180   //==================================================================
181   WtWFrame::~WtWFrame() 
182     { 
183       if (mBox.lock())
184         bbtkDebugMessage("widget",9,"["<<mBox.lock()->bbGetName()
185                          <<"] $$$$$$$$$$$$$$$$$$$ ~W()"
186                          <<std::endl);
187       else 
188         bbtkDebugMessage("widget",9,"[DEAD] $$$$$$$$$$$$$$$$$$$$$ ~WtContainer()"<<std::endl);
189       bbtkDebugMessage("widget",9,"WtWFrame::~WtWFrame()"<<std::endl);
190       if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
191       WWt::DecNbWindowsAlive();
192     }
193
194
195 //EED2019-08-20 
196 //      Wt::WApplication *createApplication(const Wt::WEnvironment& env)
197    std::unique_ptr<Wt::WApplication> createApplication(const Wt::WEnvironment& env)
198
199         {
200 printf("EED (WT) createApplication  warnning 2019 \n");
201 //EED2019-08-20 
202 //                      return new WtWFrame(env);                       
203                         std::make_unique<WtWFrame>(env);
204
205         }
206
207
208   //=========================================================================
209   // WxDialogWxBlackBox::Pointer box
210   //=========================================================================
211
212    //==================================================================
213   // Dialog window which is modal
214  /* class BBTK_EXPORT  WxDialog : public wxDialog
215   {
216   public:
217     WxDialog(WxBlackBox::Pointer box, 
218                      wxWindow *parent, 
219                      wxString title, 
220                      wxSize size);
221     ~WxDialog();Wt::GetTopWindow()
222     void OnCloseWindow(wxCloseEvent& event);
223
224
225     WxBlackBox::WeakPointer mBox;      
226     DECLARE_EVENT_TABLE();
227     
228   };
229   
230   BEGIN_EVENT_TABLE(WxDialog, wxDialog)
231     EVT_CLOSE(WxDialog::OnCloseWindow)
232     END_EVENT_TABLE();
233   //=========================================================================
234
235   //=========================================================================
236   WxDialog::WxDialog(WxBlackBox::Pointer b,
237                      wxWindow *parent,
238                      wxString title,
239                      wxSize size)
240     :
241     wxDialog( parent, 
242                 -1, 
243                 title,
244                 wxDefaultPosition,
245                 size,
246                 wxRESIZE_BORDER | 
247                 wxSYSTEM_MENU  |
248                 wxCLOSE_BOX |
249                 wxMAXIMIZE_BOX | 
250                 wxMINIMIZE_BOX | 
251                 wxCAPTION  
252               ),
253     mBox(b)
254   {
255     bbtkDebugMessage("widget",9,"WxDialog::WxDialog ["<<b->bbGetName()<<"]"
256                      <<std::endl);WxBlackBox::Pointer box
257     Wx::IncNbWindowsAlive();
258     b->bbSetWindow(this);
259     // Insert the widget into the window
260     wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
261     b->bbUserCreateWidget(this);
262     wxWindow* widget = b->bbGetOutputWidget();
263     sizer->Add( widget, 1, wxALL|wxGROW, 2);
264     SetSizer(sizer);
265     Layout();
266   }
267   //==================================================================
268   //===========================organise=======================================
269   WxDialog::~WxDialog() 
270     { 
271       bbtkDebugMessage("widget",9,"WxDialog::~WxDialog()"<<std::endl);
272       //bbtkDebugMessage("widget",9,"WxFrame::~WxFrame()"<<std::endl);
273       //      if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
274       //      Wx::DecNbWindowsAlive();
275     }
276    //==================================================================
277    //==================================================================
278   void WxDialog::OnCloseWindow(wxCloseEvent& event)
279     {
280       bbtkDebugMessage("widget",9,"WxDialog::OnCloseWindow()"<<wxGUIEditorGraphicBBS:std::endl);
281       if (mBox.lock()) mBox.lock()->bbSetWindow(0); http://doodle.com/qx65tfxismf7d6ku5vxykghs/admin#table
282       Wx::DecNbWindowsAlive();
283       this->Destroy();
284     }
285    //==================================================================
286
287 */
288  //=========================================================================
289   // WxBlackBox
290   //=========================================================================
291
292   //=========================================================================
293   //=========================================================================
294   //=========================================================================
295   //=========================================================================
296   BBTK_BLACK_BOX_IMPLEMENTATION(WtBlackBox,WidgetBlackBox<Wt::WContainerWidget>);
297         
298         //std::string WtBlackBox::wtServerData::docRoot = "/home/gonzalez/Documents/pruebaResources";
299         //std::string WtBlackBox::wtServerData::docRoot = "/usr/local/share/wtResources";
300   //std::string WtBlackBox::wtServerData::port    = "8081";
301
302         std::string WtBlackBox::wtServerData::docRoot   = "<void>";
303         std::string WtBlackBox::wtServerData::port      = "<void>";
304         std::string WtBlackBox::wtServerData::address   = "0.0.0.0";
305         int WtBlackBox::wtServerData::argc                              = 0;
306         char **WtBlackBox::wtServerData::argv                   = NULL;
307
308   //=========================================================================
309   //=========================================================================
310   void WtBlackBox::bbUserSetDefaultValues()
311   {
312     bbtkBlackBoxDebugMessage("widget",5,"WtBlackBox::bbUserSetDefaultValues()"<<std::endl);
313     bbmWindow = 0;
314   }
315   //=========================================================================
316
317   //=========================================================================
318   void WtBlackBox::bbUserInitializeProcessing()
319   {
320
321   }
322   //================================================================http://intranet-if.insa-lyon.fr/temps/5IF39.html==    
323
324   //=========================================================================
325   void WtBlackBox::bbUserFinalizeProcessing()
326   {
327     bbtkBlackBoxDebugMessage("widget",5,"==> WtBlackBox::bbUserFinalizeProcessing()"<<std::endl);
328     bbDestroyWindow();
329     bbtkBlackBoxDebugMessage("widget",5,"<== WtBlackBox::bbUserFinalizeProcessing()"<<std::endl);
330   }
331   //==================================================================    
332
333   //==================================================================    
334   /// Callback for creating a Dialog window (modal)
335   void WtBlackBox::bbCreateDialogWindow()
336   {
337           bbtkBlackBoxDebugMessage("widget",3,
338                      "==> WtBlackBox::bbCreateDialogWindow() - No Dialog must be created, it is a web app"
339                      <<std::endl);
340
341   } 
342   //=========================================================================
343
344   //==================================================================    
345
346   //==================================================================    
347   /// Callback for creating a Frame window 
348         void WtBlackBox::bbCreateFrameWindow()
349         {
350
351                 bbtkBlackBoxDebugMessage("widget",3,
352                         "==> WtBlackBox::bbCreateFrameWindow() - parent = "
353                         <<WWt::GetTopWindow()
354                         <<std::endl);
355
356                 //Setting necessary data for Wt server deployment
357                 myWtData.parent = WWt::GetTopWindow();
358                 myWtData.b      = GetThisPointer<WtBlackBox>();
359                 myWtData.title  = std2wt( bbGetInputWinTitle() + " - bbtk (c) CREATIS");
360                 myWtData.pbox   = this;
361                 
362                 //char  *argv[7] =  {"./WtTest","--docroot","/home/gonzalez/Documents/pruebaResources","--http-address","0.0.0.0","--http-port","8080"};
363                 //int argc = 7;
364                 
365 /*              
366                         char  *argv[7] =  {"./WtTest"
367 ,"--docroot",(char*)WtBlackBox::wtServerData::docRoot.c_str()
368 ,"--http-address",(char*)WtBlackBox::wtServerData::address.c_str()
369 ,"--http-port",(char*)WtBlackBox::wtServerData::port.c_str()
370 };
371                 int argc = 3;
372                 std::cout<<" ---  PUERTO  :"<<WtBlackBox::wtServerData::port<<std::endl;
373 */
374
375 /*              
376 char  *argv[2] =  {"./bbiWeb.wt","client"};
377 int argc=2;
378 */
379
380
381         /*      if(Wt::WServer::instance()->isRunning())
382                 {
383                         std::cout<<"Checking the existence of a Server deployed  -DELETE THIS MESSAGE bbtkWTBlackBox.cxx"<<std::endl;
384                         Wt::WServer::instance()->stop();
385                 }
386         */
387
388
389                 std::cout<<"EED WtBlackBox::bbCreateFrameWindow  Deploying Server -- Definition of server parameters by default  -DELETE THIS MESSAGE bbtkWTBlackBox.cxx"<<std::endl;
390
391
392 //              Wt::WRun(argc,argv,&createApplication); 
393
394                 Wt::WRun(WtBlackBox::wtServerData::argc,
395                          WtBlackBox::wtServerData::argv,
396                  &createApplication);   
397
398
399    }
400
401   //==================================================================    
402
403   //==================================================================    
404   void WtBlackBox::bbSetWindow(Wt::WContainerWidget* w) 
405   {
406     bbtkBlackBoxDebugMessage("widget",9,"==> WtBlackBox::bbSetWindow("<<w<<")"<<std::endl);
407     if ((bbmWindow != 0)&&(w!=0)) 
408       { 
409         std::cout << "ERRRRRRRROOOOR"<<std::endl; 
410       }
411     bbmWindow = w;
412   }
413
414         
415
416     //==================================================================    
417
418   //==================================================================
419   void WtBlackBox::bbShowWindow()
420   {
421     if ((bbmWindow) && (!bbIsShown()))
422       {
423         bbtkBlackBoxDebugMessage("widget",3,"==> WtBlackBox::bbShowWindow()"
424                          <<std::endl);
425         if (bbGetInputWinDialog()) 
426           {
427           //  ((WxDialog*)bbmWindow)->ShowModal();
428           }
429         else
430           {
431                 // There is not such a thing like show becouse it is a webapp
432            // bbGetWindow()->Show();
433           //  WWt::CreateWtAppIfNeeded();
434
435
436                 Wt::WRun(WtBlackBox::wtServerData::argc,
437                          WtBlackBox::wtServerData::argv,
438                          &createApplication);   
439
440
441             bbSetShown(true);
442           } 
443       }
444   }
445   //==================================================================    
446
447   //==================================================================    
448   void WtBlackBox::bbDestroyWindow()
449   {
450     bbtkBlackBoxDebugMessage("widget",3,"==> WtBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
451     if (bbGetWindow()!=NULL) 
452       {
453         //       wxWindow* w = bbGetWindow();
454         //bbSetWindow(0);
455         // WE SHOULD DESTROY THE WINDOW WITH THE Close METHOD
456         // HOWEVER I
457         //w->Close(true);
458         //
459         delete bbGetWindow();
460         bbSetShown(false);
461       }
462     bbtkBlackBoxDebugMessage("widget",3,"<== WtBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
463
464   }
465
466
467 //==================================================================    
468         void WtBlackBox::bbwtUpdateInputs()
469         {
470                 BlackBox::bbUpdateInputs();
471         }
472
473 //==================================================================    
474         void WtBlackBox::bbwtProcess()
475         {
476                 BlackBox::bbProcess();
477         }
478
479
480
481 }//namespace bbtk
482
483 #endif
484
485