diff options
author | Mike Blumenkrantz <zmike@samsung.com> | 2019-09-10 11:25:55 +0200 |
---|---|---|
committer | Xavi Artigas <xavierartigas@yahoo.es> | 2019-09-10 11:26:48 +0200 |
commit | 42abe377b56bebba80f989b81e75fb329abfba88 (patch) | |
tree | 5b7c353653e89b77e79b4f6e372e22c07fcca517 | |
parent | 0867b51a1ddf6e62d4683f66b445e177c98f7de8 (diff) |
efl_ui/flox_box: improve docs
Summary:
expand the description for the class a bit
ref T7717
Reviewers: segfaultxavi
Reviewed By: segfaultxavi
Subscribers: cedric, #reviewers, #committers
Tags: #efl_docs
Maniphest Tasks: T7717
Differential Revision: https://phab.enlightenment.org/D9885
-rw-r--r-- | src/lib/elementary/efl_ui_box_flow.eo | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/elementary/efl_ui_box_flow.eo b/src/lib/elementary/efl_ui_box_flow.eo index 91336525dc..cbd0777703 100644 --- a/src/lib/elementary/efl_ui_box_flow.eo +++ b/src/lib/elementary/efl_ui_box_flow.eo | |||
@@ -1,6 +1,11 @@ | |||
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 custom layout engine for @Efl.Ui.Box.]] | 3 | [[A Flow Box is a customized type of @Efl.Ui.Box. It will fill along the given axis |
4 | until items will no longer fit in the available space, at which point it will begin | ||
5 | filling items in a new row/column after the current one. This is useful if an application | ||
6 | wants to e.g., present a group of items and wrap them onto subsequent lines when the number | ||
7 | of items grows too large to fit on the screen. | ||
8 | ]] | ||
4 | implements { | 9 | implements { |
5 | Efl.Pack_Layout.layout_update; | 10 | Efl.Pack_Layout.layout_update; |
6 | } | 11 | } |