efl_ui/box_flow: Improve docs a bit further

This commit is contained in:
Xavi Artigas 2019-09-10 11:34:50 +02:00
parent 42abe377b5
commit 5ebc5f53e7
1 changed files with 7 additions and 5 deletions

View File

@ -1,10 +1,12 @@
class @beta Efl.Ui.Box_Flow extends Efl.Ui.Box
{
[[A Flow Box is a customized type of @Efl.Ui.Box. It will fill along the given axis
until items will no longer fit in the available space, at which point it will begin
filling items in a new row/column after the current one. This is useful if an application
wants to e.g., present a group of items and wrap them onto subsequent lines when the number
of items grows too large to fit on the screen.
[[A Flow Box is a customized type of @Efl.Ui.Box. It will fill along the axis selected with
@Efl.Ui.Layout_Orientable.orientation (which defaults to Horizontal), until items will no
longer fit in the available space, at which point it will begin filling items in a new
row/column after the current one.
This is useful if an application wants to e.g., present a group of items and wrap them onto
subsequent lines when the number of items grows too large to fit on the screen.
Adding or removing items in the middle re-arrange the rest of the items as expected.
]]
implements {
Efl.Pack_Layout.layout_update;