efl_ui_spotlight/pager/stack: remove @beta

there has been more than 1 month without any comment, i think this looks
fine now ?

The transition event is kept beta for now, as we have right now a
discussion about range that we might be able to use here.

Reviewed-by: Xavi Artigas <xavierartigas@yahoo.es>
Reviewed-by: Jaehyun Cho <jae_hyun.cho@samsung.com>
Differential Revision: https://phab.enlightenment.org/D11135
This commit is contained in:
Marcel Hollerbach 2020-01-20 13:22:59 +01:00
parent a1350a0e3e
commit d066dcf543
3 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
class @beta Efl.Ui.Pager extends Efl.Ui.Spotlight.Container
class Efl.Ui.Pager extends Efl.Ui.Spotlight.Container
{
[[A spotlight with predefined @Efl.Ui.Spotlight.Container.spotlight_manager

View File

@ -4,7 +4,7 @@ struct @beta Efl.Ui.Spotlight.Transition_Event {
to : int; [[The index to where the transition is headed, -1 if not known.]]
}
class @beta Efl.Ui.Spotlight.Container extends Efl.Ui.Widget implements Efl.Pack_Linear
class Efl.Ui.Spotlight.Container extends Efl.Ui.Widget implements Efl.Pack_Linear
{
[[The Spotlight widget is a container for other sub-widgets, where only one sub-widget is active at any given time.
@ -28,7 +28,7 @@ class @beta Efl.Ui.Spotlight.Container extends Efl.Ui.Widget implements Efl.Pack
]]
c_prefix: efl_ui_spotlight;
methods {
@property spotlight_manager {
@property spotlight_manager @beta {
[[This object defines how sub-widgets are rendered and animated.
If it is not set, only the active sub-widget is shown and transitions are instantaneous (not animated).
]]
@ -42,7 +42,7 @@ class @beta Efl.Ui.Spotlight.Container extends Efl.Ui.Widget implements Efl.Pack
spotlight_manager : Efl.Ui.Spotlight.Manager @move; [[The Spotlight Manager object or $NULL.]]
}
}
@property indicator {
@property indicator @beta {
[[An indicator object to use, which will display the current state of the spotlight (number of sub-widgets
and active one).
When this object is set, it is immediately updated to reflect the current state of the widget.
@ -124,8 +124,8 @@ class @beta Efl.Ui.Spotlight.Container extends Efl.Ui.Widget implements Efl.Pack
}
}
events {
transition,start : Efl.Ui.Spotlight.Transition_Event; [[A transition animation has started.]]
transition,end : Efl.Ui.Spotlight.Transition_Event; [[A transition animation has ended.]]
transition,start @beta : Efl.Ui.Spotlight.Transition_Event; [[A transition animation has started.]]
transition,end @beta : Efl.Ui.Spotlight.Transition_Event; [[A transition animation has ended.]]
}
implements {
Efl.Object.constructor;

View File

@ -1,4 +1,4 @@
class @beta Efl.Ui.Stack extends Efl.Ui.Spotlight.Container
class Efl.Ui.Stack extends Efl.Ui.Spotlight.Container
{
[[A spotlight with predefined @Efl.Ui.Spotlight.Container.spotlight_manager