]> Creatis software - bbtk.git/blobdiff - packages/wx/bbs/boxes/bbLayoutTUp.bbs
fordet to commlit this ones
[bbtk.git] / packages / wx / bbs / boxes / bbLayoutTUp.bbs
index 581dd486d22526844b24788132ba867d7e3c680b..78e8991d714d01965e0564cea5784286dfc95a5d 100644 (file)
@@ -9,20 +9,20 @@ load wx
 //                       ----------------
 define LayoutTUp wx
 
-description "Creates a complex box : Up {DownLeft, DownRight} as w1{w2,w3}"
+description "Creates a 'T like' complex container : Up {DownLeft, DownRight} as w1{w2,w3}"
 author "jean-pierre.roux@creatis.univ-lyon1.fr"
-category "box"
+category "complex box, widget"
 
 new LayoutSplit currentBox
  set currentBox.Orientation V
  new LayoutSplit down
 
- connect down.Widget currentBox.Widget2 
+ connect down.Widget currentBox.Widget2
 
  set down.Orientation H
 
- input Widget1 currentBox.Widget1 "Up"
- input Widget2 down.Widget1       "DownLeft
- input Widget3 down.Widget2       "DownRight"  
+ input Widget1 currentBox.Widget1 "Up container"
+ input Widget2 down.Widget1       "DownLeft container"
+ input Widget3 down.Widget2       "DownRight container"
 
 endefine