]> Creatis software - creaWT.git/blobdiff - wt/bbtk_wt_PKG/src/bbwtLayoutSplit.cxx~
clean files tmp
[creaWT.git] / wt / bbtk_wt_PKG / src / bbwtLayoutSplit.cxx~
diff --git a/wt/bbtk_wt_PKG/src/bbwtLayoutSplit.cxx~ b/wt/bbtk_wt_PKG/src/bbwtLayoutSplit.cxx~
deleted file mode 100644 (file)
index 4769aaa..0000000
+++ /dev/null
@@ -1,104 +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 "bbwtLayoutSplit.h"
-#include "bbwtPackage.h"
-#include "bbtkUtilities.h"
-
-
-namespace bbwt
-{
-
-BBTK_ADD_BLACK_BOX_TO_PACKAGE(wt,LayoutSplit)
-BBTK_BLACK_BOX_IMPLEMENTATION(LayoutSplit,bbtk::WtBlackBox);
-//===== 
-// 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 LayoutSplit::Process()
-{
-
-
-  
-}
-//===== 
-// 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 LayoutSplit::CreateWidget(Wt::WContainerWidget* parent)
-{
-       Wt::WContainerWidget* w = new Wt::WContainerWidget(parent);
-       Wt::WBoxLayout *l;
-       if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true)  { l = new Wt::WHBoxLayout(); }
-       if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true)    { l = new Wt::WVBoxLayout(); }
-  
-  
-
-       Wt::WContainerWidget* w1 = bbCreateWidgetOfInput("Widget1",w);
-       Wt::WContainerWidget* w2 = bbCreateWidgetOfInput("Widget2",w);
-
-       if (w1==NULL) { w1=new Wt::WContainerWidget(); }
-       if (w2==NULL) { w2=new Wt::WContainerWidget(); }
-
-
-       l->addWidget(w1);
-       l->addWidget(w2);
-  l->setResizable(0,true,Wt::WLength::Auto);
-       w->setLayout(l);
-       
-       bbSetOutputWidget( w );
-       
-  
-}
-/*
-void LayoutSplit::CreateWidget(Wt::WContainerWidget* parent)
-{
-       Wt::WContainerWidget* w = new Wt::WContainerWidget(parent);
-       Wt::Ext::Splitter *l = new Wt::Ext::Splitter();
-//     if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true)  { l = new Wt::WHBoxLayout(); }
- //    if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true)    { l = new Wt::WVBoxLayout(); }
-
-       Wt::WContainerWidget* w1 = bbCreateWidgetOfInput("Widget1",w);
-       Wt::WContainerWidget* w2 = bbCreateWidgetOfInput("Widget2",w);
-
-       if (w1==NULL) { w1=new Wt::WContainerWidget(); }
-       if (w2==NULL) { w2=new Wt::WContainerWidget(); }
-  
-  w1->resize(200,200) ;
-    w2->resize(200,200) ;
-
-       l->addWidget(w1);
-       l->addWidget(w2);
-  w->addWidget(l);
-       //w->setLayout(l);
-       
-       bbSetOutputWidget( w );
-       
-  
-}*/
-//===== 
-// 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 LayoutSplit::bbUserSetDefaultValues()
-{
-               bbSetInputOrientation("VERTICAL");
-               bbSetInputProportion(50);
-               bbSetInputWidget1(NULL);
-               bbSetInputWidget2(NULL);
-}
-//===== 
-// 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 LayoutSplit::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 LayoutSplit::bbUserFinalizeProcessing()
-{
-
-}
-}
-// EO namespace bbwt
-
-