]> Creatis software - bbtk.git/blobdiff - kernel/src/bbtkWxBlackBox.cxx
#3073 BBTK Bug New Normal - message documentation in boxes
[bbtk.git] / kernel / src / bbtkWxBlackBox.cxx
index d543faa5df26920e6cfc82f2ea1ff5442b333860..6a26356ce46850b9e14a029e2e6089ed165bc339 100644 (file)
@@ -1,38 +1,42 @@
-/*=========================================================================                                                                               
+/*
+ # ---------------------------------------------------------------------
+ #
+ # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
+ #                        pour la SantÈ)
+ # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
+ # Previous Authors : Laurent Guigues, Jean-Pierre Roux
+ # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
+ #
+ #  This software is governed by the CeCILL-B license under French law and
+ #  abiding by the rules of distribution of free software. You can  use,
+ #  modify and/ or redistribute the software under the terms of the CeCILL-B
+ #  license as circulated by CEA, CNRS and INRIA at the following URL
+ #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
+ #  or in the file LICENSE.txt.
+ #
+ #  As a counterpart to the access to the source code and  rights to copy,
+ #  modify and redistribute granted by the license, users are provided only
+ #  with a limited warranty  and the software's author,  the holder of the
+ #  economic rights,  and the successive licensors  have only  limited
+ #  liability.
+ #
+ #  The fact that you are presently reading this means that you have had
+ #  knowledge of the CeCILL-B license and that you accept its terms.
+ # ------------------------------------------------------------------------ */
+
+
+/*=========================================================================
   Program:   bbtk
   Module:    $RCSfile: bbtkWxBlackBox.cxx,v $
   Language:  C++
-  Date:      $Date: 2009/05/19 10:19:23 $
-  Version:   $Revision: 1.40 $
+  Date:      $Date: 2012/11/16 08:49:01 $
+  Version:   $Revision: 1.45 $
 =========================================================================*/
 
-/* ---------------------------------------------------------------------
-
-* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale)
-* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux
-*
-*  This software is governed by the CeCILL-B license under French law and 
-*  abiding by the rules of distribution of free software. You can  use, 
-*  modify and/ or redistribute the software under the terms of the CeCILL-B 
-*  license as circulated by CEA, CNRS and INRIA at the following URL 
-*  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html 
-*  or in the file LICENSE.txt.
-*
-*  As a counterpart to the access to the source code and  rights to copy,
-*  modify and redistribute granted by the license, users are provided only
-*  with a limited warranty  and the software's author,  the holder of the
-*  economic rights,  and the successive licensors  have only  limited
-*  liability. 
-*
-*  The fact that you are presently reading this means that you have had
-*  knowledge of the CeCILL-B license and that you accept its terms.
-* ------------------------------------------------------------------------ */                                                                         
 
 
 #ifdef _USE_WXWIDGETS_
 
