Multibuttonentry item: Migrate docs to new eolian format.

This commit is contained in:
Tom Hacohen 2015-08-06 14:25:44 +01:00
parent 3ba29fc402
commit f5fd3d1701
1 changed files with 8 additions and 29 deletions

View File

@ -3,43 +3,22 @@ class Elm.Multibuttonentry_Item(Elm.Widget_Item)
eo_prefix: elm_obj_multibuttonentry_item; eo_prefix: elm_obj_multibuttonentry_item;
methods { methods {
@property selected { @property selected {
[[Control the selected state of an item]]
get { get {
/*@
Get the selected state of an item
@ingroup Multibuttonentry
*/
} }
set { set {
/*@
Set the selected state of an item
@ingroup Multibuttonentry
*/
} }
values { values {
selected: bool; /*@ EINA_TRUE if selected EINA_FALSE otherwise */ selected: bool; [[$true if selected $false otherwise]]
} }
} }
prev_get @const { prev_get @const {
/*@ [[Get the previous item in the multibuttonentry]]
Get the previous item in the multibuttonentry return: Elm_Object_Item *; [[The item before the item]]
@return The item before the item @p it
@ingroup Multibuttonentry
*/
return: Elm_Object_Item *;
} }
next_get @const { next_get @const {
/*@ [[Get the next item in the multibuttonentry]]
Get the next item in the multibuttonentry return: Elm_Object_Item *; [[The item after the item]]
@return The item after the item @p it
@ingroup Multibuttonentry
*/
return: Elm_Object_Item *;
} }
} }
implements { implements {