Adds notes

This commit is contained in:
mfreiholz 2016-03-09 12:02:31 +01:00
parent 21f316577f
commit 9c958d0d22

View File

@ -75,4 +75,17 @@ Items sorted by priority
## Notes
- *SectionContent* class may safe a "size-type" property, which defines how the size of the widget should be handled.
- PerCent: Resize in proportion to other widgets.
- Fixed: Width or height are fixed (based on orientation).
- Fixed: Width or height are fixed (based on orientation).
### Handle content drops (Sizing)
- Case: Dropping A to the bottom or top of B (vertical split):
- A will use the width of B
- A will use it's own height, if it is not greater than the half height of B. Otherwise it will use the half height of B.
- Case: Dropping A to the left or right of B (horizontal split)
- ... Same as before, but swap the words "height" with "width" :-)
- Case: Dropping A to the outer top or bottom edge (full vertical split):
- A will use the full width of the container
- A will use it's own height, if it is not greater than the half height of the entire container. Otherwise it will use the half height of the container.
- Case: Dropping A to the outer left or right edge (full horizontal split):
- ... Same as before, but swap the words "height" with "width" :-)