Updates:
Status: Accepted
Labels: -Priority-Medium -Milestone-4.4 Priority-Critical Milestone-4.6
Comment #13 on issue 574 by tu...(a)tudorgirba.com: Nodes with complex shapes
do not position the children nodes with complex shapes properly
http://code.google.com/p/moose-technology/issues/detail?id=574
The issue appears again when the nesting is deeper. This is a critical
issue. Please take a look.
| shape builder |
builder := MOFormsBuilder new.
builder column; fill; row; fill; row; fill; row; fill.
builder x:1 y:1 add: (MORectangleShape new text: #printString).
builder x:1 y:2 add: (MORectangleShape new).
builder x:1 y:2 add: (MOChildrenShape new) .
shape := builder asShape.
view nodeShape: shape.
view nodes: (100 to: 300 by: 100) forEach: [:x |
view nodeShape: shape.
view nodes: ((x + 10) to: (x+30) by: 10) forEach: [:y |
view nodeShape: shape.
view nodes: ((x+y+1) to: (x+y+3)).
view verticalLineLayout ].
view verticalLineLayout]