summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYeongjong Lee <yj34.lee@samsung.com>2019-12-19 09:42:55 +0100
committerXavi Artigas <xavierartigas@yahoo.es>2019-12-19 09:46:07 +0100
commit1d49102bbe6e59969dd0beb9d89106802e3f365a (patch)
treee6af2d598fff3ba017636ea7817216935fbd1031
parent8465904c19ea3de2c94c25259ca6a75d0241b4f1 (diff)
downloadefl-1d49102bbe6e59969dd0beb9d89106802e3f365a.tar.gz
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
-rw-r--r--src/lib/elementary/efl_ui.eot5
-rw-r--r--src/lib/elementary/efl_ui_alert_popup_part_title.eo5
-rw-r--r--src/lib/elementary/efl_ui_caching_factory.eo1
-rw-r--r--src/lib/elementary/efl_ui_layout_factory.eo2
-rw-r--r--src/lib/elementary/efl_ui_multi_selectable.eo5
-rw-r--r--src/lib/elementary/efl_ui_multi_selectable_index_range.eo5
-rw-r--r--src/lib/elementary/efl_ui_multi_selectable_object_range.eo5
-rw-r--r--src/lib/elementary/efl_ui_radio_box.eo2
-rw-r--r--src/lib/elementary/efl_ui_relative_container.eo5
9 files changed, 29 insertions, 6 deletions
diff --git a/src/lib/elementary/efl_ui.eot b/src/lib/elementary/efl_ui.eot
index 6b0b10eff5..29832b53ba 100644
--- a/src/lib/elementary/efl_ui.eot
+++ b/src/lib/elementary/efl_ui.eot
@@ -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.]]
diff --git a/src/lib/elementary/efl_ui_alert_popup_part_title.eo b/src/lib/elementary/efl_ui_alert_popup_part_title.eo
index e5c3037a37..ca75abaae9 100644
--- a/src/lib/elementary/efl_ui_alert_popup_part_title.eo
+++ b/src/lib/elementary/efl_ui_alert_popup_part_title.eo
@@ -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; }
diff --git a/src/lib/elementary/efl_ui_caching_factory.eo b/src/lib/elementary/efl_ui_caching_factory.eo
index 4fdb43dd5d..18643f7e1d 100644
--- a/src/lib/elementary/efl_ui_caching_factory.eo
+++ b/src/lib/elementary/efl_ui_caching_factory.eo
@@ -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 {
diff --git a/src/lib/elementary/efl_ui_layout_factory.eo b/src/lib/elementary/efl_ui_layout_factory.eo
index cb5fc638cf..c85100a203 100644
--- a/src/lib/elementary/efl_ui_layout_factory.eo
+++ b/src/lib/elementary/efl_ui_layout_factory.eo
@@ -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 {
diff --git a/src/lib/elementary/efl_ui_multi_selectable.eo b/src/lib/elementary/efl_ui_multi_selectable.eo
index 57e5389386..7915917ef3 100644
--- a/src/lib/elementary/efl_ui_multi_selectable.eo
+++ b/src/lib/elementary/efl_ui_multi_selectable.eo
@@ -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
{
diff --git a/src/lib/elementary/efl_ui_multi_selectable_index_range.eo b/src/lib/elementary/efl_ui_multi_selectable_index_range.eo
index dce9a4e847..797e7bcee6 100644
--- a/src/lib/elementary/efl_ui_multi_selectable_index_range.eo
+++ b/src/lib/elementary/efl_ui_multi_selectable_index_range.eo
@@ -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
{
diff --git a/src/lib/elementary/efl_ui_multi_selectable_object_range.eo b/src/lib/elementary/efl_ui_multi_selectable_object_range.eo
index 889afe10f9..1f7db5e67a 100644
--- a/src/lib/elementary/efl_ui_multi_selectable_object_range.eo
+++ b/src/lib/elementary/efl_ui_multi_selectable_object_range.eo
@@ -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
{
diff --git a/src/lib/elementary/efl_ui_radio_box.eo b/src/lib/elementary/efl_ui_radio_box.eo
index 9aa0d87ab2..86b05af74a 100644
--- a/src/lib/elementary/efl_ui_radio_box.eo
+++ b/src/lib/elementary/efl_ui_radio_box.eo
@@ -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;
diff --git a/src/lib/elementary/efl_ui_relative_container.eo b/src/lib/elementary/efl_ui_relative_container.eo
index e4eb219d4f..8ec842ff25 100644
--- a/src/lib/elementary/efl_ui_relative_container.eo
+++ b/src/lib/elementary/efl_ui_relative_container.eo
@@ -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.