]> 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 6c452d9f8db345aba0cf50e277558570fb2381ad..78e8991d714d01965e0564cea5784286dfc95a5d 100644 (file)
@@ -9,7 +9,7 @@ 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 "complex box, widget"
 
@@ -17,12 +17,12 @@ 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