]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxBlackBox.cxx
Fixed the systematic '* LINE : 0' bug when error in script
[bbtk.git] / kernel / src / bbtkWxBlackBox.cxx
index de9ce1d4e7d124aef64cfc615f8b426baa3cf33e..01ee4712626af54419e49df5e12a8f8e631fbaa1 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxBlackBox.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/10/17 08:18:14 $
-  Version:   $Revision: 1.27 $
+  Date:      $Date: 2008/11/25 11:17:13 $
+  Version:   $Revision: 1.31 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -142,8 +142,10 @@ namespace bbtk
                     <<title<<",size)"<<std::endl);
     // Insert the widget into the window
     wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
+         // LG 22/11/08 : new widget pipeline
+         bbGetBlackBox()->bbCreateWidgetAndEventHandler(this);
     wxWindow* widget = bbGetBlackBox()->bbGetOutputWidget();
-    widget->Reparent(this);
+// old :    widget->Reparent(this);
     sizer->Add( widget, 1, wxALL|wxEXPAND, 2);
     //SetAutoLayout(true);
     SetSizer(sizer);
@@ -218,9 +220,11 @@ namespace bbtk
                     <<title<<",size)"<<std::endl);
     // Insert the widget into the window
     wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
+         // LG 22/11/08 : new widget pipeline
+         bbGetBlackBox()->bbCreateWidgetAndEventHandler(this);
     wxWindow* widget = bbGetBlackBox()->bbGetOutputWidget();
     wxFrame* frame = (wxFrame*)this;
-    widget->Reparent(frame);
+// old :    widget->Reparent(frame);
     sizer->Add( widget, 1, wxALL|wxGROW, 2);
     //  frame->SetAutoLayout(true);
     frame->SetSizer(sizer);
@@ -353,7 +357,7 @@ namespace bbtk
   //=========================================================================
 
   //=========================================================================
