Extending Builders: Layout Builders
Richard Bair
richard.bair at oracle.com
Thu Nov 29 08:38:02 PST 2012
> Coming back to this I think the easiest solution would be to:
> a) have constraint objects (HBoxConstraint, ....)
> b) haveing $layoutPane$.add(Node,Constraint)
> c) having Node#setLayoutConstraint(Constraint)
>
> This makes b) simply a convenience method for c).
>
> Why do we need c) well I don't see how we can provide all the different
> list operations (e.g. bulk operation) with the API Tom E is proposing
> (List.addAll, List.set, List.add).
>
> It would have the advantage that FXML does not have to be changed
> because it is still the serialized object graph.
>
> Drawback: we'd have to have this layoutConstraint-Property in an area of
> the framework that doesn't really know about layouts but is dealing
> generic scenegraph/graphic stuff which might the original reason why
> static stuff got introduced because at its heart JavaFX is not a widget
> libary but a graphics framework.
Actually, every node already has properties on it to support layout -- isResizable, layoutBounds, and so on. So having the constraints on the Node fits right in (and in fact is how we had done it previously). The bigger concern (if I remember correctly), is what is the *type* of this constraints object? Do all layout containers have to cast this and perform an instance of check? Having to do an instance of is distasteful, as is having a base class type that really isn't overly useful (you are likely to fail in finding a least-common-denominator for all constraints types).
Further, one advantage to having the layout constraints in the dynamic properties map is that you can have the constraints for two different layout managers at the same time. Niche, but the idea is that you could move a node from one layout container to another and it would just have the right settings. I don't think that is really all that important, but it is a use case.
It really is one of those situations where having a nice dynamic language would have been slick.
So the question I have here is, what is the type of the layoutConstraints (Object? LayoutConstraint?)? How does a layout container implement getting a constraint -- instance of and casting?
Richard
More information about the openjfx-dev
mailing list