efl: add @since tags for stabilized classes

Summary: Add missing @since tags.

Test Plan: meson build

Reviewers: bu5hm4n, cedric, segfaultxavi

Reviewed By: segfaultxavi

Subscribers: q66, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D10917
This commit is contained in:
Yeongjong Lee 2019-12-19 09:42:55 +01:00 committed by Xavi Artigas
parent 8465904c19
commit 1d49102bbe
9 changed files with 29 additions and 6 deletions

View File

@ -89,7 +89,10 @@ enum @beta Efl.Ui.Widget_Orientation_Mode
}
enum Efl.Ui.Select_Mode {
[[Type of multi selectable object.]]
[[Type of multi selectable object.
@since 1.24
]]
single, [[Only single child is selected. If a child is selected,
previous selected child will be unselected.]]
multi, [[Allow multiple selection of children.]]

View File

@ -1,6 +1,9 @@
class Efl.Ui.Alert_Popup_Part_Title extends Efl.Ui.Layout_Part_Text
{
[[Efl UI Alert Popup internal part class]]
[[Efl UI Alert Popup internal part class.
@since 1.24
]]
data: null;
implements {
Efl.Text.text { get; set; }

View File

@ -15,6 +15,7 @@ class Efl.Ui.Caching_Factory extends Efl.Ui.Widget_Factory
This is what this factory caching infrastructure provides. It will create the object from the class defined on it
and set the parent and the model as needed for all created items. The View has to release the Item using the
release function of the Factory interface for all of this to work properly.
@since 1.24
]]
methods {
@property memory_limit {

View File

@ -9,6 +9,8 @@ class Efl.Ui.Layout_Factory extends Efl.Ui.Caching_Factory
This class inherits from @Efl.Ui.Caching_Factory and inherits
all its properties.
@since 1.24
]]
methods {
theme_config {

View File

@ -5,7 +5,10 @@ interface Efl.Ui.Multi_Selectable extends Efl.Ui.Single_Selectable
[[Interface for getting access to a range of selected items.
The implementor of this interface provides the possibility to select multiple Selectables.
If not, only @Efl.Ui.Single_Selectable should be implemented.]]
If not, only @Efl.Ui.Single_Selectable should be implemented.
@since 1.24
]]
c_prefix: efl_ui_multi_selectable;
methods
{

View File

@ -6,7 +6,10 @@ interface Efl.Ui.Multi_Selectable_Index_Range extends Efl.Ui.Multi_Selectable
The implementor of this interface provides the possibility to select multiple @Efl.Ui.Selectable objects.
If not, only @Efl.Ui.Single_Selectable should be implemented.
A widget can only provide either this interface or @Efl.Ui.Multi_Selectable_Object_Range, but not both.]]
A widget can only provide either this interface or @Efl.Ui.Multi_Selectable_Object_Range, but not both.
@since 1.24
]]
c_prefix: efl_ui_multi_selectable;
methods
{

View File

@ -6,7 +6,10 @@ interface Efl.Ui.Multi_Selectable_Object_Range extends Efl.Ui.Multi_Selectable
The implementor of this interface provides the possibility to select multiple Selectables.
If not, only @Efl.Ui.Single_Selectable should be implemented.
A widget can only provide either this interface or @Efl.Ui.Multi_Selectable_Index_Range, but not both.]]
A widget can only provide either this interface or @Efl.Ui.Multi_Selectable_Index_Range, but not both.
@since 1.24
]]
c_prefix: efl_ui_multi_selectable;
methods
{

View File

@ -5,6 +5,8 @@ class Efl.Ui.Radio_Box extends Efl.Ui.Box composites Efl.Ui.Radio_Group
All @Efl.Ui.Radio widgets are added to the same internal group which you only indirectly
access through this object.
@since 1.24
]]
implements {
Efl.Pack.pack_clear;

View File

@ -4,7 +4,10 @@ class Efl.Ui.Relative_Container extends Efl.Ui.Widget implements Efl.Pack_Layout
[[The relative container class.
A relative container calculates the size and position of all the children
based on their relationship to each other.]]
based on their relationship to each other.
@since 1.24
]]
methods {
@property relation_left {
[[Specifies the left side edge of the $child object relative to the $base object.