]> Creatis software - bbtk.git/blob - packages/wx/bbs/boxes/bbLayoutTRight.bbs
Add Layouts TUp, TDown, TLeft, TRight
[bbtk.git] / packages / wx / bbs / boxes / bbLayoutTRight.bbs
1 load std
2 load wx
3
4 define LayoutTLeft wx
5
6 description "Creates a complex box : Left {leftUp, leftDown}"
7 author "jean-pierre.roux@creatis.univ-lyon1.fr"
8 category "box"
9
10 new LayoutSplit currentBox
11  set currentBox.Orientation H
12  new LayoutSplit left
13
14  connect left.Widget currentBox.Widget2 
15
16  set left.Orientation V
17
18  input Widget1 left.Widget1       "LeftUp"
19  input Widget2 currentBox.Widget2 "Right" 
20  input Widget3 left.Widget2       "LeftDown"  
21
22 endefine