-
-
 /**
  *  \file 
  *  \brief 
 //#include "bbtkData.h"
 //#include "bbtkFactory.h"
 
-
-
-
 namespace bbtk
 {
+  //=========================================================================
+  // WxFrame
+  //=========================================================================
 
+  //==================================================================
+  class WxFrame : public wxFrame
+  {
+  public:
+    WxFrame(WxBlackBox::Pointer b,
+           wxWindow *parent,
+           wxString title,
+           wxSize size);
+    ~WxFrame();
+    void OnCloseWindow(wxCloseEvent& event);
 
 
+    WxBlackBox::WeakPointer mBox;      
+    DECLARE_EVENT_TABLE();
+    
+  };
+  
+  BEGIN_EVENT_TABLE(WxFrame, wxFrame)
+  //  EVT_CLOSE(WxFrame::OnCloseWindow)
+    END_EVENT_TABLE();
+     //==========================================Window  ========================
+  
+     //==================================================================
+  WxFrame::WxFrame(WxBlackBox::Pointer b,
+                  wxWindow *parent,
+                  wxString title,
+                  wxSize size) 
+    : 
+    wxFrame( parent, 
+            -1, 
+            title,
+            wxDefaultPosition,
+            size,
+            wxRESIZE_BORDER | 
+            wxSYSTEM_MENU  |
+            wxCLOSE_BOX |
+            wxMAXIMIZE_BOX | 
+            wxMINIMIZE_BOX | 
+            wxCAPTION  
+            ),
+    mBox(b)
+  {   
+    bbtkDebugMessage("widget",9,"["<<b->bbGetName()<<"] WxFrame()"
+                    <<std::endl);
+    Wx::IncNbWindowsAlive();
+    b->bbSetWindow(this);
+    // Insert the widget into the window
+    wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
+    b->bbUserCreateWidget(this);
+    wxWindow* widget = b->bbGetOutputWidget();
+    sizer->Add( widget, 1, wxALL|wxGROW, 2);
+    SetSizer(sizer);
+    Layout();
+  }
+  //==================================================================
+  //==================================================================
+  WxFrame::~WxFrame() 
+    { 
+      if (mBox.lock())
+       bbtkDebugMessage("widget",9,"["<<mBox.lock()->bbGetName()
+                        <<"] $$$$$$$$$$$$$$$$$$$ ~WxFrame()"
+                        <<std::endl);
+      else 
+       bbtkDebugMessage("widget",9,"[DEAD] $$$$$$$$$$$$$$$$$$$$$ ~WxFrame()"<<std::endl);
+      //bbtkDebugMessage("widget",9,"WxFrame::~WxFrame()"<<std::endl);
+      if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
+      Wx::DecNbWindowsAlive();
+    }
+   //==================================================================
+   //==================================================================
+  void WxFrame::OnCloseWindow(wxCloseEvent& event)
+    {
+      if (mBox.lock())
+       bbtkDebugMessage("widget",9,"["<<mBox.lock()->bbGetName()
+                        <<"] $$$$$$$$$$$$$$$ WxFrame::OnCloseWindow()"<<std::endl);
+      else
+       bbtkDebugMessage("widget",9,"[DEAD] WxFrame::OnCloseWindow()"
+                        <<std::endl);
+      if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
+      Wx::DecNbWindowsAlive();
+      
+       bbtkDebugMessage("widget",9,
+                        "$$$$$$$$$$$$$$$ Destroy !!!"<<std::endl);
+       //      this->Destroy();
+    }
+   //==================================================================
+
+  //====================================================SetWin=====================
+  // WxDialog
+  //=========================================================================
+
+   //==================================================================
+  // Dialog window which is modal
+  class BBTK_EXPORT  WxDialog : public wxDialog
+  {
+  public:
+    WxDialog(WxBlackBox::Pointer box, 
+                    wxWindow *parent, 
+                    wxString title, 
+                    wxSize size);
+    ~WxDialog();
+    void OnCloseWindow(wxCloseEvent& event);
 
 
-  //=========================================================================
-  // WxBlackBoxDialog
+    WxBlackBox::WeakPointer mBox;      
+    DECLARE_EVENT_TABLE();
+    
+  };
+  
+  BEGIN_EVENT_TABLE(WxDialog, wxDialog)
+    EVT_CLOSE(WxDialog::OnCloseWindow)
+    END_EVENT_TABLE();
   //=========================================================================
 
   //=========================================================================
-  WxBlackBoxDialog::WxBlackBoxDialog(WxBlackBox::Pointer box,
-                                    wxWindow *parent,
-                                    wxString title,
-                                    wxSize size)
+  WxDialog::WxDialog(WxBlackBox::Pointer b,
+                    wxWindow *parent,
+                    wxString title,
+                    wxSize size)
     :
     wxDialog( parent, 
                -1, 
@@ -79,343 +189,196 @@ namespace bbtk
                wxMINIMIZE_BOX | 
                wxCAPTION  
              ),
-    Parent(box)
+    mBox(b)
   {
-    bbtkDebugMessage("wx",9,"WxBlackBoxDialog::WxBlackBoxDialog("<<
-                    bbGetBlackBox()->bbGetFullName()<<","<<parent<<","
-                    <<title<<",size)"<<std::endl);
+               
+    bbtkDebugMessage("widget",9,"WxDialog::WxDialog ["<<b->bbGetName()<<"]"
+                    <<std::endl);
+    Wx::IncNbWindowsAlive();
+    b->bbSetWindow(this);
     // Insert the widget into the window
     wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
-    // Create the widget
-    box->bbCreateWidgetAndEventHandler(this);
-    wxWindow* widget = bbGetBlackBox()->bbGetOutputWidget();
-    sizer->Add( widget, 1, wxALL|wxEXPAND, 2);
-    //SetAutoLayout(true);
+    b->bbUserCreateWidget(this);
+    wxWindow* widget = b->bbGetOutputWidget();
+    sizer->Add( widget, 1, wxALL|wxGROW, 2);
     SetSizer(sizer);
     Layout();
   }
-  //=========================================================================
-  
-  //=========================================================================
-  void WxBlackBoxDialog::bbShow()
-  { 
-    if (bbIsShown()) return;
-    bbtkDebugMessage("wx",5,"WxBlackBoxDialog::bbShow() ["
-                    <<bbGetBlackBox()->bbGetFullName()<<"]"<<std::endl);
-    Parent::bbShow();
-    Show(false);
-    SetReturnCode( wxDialog::ShowModal() ); 
-    bbDestroy();
-  }
-  //=========================================================================
-
-  //=========================================================================
-  void WxBlackBoxDialog::bbHide()
-  {
-    bbtkDebugMessage("wx",9,"WxBlackBoxDialog::bbHide()"<<std::endl);
-    Parent::bbHide();
-    Hide();
-  }
-  //=========================================================================
-
-  //=========================================================================
-  void WxBlackBoxDialog::bbDestroy()
-  {
-    bbtkDebugMessage("wx",9,"WxBlackBoxDialog::bbDestroy()"<<std::endl);
-    wxDialog::Destroy();
-  }
+  //==================================================================
+  //==================================================================
+  WxDialog::~WxDialog() 
+    { 
+      bbtkDebugMessage("widget",9,"WxDialog::~WxDialog()"<<std::endl);
+      //bbtkDebugMessage("widget",9,"WxFrame::~WxFrame()"<<std::endl);
+      //      if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
+      //      Wx::DecNbWindowsAlive();
+    }
+   //==================================================================
+   //==================================================================
+  void WxDialog::OnCloseWindow(wxCloseEvent& event)
+    {
+      bbtkDebugMessage("widget",9,"WxDialog::OnCloseWindow()"<<std::endl);
+      if (mBox.lock()) mBox.lock()->bbSetWindow(0); 
+      Wx::DecNbWindowsAlive();
+      this->Destroy();
+    }
+   //==================================================================
+
+
+ //=========================================================================
+  // WxBlackBox
   //=========================================================================
 
   //=========================================================================
-  WxBlackBoxDialog::~WxBlackBoxDialog()
-  {
-    bbtkDebugMessage("wx",9,"WxBlackBoxDialog::~WxBlackBoxDialog()"
-                    <<std::endl);
-  }
   //=========================================================================
-
-
-
-
-
   //=========================================================================
-  // WxBlackBoxFrame
-  //=========================================================================
-
   //=========================================================================
-  WxBlackBoxFrame::WxBlackBoxFrame(WxBlackBox::Pointer box,
-                                  wxWindow *parent,
-                                  wxString title,
-                                  wxSize size)
-    :  wxFrame( parent, 
-              -1, 
-              title,
-              wxDefaultPosition,
-              size,
-              wxRESIZE_BORDER | 
-              wxSYSTEM_MENU  |
-              wxCLOSE_BOX |
-              wxMAXIMIZE_BOX | 
-              wxMINIMIZE_BOX | 
-              wxCAPTION  
-               ),
-       Parent(box)
-  {
-    bbtkDebugMessage("wx",9,"WxBlackBoxFrame::WxBlackBoxFrame("<<
-                    bbGetBlackBox()->bbGetFullName()<<","<<parent<<","
-                    <<title<<",size)"<<std::endl);
-    // Insert the widget into the window
-    wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL);
-    box->bbCreateWidgetAndEventHandler(this);
-    wxWindow* widget = bbGetBlackBox()->bbGetOutputWidget();
-    wxFrame* frame = (wxFrame*)this;
-    sizer->Add( widget, 1, wxALL|wxGROW, 2);
-    //  frame->SetAutoLayout(true);
-    frame->SetSizer(sizer);
-    //frame->Fit();
-    frame->Layout();
-  }
+  BBTK_BLACK_BOX_IMPLEMENTATION(WxBlackBox,WidgetBlackBox<wxWindow>);
   //=========================================================================
   
   //=========================================================================
-  WxBlackBoxFrame::~WxBlackBoxFrame()
+  void WxBlackBox::bbUserSetDefaultValues()
   {
-    bbtkDebugMessage("wx",9,"WxBlackBoxFrame::~WxBlackBoxFrame()"
-                    <<std::endl);
-  }
-  //=========================================================================
-
-  //=========================================================================
-  void WxBlackBoxFrame::bbShow() 
-  { 
-    if (bbIsShown()) return;
-    bbtkDebugMessage("wx",5,"WxBlackBoxFrame::bbShow("
-                    <<bbGetBlackBox()->bbGetFullName()<<")"<<std::endl);
-    Parent::bbShow();
-    wxFrame::Show();
-    // This Update is ** MANDATORY ** 
-    // to synchronize wxvtkRenderWindowInteractor objects
-    // (force wx objects creation **NOW**)
-    
-    
-#if defined(_WIN32)
-    wxFrame::Refresh();
-#endif
-    
-    wxFrame::Update();
-    wxFrame::SetFocus();
-    //    if (bbGetBlackBox()) bbGetBlackBox()->bbUserOnShow();
+    bbtkBlackBoxDebugMessage("widget",5,"WxBlackBox::bbUserSetDefaultValues()"<<std::endl);
+    bbmWindow = 0;  
   }
   //=========================================================================
 
   //=========================================================================
-  void WxBlackBoxFrame::bbHide()
+  void WxBlackBox::bbUserInitializeProcessing()
   {
-    bbtkDebugMessage("wx",9,"WxBlackBoxFrame::bbHide()"<<std::endl);
-    Parent::bbHide();
-    wxFrame::Hide();
-    if (bbGetBlackBox()) bbGetBlackBox()->bbUserOnHide();
   }
-  //=========================================================================
+  //==================================================================    
 
   //=========================================================================
-  void WxBlackBoxFrame::bbDestroy()
+  void WxBlackBox::bbUserFinalizeProcessing()
   {
-    bbtkDebugMessage("wx",9,"WxBlackBoxFrame::bbDestroy()"<<std::endl);
-    wxFrame::Destroy();
+    bbtkBlackBoxDebugMessage("widget",5,"==> WxBlackBox::bbUserFinalizeProcessing()"<<std::endl);
+    bbDestroyWindow();
+    bbtkBlackBoxDebugMessage("widget",5,"<== WxBlackBox::bbUserFinalizeProcessing()"<<std::endl);
   }
-  //=========================================================================
-
-
+  //==================================================================    
 
-  //=========================================================================
-  // WxBlackBoxWidgetEventHandler
+  //==================================================================    
+  /// Callback for creating a Dialog window (modal)
+  void WxBlackBox::bbCreateDialogWindow()
+  {
+  bbtkBlackBoxDebugMessage("widget",3,
+                    "==> WxBlackBox::bbCreateDialogWindow() - parent = "
+                    <<Wx::GetTopWindow()
+                    <<std::endl);
+    WxDialog* w = 0;  
+    w = new WxDialog( GetThisPointer<WxBlackBox>(),
+                     Wx::GetTopWindow(),
+//                   std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS"),
+                     std2wx( ConstructWinTitle() ),
+                     wxSize( bbGetInputWinWidth() , 
+                             bbGetInputWinHeight() ) );
+    w->Show(false);
+    //    w->ShowModal();
+  } 
   //=========================================================================
 
-  //=========================================================================
-  WxBlackBoxWidgetEventHandler::
-  WxBlackBoxWidgetEventHandler( WxBlackBox::Pointer box, 
-                               wxWindow *widget )
-    :
-    mBox(box),
-    mWindow(widget)
-  { 
-    bbtkDebugMessage("wx",9,"WxBlackBoxWidgetEventHandler::WxBlackBoxWidgetEventHandler("<<mBox.lock()->bbGetFullName()<<")"<<std::endl);
-
-    mBox.lock()->bbSetWidgetEventHandler(this);
-
-    Connect (  mWindow->GetId(),
-              wxEVT_DESTROY,
-              (wxObjectEventFunction) 
-              (void (wxEvtHandler::*)(wxWindowDestroyEvent& c))
-               &WxBlackBoxWidgetEventHandler::OnWindowDestroy );
-    
-    mWindow->PushEventHandler(this);
-    
-  }
-  //=========================================================================
+  //==================================================================    
 
-  //=========================================================================
-  WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler()
+  //==================================================================    
+  /// Callback for creating a Frame window 
+  void WxBlackBox::bbCreateFrameWindow()
   {
-  bbtkDebugMessage("wx",9,
-                    "WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler() ["
-               <<std::endl);
-
+    bbtkBlackBoxDebugMessage("widget",3,
+                    "==> WxBlackBox::bbCreateFrameWindow() - parent = "
+                    <<Wx::GetTopWindow()
+                    <<std::endl);
+    WxFrame* w = 0;  
+    w = new WxFrame( GetThisPointer<WxBlackBox>(),
+                    Wx::GetTopWindow(),
+//                  std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS"),
+                    std2wx( ConstructWinTitle() ),
+                    wxSize( bbGetInputWinWidth() , 
+                            bbGetInputWinHeight() ) );
+    w->Show();
 
-    Disconnect (  mWindow->GetId() );
 
-    if (mBox.expired()) return;
-    bbtkDebugMessage("wx",9,
-                    "WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler() ["
-                    <<mBox.lock()->bbGetFullName()<<"]"<<std::endl);
+   }
 
-    mBox.lock()->bbSetWidgetEventHandler(0);   
-  }
-  //=========================================================================
+  //==================================================================    
 
-  //=========================================================================
-  void WxBlackBoxWidgetEventHandler::OnWindowDestroy(wxWindowDestroyEvent&)
+  //==================================================================    
+  void WxBlackBox::bbSetWindow(wxWindow* w) 
   {
-   bbtkDebugMessage("wx",9,"WxBlackBoxWidgetEventHandler::OnWindowDestroy() []"<<std::endl);
-    if (mBox.expired()) return;
-    bbtkDebugMessage("wx",9,"WxBlackBoxWidgetEventHandler::OnWindowDestroy() alive ["
-                    <<mBox.lock()->bbGetFullName()<<"]"<<std::endl);
-    mBox.lock()->bbSetOutputWidget(0);
+    bbtkBlackBoxDebugMessage("widget",9,"==> WxBlackBox::bbSetWindow("<<w<<")"<<std::endl);
+    if ((bbmWindow != 0)&&(w!=0)) 
+       { 
+               std::cout << "WxBlackBox::bbSetWindow   ?? EED ?? ERRRRRRRROOOOR"<<std::endl; 
+       }
+    bbmWindow = w;
   }
-  //=========================================================================
-
-
-
-
-
-
-
-  //=========================================================================
-  // WxBlackBox
-  //=========================================================================
+  //==================================================================    
 
-  //=========================================================================
-  //=========================================================================
-  //=========================================================================
-  //=========================================================================
-  BBTK_BLACK_BOX_IMPLEMENTATION(WxBlackBox,WidgetBlackBox<wxWindow>);
-  //=========================================================================
-  
-  //=========================================================================
-  void WxBlackBox::bbUserSetDefaultValues()
+  //==================================================================    
+  void WxBlackBox::bbShowWindow()
   {
-    bbtkDebugMessage("Kernel",9,"WxBlackBox::bbUserSetDefaultValues()"<<std::endl);
-    bbSetWidgetEventHandler(0);
-  }
-  //=========================================================================
+    if ((bbmWindow) && (!bbIsShown()))
+      {
+       bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbShowWindow()"
+                        <<std::endl);
+       if (bbGetInputWinDialog()) 
+         {
+           ((WxDialog*)bbmWindow)->ShowModal();
+         }
+       else    
+         {
+           bbGetWindow()->Show();
+           bbSetShown(true);
+         } 
+      } // if
+
 
-  //=========================================================================
-  void WxBlackBox::bbUserInitializeProcessing()
-  {
   }
   //==================================================================    
 
-  //=========================================================================
-  void WxBlackBox::bbUserFinalizeProcessing()
+  //==================================================================    
+  void WxBlackBox::bbDestroyWindow()
   {
-    bbtkDebugMessage("wx",9,"WxBlackBox::bbUserFinalizeProcessing()"<<std::endl);
-    if (bbGetWidgetEventHandler()!=0)
+    bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
+    if (bbGetWindow()!=NULL) 
       {
-       bbtkDebugMessage("wx",9,"Deleting Widget Event Handler"<<std::endl);
-       delete bbGetWidgetEventHandler();
+       //       wxWindow* w = bbGetWindow();
+       //bbSetWindow(0);
+       // WE SHOULD DESTROY THE WINDOW WITH THE Close METHOD
+       // HOWEVER I
+       //w->Close(true);
+       //
+       delete bbGetWindow();
+       bbSetShown(false);
       }
-    
+    bbtkBlackBoxDebugMessage("widget",3,"<== WxBlackBox::bbDestroyWindow("<<bbmWindow<<")"<<std::endl);
+
   }
   //==================================================================    
-
+  
   //==================================================================    
-  /// Callback for creating a Dialog window (modal)
-  void WxBlackBox::bbCreateDialogWindow()
+  void WxBlackBox::PutWinTitle()
   {
-    WxBlackBoxDialog* w = 0;  
-    w = new WxBlackBoxDialog( GetThisPointer<WxBlackBox>(),
-                             Wx::GetTopWindow(),
-                             std2wx( bbGetInputWinTitle() 
-                                     + " - bbtk (c) CREATIS LRMN"),
-                             wxSize( bbGetInputWinWidth() , 
-                                     bbGetInputWinHeight()  ));
-    w->Show(true);  
+       if ( ! bbIsOutputWidgetConnected() )
+    {
+               wxTopLevelWindow* wParent = (wxTopLevelWindow*)( bbGetOutputWidget()->GetParent() );
+               wParent->SetTitle( std2wx( ConstructWinTitle() ) );
+       } // if
   }
   //==================================================================    
 
   //==================================================================    
-  /// Callback for creating a Frame window 
-  void WxBlackBox::bbCreateFrameWindow()
+  std::string WxBlackBox::ConstructWinTitle()
   {
-    WxBlackBoxFrame* w = 0;  
-    w = new WxBlackBoxFrame( GetThisPointer<WxBlackBox>(),
-                            Wx::GetTopWindow(),
-                            std2wx( bbGetInputWinTitle()  
-                                    + " - bbtk (c) CREATIS LRMN"),
-                            wxSize( bbGetInputWinWidth() , 
-                                    bbGetInputWinHeight() ) );
-    w->Show();
+       std::string title( bbGetInputWinTitle() + " - bbtk (c) CREATIS");
+       return title;
   }
   //==================================================================    
 
-  
-       
-  //=========================================================================
-  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()));
-      }
-    
-    
-  }
-  //=========================================================================
-  
-  
-  //==================================================================
-  //  void WxBlackBox::InitWindowManagerIfNeeded() { Wx::
-  void WxBlackBox::IncNbWindowsAlive() { Wx::IncNbWindowsAlive(); }
-  void WxBlackBox::DecNbWindowsAlive() { Wx::DecNbWindowsAlive(); }
-  int  WxBlackBox::GetNbWindowsAlive() { return Wx::GetNbWindowsAlive(); }
-  bool WxBlackBox::IsSomeWindowAlive() { return Wx::IsSomeWindowAlive(); }
-  
-  void WxBlackBox::IncNbWindowsShown() { Wx::IncNbWindowsShown(); }
-  void WxBlackBox::DecNbWindowsShown() { Wx::DecNbWindowsShown(); }
-  int  WxBlackBox::GetNbWindowsShown() { return Wx::GetNbWindowsShown(); }
-  bool WxBlackBox::IsSomeWindowShown() { return Wx::GetNbWindowsShown(); }
-  //==================================================================
-  
 
-}//namespace bbtk
 
+}//namespace bbtk
 
 #endif