]> Creatis software - bbtk.git/blob - packages/wx/bbs/boxes/bbLayoutTRight.bbs
949e532763584926c9ad8ad0c3c41e8ef8f5bb07
[bbtk.git] / packages / wx / bbs / boxes / bbLayoutTRight.bbs
1 load std
2 load wx
3 //                       ---------------
4 //                       |      |      |
5 //                       |  W1  |      |
6 //                       |------|  W2  |
7 //                       |  W3  |      |
8 //                       |      |      |
9 //                       ---------------
10 define LayoutTRight wx
11
12 description "Creates a 'T like' complex container : Right {LeftUp, LeftDown}"
13 author "jean-pierre.roux@creatis.univ-lyon1.fr"
14 category "complex box, widget"
15
16 new LayoutSplit currentBox
17  set currentBox.Orientation H
18  new LayoutSplit left
19
20  connect left.Widget currentBox.Widget1
21
22  set left.Orientation V
23
24  input Widget1 left.Widget1       "LeftUp container"
25  input Widget2 currentBox.Widget2 "Right container" 
26  input Widget3 left.Widget2       "LeftDown container"  
27
28 endefine