X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkWxBlackBox.cxx;h=6a26356ce46850b9e14a029e2e6089ed165bc339;hb=4d3619bf05342807aec39f571d94e4aea2efa38b;hp=4ccfe67a2b8661f5416806620cb545ef5aad00fd;hpb=3928b4ad06b5b5fd142f696f58a7828d064e2883;p=bbtk.git diff --git a/kernel/src/bbtkWxBlackBox.cxx b/kernel/src/bbtkWxBlackBox.cxx index 4ccfe67..6a26356 100644 --- a/kernel/src/bbtkWxBlackBox.cxx +++ b/kernel/src/bbtkWxBlackBox.cxx @@ -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: 2008/12/08 12:54:27 $ - Version: $Revision: 1.33 $ + 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 @@ -47,83 +51,131 @@ //#include "bbtkData.h" //#include "bbtkFactory.h" - - - namespace bbtk { - - - - //========================================================================= - // WxBlackBoxWindow + // WxFrame //========================================================================= - - - //========================================================================= - WxBlackBoxWindow::WxBlackBoxWindow(WxBlackBox::Pointer box) - : mBox(box), mShown(false) - { - bbtkDebugMessage("wx",9,"WxBlackBoxWindow::WxBlackBoxWindow("<< - mBox.lock()->bbGetFullName()<<")"<bbSetWindow(this); - Wx::IncNbWindowsAlive(); - } - //========================================================================= - - //========================================================================= - WxBlackBoxWindow::~WxBlackBoxWindow() + //================================================================== + class WxFrame : public wxFrame { - bbtkDebugMessage("wx",9,"WxBlackBoxWindow::~WxBlackBoxWindow() " - <bbSetWindow(0); - } - } - //========================================================================= + public: + WxFrame(WxBlackBox::Pointer b, + wxWindow *parent, + wxString title, + wxSize size); + ~WxFrame(); + void OnCloseWindow(wxCloseEvent& event); - //========================================================================= - void WxBlackBoxWindow::bbShow() - { - if (bbIsShown()) return; - bbtkDebugMessage("wx",9,"WxBlackBoxWindow::bbShow()"<bbGetName()<<"] WxFrame()" + <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,"["<bbGetName() + <<"] $$$$$$$$$$$$$$$$$$$ ~WxFrame()" + <bbSetWindow(0); + Wx::DecNbWindowsAlive(); + } + //================================================================== + //================================================================== + void WxFrame::OnCloseWindow(wxCloseEvent& event) + { + if (mBox.lock()) + bbtkDebugMessage("widget",9,"["<bbGetName() + <<"] $$$$$$$$$$$$$$$ WxFrame::OnCloseWindow()"<bbSetWindow(0); + Wx::DecNbWindowsAlive(); + + bbtkDebugMessage("widget",9, + "$$$$$$$$$$$$$$$ Destroy !!!"<Destroy(); + } + //================================================================== - //========================================================================= - void WxBlackBoxWindow::bbHide() - { - if (!bbIsShown()) return; - bbtkDebugMessage("wx",9,"WxBlackBoxWindow::bbHide()"<bbGetFullName()<<","<bbGetName()<<"]" + <bbSetWindow(this); // 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(); -// old : widget->Reparent(this); - 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() [" - <bbGetFullName()<<"]"<bbSetWindow(0); + // Wx::DecNbWindowsAlive(); + } + //================================================================== + //================================================================== + void WxDialog::OnCloseWindow(wxCloseEvent& event) + { + bbtkDebugMessage("widget",9,"WxDialog::OnCloseWindow()"<bbSetWindow(0); + Wx::DecNbWindowsAlive(); + this->Destroy(); + } + //================================================================== - //========================================================================= - void WxBlackBoxDialog::bbHide() - { - bbtkDebugMessage("wx",9,"WxBlackBoxDialog::bbHide()"<bbGetFullName()<<","<bbCreateWidgetAndEventHandler(this); - wxWindow* widget = bbGetBlackBox()->bbGetOutputWidget(); - wxFrame* frame = (wxFrame*)this; -// old : widget->Reparent(frame); - sizer->Add( widget, 1, wxALL|wxGROW, 2); - // frame->SetAutoLayout(true); - frame->SetSizer(sizer); - //frame->Fit(); - frame->Layout(); - } + BBTK_BLACK_BOX_IMPLEMENTATION(WxBlackBox,WidgetBlackBox); //========================================================================= //========================================================================= - WxBlackBoxFrame::~WxBlackBoxFrame() - { - } - //========================================================================= - - //========================================================================= - void WxBlackBoxFrame::bbShow() - { - if (bbIsShown()) return; - bbtkDebugMessage("wx",5,"WxBlackBoxFrame::bbShow(" - <bbGetFullName()<<")"<bbUserOnShow(); - } - //========================================================================= - - //========================================================================= - void WxBlackBoxFrame::bbHide() - { - bbtkDebugMessage("wx",9,"WxBlackBoxFrame::bbHide()"<bbUserOnHide(); - } - //========================================================================= - - //========================================================================= - void WxBlackBoxFrame::bbClose() - { - bbtkDebugMessage("wx",9,"WxBlackBoxFrame::bbClose()"<bbGetFullName()<<")"<bbSetWidgetEventHandler(this); - - Connect ( mWindow->GetId(), - wxEVT_DESTROY, - (wxObjectEventFunction) - (void (wxEvtHandler::*)(wxWindowDestroyEvent& c)) - &WxBlackBoxWidgetEventHandler::OnWindowDestroy ); - - mWindow->PushEventHandler(this); - - } - //========================================================================= - - //========================================================================= - WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler() + void WxBlackBox::bbUserSetDefaultValues() { - if (mBox.expired()) return; - bbtkDebugMessage("wx",9, - "WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler() [" - <bbGetFullName()<<"]"<bbSetWidgetEventHandler(0); + bbtkBlackBoxDebugMessage("widget",5,"WxBlackBox::bbUserSetDefaultValues()"<bbGetFullName()<<"]"<bbSetOutputWidget(0); - // LGSIGNAL - // mBox.lock()->bbSetModifiedStatus(); } - //========================================================================= - - - - - - - - //========================================================================= - // WxBlackBox - //========================================================================= + //================================================================== //========================================================================= - //========================================================================= - //========================================================================= - //========================================================================= - BBTK_BLACK_BOX_IMPLEMENTATION(WxBlackBox,AtomicBlackBox); - //========================================================================= - - //========================================================================= - void WxBlackBox::bbUserConstructor() + void WxBlackBox::bbUserFinalizeProcessing() { - bbtkDebugMessage("Kernel",9,"WxBlackBox::bbUserConstructor()"< WxBlackBox::bbUserFinalizeProcessing()"< WxBlackBox::bbCreateDialogWindow() - parent = " + <(), + Wx::GetTopWindow(), +// std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS"), + std2wx( ConstructWinTitle() ), + wxSize( bbGetInputWinWidth() , + bbGetInputWinHeight() ) ); + w->Show(false); + // w->ShowModal(); + } + //========================================================================= + + //================================================================== + + //================================================================== + /// Callback for creating a Frame window + void WxBlackBox::bbCreateFrameWindow() { - bbtkDebugMessage("wx",9,"==> WxBlackBox::bbUserDestructor() ["< WxBlackBox::bbCreateFrameWindow() - parent = " + <(), + Wx::GetTopWindow(), +// std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS"), + std2wx( ConstructWinTitle() ), + wxSize( bbGetInputWinWidth() , + bbGetInputWinHeight() ) ); + w->Show(); - /* - //========================================================================= - WxBlackBox::Widget* WxBlackBox::bbGetWidget() - { - if (bbGetOutputWidget() && bbGetOutputWidget()->IsDead()) - { - bbtkDebugMessage("wx",9,"WxBlackBox::bbGetWidget() ["<< - bbGetFullName()<<"] : Widget is dead : deleting it" - < WxBlackBox::bbExecute("<<(int)force<<") [" - <second->GetConnectionVector().size() != 0 ) - { - bbtkWarning("Execution called on '"< WxBlackBox::bbSetWindow("<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" - < Creating the window" - <(), - // 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" - <(), - // 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" - <(), - bbGetOutputWidget()); - } - else if ( ! bbGetWidgetEventHandler()->IsHandlerOf - ( bbGetOutputWidget() ) ) - { - bbtkDebugMessage("wx",3, - "-> Obsolete widget event handler : re-creating one" - <(), - 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(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 - /// (called after bbProcess during bbExecute) + //================================================================== void WxBlackBox::bbShowWindow() { - bbtkDebugMessageInc("wx",1,"=> WxBlackBox::bbShowWindow() [" - < No widget event handler : creating one" - <(), - bbGetOutputWidget()); - } - else if ( ! bbGetWidgetEventHandler()->IsHandlerOf - ( bbGetOutputWidget() ) ) - { - bbtkDebugMessage("wx",3, - "-> Obsolete widget event handler : re-creating one" - <(), - bbGetOutputWidget()); - } - // Sets the name of the wxWindow to the input WinTitle - bbGetOutputWidget()->SetName(bbtk::std2wx(bbGetInputWinTitle())); - } - - // If the output 'Widget' is connected then it's gonna - // be captured by its parent window : nothing to do - if ( (*bbGetOutputConnectorMap().find("Widget")).second - ->GetConnectionVector().size() != 0 ) - { - - bbtkDebugMessage("wx",2, - "-> Output 'Widget' connected : nothing to do" - < Window already exists" - < Widget exists : creating the window" + bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbShowWindow()" <(), - // bbGetWxParent(), - // LG 24/11/08 : New widget pipeline - Wx::GetTopWindow(), - std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS LRMN"), - wxSize( bbGetInputWinWidth() , bbGetInputWinHeight() ) ); + ((WxDialog*)bbmWindow)->ShowModal(); } - // Input WinDialog set to false : creating a Frame - else + else { - bbtkDebugMessage("process",2, - " Input WinDialog set to false : creating a Frame" - <(), - // bbGetWxParent(), - // LG 24/11/08 : New widget pipeline - Wx::GetTopWindow(), - std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS LRMN"), - wxSize( bbGetInputWinWidth() , bbGetInputWinHeight() ) ); - } - - } - // No window nor widget : error - else - { - bbtkError("WxBlackBox::bbShowWindow() [" - <IsShown()) - { - show->bbShow(); - } - else - { - bbtkDebugMessage("wx",2,"-> Already shown : nothing to do"<Show(); + bbSetShown(true); + } + } // if - bbtkDebugMessage("wx",2,"<= WxBlackBox::bbShowWindow() [" - < WxBlackBox::bbHideWindow() [" - <bbHide(); + bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbDestroyWindow("<Close(true); + // + delete bbGetWindow(); + bbSetShown(false); + } + bbtkBlackBoxDebugMessage("widget",3,"<== WxBlackBox::bbDestroyWindow("< WxBlackBox::bbCloseWindow() [" - <bbClose(); - - bbtkDebugMessageDec("wx",2,"<= WxBlackBox::bbCloseWindow() [" - <GetParent() ); + wParent->SetTitle( std2wx( ConstructWinTitle() ) ); + } // if } - //================================================================== + //================================================================== - //================================================================== - WxBlackBox::Window* WxBlackBox::bbGetContainingWindow() + //================================================================== + std::string WxBlackBox::ConstructWinTitle() { - if (bbGetWindow()!=0) return bbGetWindow(); - BlackBox::OutputConnectorMapType::const_iterator i - = bbGetOutputConnectorMap().find("Widget"); - if ( i->second->GetConnectionVector().size() != 0 ) - { - return boost::static_pointer_cast - (i->second->GetConnectionVector().front() //.lock() - ->GetBlackBoxTo())->bbGetContainingWindow(); - } - return 0; + std::string title( bbGetInputWinTitle() + " - bbtk (c) CREATIS"); + return title; } - //================================================================== + //================================================================== - //================================================================== - // LG 24/11/08 : New widget pipeline - // wxWindow* WxBlackBox::bbGetWxParent() { return Wx::GetTopWindow(); } - //================================================================== - - - //================================================================== - bool WxBlackBox::bbIsShown() - { - if (bbGetContainingWindow()!=0) - return bbGetContainingWindow()->bbIsShown(); - return false; - } - //================================================================== - }//namespace bbtk - #endif