From: SangHyeon Jade Lee Date: Wed, 25 Sep 2019 07:50:06 +0000 (+0000) Subject: efl_ui : put beta on range select/unselect as parameter unstable X-Git-Tag: submit/tizen/20190925.214157~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=69072669698a25af06e5cb33b5cda745bb92238f;p=platform%2Fupstream%2Fefl.git efl_ui : put beta on range select/unselect as parameter unstable there are more discussion need on this range selection. we could extend this parameter with range structure(aka Eina.Range) so that extendable object to object, int to int, Range to Range. Reviewed-by: Marcel Hollerbach Differential Revision: https://phab.enlightenment.org/D10145 --- diff --git a/src/lib/elementary/efl_ui_multi_selectable.eo b/src/lib/elementary/efl_ui_multi_selectable.eo index fc10d3a..44b3994 100644 --- a/src/lib/elementary/efl_ui_multi_selectable.eo +++ b/src/lib/elementary/efl_ui_multi_selectable.eo @@ -21,7 +21,7 @@ interface @beta Efl.Ui.Multi_Selectable extends Efl.Ui.Single_Selectable [[Get the selected items in a iterator. The iterator sequence will be decided by selection.]] return: iterator @move @no_unused; [[User has to free the iterator after usage.]] } - range_select { + range_select @beta { [[Select a range of @Efl.Ui.Selectable. This will select the range of selectables from a to b or from b to a depending on which one comes first. @@ -34,7 +34,7 @@ interface @beta Efl.Ui.Multi_Selectable extends Efl.Ui.Single_Selectable b : Efl.Ui.Selectable; [[The other side of the range.]] } } - range_unselect { + range_unselect @beta { [[Unselect a range of @Efl.Ui.Selectable. This will unselect the range of selectables from a to b or from b to a depending on which one comes first. diff --git a/src/lib/elementary/efl_ui_multi_selectable_async.eo b/src/lib/elementary/efl_ui_multi_selectable_async.eo index 0047ed9..3a09682 100644 --- a/src/lib/elementary/efl_ui_multi_selectable_async.eo +++ b/src/lib/elementary/efl_ui_multi_selectable_async.eo @@ -29,7 +29,7 @@ interface @beta Efl.Ui.Multi_Selectable_Async extends Efl.Ui.Single_Selectable return: iterator @move @no_unused; [[The iterator gives indices of unselected children. It is valid until any change is made on the model.]] } - range_select { + range_select @beta { [[Select a range of @Efl.Ui.Selectable. This will select the range of selectables from $a to $b or from $b to $a depending on which one comes first. @@ -41,7 +41,7 @@ interface @beta Efl.Ui.Multi_Selectable_Async extends Efl.Ui.Single_Selectable b : uint64; [[The other side of the range.]] } } - range_unselect { + range_unselect @beta { [[Unselect a range of @Efl.Ui.Selectable. This will unselect the range of selectables from $a to $b or from $b to $a depending on which one comes first.