view_form, view_list: convert docs

This commit is contained in:
Daniel Kolesa 2015-07-31 14:50:24 +01:00
parent e20662fb9d
commit 3e17ecc315
2 changed files with 43 additions and 47 deletions

View File

@ -3,20 +3,22 @@ class Elm_View_Form (Eo.Base)
legacy_prefix: null;
methods {
model_set {
/*@ Set model
@def elm_view_form_model_set
@since 1.11 */
[[Set model
@since 1.11
]]
params {
@in model: Efl.Model.Base*; /*@ Emodel object */
@in model: Efl.Model.Base*; [[Emodel object]]
}
}
widget_add {
/*@ Add new widget
@def elm_view_form_widget_add
@since 1.11 */
[[Add new widget
@since 1.11
]]
params {
@in propname: const(char)*; /*@ Property name */
@in evas: Evas_Object*; /*@ Evas widget */
@in propname: const(char)*; [[Property name]]
@in evas: Evas_Object*; [[Evas widget]]
}
}
}

View File

@ -3,63 +3,57 @@ class Elm_View_List (Eo.Base)
legacy_prefix: null;
methods {
genlist_set {
/*@ Constructor wrapper
*
* @def elm_view_list_constructor
* @since 1.11
*/
[[Constructor wrapper
@since 1.11
]]
params {
@in genlist: Evas_Object*; /*@ Genlist object */
@in item_type: Elm_Genlist_Item_Type; /*@ Item type */
@in item_style: const(char)*; /*@ The current item style name. @c NULL would be default. */
@in genlist: Evas_Object*; [[Genlist object]]
@in item_type: Elm_Genlist_Item_Type; [[Item type]]
@in item_style: const(char)*; [[The current item style name. $null would be default.]]
}
}
evas_object_get {
/*@ Return evas object
*
* @def elm_view_list_evas_object_get
* @since 1.11
*/
[[Return evas object
@since 1.11
]]
params {
@out widget: Evas_Object*; /*@ Returned widget */
@out widget: Evas_Object*; [[Returned widget]]
}
}
property_connect {
/*@ Connect property
*
* @def elm_view_list_property_connect
* @since 1.11
*/
[[Connect property
@since 1.11
]]
params {
@in property: const(char)*; /*@ Property name */
@in part: const(char)*; /*@ Edje's theme part */
@in property: const(char)*; [[Property name]]
@in part: const(char)*; [[Edje's theme part]]
}
}
model_set {
/*@ Set model
*
* @def elm_view_list_model_set
* @since 1.11
*/
[[Set model
@since 1.11
]]
params {
@in model: Efl.Model.Base *; /*@ New Emodel to set */
@in model: Efl.Model.Base *; [[New Emodel to set]]
}
}
model_unset {
/*@ Unset model
*
* @def elm_view_list_model_unset
* @since 1.11
*/
[[Unset model
@since 1.11
]]
}
model_get {
/*@ Get model
*
* @def elm_view_list_model_get
* @since 1.11
*/
[[Get model
@since 1.11
]]
params {
@out model: Eo *; /*@ Returned Emodel */
@out model: Eo *; [[Returned Emodel]]
}
}
}