efl api release - fix @since for new elm win indicator api's

This commit is contained in:
Carsten Haitzler 2016-08-12 23:46:15 +09:00 committed by Stefan Schmidt
parent b387d3ceee
commit 645927817b
1 changed files with 17 additions and 23 deletions

View File

@ -153,37 +153,31 @@ class Efl.Ui.Win (Elm.Widget, Efl.Canvas, Elm.Interface.Atspi.Window,
event_prefix: efl_ui_win; event_prefix: efl_ui_win;
methods { methods {
@property indicator_enabled { @property indicator_enabled {
set { [[In some environments, like phones, you may have an indicator that
[[In some environments, like phones, you may have an indicator that shows battery status, reception, time etc. This is the indicator.
shows battery status, reception, time etc. This is the indicator.
Sometimes you don't want it because you provide the same functionality Sometimes you don't want it because you provide the same functionality
inside your app, so this will request that the indicator is disabled in inside your app, so this will request that the indicator is disabled in
this circumstance. The default is depend on the environments. this circumstance. The default is depend on the environments.
For example, like phones, default is to enable the indicator. For example, like phones, default is to enable the indicator.
But like TV, default is to disable the indicator. But like TV, default is to disable the indicator.
Sets the indicator enable of the window.]] @since 1.18
legacy: null; ]]
} set { }
get { get { }
[[Get the indicator enable of the window.]]
legacy: null;
}
values { values {
enabled: bool; [[If true, the indicator is enabled, enabled: bool; [[If true, the indicator is enabled,
If false, the indicator is disabled.]] If false, the indicator is disabled.]]
} }
} }
@property indicator_type { @property indicator_type {
set { [[The indicator type of the window.
[[Sets the indicator type of the window.]]
legacy: null; @since 1.18
} ]]
get { set { }
[[Get the indicator type of the window.]] get { }
legacy: null;
}
values { values {
type: Efl.Ui.Win.Indicator_Type; [[The type, one of #Efl_Ui_Win_Indicator_Type.]] type: Efl.Ui.Win.Indicator_Type; [[The type, one of #Efl_Ui_Win_Indicator_Type.]]
} }