Updates: Status: Accepted Labels: -Priority-Medium Priority-High
Comment #4 on issue 446 by tudor.gi...@gmail.com: uml class shape aligned the rectangles http://code.google.com/p/moose-technology/issues/detail?id=446
A form of the problem is still around. This is an important issue that prevents us from actually using the FormsBuilder.
Here is an example with a ChildrenShape inside. The green shape on top should have a constant minimum size. Instead its height increases together with the height of the children shape below:
| builder | builder := MOFormsBuilder new. builder column; fill. builder row; fill; row; fill. builder x: 1 y: 1 add: (MORectangleShape new width: 30; fillColor: Color green). builder x: 1 y: 2 add: (MORectangleShape new). builder x: 1 y: 2 add: (MOChildrenShape new). view shape: builder shape. view nodes: (1 to: 5) forEach: [:each | view nodes: (1 to: each). view verticalLineLayout ]
Comment #5 on issue 446 by tudor.gi...@gmail.com: uml class shape aligned the rectangles http://code.google.com/p/moose-technology/issues/detail?id=446
I tested some more and when we have only rectangle shapes, it seems to work just fine. So, the problem could be related to the ChildrenShape:
| builder | builder := MOFormsBuilder new. builder column; fill. builder row; fill; row; fill. builder x: 1 y: 1 add: (MORectangleShape new width: 30; fillColor: Color green). builder x: 1 y: 2 add: (MORectangleShape new height: [:x | x * 100] ). view shape: builder shape. view nodes: (1 to: 5)
Comment #6 on issue 446 by alexandr...@gmail.com: uml class shape aligned the rectangles http://code.google.com/p/moose-technology/issues/detail?id=446
Yeah, this is an important issue. I will work on it this week.
Comment #7 on issue 446 by alexandr...@gmail.com: uml class shape aligned the rectangles http://code.google.com/p/moose-technology/issues/detail?id=446
Hi Guys,
This issue is still on my todo list. Unfortunately, I have been "seriously busy". And I will remain busy until the beginning of April. Deadline are coming fast. I promise to work on it in a couple of weeks.
I am sincerely sorry to not be able to do more. Really.
Cheers, Alexandre
Comment #8 on issue 446 by tudor.gi...@gmail.com: uml class shape aligned the rectangles http://code.google.com/p/moose-technology/issues/detail?id=446
Don't take it so seriously :). Have fun and good luck with the deadlines.
Updates: Status: Fixed
Comment #9 on issue 446 by alexandr...@gmail.com: uml class shape aligned the rectangles http://code.google.com/p/moose-technology/issues/detail?id=446
I fixed this a couple of days ago