Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

moose-technology
Updates:
        Status: Accepted
        Labels: -Priority-Medium Priority-High

Comment #4 on issue 446 by [hidden email]: 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 ]


_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

moose-technology

Comment #5 on issue 446 by [hidden email]: 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)

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

moose-technology

Comment #6 on issue 446 by [hidden email]: 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.

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

moose-technology

Comment #7 on issue 446 by [hidden email]: 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

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

moose-technology

Comment #8 on issue 446 by [hidden email]: 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.

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Reply | Threaded
Open this post in threaded view
|

Re: Issue 446 in moose-technology: uml class shape aligned the rectangles

moose-technology
Updates:
        Status: Fixed

Comment #9 on issue 446 by [hidden email]: 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

_______________________________________________
Moose-dev mailing list
[hidden email]
https://www.iam.unibe.ch/mailman/listinfo/moose-dev