X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=wt%2Fbbtk_wt_PKG%2Fsrc%2FbbwtwtCheckBox.cxx~;fp=wt%2Fbbtk_wt_PKG%2Fsrc%2FbbwtwtCheckBox.cxx~;h=0000000000000000000000000000000000000000;hb=5bdd6bc07e285c2dc485dd053aaee47356d8689b;hp=6570ebfbb87f3ee96be6d57e6e99b11914c44e99;hpb=430578713a572cd83e04ca0f65c6e34e87879cd6;p=creaWT.git diff --git a/wt/bbtk_wt_PKG/src/bbwtwtCheckBox.cxx~ b/wt/bbtk_wt_PKG/src/bbwtwtCheckBox.cxx~ deleted file mode 100644 index 6570ebf..0000000 --- a/wt/bbtk_wt_PKG/src/bbwtwtCheckBox.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 "bbwtwtCheckBox.h" -#include "bbwtPackage.h" -namespace bbwt -{ - -BBTK_ADD_BLACK_BOX_TO_PACKAGE(wt,wtCheckBox) -BBTK_BLACK_BOX_IMPLEMENTATION(wtCheckBox,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 wtCheckBox::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 wtCheckBox::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 wtCheckBox::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 wtCheckBox::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 wtCheckBox::bbUserFinalizeProcessing() -{ - -} -} -// EO namespace bbwt - -