X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkWxBlackBox.cxx;h=6a26356ce46850b9e14a029e2e6089ed165bc339;hb=4d3619bf05342807aec39f571d94e4aea2efa38b;hp=6a452f3c3350dfb3d60fb03dd035511b26581677;hpb=6c5d7746e8e4cb0b5d6e164b917008a7137910fb;p=bbtk.git diff --git a/kernel/src/bbtkWxBlackBox.cxx b/kernel/src/bbtkWxBlackBox.cxx index 6a452f3..6a26356 100644 --- a/kernel/src/bbtkWxBlackBox.cxx +++ b/kernel/src/bbtkWxBlackBox.cxx @@ -1,24 +1,41 @@ +/* + # --------------------------------------------------------------------- + # + # 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/04/08 06:59:30 $ - Version: $Revision: 1.11 $ - - Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de - l'Image). All rights reserved. See Doc/License.txt or - http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - + Date: $Date: 2012/11/16 08:49:01 $ + Version: $Revision: 1.45 $ =========================================================================*/ -#ifdef _USE_WXWIDGETS_ +#ifdef _USE_WXWIDGETS_ /** * \file @@ -26,95 +43,140 @@ */ #include "bbtkWxBlackBox.h" +#include "bbtkBlackBoxOutputConnector.h" + //#include "bbtkWxContainerBlackBox.h" #include //#include "bbtkData.h" //#include "bbtkFactory.h" - - - namespace bbtk { - - - - //========================================================================= - // WxBlackBoxWindow + // WxFrame //========================================================================= - - - //========================================================================= - WxBlackBoxWindow::WxBlackBoxWindow(WxBlackBox* box) - : mBox(box), mShown(false) + //================================================================== + class WxFrame : public wxFrame { - bbtkDebugMessage("Wx",9,"WxBlackBoxWindow::WxBlackBoxWindow("<< - mBox->bbGetFullName()<<")"<bbSetWindow(this); - Wx::IncNbWindowsAlive(); - bbtkDebugMessage("Wx",5," -> Number of windows alive = " - <bbGetFullName()<<"]"<bbSetWindow(0); - Wx::DecNbWindowsAlive(); - bbtkDebugMessage("Wx",5," -> Number of windows alive = " - <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::bbShow() - { - if (bbIsShown()) return; - bbtkDebugMessage("Wx",9,"WxBlackBoxWindow::bbShow() ["<< - mBox->bbGetFullName()<<"]"< Number of windows shown = " - <bbGetFullName()<<"]"< Number of windows shown = " - <bbGetFullName()<<","<bbGetName()<<"]" + <bbSetWindow(this); // Insert the widget into the window wxBoxSizer *sizer = new wxBoxSizer(wxVERTICAL); - wxWindow* widget = bbGetBlackBox()->bbGetOutputWidget(); - 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() - { - bbtkDebugMessage("Wx",5,"WxBlackBoxDialog::bbShow() [" - <bbGetFullName()<<"]"<bbGetFullName()<<"]"<bbGetFullName()<<","<bbGetOutputWidget(); - wxFrame* frame = (wxFrame*)this; - widget->Reparent(frame); - sizer->Add( widget, 1, wxALL|wxGROW, 2); - // frame->SetAutoLayout(true); - frame->SetSizer(sizer); - //frame->Fit(); - frame->Layout(); - } - //========================================================================= - - //========================================================================= - WxBlackBoxFrame::~WxBlackBoxFrame() - { - } - //========================================================================= - - //========================================================================= - void WxBlackBoxFrame::bbShow() - { - bbtkDebugMessage("Wx",5,"WxBlackBoxFrame::bbShow(" - <bbGetFullName()<<")"<bbUserOnShow(); - // wxFrame::SetFocus(); - } - //========================================================================= - - //========================================================================= - void WxBlackBoxFrame::bbHide() - { - bbtkDebugMessage("Wx",9,"WxBlackBoxFrame::bbHide() ["<< - bbGetBlackBox()->bbGetFullName()<<"]"<bbUserOnHide(); - } - //========================================================================= - - - - //========================================================================= - // WxBlackBoxDialogWrapper - //========================================================================= - /* - //========================================================================= - WxBlackBoxDialogWrapper::WxBlackBoxDialogWrapper(WxBlackBox* box, - wxDialog *wrapped) - : WxBlackBoxWindow(box), - mWrapped(wrapped) - { - bbtkDebugMessage("Wx",9, - "WxBlackBoxDialogWrapper::WxBlackBoxDialogWrapper(" - <bbGetFullName()<<","<bbGetFullName()<<")"<ShowModal(); - // For Windows : - mWrapped->SetReturnCode( i ); - } - //========================================================================= - - //========================================================================= - void WxBlackBoxDialogWrapper::bbHide() - { - bbtkDebugMessage("Wx",9,"WxBlackBoxDialogWrapper::bbHide() ["<< - bbGetBlackBox()->bbGetFullName()<<"]"<Hide(); - } - //========================================================================= - - */ - - /* - //========================================================================= - // WxBlackBoxWidget - //========================================================================= - - //========================================================================= - WxBlackBoxWidget::WxBlackBoxWidget( WxBlackBox* box) - : mBox(box) - { - bbtkDebugMessage("Wx",9,"WxBlackBoxWidget::WxBlackBoxWidget("<bbGetFullName()<<")"<bbSetWidget(this); - } - //========================================================================= - - //========================================================================= - WxBlackBoxWidget::~WxBlackBoxWidget() - { - bbtkDebugMessage("Wx",9,"WxBlackBoxWidget::~WxBlackBoxWidget("<bbGetFullName()<<")"<bbSetWidget(0); - //bbtkDebugMessage("Wx",9,"EO WxBlackBoxWidget::~WxBlackBoxWidget("<bbGetFullName()<<")"<bbGetFullName()<<")"<bbSetWidgetEventHandler(this); - - Connect ( mWindow->GetId(), - wxEVT_DESTROY, - (wxObjectEventFunction) - (void (wxEvtHandler::*)(wxWindowDestroyEvent& c)) - &WxBlackBoxWidgetEventHandler::OnWindowDestroy ); - - mWindow->PushEventHandler(this); - - } - //========================================================================= - - //========================================================================= - WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler() - { - bbtkDebugMessage("Wx",9, - "WxBlackBoxWidgetEventHandler::~WxBlackBoxWidgetEventHandler(" - <bbGetFullName()<<")"<bbSetWidgetEventHandler(0); - } - //========================================================================= - - //========================================================================= - void WxBlackBoxWidgetEventHandler::OnWindowDestroy(wxWindowDestroyEvent&) - { - bbtkDebugMessage("Wx",9,"WxBlackBoxWidgetEventHandler::OnWindowDestroy() [" - <bbGetFullName()<<"]"<bbSetOutputWidget(0); - mBox->bbSetModifiedStatus(); - //mDead = true; - //delete this; - } - //========================================================================= - - - - - - - - /* - //========================================================================= - wxWindow* WxParentToChildData::GetWindowInWhichToInsert( const BlackBox* b) - const - { - bbtkDebugMessageInc("Kernel",9,"WxParentToChildData::GetWindowInWhichToInsert("<bbGetFullName()<<")"<bbGetInputConnectorMap().find("WinParent"); - if (i==b->bbGetInputConnectorMap().end()) - { - bbtkError("WxParentToChildData::GetWindowInWhichToInsert : the box " - <bbGetFullName() - <<" does not have any 'Parent' input ?!?"); - } - Connection* c = i->second->GetConnection(); - if (!c) - { - bbtkDebugMessage("Kernel",9, - "-> The input 'Parent' of the box " - <bbGetFullName() - <<" is not connected."<::const_iterator j - = mConnectionToWindowMap.find(c); + //================================================================== + //================================================================== + WxDialog::~WxDialog() + { + bbtkDebugMessage("widget",9,"WxDialog::~WxDialog()"<bbSetWindow(0); + // Wx::DecNbWindowsAlive(); + } + //================================================================== + //================================================================== + void WxDialog::OnCloseWindow(wxCloseEvent& event) + { + bbtkDebugMessage("widget",9,"WxDialog::OnCloseWindow()"<bbSetWindow(0); + Wx::DecNbWindowsAlive(); + this->Destroy(); + } + //================================================================== - if (j==mConnectionToWindowMap.end()) - { - bbtkError("WxParentToChildData::GetWindowInWhichToInsert(" - <bbGetFullName() - <<") no window provided by parent ?!?"); - } - bbtkDebugDecTab("Kernel",9); - return j->second; - } - //========================================================================= - */ - - //========================================================================= + //========================================================================= // WxBlackBox //========================================================================= @@ -422,339 +233,152 @@ namespace bbtk //========================================================================= //========================================================================= //========================================================================= - BBTK_USER_BLACK_BOX_IMPLEMENTATION(WxBlackBox,AtomicBlackBox); + BBTK_BLACK_BOX_IMPLEMENTATION(WxBlackBox,WidgetBlackBox); //========================================================================= //========================================================================= - void WxBlackBox::bbUserConstructor() + void WxBlackBox::bbUserSetDefaultValues() { - bbtkDebugMessage("Kernel",9,"WxBlackBox::bbUserConstructor()"<IsDead()) - { - bbtkDebugMessage("Wx",9,"WxBlackBox::bbGetWidget() ["<< - bbGetFullName()<<"] : Widget is dead : deleting it" - < 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() { - bbtkDebugMessageInc("Process",1, - "=> WxBlackBox::bbExecute() [" - <second->GetConnectionVector().size() != 0 ) - { - bbtkDebugMessage("Process",2, - "-> Output 'Widget' connected : transfering execution to parent" - <second->GetConnectionVector().front() - ->GetBlackBoxTo()->bbExecute(force); + bbtkBlackBoxDebugMessage("widget",3, + "==> WxBlackBox::bbCreateFrameWindow() - parent = " + <(), + Wx::GetTopWindow(), +// std2wx( bbGetInputWinTitle() + " - bbtk (c) CREATIS"), + std2wx( ConstructWinTitle() ), + wxSize( bbGetInputWinWidth() , + bbGetInputWinHeight() ) ); + w->Show(); - } - // else call 'standard' BlackBox execution method - else - { - BlackBox::bbExecute(force); - } - // - bbtkDebugMessageDec("Process",1, - "<= WxBlackBox::bbExecute() [" - < WxBlackBox::bbBackwardUpdate(" - <<(caller?caller->GetFullName():"0")<<") [" - <GetBlackBoxFromOutput()!="Widget")) - ) - { - BlackBox::OutputConnectorMapType::const_iterator i - = bbGetOutputConnectorMap().find("Widget") ; - if ( - i->second->GetConnectionVector().size() != 0 ) - { - bbtkDebugMessage("Process",2, - "-> Output 'Widget' connected : transfering execution to parent" - <second->GetConnectionVector().front() - ->GetBlackBoxTo()->bbExecute(false); - done = true; - } - } - // call 'standard' BlackBox execution method - if (!done) - { - bbSetExecuting(false); - AtomicBlackBox::bbBackwardUpdate(caller); - } - - bbtkDebugMessageDec("Process",1, - "<= WxBlackBox::bbBackwardUpdate() [" - < WxBlackBox::bbSetWindow("<bbUserCreateWidget(); - this->bbUserProcess(); - bbShowWindow(); - } - //========================================================================= - - //================================================================== - /// Specific methods for window creation during pipeline execution - /// Shows the window associated to the box - /// (called after bbProcess during bbExecute) + //================================================================== void WxBlackBox::bbShowWindow() { - bbtkDebugMessageInc("Process",1,"=> WxBlackBox::bbShowWindow() [" - < No widget event handler : creating one" - <IsHandlerOf - ( bbGetOutputWidget() ) ) - { - bbtkDebugMessage("Process",3, - "-> Obsolete widget event handler : re-creating one" - <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("Process",2, - "-> Output 'Widget' connected : nothing to do" + bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbShowWindow()" < Window already exists" - < Widget exists : creating the window" - <ShowModal(); } - // Input WinDialog set to false : creating a Frame - else + else { - bbtkDebugMessage("Process",2, - " Input WinDialog set to false : creating a Frame" - <Show(); + bbSetShown(true); + } + } // if - } - // No window nor widget : error - else - { - bbtkError("WxBlackBox::bbShowWindow() [" - <IsShown()) - { - show->bbShow(); - } - else - { - bbtkDebugMessage("Process",2,"-> Already shown : nothing to do"< WxBlackBox::bbHideWindow() [" - <bbHide(); + bbtkBlackBoxDebugMessage("widget",3,"==> WxBlackBox::bbDestroyWindow("<Close(true); + // + delete bbGetWindow(); + bbSetShown(false); + } + bbtkBlackBoxDebugMessage("widget",3,"<== WxBlackBox::bbDestroyWindow("<second->GetConnectionVector().size() != 0 ) - { - return ((WxBlackBox*)i->second->GetConnectionVector().front() - ->GetBlackBoxTo())->bbGetContainingWindow(); - } - return 0; + if ( ! bbIsOutputWidgetConnected() ) + { + wxTopLevelWindow* wParent = (wxTopLevelWindow*)( bbGetOutputWidget()->GetParent() ); + wParent->SetTitle( std2wx( ConstructWinTitle() ) ); + } // if } - //================================================================== - + //================================================================== - //================================================================== - wxWindow* WxBlackBox::bbGetWxParent() { return Wx::GetTopWindow(); } - //================================================================== - - - //================================================================== - bool WxBlackBox::bbIsShown() + //================================================================== + std::string WxBlackBox::ConstructWinTitle() { - if (bbGetContainingWindow()!=0) - return bbGetContainingWindow()->bbIsShown(); - return false; + std::string title( bbGetInputWinTitle() + " - bbtk (c) CREATIS"); + return title; } - //================================================================== + //================================================================== -}//namespace bbtk +}//namespace bbtk #endif