diff options
author | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-10 11:34:50 +0200 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-10 11:34:50 +0200 |
commit | 5ebc5f53e734516aa15bc6b779e558a726acf504 (patch) | |
tree | 9efb375f811282dc0bc4b997d9e1317b70c22831 | |
parent | 42abe377b56bebba80f989b81e75fb329abfba88 (diff) |
efl_ui/box_flow: Improve docs a bit further
-rw-r--r-- | src/lib/elementary/efl_ui_box_flow.eo | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/lib/elementary/efl_ui_box_flow.eo b/src/lib/elementary/efl_ui_box_flow.eo index cbd0777703..7e4f6f5552 100644 --- a/src/lib/elementary/efl_ui_box_flow.eo +++ b/src/lib/elementary/efl_ui_box_flow.eo | |||
@@ -1,10 +1,12 @@ | |||
1 | class @beta Efl.Ui.Box_Flow extends Efl.Ui.Box | 1 | class @beta Efl.Ui.Box_Flow extends Efl.Ui.Box |
2 | { | 2 | { |
3 | [[A Flow Box is a customized type of @Efl.Ui.Box. It will fill along the given axis | 3 | [[A Flow Box is a customized type of @Efl.Ui.Box. It will fill along the axis selected with |
4 | until items will no longer fit in the available space, at which point it will begin | 4 | @Efl.Ui.Layout_Orientable.orientation (which defaults to Horizontal), until items will no |
5 | filling items in a new row/column after the current one. This is useful if an application | 5 | longer fit in the available space, at which point it will begin filling items in a new |
6 | wants to e.g., present a group of items and wrap them onto subsequent lines when the number | 6 | row/column after the current one. |
7 | of items grows too large to fit on the screen. | 7 | This is useful if an application wants to e.g., present a group of items and wrap them onto |
8 | subsequent lines when the number of items grows too large to fit on the screen. | ||
9 | Adding or removing items in the middle re-arrange the rest of the items as expected. | ||
8 | ]] | 10 | ]] |
9 | implements { | 11 | implements { |
10 | Efl.Pack_Layout.layout_update; | 12 | Efl.Pack_Layout.layout_update; |