]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxBlackBox.cxx
*** empty log message ***
[bbtk.git] / kernel / src / bbtkWxBlackBox.cxx
index 208ad9dfeec119ce22102f10a9bdbd24b572537c..a5f2ce099e3fd2a2047c1ff4465b041797284812 100644 (file)
@@ -2,8 +2,8 @@
   Program:   bbtk
   Module:    $RCSfile: bbtkWxBlackBox.cxx,v $
   Language:  C++
-  Date:      $Date: 2008/11/17 10:00:24 $
-  Version:   $Revision: 1.29 $
+  Date:      $Date: 2008/11/24 15:45:48 $
+  Version:   $Revision: 1.30 $
 =========================================================================*/
 
 /* ---------------------------------------------------------------------
@@ -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);
@@ -553,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 
@@ -631,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() ) );
          }
@@ -642,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() ) );
          }
@@ -673,7 +801,7 @@ namespace bbtk
 
   }
   //==================================================================
-
+*/
 
 
 
@@ -722,7 +850,8 @@ namespace bbtk
 
 
   //==================================================================
-  wxWindow* WxBlackBox::bbGetWxParent() { return Wx::GetTopWindow(); }
+       // LG 24/11/08 : New widget pipeline
+       //  wxWindow* WxBlackBox::bbGetWxParent() { return Wx::GetTopWindow(); }
   //==================================================================