]> Creatis software - bbtk.git/blobdiff - packages/wx/bbs/boxes/bbLayoutTRight.bbs
no message
[bbtk.git] / packages / wx / bbs / boxes / bbLayoutTRight.bbs
index 547073024ca9a76e32fac32dd4bafb3ea6992d92..949e532763584926c9ad8ad0c3c41e8ef8f5bb07 100644 (file)
@@ -1,22 +1,28 @@
 load std
 load wx
+//                       ---------------
+//                       |      |      |
+//                       |  W1  |      |
+//                       |------|  W2  |
+//                       |  W3  |      |
+//                       |      |      |
+//                       ---------------
+define LayoutTRight wx
 
-define LayoutTLeft wx
-
-description "Creates a complex box : Left {leftUp, leftDown}"
+description "Creates a 'T like' complex container : Right {LeftUp, LeftDown}"
 author "jean-pierre.roux@creatis.univ-lyon1.fr"
-category "box"
+category "complex box, widget"
 
 new LayoutSplit currentBox
  set currentBox.Orientation H
  new LayoutSplit left
 
- connect left.Widget currentBox.Widget
+ connect left.Widget currentBox.Widget1
 
  set left.Orientation V
 
- input Widget1 left.Widget1       "LeftUp"
- input Widget2 currentBox.Widget2 "Right" 
- input Widget3 left.Widget2       "LeftDown"  
+ input Widget1 left.Widget1       "LeftUp container"
+ input Widget2 currentBox.Widget2 "Right container
+ input Widget3 left.Widget2       "LeftDown container"  
 
 endefine