Today, I worked a bit on creating some visu with Roassal. It really a nice tool. 

I had a few problems though:

Non-dsl mode relies on the user to handle the drawing details. For example, the code below creates a box whose text exceeds the box boundaries. For mondrian-infested people like me, this should be automatically managed.


node := 'this is a long chain'.
view := ROWhiteView new
view title: 'TEST'.
moduleNode := (ROElement spriteOn: node) + (ROLabel new color: Color red).
view add: moduleNode.
view open.
Inline image 2


I tried to switch to the DSL mode with ROMondrianViewBuilder in Glamour but I had MessageNotUnderstood: ROMondrianViewBuilder>>camera. Did someone have a similar problem?

tx
Usman