]> Creatis software - creaWT.git/blob - wt/bbtk_wt_PKG/src/bbwtLayoutSplit.cxx
c6c8f9febdfbf56cb5affcda6710f449c117b549
[creaWT.git] / wt / bbtk_wt_PKG / src / bbwtLayoutSplit.cxx
1 //===== 
2 // 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)
3 //===== 
4 #include "bbwtLayoutSplit.h"
5 #include "bbwtPackage.h"
6 #include "bbtkUtilities.h"
7
8
9 namespace bbwt
10 {
11
12 BBTK_ADD_BLACK_BOX_TO_PACKAGE(wt,LayoutSplit)
13 BBTK_BLACK_BOX_IMPLEMENTATION(LayoutSplit,bbtk::WtBlackBox);
14 //===== 
15 // 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)
16 //===== 
17 void LayoutSplit::Process()
18 {
19
20
21   
22 }
23 //===== 
24 // 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)
25 //===== 
26 void LayoutSplit::CreateWidget(Wt::WContainerWidget* parent)
27 {
28         Wt::WContainerWidget* w = new Wt::WContainerWidget(parent);
29         Wt::WBoxLayout *l;
30         if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"0|H|HORIZONTAL")==true)  { l = new Wt::WHBoxLayout(); }
31         if (bbtk::Utilities::loosematch(bbGetInputOrientation(),"1|V|VERTICAL")==true)    { l = new Wt::WVBoxLayout(); }
32
33         Wt::WContainerWidget* w1 = bbCreateWidgetOfInput("Widget1",w);
34         Wt::WContainerWidget* w2 = bbCreateWidgetOfInput("Widget2",w);
35
36         if (w1==NULL) { w1=new Wt::WContainerWidget(); }
37         if (w2==NULL) { w2=new Wt::WContainerWidget(); }
38
39
40         l->addWidget(w1);
41         l->addWidget(w2);
42
43         w->setLayout(l);
44         
45         bbSetOutputWidget( w );
46         
47   
48 }
49 //===== 
50 // 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)
51 //===== 
52 void LayoutSplit::bbUserSetDefaultValues()
53 {
54                 bbSetInputOrientation("VERTICAL");
55                 bbSetInputProportion(50);
56                 bbSetInputWidget1(NULL);
57                 bbSetInputWidget2(NULL);
58 }
59 //===== 
60 // 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)
61 //===== 
62 void LayoutSplit::bbUserInitializeProcessing()
63 {
64
65 }
66 //===== 
67 // 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)
68 //===== 
69 void LayoutSplit::bbUserFinalizeProcessing()
70 {
71
72 }
73 }
74 // EO namespace bbwt
75
76