efl_control,efl_text: convert docs

This commit is contained in:
Daniel Kolesa 2015-06-18 11:21:43 +01:00
parent c93de19e22
commit 2d31628d85
2 changed files with 13 additions and 15 deletions

View File

@ -4,23 +4,23 @@ interface Efl.Control {
legacy_prefix: null;
methods {
@property priority {
/*@ Control the priority of the object. */
[[Control the priority of the object.]]
set {
}
get {
}
values {
priority: int; /*@ The priority of the object */
priority: int; [[The priority of the object]]
}
}
@property suspend {
/*@ Controls whether the object is suspended or not. */
[[Controls whether the object is suspended or not.]]
set {
}
get {
}
values {
suspend: bool; /*@ Controls whether the object is suspended or not. */
suspend: bool; [[Controls whether the object is suspended or not.]]
}
}
}

View File

@ -3,24 +3,22 @@ interface Efl.Text {
methods {
@property text {
set {
/*@
Sets the text string to be displayed by the given text object.
[[Sets the text string to be displayed by the given text object.
@see evas_object_text_text_get() */
See also @evas_object_text_text_get.
]]
}
get {
/*@
Retrieves the text string currently being displayed by the given
text object.
[[Retrieves the text string currently being displayed by the given
text object.
@return The text string currently being displayed on it.
Do not free() the return value.
@note Do not free() the return value.
@see evas_object_text_text_set() */
See also @evas_object_text_text_set.
]]
}
values {
text: const(char)*; /*@ Text string to display on it. */
text: const(char)*; [[Text string to display on it.]]
}
}
}