]> Creatis software - bbtk.git/blob - kernel/src/bbtkWtBlackBox.cxx
#2536 BBTK Feature New Normal wt-version Package
[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                 Wt::WString title;              
89         };
90
91 /*      jScript::jScript()
92         {
93                 jScriptLine = "";
94         }
95 */
96 //      static bbtk::jScript* js  = new bbtk::jScript();
97         static wtData myWtData;
98 //      static wtServerData loadedJS;
99         //static std::string* jss;
100         
101         
102
103   //=========================================================================
104   // javaScript Line
105   //=========================================================================
106         //Contains all the JS statements needed for the bbwt.
107         
108         
109   //=========================================================================
110   // WxFrame
111   //=========================================================================
112         // Application WT deployed
113   //==================================================================
114  
115
116  
117  class WtWFrame : public Wt::WApplication
118   {
119   public:
120     WtWFrame(
121                         const Wt::WEnvironment& env                     
122             );
123     ~WtWFrame();
124                 
125         
126         
127         WtBlackBox::WeakPointer mBox; 
128         
129
130   };    
131         
132
133         WtWFrame::WtWFrame(
134                         const Wt::WEnvironment& env
135                    )
136     : 
137     Wt::WApplication(env)
138   {  
139                 //std::cout<<"Adding JavaScript --  DELETE ME -- bbtkWtBlackBox.cxx"<<std::endl;
140                 //this->require("/home/gonzalez/Documents/CREATOOLS/wt_library/wt/bbtk_wt_PKG/src/js/xtk.js");
141
142                 //this->require("http://get.goXTK.com/xtk.js");
143                 //this->useStyleSheet("css/demo.css");
144
145
146         //this->require("http://get.goXTK.com/xtk.js");
147         this->require( "resourcesXTK/xtk.js" );
148
149                 
150         //      this->require("http://get.goXTK.com/xtk_edge.js");
151 //      this->require("http://get.goXTK.com/xtk_xdat.gui.js");
152         this->require( "resourcesXTK/xtk_xdat.gui.js" );
153
154
155   this->useStyleSheet("resourcesXTK/styleWT.css"); 
156   
157
158         //      std::cout<<"Cargado------------           "<<loadedJS<<std::endl;
159
160                 mBox = myWtData.b;
161                 if(!myWtData.parent)
162                         {
163                                 std::cout<<"        SIN PADRE "<<std::endl;
164                                 if(myWtData.parent == 0){std::cout<<"        PARENT 0 "<<std::endl;}
165                                 if(myWtData.parent == NULL){std::cout<<"        PARENT NULL "<<std::endl;}
166                                 myWtData.parent = new Wt::WContainerWidget();
167                                 std::cout<<"Parent created --  DELETE ME -- bbtkWtBlackBox.cxx"<<std::endl;
168                         }
169
170                 Wt::WContainerWidget *myCont = new Wt::WContainerWidget(myWtData.parent);
171                 myCont->setMinimumSize(800,500);
172                 std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx.................50%"<<std::endl;
173                 myWtData.b->bbUserCreateWidget(myCont);
174                 root()->addWidget(myWtData.parent);
175                 //bbmWindow = myCont;
176                 this->refresh();
177                 //jss = WtBlackBox::jScript;
178                 std::cout<<"Creando WebWIDGET DELETE ME ---- bbtkWtBlackBox.cxx.................80%"<<std::endl;
179                 std::cout<<"Creando WebWIDGET DELETE ME SCRIPT : ---"<<bbtk::jScript<<".................80%"<<std::endl;
180                 //this->doJavaScript(bbtk::jScript); 
181
182
183   }
184   //==================================================================
185   //==================================================================
186   WtWFrame::~WtWFrame() 
187     { 
188       if (mBox.lock())
189         bbtkDebugMessage("widget",9,"["<<mBox.lock()->bbGetName()
190                          <<"] $$$$$$$$$$$$$$$$$$$ ~W()"
191                          <<std::endl);
192       else 
193         bbtkDebugMessage("widget",9,"[DEAD] $$$$$$$$$$$$$$$$$$$$$ ~WtContainer()"<<std::endl);
194       bbtkDebugMessage("widget",9,"WtWFrame::~WtWFrame()"<<std::endl);
195       if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
196       WWt::DecNbWindowsAlive();
197     }
198
199
200  
201    
202         Wt::WApplication *createApplication(const Wt::WEnvironment& env)
203         {
204                         return new WtWFrame(env);                       
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()  
360                              + " - bbtk (c) CREATIS");
361
362
363
364     
365
366                 
367                 //char  *argv[7] =  {"./WtTest","--docroot","/home/gonzalez/Documents/pruebaResources","--http-address","0.0.0.0","--http-port","8080"};
368                 //int argc = 7;
369                 
370 /*              
371                         char  *argv[7] =  {"./WtTest"
372 ,"--docroot",(char*)WtBlackBox::wtServerData::docRoot.c_str()
373 ,"--http-address",(char*)WtBlackBox::wtServerData::address.c_str()
374 ,"--http-port",(char*)WtBlackBox::wtServerData::port.c_str()
375 };
376                 int argc = 3;
377                 std::cout<<" ---  PUERTO  :"<<WtBlackBox::wtServerData::port<<std::endl;
378 */
379
380 /*              
381 char  *argv[2] =  {"./bbiWeb.wt","client"};
382 int argc=2;
383 */
384
385
386         /*      if(Wt::WServer::instance()->isRunning())
387                 {
388                         std::cout<<"Checking the existence of a Server deployed  -DELETE THIS MESSAGE bbtkWTBlackBox.cxx"<<std::endl;
389                         Wt::WServer::instance()->stop();
390                 }
391         */
392                 std::cout<<"EED WtBlackBox::bbCreateFrameWindow  Deploying Server -- Definition of server parameters by default  -DELETE THIS MESSAGE bbtkWTBlackBox.cxx"<<std::endl;
393 //              Wt::WRun(argc,argv,&createApplication); 
394                 Wt::WRun(WtBlackBox::wtServerData::argc,
395                          WtBlackBox::wtServerData::argv,
396                          &createApplication);   
397    }
398
399   //==================================================================    
400
401   //==================================================================    
402   void WtBlackBox::bbSetWindow(Wt::WContainerWidget* w) 
403   {
404     bbtkBlackBoxDebugMessage("widget",9,"==> WtBlackBox::bbSetWindow("<<w<<")"<<std::endl);
405     if ((bbmWindow != 0)&&(w!=0)) 
406       { 
407         std::cout << "ERRRRRRRROOOOR"<<std::endl; 
408       }
409     bbmWindow = w;
410   }
411
412         
413
414     //==================================================================    
415
416   //==================================================================
417   void WtBlackBox::bbShowWindow()
418   {
419     if ((bbmWindow) && (!bbIsShown()))
420       {
421         bbtkBlackBoxDebugMessage("widget",3,"==> WtBlackBox::bbShowWindow()"
422                          <<std::endl);
423         if (bbGetInputWinDialog()) 
424           {
425           //  ((WxDialog*)bbmWindow)->ShowModal();
426           }
427         else
428           {
429                 // There is not such a thing like show becouse it is a webapp
430            // bbGetWindow()->Show();
431           //  WWt::CreateWtAppIfNeeded();
432             bbSetShown(true);
433           } 
434       }
435   }
436   //==================================================================    
437
438   //==================================================================    
439   void WtBlackBox::bbDestroyWindow()
440   {
441     bbtkBlackBoxDebugMessage("widget",3,"==> WtBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
442     if (bbGetWindow()!=NULL) 
443       {
444         //       wxWindow* w = bbGetWindow();
445         //bbSetWindow(0);
446         // WE SHOULD DESTROY THE WINDOW WITH THE Close METHOD
447         // HOWEVER I
448         //w->Close(true);
449         //
450         delete bbGetWindow();
451         bbSetShown(false);
452       }
453     bbtkBlackBoxDebugMessage("widget",3,"<== WtBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
454
455   }
456   //==================================================================    
457
458 }//namespace bbtk
459
460 #endif
461
462