X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?p=creaWT.git;a=blobdiff_plain;f=wt%2Fbbtk_wt_PKG%2Fsrc%2FbbwtOutpuText.cxx~;fp=wt%2Fbbtk_wt_PKG%2Fsrc%2FbbwtOutpuText.cxx~;h=0000000000000000000000000000000000000000;hp=793c37049d97aeb1ce1d6ff4e081939b66b427f8;hb=5bdd6bc07e285c2dc485dd053aaee47356d8689b;hpb=430578713a572cd83e04ca0f65c6e34e87879cd6 diff --git a/wt/bbtk_wt_PKG/src/bbwtOutpuText.cxx~ b/wt/bbtk_wt_PKG/src/bbwtOutpuText.cxx~ deleted file mode 100644 index 793c370..0000000 --- a/wt/bbtk_wt_PKG/src/bbwtOutpuText.cxx~ +++ /dev/null @@ -1,62 +0,0 @@ -//===== -// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== -#include "bbwtOutpuText.h" -#include "bbwtPackage.h" -namespace bbwt -{ - -BBTK_ADD_BLACK_BOX_TO_PACKAGE(wt,OutpuText) -BBTK_BLACK_BOX_IMPLEMENTATION(OutpuText,bbtk::WxBlackBox); -//===== -// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== -void OutpuText::Process() -{ - - std::string msg; - if (bbGetInputTitle()!="") - { - msg = bbGetInputTitle()+": " + bbGetInputIn(); - } - else - { - msg = bbGetInputIn(); - } - ((wxStaticText*)bbGetOutputWidget())->SetLabel( bbtk::std2wx( msg ) ); - -} -//===== -// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== -void OutpuText::CreateWidget(wxWindow* parent) -{ - - bbSetOutputWidget( new wxStaticText ( parent , -1 , _T("") ) ); - -} -//===== -// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== -void OutpuText::bbUserSetDefaultValues() -{ - -} -//===== -// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== -void OutpuText::bbUserInitializeProcessing() -{ - -} -//===== -// Before editing this file, make sure it's a file of your own (i.e.: it wasn't generated from xml description; if so : your modifications will be lost) -//===== -void OutpuText::bbUserFinalizeProcessing() -{ - -} -} -// EO namespace bbwt - -