-  void WxBlackBox::bbUserCopyConstructor()
+  void WxBlackBox::bbUserCopyConstructor(bbtk::BlackBox::Pointer)
   {
     bbtkDebugMessage("Kernel",9,"WxBlackBox::bbUserCopyConstructor()"
                     <<std::endl);
@@ -419,7 +423,7 @@ namespace bbtk
   void WxBlackBox::bbExecute(bool force)
   {
     bbtkDebugMessageInc("process",2,
-                       "=> WxBlackBox::bbExecute() ["
+                       "=> WxBlackBox::bbExecute("<<(int)force<<") ["
                        <<bbGetFullName()<<"]"<<std::endl);
 
     // If the output 'Widget' is connected then 
@@ -459,8 +463,7 @@ namespace bbtk
                     "=> WxBlackBox::bbBackwardUpdate("
                     <<(caller?caller->GetFullName():"0")<<") ["
                     <<bbGetFullName()<<"]"<<std::endl);
-    // If the caller's box to is not the box to connected to the 
-    // output 'Widget'
+
     if ( ! (( bbGetStatus() == MODIFIED ) ||
            ( bbBoxProcessModeIsAlways() )) )
       {
@@ -472,6 +475,9 @@ namespace bbtk
        return bbGetStatus();
       }
  
+    // If the caller's box to is not the box to connected to the 
+    // output 'Widget'
+
     BlackBox::OutputConnectorMapType::const_iterator i 
       = bbGetOutputConnectorMap().find("Widget") ;
     if ( i->second->GetConnectionVector().size() != 0 )
@@ -497,10 +503,12 @@ namespace bbtk
                             <<std::endl);
          }
        if ((caller==0) ||
-           ((caller!=0) && 
-            (caller->GetBlackBoxTo() != to))&&
-           (!bbGetUpdateTransferedToParent())&&
-           (to->bbGetStatus()!=UPDATING))
+           ( (caller!=0) && 
+             (caller->GetBlackBoxTo() != to)&&
+             (!bbGetUpdateTransferedToParent())&&
+             (!to->bbGetExecuting()) 
+             )
+           )
          {
            bbtkDebugMessage("process",3,
                             "   ... Transfering update order to parent"
@@ -549,13 +557,133 @@ namespace bbtk
   //=========================================================================
   void WxBlackBox::bbProcess()
   { 
-    if (bbGetOutputWidget()==0) this->bbUserCreateWidget();
+/*
+         if (bbGetOutputWidget()==0) this->bbUserCreateWidget();
     this->bbUserProcess(); 
     bbShowWindow();
     //    this->bbUserOnShow();
+*/
+         // LG 22/11/08 : new widget pipeline
+         // If output widget not connected : 
+         if ( (*bbGetOutputConnectorMap().find("Widget")).second
+                 ->GetConnectionVector().size() == 0 ) 
+      {
+                 Window* show = 0;
+                 // If the window already exists : no need creating it
+                 if (bbGetWindow()!=0)
+                 {
+                         bbtkDebugMessage("wx",2,
+                                                          "-> Window already exists"
+                                                          <<std::endl);
+                         show = bbGetWindow();
+                 }
+                 // Else create window 
+                 else 
+                 {
+                         bbtkDebugMessage("wx",2,
+                                                          "-> Creating the window"
+                                                          <<std::endl);
+                         
+                         
+                         // Input WinDialog set to true : creating a Dialog
+                         if (bbGetInputWinDialog()) 
+                         {
+                                 bbtkDebugMessage("wx",2,
+                                                                  "   Input WinDialog set to true : creating a Dialog"
+                                                                  <<std::endl);
+                                 show = (Window*) new WxBlackBoxDialog( GetThisPointer<WxBlackBox>(),
+                                                                                                               // bbGetWxParent(), 
+                                                                                                               // LG 24/11/08 : New widget pipeline
+                                                                                                               Wx::GetTopWindow(),
+                                                                                                               std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS LRMN"),
+                                                                                                               wxSize( bbGetInputWinWidth() , bbGetInputWinHeight() ) );
+                         }
+                         // Input WinDialog set to false : creating a Frame
+                         else 
+                         {
+                                 bbtkDebugMessage("process",2,
+                                                                  "   Input WinDialog set to false : creating a Frame"
+                                                                  <<std::endl);
+                                 show = (Window*) new WxBlackBoxFrame( GetThisPointer<WxBlackBox>(),
+                                                                                                          // bbGetWxParent(), 
+                                                                                                          // LG 24/11/08 : New widget pipeline
+                                                                                                          Wx::GetTopWindow(),
+                                                                                                          std2wx( bbGetInputWinTitle()  + " - bbtk (c) CREATIS LRMN"),
+                                                                                                          wxSize( bbGetInputWinWidth() , bbGetInputWinHeight() ) );
+                         }
+                                                 
+                 }
+               
+                 // Show the window
+                 show->bbShow(); 
+                 
+                 
+         }               
+         this->bbUserProcess(); 
+         
   }
   //=========================================================================
-  
+       
+       
+       // LG 24/11/08 : New widget pipeline
+       void WxBlackBox::bbCreateWidgetAndEventHandler(wxWindow* parent)
+       {
+               if (bbGetOutputWidget()==0)
+               {
+                       this->bbUserCreateWidget(parent);
+               }               
+               // If Event Handler for the widget does not exist or is obsolete : create it 
+               if (bbGetOutputWidget()!=0)
+               {
+                       if (bbGetWidgetEventHandler()==0)
+                       {
+                               bbtkDebugMessage("wx",3,
+                                                                "-> No widget event handler : creating one"
+                                                                <<std::endl);
+                               new WxBlackBoxWidgetEventHandler(GetThisPointer<WxBlackBox>(),
+                                                                                                bbGetOutputWidget());
+                       }
+                       else if ( ! bbGetWidgetEventHandler()->IsHandlerOf 
+                                        ( bbGetOutputWidget() ) )
+                       {
+                               bbtkDebugMessage("wx",3,
+                                                                "-> Obsolete widget event handler : re-creating one"
+                                                                <<std::endl);
+                               delete bbGetWidgetEventHandler();
+                               new WxBlackBoxWidgetEventHandler(GetThisPointer<WxBlackBox>(),
+                                                                                                bbGetOutputWidget());
+                       }
+                       // Sets the name of the wxWindow to the input WinTitle
+                       bbGetOutputWidget()->SetName(bbtk::std2wx(bbGetInputWinTitle()));
+               }
+               
+               
+       }
+
+
+       
+       wxWindow*  WxBlackBox::bbCreateWidgetOfInput(const std::string& in, wxWindow* parent)
+       {
+               wxWindow* w = 0;
+               // If input is connected 
+               BlackBoxInputConnector* c = bbGetInputConnectorMap().find(in)->second ;
+               if ( c->IsConnected() )                 
+               {
+                       // Get black box from 
+                       BlackBox::Pointer from = 
+                       c->GetConnection()->GetBlackBoxFrom();
+                       // Cast it into a WxBlackBox
+                       WxBlackBox::Pointer wfrom = boost::dynamic_pointer_cast<WxBlackBox>(from);
+                       // Call bbCreateWidgetAndEventHandler
+                       wfrom->bbCreateWidgetAndEventHandler(parent);
+                       // Get the widget created
+                       w = wfrom->bbGetOutputWidget();
+               }
+               return w;
+       }
+
+       /*
   //==================================================================
   /// Specific methods for window creation during pipeline execution
   /// Shows the window associated to the box 
@@ -627,7 +755,9 @@ namespace bbtk
                             "   Input WinDialog set to true : creating a Dialog"
                             <<std::endl);
            show = (Window*) new WxBlackBoxDialog( GetThisPointer<WxBlackBox>(),
-                                                  bbGetWxParent(), 
+                                                 // bbGetWxParent(), 
+                                                                                         // LG 24/11/08 : New widget pipeline
+                                                                                         Wx::GetTopWindow(),
                                                   std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS LRMN"),
                                                   wxSize( bbGetInputWinWidth() , bbGetInputWinHeight() ) );
          }
@@ -638,7 +768,9 @@ namespace bbtk
                             "   Input WinDialog set to false : creating a Frame"
                             <<std::endl);
            show = (Window*) new WxBlackBoxFrame( GetThisPointer<WxBlackBox>(),
-                                                 bbGetWxParent(), 
+                                                 // bbGetWxParent(), 
+                                                                                        // LG 24/11/08 : New widget pipeline
+                                                                                        Wx::GetTopWindow(),
                                                  std2wx( bbGetInputWinTitle()  + " - bbtk (c) CREATIS LRMN"),
                                                  wxSize( bbGetInputWinWidth() , bbGetInputWinHeight() ) );
          }
@@ -664,12 +796,12 @@ namespace bbtk
       }
   
 
-    bbtkDebugMessage("wx",1,"<= WxBlackBox::bbShowWindow() ["
+    bbtkDebugMessage("wx",2,"<= WxBlackBox::bbShowWindow() ["
                        <<bbGetFullName()<<"]"<<std::endl);
 
   }
   //==================================================================
-
+*/
 
 
 
@@ -681,7 +813,7 @@ namespace bbtk
 
     if (bbGetWindow()!=0) bbGetWindow()->bbHide();
 
-    bbtkDebugMessageDec("wx",1,"<= WxBlackBox::bbHideWindow() ["
+    bbtkDebugMessageDec("wx",2,"<= WxBlackBox::bbHideWindow() ["
                        <<bbGetFullName()<<"]"<<std::endl);
   }
   //==================================================================
@@ -695,7 +827,7 @@ namespace bbtk
 
     if (bbGetWindow()!=0) bbGetWindow()->bbClose();
 
-    bbtkDebugMessageDec("wx",1,"<= WxBlackBox::bbCloseWindow() ["
+    bbtkDebugMessageDec("wx",2,"<= WxBlackBox::bbCloseWindow() ["
                        <<bbGetFullName()<<"]"<<std::endl);
   }
   //==================================================================
@@ -718,7 +850,8 @@ namespace bbtk
 
 
   //==================================================================
-  wxWindow* WxBlackBox::bbGetWxParent() { return Wx::GetTopWindow(); }
+       // LG 24/11/08 : New widget pipeline
+       //  wxWindow* WxBlackBox::bbGetWxParent() { return Wx::GetTopWindow(); }
   //==================================================================